]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/gcc/c-decl.c
Gcc 3.2.1-prerelease from the FSF anoncvs repo gcc-3_2-branch on 1-Sep-2002 00:00...
[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   TREE_READONLY (decl) = TREE_READONLY (type);
3915   store_init_value (decl, init);
3916
3917   if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3918     {
3919       int failure = complete_array_type (type, DECL_INITIAL (decl), 1);
3920       if (failure)
3921         abort ();
3922     }
3923
3924   type = TREE_TYPE (decl);
3925   if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3926     return error_mark_node;
3927
3928   stmt = build_stmt (DECL_STMT, decl);
3929   complit = build1 (COMPOUND_LITERAL_EXPR, TREE_TYPE (decl), stmt);
3930   TREE_SIDE_EFFECTS (complit) = 1;
3931
3932   layout_decl (decl, 0);
3933
3934   if (TREE_STATIC (decl))
3935     {
3936       /* This decl needs a name for the assembler output.  We also need
3937          a unique suffix to be added to the name.  */
3938       char *name;
3939       extern int var_labelno;
3940
3941       ASM_FORMAT_PRIVATE_NAME (name, "__compound_literal", var_labelno);
3942       var_labelno++;
3943       DECL_NAME (decl) = get_identifier (name);
3944       DECL_DEFER_OUTPUT (decl) = 1;
3945       DECL_COMDAT (decl) = 1;
3946       DECL_ARTIFICIAL (decl) = 1;
3947       pushdecl (decl);
3948       rest_of_decl_compilation (decl, NULL, 1, 0);
3949     }
3950
3951   return complit;
3952 }
3953 \f
3954 /* Make TYPE a complete type based on INITIAL_VALUE.
3955    Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3956    2 if there was no information (in which case assume 1 if DO_DEFAULT).  */
3957
3958 int
3959 complete_array_type (type, initial_value, do_default)
3960      tree type;
3961      tree initial_value;
3962      int do_default;
3963 {
3964   tree maxindex = NULL_TREE;
3965   int value = 0;
3966
3967   if (initial_value)
3968     {
3969       /* Note MAXINDEX  is really the maximum index,
3970          one less than the size.  */
3971       if (TREE_CODE (initial_value) == STRING_CST)
3972         {
3973           int eltsize
3974             = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3975           maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3976                                    / eltsize) - 1, 0);
3977         }
3978       else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3979         {
3980           tree elts = CONSTRUCTOR_ELTS (initial_value);
3981           maxindex = build_int_2 (-1, -1);
3982           for (; elts; elts = TREE_CHAIN (elts))
3983             {
3984               if (TREE_PURPOSE (elts))
3985                 maxindex = TREE_PURPOSE (elts);
3986               else
3987                 maxindex = fold (build (PLUS_EXPR, integer_type_node,
3988                                         maxindex, integer_one_node));
3989             }
3990           maxindex = copy_node (maxindex);
3991         }
3992       else
3993         {
3994           /* Make an error message unless that happened already.  */
3995           if (initial_value != error_mark_node)
3996             value = 1;
3997
3998           /* Prevent further error messages.  */
3999           maxindex = build_int_2 (0, 0);
4000         }
4001     }
4002
4003   if (!maxindex)
4004     {
4005       if (do_default)
4006         maxindex = build_int_2 (0, 0);
4007       value = 2;
4008     }
4009
4010   if (maxindex)
4011     {
4012       TYPE_DOMAIN (type) = build_index_type (maxindex);
4013       if (!TREE_TYPE (maxindex))
4014         TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
4015     }
4016
4017   /* Lay out the type now that we can get the real answer.  */
4018
4019   layout_type (type);
4020
4021   return value;
4022 }
4023 \f
4024 /* Given declspecs and a declarator,
4025    determine the name and type of the object declared
4026    and construct a ..._DECL node for it.
4027    (In one case we can return a ..._TYPE node instead.
4028     For invalid input we sometimes return 0.)
4029
4030    DECLSPECS is a chain of tree_list nodes whose value fields
4031     are the storage classes and type specifiers.
4032
4033    DECL_CONTEXT says which syntactic context this declaration is in:
4034      NORMAL for most contexts.  Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4035      FUNCDEF for a function definition.  Like NORMAL but a few different
4036       error messages in each case.  Return value may be zero meaning
4037       this definition is too screwy to try to parse.
4038      PARM for a parameter declaration (either within a function prototype
4039       or before a function body).  Make a PARM_DECL, or return void_type_node.
4040      TYPENAME if for a typename (in a cast or sizeof).
4041       Don't make a DECL node; just return the ..._TYPE node.
4042      FIELD for a struct or union field; make a FIELD_DECL.
4043      BITFIELD for a field with specified width.
4044    INITIALIZED is 1 if the decl has an initializer.
4045
4046    In the TYPENAME case, DECLARATOR is really an absolute declarator.
4047    It may also be so in the PARM case, for a prototype where the
4048    argument type is specified but not the name.
4049
4050    This function is where the complicated C meanings of `static'
4051    and `extern' are interpreted.  */
4052
4053 static tree
4054 grokdeclarator (declarator, declspecs, decl_context, initialized)
4055      tree declspecs;
4056      tree declarator;
4057      enum decl_context decl_context;
4058      int initialized;
4059 {
4060   int specbits = 0;
4061   tree spec;
4062   tree type = NULL_TREE;
4063   int longlong = 0;
4064   int constp;
4065   int restrictp;
4066   int volatilep;
4067   int type_quals = TYPE_UNQUALIFIED;
4068   int inlinep;
4069   int explicit_int = 0;
4070   int explicit_char = 0;
4071   int defaulted_int = 0;
4072   tree typedef_decl = 0;
4073   const char *name;
4074   tree typedef_type = 0;
4075   int funcdef_flag = 0;
4076   enum tree_code innermost_code = ERROR_MARK;
4077   int bitfield = 0;
4078   int size_varies = 0;
4079   tree decl_attr = NULL_TREE;
4080   tree array_ptr_quals = NULL_TREE;
4081   int array_parm_static = 0;
4082   tree returned_attrs = NULL_TREE;
4083
4084   if (decl_context == BITFIELD)
4085     bitfield = 1, decl_context = FIELD;
4086
4087   if (decl_context == FUNCDEF)
4088     funcdef_flag = 1, decl_context = NORMAL;
4089
4090   /* Look inside a declarator for the name being declared
4091      and get it as a string, for an error message.  */
4092   {
4093     tree decl = declarator;
4094     name = 0;
4095
4096     while (decl)
4097       switch (TREE_CODE (decl))
4098         {
4099         case ARRAY_REF:
4100         case INDIRECT_REF:
4101         case CALL_EXPR:
4102           innermost_code = TREE_CODE (decl);
4103           decl = TREE_OPERAND (decl, 0);
4104           break;
4105
4106         case TREE_LIST:
4107           decl = TREE_VALUE (decl);
4108           break;
4109
4110         case IDENTIFIER_NODE:
4111           name = IDENTIFIER_POINTER (decl);
4112           decl = 0;
4113           break;
4114
4115         default:
4116           abort ();
4117         }
4118     if (name == 0)
4119       name = "type name";
4120   }
4121
4122   /* A function definition's declarator must have the form of
4123      a function declarator.  */
4124
4125   if (funcdef_flag && innermost_code != CALL_EXPR)
4126     return 0;
4127
4128   /* Anything declared one level down from the top level
4129      must be one of the parameters of a function
4130      (because the body is at least two levels down).  */
4131
4132   /* If this looks like a function definition, make it one,
4133      even if it occurs where parms are expected.
4134      Then store_parm_decls will reject it and not use it as a parm.  */
4135   if (decl_context == NORMAL && !funcdef_flag
4136       && current_binding_level->parm_flag)
4137     decl_context = PARM;
4138
4139   /* Look through the decl specs and record which ones appear.
4140      Some typespecs are defined as built-in typenames.
4141      Others, the ones that are modifiers of other types,
4142      are represented by bits in SPECBITS: set the bits for
4143      the modifiers that appear.  Storage class keywords are also in SPECBITS.
4144
4145      If there is a typedef name or a type, store the type in TYPE.
4146      This includes builtin typedefs such as `int'.
4147
4148      Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
4149      and did not come from a user typedef.
4150
4151      Set LONGLONG if `long' is mentioned twice.  */
4152
4153   for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
4154     {
4155       tree id = TREE_VALUE (spec);
4156
4157       /* If the entire declaration is itself tagged as deprecated then
4158          suppress reports of deprecated items.  */
4159       if (id && TREE_DEPRECATED (id))
4160         {
4161           if (deprecated_state != DEPRECATED_SUPPRESS)
4162             warn_deprecated_use (id);
4163         }
4164
4165       if (id == ridpointers[(int) RID_INT])
4166         explicit_int = 1;
4167       if (id == ridpointers[(int) RID_CHAR])
4168         explicit_char = 1;
4169
4170       if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
4171         {
4172           enum rid i = C_RID_CODE (id);
4173           if ((int) i <= (int) RID_LAST_MODIFIER)
4174             {
4175               if (i == RID_LONG && (specbits & (1 << (int) i)))
4176                 {
4177                   if (longlong)
4178                     error ("`long long long' is too long for GCC");
4179                   else
4180                     {
4181                       if (pedantic && !flag_isoc99 && ! in_system_header
4182                           && warn_long_long)
4183                         pedwarn ("ISO C89 does not support `long long'");
4184                       longlong = 1;
4185                     }
4186                 }
4187               else if (specbits & (1 << (int) i))
4188                 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
4189               specbits |= 1 << (int) i;
4190               goto found;
4191             }
4192         }
4193       if (type)
4194         error ("two or more data types in declaration of `%s'", name);
4195       /* Actual typedefs come to us as TYPE_DECL nodes.  */
4196       else if (TREE_CODE (id) == TYPE_DECL)
4197         {
4198           if (TREE_TYPE (id) == error_mark_node)
4199             ; /* Allow the type to default to int to avoid cascading errors.  */
4200           else
4201             {
4202               type = TREE_TYPE (id);
4203               decl_attr = DECL_ATTRIBUTES (id);
4204               typedef_decl = id;
4205             }
4206         }
4207       /* Built-in types come as identifiers.  */
4208       else if (TREE_CODE (id) == IDENTIFIER_NODE)
4209         {
4210           tree t = lookup_name (id);
4211           if (TREE_TYPE (t) == error_mark_node)
4212             ;
4213           else if (!t || TREE_CODE (t) != TYPE_DECL)
4214             error ("`%s' fails to be a typedef or built in type",
4215                    IDENTIFIER_POINTER (id));
4216           else
4217             {
4218               type = TREE_TYPE (t);
4219               typedef_decl = t;
4220             }
4221         }
4222       else if (TREE_CODE (id) != ERROR_MARK)
4223         type = id;
4224
4225     found:
4226       ;
4227     }
4228
4229   typedef_type = type;
4230   if (type)
4231     size_varies = C_TYPE_VARIABLE_SIZE (type);
4232
4233   /* No type at all: default to `int', and set DEFAULTED_INT
4234      because it was not a user-defined typedef.  */
4235
4236   if (type == 0)
4237     {
4238       if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4239                           | (1 << (int) RID_SIGNED)
4240                           | (1 << (int) RID_UNSIGNED)
4241                           | (1 << (int) RID_COMPLEX))))
4242           /* Don't warn about typedef foo = bar.  */
4243           && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
4244           && ! in_system_header)
4245         {
4246           /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
4247              and this is a function, or if -Wimplicit; prefer the former
4248              warning since it is more explicit.  */
4249           if ((warn_implicit_int || warn_return_type || flag_isoc99)
4250               && funcdef_flag)
4251             warn_about_return_type = 1;
4252           else if (warn_implicit_int || flag_isoc99)
4253             pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
4254                          name);
4255         }
4256
4257       defaulted_int = 1;
4258       type = integer_type_node;
4259     }
4260
4261   /* Now process the modifiers that were specified
4262      and check for invalid combinations.  */
4263
4264   /* Long double is a special combination.  */
4265
4266   if ((specbits & 1 << (int) RID_LONG) && ! longlong
4267       && TYPE_MAIN_VARIANT (type) == double_type_node)
4268     {
4269       specbits &= ~(1 << (int) RID_LONG);
4270       type = long_double_type_node;
4271     }
4272
4273   /* Check all other uses of type modifiers.  */
4274
4275   if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4276                   | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4277     {
4278       int ok = 0;
4279
4280       if ((specbits & 1 << (int) RID_LONG)
4281           && (specbits & 1 << (int) RID_SHORT))
4282         error ("both long and short specified for `%s'", name);
4283       else if (((specbits & 1 << (int) RID_LONG)
4284                 || (specbits & 1 << (int) RID_SHORT))
4285                && explicit_char)
4286         error ("long or short specified with char for `%s'", name);
4287       else if (((specbits & 1 << (int) RID_LONG)
4288                 || (specbits & 1 << (int) RID_SHORT))
4289                && TREE_CODE (type) == REAL_TYPE)
4290         {
4291           static int already = 0;
4292
4293           error ("long or short specified with floating type for `%s'", name);
4294           if (! already && ! pedantic)
4295             {
4296               error ("the only valid combination is `long double'");
4297               already = 1;
4298             }
4299         }
4300       else if ((specbits & 1 << (int) RID_SIGNED)
4301                && (specbits & 1 << (int) RID_UNSIGNED))
4302         error ("both signed and unsigned specified for `%s'", name);
4303       else if (TREE_CODE (type) != INTEGER_TYPE)
4304         error ("long, short, signed or unsigned invalid for `%s'", name);
4305       else
4306         {
4307           ok = 1;
4308           if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4309             {
4310               pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4311                        name);
4312               if (flag_pedantic_errors)
4313                 ok = 0;
4314             }
4315         }
4316
4317       /* Discard the type modifiers if they are invalid.  */
4318       if (! ok)
4319         {
4320           specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4321                         | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4322           longlong = 0;
4323         }
4324     }
4325
4326   if ((specbits & (1 << (int) RID_COMPLEX))
4327       && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4328     {
4329       error ("complex invalid for `%s'", name);
4330       specbits &= ~(1 << (int) RID_COMPLEX);
4331     }
4332
4333   /* Decide whether an integer type is signed or not.
4334      Optionally treat bitfields as signed by default.  */
4335   if (specbits & 1 << (int) RID_UNSIGNED
4336       /* Traditionally, all bitfields are unsigned.  */
4337       || (bitfield && flag_traditional
4338           && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4339       || (bitfield && ! flag_signed_bitfields
4340           && (explicit_int || defaulted_int || explicit_char
4341               /* A typedef for plain `int' without `signed'
4342                  can be controlled just like plain `int'.  */
4343               || ! (typedef_decl != 0
4344                     && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4345           && TREE_CODE (type) != ENUMERAL_TYPE
4346           && !(specbits & 1 << (int) RID_SIGNED)))
4347     {
4348       if (longlong)
4349         type = long_long_unsigned_type_node;
4350       else if (specbits & 1 << (int) RID_LONG)
4351         type = long_unsigned_type_node;
4352       else if (specbits & 1 << (int) RID_SHORT)
4353         type = short_unsigned_type_node;
4354       else if (type == char_type_node)
4355         type = unsigned_char_type_node;
4356       else if (typedef_decl)
4357         type = unsigned_type (type);
4358       else
4359         type = unsigned_type_node;
4360     }
4361   else if ((specbits & 1 << (int) RID_SIGNED)
4362            && type == char_type_node)
4363     type = signed_char_type_node;
4364   else if (longlong)
4365     type = long_long_integer_type_node;
4366   else if (specbits & 1 << (int) RID_LONG)
4367     type = long_integer_type_node;
4368   else if (specbits & 1 << (int) RID_SHORT)
4369     type = short_integer_type_node;
4370
4371   if (specbits & 1 << (int) RID_COMPLEX)
4372     {
4373       if (pedantic && !flag_isoc99)
4374         pedwarn ("ISO C89 does not support complex types");
4375       /* If we just have "complex", it is equivalent to
4376          "complex double", but if any modifiers at all are specified it is
4377          the complex form of TYPE.  E.g, "complex short" is
4378          "complex short int".  */
4379
4380       if (defaulted_int && ! longlong
4381           && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4382                             | (1 << (int) RID_SIGNED)
4383                             | (1 << (int) RID_UNSIGNED))))
4384         {
4385           if (pedantic)
4386             pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
4387           type = complex_double_type_node;
4388         }
4389       else if (type == integer_type_node)
4390         {
4391           if (pedantic)
4392             pedwarn ("ISO C does not support complex integer types");
4393           type = complex_integer_type_node;
4394         }
4395       else if (type == float_type_node)
4396         type = complex_float_type_node;
4397       else if (type == double_type_node)
4398         type = complex_double_type_node;
4399       else if (type == long_double_type_node)
4400         type = complex_long_double_type_node;
4401       else
4402         {
4403           if (pedantic)
4404             pedwarn ("ISO C does not support complex integer types");
4405           type = build_complex_type (type);
4406         }
4407     }
4408
4409   /* Figure out the type qualifiers for the declaration.  There are
4410      two ways a declaration can become qualified.  One is something
4411      like `const int i' where the `const' is explicit.  Another is
4412      something like `typedef const int CI; CI i' where the type of the
4413      declaration contains the `const'.  */
4414   constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4415   restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4416   volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4417   inlinep = !! (specbits & (1 << (int) RID_INLINE));
4418   if (constp > 1 && ! flag_isoc99)
4419     pedwarn ("duplicate `const'");
4420   if (restrictp > 1 && ! flag_isoc99)
4421     pedwarn ("duplicate `restrict'");
4422   if (volatilep > 1 && ! flag_isoc99)
4423     pedwarn ("duplicate `volatile'");
4424   if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4425     type = TYPE_MAIN_VARIANT (type);
4426   type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4427                 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4428                 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4429
4430   /* Warn if two storage classes are given. Default to `auto'.  */
4431
4432   {
4433     int nclasses = 0;
4434
4435     if (specbits & 1 << (int) RID_AUTO) nclasses++;
4436     if (specbits & 1 << (int) RID_STATIC) nclasses++;
4437     if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4438     if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4439     if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4440
4441     /* Warn about storage classes that are invalid for certain
4442        kinds of declarations (parameters, typenames, etc.).  */
4443
4444     if (nclasses > 1)
4445       error ("multiple storage classes in declaration of `%s'", name);
4446     else if (funcdef_flag
4447              && (specbits
4448                  & ((1 << (int) RID_REGISTER)
4449                     | (1 << (int) RID_AUTO)
4450                     | (1 << (int) RID_TYPEDEF))))
4451       {
4452         if (specbits & 1 << (int) RID_AUTO
4453             && (pedantic || current_binding_level == global_binding_level))
4454           pedwarn ("function definition declared `auto'");
4455         if (specbits & 1 << (int) RID_REGISTER)
4456           error ("function definition declared `register'");
4457         if (specbits & 1 << (int) RID_TYPEDEF)
4458           error ("function definition declared `typedef'");
4459         specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4460                       | (1 << (int) RID_AUTO));
4461       }
4462     else if (decl_context != NORMAL && nclasses > 0)
4463       {
4464         if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4465           ;
4466         else
4467           {
4468             switch (decl_context)
4469               {
4470               case FIELD:
4471                 error ("storage class specified for structure field `%s'",
4472                        name);
4473                 break;
4474               case PARM:
4475                 error ("storage class specified for parameter `%s'", name);
4476                 break;
4477               default:
4478                 error ("storage class specified for typename");
4479                 break;
4480               }
4481             specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4482                           | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4483                           | (1 << (int) RID_EXTERN));
4484           }
4485       }
4486     else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4487       {
4488         /* `extern' with initialization is invalid if not at top level.  */
4489         if (current_binding_level == global_binding_level)
4490           warning ("`%s' initialized and declared `extern'", name);
4491         else
4492           error ("`%s' has both `extern' and initializer", name);
4493       }
4494     else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4495              && current_binding_level != global_binding_level)
4496       error ("nested function `%s' declared `extern'", name);
4497     else if (current_binding_level == global_binding_level
4498              && specbits & (1 << (int) RID_AUTO))
4499       error ("top-level declaration of `%s' specifies `auto'", name);
4500   }
4501
4502   /* Now figure out the structure of the declarator proper.
4503      Descend through it, creating more complex types, until we reach
4504      the declared identifier (or NULL_TREE, in an absolute declarator).  */
4505
4506   while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4507     {
4508       if (type == error_mark_node)
4509         {
4510           declarator = TREE_OPERAND (declarator, 0);
4511           continue;
4512         }
4513
4514       /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4515          an INDIRECT_REF (for *...),
4516          a CALL_EXPR (for ...(...)),
4517          a TREE_LIST (for nested attributes),
4518          an identifier (for the name being declared)
4519          or a null pointer (for the place in an absolute declarator
4520          where the name was omitted).
4521          For the last two cases, we have just exited the loop.
4522
4523          At this point, TYPE is the type of elements of an array,
4524          or for a function to return, or for a pointer to point to.
4525          After this sequence of ifs, TYPE is the type of the
4526          array or function or pointer, and DECLARATOR has had its
4527          outermost layer removed.  */
4528
4529       if (array_ptr_quals != NULL_TREE || array_parm_static)
4530         {
4531           /* Only the innermost declarator (making a parameter be of
4532              array type which is converted to pointer type)
4533              may have static or type qualifiers.  */
4534           error ("static or type qualifiers in non-parameter array declarator");
4535           array_ptr_quals = NULL_TREE;
4536           array_parm_static = 0;
4537         }
4538
4539       if (TREE_CODE (declarator) == TREE_LIST)
4540         {
4541           /* We encode a declarator with embedded attributes using
4542              a TREE_LIST.  */
4543           tree attrs = TREE_PURPOSE (declarator);
4544           tree inner_decl;
4545           int attr_flags = 0;
4546           declarator = TREE_VALUE (declarator);
4547           inner_decl = declarator;
4548           while (inner_decl != NULL_TREE
4549                  && TREE_CODE (inner_decl) == TREE_LIST)
4550             inner_decl = TREE_VALUE (inner_decl);
4551           if (inner_decl == NULL_TREE
4552               || TREE_CODE (inner_decl) == IDENTIFIER_NODE)
4553             attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
4554           else if (TREE_CODE (inner_decl) == CALL_EXPR)
4555             attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
4556           else if (TREE_CODE (inner_decl) == ARRAY_REF)
4557             attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
4558           returned_attrs = decl_attributes (&type,
4559                                             chainon (returned_attrs, attrs),
4560                                             attr_flags);
4561         }
4562       else if (TREE_CODE (declarator) == ARRAY_REF)
4563         {
4564           tree itype = NULL_TREE;
4565           tree size = TREE_OPERAND (declarator, 1);
4566           /* The index is a signed object `sizetype' bits wide.  */
4567           tree index_type = signed_type (sizetype);
4568
4569           array_ptr_quals = TREE_TYPE (declarator);
4570           array_parm_static = TREE_STATIC (declarator);
4571
4572           declarator = TREE_OPERAND (declarator, 0);
4573
4574           /* Check for some types that there cannot be arrays of.  */
4575
4576           if (VOID_TYPE_P (type))
4577             {
4578               error ("declaration of `%s' as array of voids", name);
4579               type = error_mark_node;
4580             }
4581
4582           if (TREE_CODE (type) == FUNCTION_TYPE)
4583             {
4584               error ("declaration of `%s' as array of functions", name);
4585               type = error_mark_node;
4586             }
4587
4588           if (size == error_mark_node)
4589             type = error_mark_node;
4590
4591           if (type == error_mark_node)
4592             continue;
4593
4594           /* If size was specified, set ITYPE to a range-type for that size.
4595              Otherwise, ITYPE remains null.  finish_decl may figure it out
4596              from an initial value.  */
4597
4598           if (size)
4599             {
4600               /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue.  */
4601               STRIP_TYPE_NOPS (size);
4602
4603               if (! INTEGRAL_TYPE_P (TREE_TYPE (size)))
4604                 {
4605                   error ("size of array `%s' has non-integer type", name);
4606                   size = integer_one_node;
4607                 }
4608
4609               if (pedantic && integer_zerop (size))
4610                 pedwarn ("ISO C forbids zero-size array `%s'", name);
4611
4612               if (TREE_CODE (size) == INTEGER_CST)
4613                 {
4614                   constant_expression_warning (size);
4615                   if (tree_int_cst_sgn (size) < 0)
4616                     {
4617                       error ("size of array `%s' is negative", name);
4618                       size = integer_one_node;
4619                     }
4620                 }
4621               else
4622                 {
4623                   /* Make sure the array size remains visibly nonconstant
4624                      even if it is (eg) a const variable with known value.  */
4625                   size_varies = 1;
4626
4627                   if (!flag_isoc99 && pedantic)
4628                     {
4629                       if (TREE_CONSTANT (size))
4630                         pedwarn ("ISO C89 forbids array `%s' whose size can't be evaluated",
4631                                  name);
4632                       else
4633                         pedwarn ("ISO C89 forbids variable-size array `%s'",
4634                                  name);
4635                     }
4636                 }
4637
4638               if (integer_zerop (size))
4639                 {
4640                   /* A zero-length array cannot be represented with an
4641                      unsigned index type, which is what we'll get with
4642                      build_index_type.  Create an open-ended range instead.  */
4643                   itype = build_range_type (sizetype, size, NULL_TREE);
4644                 }
4645               else
4646                 {
4647                   /* Compute the maximum valid index, that is, size - 1.
4648                      Do the calculation in index_type, so that if it is
4649                      a variable the computations will be done in the
4650                      proper mode.  */
4651                   itype = fold (build (MINUS_EXPR, index_type,
4652                                        convert (index_type, size),
4653                                        convert (index_type, size_one_node)));
4654
4655                   /* If that overflowed, the array is too big.
4656                      ??? While a size of INT_MAX+1 technically shouldn't
4657                      cause an overflow (because we subtract 1), the overflow
4658                      is recorded during the conversion to index_type, before
4659                      the subtraction.  Handling this case seems like an
4660                      unnecessary complication.  */
4661                   if (TREE_OVERFLOW (itype))
4662                     {
4663                       error ("size of array `%s' is too large", name);
4664                       type = error_mark_node;
4665                       continue;
4666                     }
4667
4668                   if (size_varies)
4669                     itype = variable_size (itype);
4670                   itype = build_index_type (itype);
4671                 }
4672             }
4673           else if (decl_context == FIELD)
4674             {
4675               if (pedantic && !flag_isoc99 && !in_system_header)
4676                 pedwarn ("ISO C89 does not support flexible array members");
4677
4678               /* ISO C99 Flexible array members are effectively identical
4679                  to GCC's zero-length array extension.  */
4680               itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4681             }
4682
4683           /* If pedantic, complain about arrays of incomplete types.  */
4684
4685           if (pedantic && !COMPLETE_TYPE_P (type))
4686             pedwarn ("array type has incomplete element type");
4687
4688 #if 0
4689           /* We shouldn't have a function type here at all!
4690              Functions aren't allowed as array elements.  */
4691           if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4692               && (constp || volatilep))
4693             pedwarn ("ISO C forbids const or volatile function types");
4694 #endif
4695
4696           /* Build the array type itself, then merge any constancy or
4697              volatility into the target type.  We must do it in this order
4698              to ensure that the TYPE_MAIN_VARIANT field of the array type
4699              is set correctly.  */
4700
4701           type = build_array_type (type, itype);
4702           if (type_quals)
4703             type = c_build_qualified_type (type, type_quals);
4704
4705           if (size_varies)
4706             C_TYPE_VARIABLE_SIZE (type) = 1;
4707
4708           /* The GCC extension for zero-length arrays differs from
4709              ISO flexible array members in that sizeof yields zero.  */
4710           if (size && integer_zerop (size))
4711             {
4712               layout_type (type);
4713               TYPE_SIZE (type) = bitsize_zero_node;
4714               TYPE_SIZE_UNIT (type) = size_zero_node;
4715             }
4716           if (decl_context != PARM
4717               && (array_ptr_quals != NULL_TREE || array_parm_static))
4718             {
4719               error ("static or type qualifiers in non-parameter array declarator");
4720               array_ptr_quals = NULL_TREE;
4721               array_parm_static = 0;
4722             }
4723         }
4724       else if (TREE_CODE (declarator) == CALL_EXPR)
4725         {
4726           tree arg_types;
4727
4728           /* Declaring a function type.
4729              Make sure we have a valid type for the function to return.  */
4730           if (type == error_mark_node)
4731             continue;
4732
4733           size_varies = 0;
4734
4735           /* Warn about some types functions can't return.  */
4736
4737           if (TREE_CODE (type) == FUNCTION_TYPE)
4738             {
4739               error ("`%s' declared as function returning a function", name);
4740               type = integer_type_node;
4741             }
4742           if (TREE_CODE (type) == ARRAY_TYPE)
4743             {
4744               error ("`%s' declared as function returning an array", name);
4745               type = integer_type_node;
4746             }
4747
4748 #ifndef TRADITIONAL_RETURN_FLOAT
4749           /* Traditionally, declaring return type float means double.  */
4750
4751           if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4752             type = double_type_node;
4753 #endif /* TRADITIONAL_RETURN_FLOAT */
4754
4755           /* Construct the function type and go to the next
4756              inner layer of declarator.  */
4757
4758           arg_types = grokparms (TREE_OPERAND (declarator, 1),
4759                                  funcdef_flag
4760                                  /* Say it's a definition
4761                                     only for the CALL_EXPR
4762                                     closest to the identifier.  */
4763                                  && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4764           /* Type qualifiers before the return type of the function
4765              qualify the return type, not the function type.  */
4766           if (type_quals)
4767             {
4768               /* Type qualifiers on a function return type are normally
4769                  permitted by the standard but have no effect, so give a
4770                  warning at -W.  Qualifiers on a void return type have
4771                  meaning as a GNU extension, and are banned on function
4772                  definitions in ISO C.  FIXME: strictly we shouldn't
4773                  pedwarn for qualified void return types except on function
4774                  definitions, but not doing so could lead to the undesirable
4775                  state of a "volatile void" function return type not being
4776                  warned about, and a use of the function being compiled
4777                  with GNU semantics, with no diagnostics under -pedantic.  */
4778               if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4779                 pedwarn ("ISO C forbids qualified void function return type");
4780               else if (extra_warnings
4781                        && !(VOID_TYPE_P (type)
4782                             && type_quals == TYPE_QUAL_VOLATILE))
4783                 warning ("type qualifiers ignored on function return type");
4784
4785               type = c_build_qualified_type (type, type_quals);
4786             }
4787           type_quals = TYPE_UNQUALIFIED;
4788
4789           type = build_function_type (type, arg_types);
4790           declarator = TREE_OPERAND (declarator, 0);
4791
4792           /* Set the TYPE_CONTEXTs for each tagged type which is local to
4793              the formal parameter list of this FUNCTION_TYPE to point to
4794              the FUNCTION_TYPE node itself.  */
4795
4796           {
4797             tree link;
4798
4799             for (link = last_function_parm_tags;
4800                  link;
4801                  link = TREE_CHAIN (link))
4802               TYPE_CONTEXT (TREE_VALUE (link)) = type;
4803           }
4804         }
4805       else if (TREE_CODE (declarator) == INDIRECT_REF)
4806         {
4807           /* Merge any constancy or volatility into the target type
4808              for the pointer.  */
4809
4810           if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4811               && type_quals)
4812             pedwarn ("ISO C forbids qualified function types");
4813           if (type_quals)
4814             type = c_build_qualified_type (type, type_quals);
4815           type_quals = TYPE_UNQUALIFIED;
4816           size_varies = 0;
4817
4818           type = build_pointer_type (type);
4819
4820           /* Process a list of type modifier keywords
4821              (such as const or volatile) that were given inside the `*'.  */
4822
4823           if (TREE_TYPE (declarator))
4824             {
4825               tree typemodlist;
4826               int erred = 0;
4827
4828               constp = 0;
4829               volatilep = 0;
4830               restrictp = 0;
4831               for (typemodlist = TREE_TYPE (declarator); typemodlist;
4832                    typemodlist = TREE_CHAIN (typemodlist))
4833                 {
4834                   tree qualifier = TREE_VALUE (typemodlist);
4835
4836                   if (C_IS_RESERVED_WORD (qualifier))
4837                     {
4838                       if (C_RID_CODE (qualifier) == RID_CONST)
4839                         constp++;
4840                       else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4841                         volatilep++;
4842                       else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4843                         restrictp++;
4844                       else
4845                         erred++;
4846                     }
4847                   else
4848                     erred++;
4849                 }
4850
4851               if (erred)
4852                 error ("invalid type modifier within pointer declarator");
4853               if (constp > 1 && ! flag_isoc99)
4854                 pedwarn ("duplicate `const'");
4855               if (volatilep > 1 && ! flag_isoc99)
4856                 pedwarn ("duplicate `volatile'");
4857               if (restrictp > 1 && ! flag_isoc99)
4858                 pedwarn ("duplicate `restrict'");
4859
4860               type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4861                             | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4862                             | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4863             }
4864
4865           declarator = TREE_OPERAND (declarator, 0);
4866         }
4867       else
4868         abort ();
4869
4870     }
4871
4872   /* Now TYPE has the actual type.  */
4873
4874   /* Did array size calculations overflow?  */
4875
4876   if (TREE_CODE (type) == ARRAY_TYPE
4877       && COMPLETE_TYPE_P (type)
4878       && TREE_OVERFLOW (TYPE_SIZE (type)))
4879     {
4880       error ("size of array `%s' is too large", name);
4881       /* If we proceed with the array type as it is, we'll eventually
4882          crash in tree_low_cst().  */
4883       type = error_mark_node;
4884     }
4885
4886   /* If this is declaring a typedef name, return a TYPE_DECL.  */
4887
4888   if (specbits & (1 << (int) RID_TYPEDEF))
4889     {
4890       tree decl;
4891       /* Note that the grammar rejects storage classes
4892          in typenames, fields or parameters */
4893       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4894           && type_quals)
4895         pedwarn ("ISO C forbids qualified function types");
4896       if (type_quals)
4897         type = c_build_qualified_type (type, type_quals);
4898       decl = build_decl (TYPE_DECL, declarator, type);
4899       if ((specbits & (1 << (int) RID_SIGNED))
4900           || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4901         C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4902       decl_attributes (&decl, returned_attrs, 0);
4903       return decl;
4904     }
4905
4906   /* Detect the case of an array type of unspecified size
4907      which came, as such, direct from a typedef name.
4908      We must copy the type, so that each identifier gets
4909      a distinct type, so that each identifier's size can be
4910      controlled separately by its own initializer.  */
4911
4912   if (type != 0 && typedef_type != 0
4913       && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4914       && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4915     {
4916       type = build_array_type (TREE_TYPE (type), 0);
4917       if (size_varies)
4918         C_TYPE_VARIABLE_SIZE (type) = 1;
4919     }
4920
4921   /* If this is a type name (such as, in a cast or sizeof),
4922      compute the type and return it now.  */
4923
4924   if (decl_context == TYPENAME)
4925     {
4926       /* Note that the grammar rejects storage classes
4927          in typenames, fields or parameters */
4928       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4929           && type_quals)
4930         pedwarn ("ISO C forbids const or volatile function types");
4931       if (type_quals)
4932         type = c_build_qualified_type (type, type_quals);
4933       decl_attributes (&type, returned_attrs, 0);
4934       return type;
4935     }
4936
4937   /* Aside from typedefs and type names (handle above),
4938      `void' at top level (not within pointer)
4939      is allowed only in public variables.
4940      We don't complain about parms either, but that is because
4941      a better error message can be made later.  */
4942
4943   if (VOID_TYPE_P (type) && decl_context != PARM
4944       && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4945             && ((specbits & (1 << (int) RID_EXTERN))
4946                 || (current_binding_level == global_binding_level
4947                     && !(specbits
4948                          & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4949     {
4950       error ("variable or field `%s' declared void", name);
4951       type = integer_type_node;
4952     }
4953
4954   /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4955      or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE.  */
4956
4957   {
4958     tree decl;
4959
4960     if (decl_context == PARM)
4961       {
4962         tree type_as_written;
4963         tree promoted_type;
4964
4965         /* A parameter declared as an array of T is really a pointer to T.
4966            One declared as a function is really a pointer to a function.  */
4967
4968         if (TREE_CODE (type) == ARRAY_TYPE)
4969           {
4970             /* Transfer const-ness of array into that of type pointed to.  */
4971             type = TREE_TYPE (type);
4972             if (type_quals)
4973               type = c_build_qualified_type (type, type_quals);
4974             type = build_pointer_type (type);
4975             type_quals = TYPE_UNQUALIFIED;
4976             if (array_ptr_quals)
4977               {
4978                 tree new_ptr_quals, new_ptr_attrs;
4979                 int erred = 0;
4980                 split_specs_attrs (array_ptr_quals, &new_ptr_quals, &new_ptr_attrs);
4981                 /* We don't yet implement attributes in this context.  */
4982                 if (new_ptr_attrs != NULL_TREE)
4983                   warning ("attributes in parameter array declarator ignored");
4984
4985                 constp = 0;
4986                 volatilep = 0;
4987                 restrictp = 0;
4988                 for (; new_ptr_quals; new_ptr_quals = TREE_CHAIN (new_ptr_quals))
4989                   {
4990                     tree qualifier = TREE_VALUE (new_ptr_quals);
4991
4992                     if (C_IS_RESERVED_WORD (qualifier))
4993                       {
4994                         if (C_RID_CODE (qualifier) == RID_CONST)
4995                           constp++;
4996                         else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4997                           volatilep++;
4998                         else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4999                           restrictp++;
5000                         else
5001                           erred++;
5002                       }
5003                     else
5004                       erred++;
5005                   }
5006
5007                 if (erred)
5008                   error ("invalid type modifier within array declarator");
5009
5010                 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
5011                               | (restrictp ? TYPE_QUAL_RESTRICT : 0)
5012                               | (volatilep ? TYPE_QUAL_VOLATILE : 0));
5013               }
5014             size_varies = 0;
5015           }
5016         else if (TREE_CODE (type) == FUNCTION_TYPE)
5017           {
5018             if (pedantic && type_quals)
5019               pedwarn ("ISO C forbids qualified function types");
5020             if (type_quals)
5021               type = c_build_qualified_type (type, type_quals);
5022             type = build_pointer_type (type);
5023             type_quals = TYPE_UNQUALIFIED;
5024           }
5025         else if (type_quals)
5026           type = c_build_qualified_type (type, type_quals);
5027           
5028         type_as_written = type;
5029
5030         decl = build_decl (PARM_DECL, declarator, type);
5031         if (size_varies)
5032           C_DECL_VARIABLE_SIZE (decl) = 1;
5033
5034         /* Compute the type actually passed in the parmlist,
5035            for the case where there is no prototype.
5036            (For example, shorts and chars are passed as ints.)
5037            When there is a prototype, this is overridden later.  */
5038
5039         if (type == error_mark_node)
5040           promoted_type = type;
5041         else
5042           {
5043             promoted_type = simple_type_promotes_to (type);
5044             if (! promoted_type)
5045               promoted_type = type;
5046           }
5047
5048         DECL_ARG_TYPE (decl) = promoted_type;
5049         DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
5050       }
5051     else if (decl_context == FIELD)
5052       {
5053         /* Structure field.  It may not be a function.  */
5054
5055         if (TREE_CODE (type) == FUNCTION_TYPE)
5056           {
5057             error ("field `%s' declared as a function", name);
5058             type = build_pointer_type (type);
5059           }
5060         else if (TREE_CODE (type) != ERROR_MARK
5061                  && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
5062           {
5063             error ("field `%s' has incomplete type", name);
5064             type = error_mark_node;
5065           }
5066         /* Move type qualifiers down to element of an array.  */
5067         if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5068           {
5069             type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5070                                                              type_quals),
5071                                      TYPE_DOMAIN (type));
5072 #if 0
5073             /* Leave the field const or volatile as well.  */
5074             type_quals = TYPE_UNQUALIFIED;
5075 #endif
5076           }
5077         decl = build_decl (FIELD_DECL, declarator, type);
5078         DECL_NONADDRESSABLE_P (decl) = bitfield;
5079
5080         if (size_varies)
5081           C_DECL_VARIABLE_SIZE (decl) = 1;
5082       }
5083     else if (TREE_CODE (type) == FUNCTION_TYPE)
5084       {
5085         /* Every function declaration is "external"
5086            except for those which are inside a function body
5087            in which `auto' is used.
5088            That is a case not specified by ANSI C,
5089            and we use it for forward declarations for nested functions.  */
5090         int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
5091                           || current_binding_level == global_binding_level);
5092
5093         if (specbits & (1 << (int) RID_AUTO)
5094             && (pedantic || current_binding_level == global_binding_level))
5095           pedwarn ("invalid storage class for function `%s'", name);
5096         if (specbits & (1 << (int) RID_REGISTER))
5097           error ("invalid storage class for function `%s'", name);
5098         /* Function declaration not at top level.
5099            Storage classes other than `extern' are not allowed
5100            and `extern' makes no difference.  */
5101         if (current_binding_level != global_binding_level
5102             && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
5103             && pedantic)
5104           pedwarn ("invalid storage class for function `%s'", name);
5105
5106         decl = build_decl (FUNCTION_DECL, declarator, type);
5107         decl = build_decl_attribute_variant (decl, decl_attr);
5108
5109         DECL_LANG_SPECIFIC (decl) = (struct lang_decl *)
5110           ggc_alloc_cleared (sizeof (struct lang_decl));
5111
5112         if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
5113           pedwarn ("ISO C forbids qualified function types");
5114
5115         /* GNU C interprets a `volatile void' return type to indicate
5116            that the function does not return.  */
5117         if ((type_quals & TYPE_QUAL_VOLATILE)
5118             && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
5119           warning ("`noreturn' function returns non-void value");
5120
5121         if (extern_ref)
5122           DECL_EXTERNAL (decl) = 1;
5123         /* Record absence of global scope for `static' or `auto'.  */
5124         TREE_PUBLIC (decl)
5125           = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
5126
5127         if (defaulted_int)
5128           C_FUNCTION_IMPLICIT_INT (decl) = 1;
5129
5130         /* Record presence of `inline', if it is reasonable.  */
5131         if (MAIN_NAME_P (declarator))
5132           {
5133             if (inlinep)
5134               warning ("cannot inline function `main'");
5135           }
5136         else if (inlinep)
5137           {
5138             /* Assume that otherwise the function can be inlined.  */
5139             DECL_DECLARED_INLINE_P (decl) = 1;
5140
5141             /* Do not mark bare declarations as DECL_INLINE.  Doing so
5142                in the presence of multiple declarations can result in
5143                the abstract origin pointing between the declarations,
5144                which will confuse dwarf2out.  */
5145             if (initialized)
5146               {
5147                 DECL_INLINE (decl) = 1;
5148                 if (specbits & (1 << (int) RID_EXTERN))
5149                   current_extern_inline = 1;
5150               }
5151           }
5152         /* If -finline-functions, assume it can be inlined.  This does
5153            two things: let the function be deferred until it is actually
5154            needed, and let dwarf2 know that the function is inlinable.  */
5155         else if (flag_inline_trees == 2 && initialized)
5156           {
5157             DECL_INLINE (decl) = 1;
5158             DECL_DECLARED_INLINE_P (decl) = 0;
5159           }
5160       }
5161     else
5162       {
5163         /* It's a variable.  */
5164         /* An uninitialized decl with `extern' is a reference.  */
5165         int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
5166
5167         /* Move type qualifiers down to element of an array.  */
5168         if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5169           {
5170             int saved_align = TYPE_ALIGN(type);
5171             type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5172                                                              type_quals),
5173                                      TYPE_DOMAIN (type));
5174             TYPE_ALIGN (type) = saved_align;
5175 #if 0 /* Leave the variable const or volatile as well.  */
5176             type_quals = TYPE_UNQUALIFIED;
5177 #endif
5178           }
5179         else if (type_quals)
5180           type = c_build_qualified_type (type, type_quals);
5181           
5182         decl = build_decl (VAR_DECL, declarator, type);
5183         if (size_varies)
5184           C_DECL_VARIABLE_SIZE (decl) = 1;
5185
5186         if (inlinep)
5187           pedwarn_with_decl (decl, "variable `%s' declared `inline'");
5188
5189         DECL_EXTERNAL (decl) = extern_ref;
5190         /* At top level, the presence of a `static' or `register' storage
5191            class specifier, or the absence of all storage class specifiers
5192            makes this declaration a definition (perhaps tentative).  Also,
5193            the absence of both `static' and `register' makes it public.  */
5194         if (current_binding_level == global_binding_level)
5195           {
5196             TREE_PUBLIC (decl)
5197               = !(specbits
5198                   & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
5199             TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
5200           }
5201         /* Not at top level, only `static' makes a static definition.  */
5202         else
5203           {
5204             TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
5205             TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
5206           }
5207       }
5208
5209     /* Record `register' declaration for warnings on &
5210        and in case doing stupid register allocation.  */
5211
5212     if (specbits & (1 << (int) RID_REGISTER))
5213       DECL_REGISTER (decl) = 1;
5214
5215     /* Record constancy and volatility.  */
5216     c_apply_type_quals_to_decl (type_quals, decl);
5217
5218     /* If a type has volatile components, it should be stored in memory.
5219        Otherwise, the fact that those components are volatile
5220        will be ignored, and would even crash the compiler.  */
5221     if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
5222       mark_addressable (decl);
5223
5224     decl_attributes (&decl, returned_attrs, 0);
5225
5226     return decl;
5227   }
5228 }
5229 \f
5230 /* Decode the parameter-list info for a function type or function definition.
5231    The argument is the value returned by `get_parm_info' (or made in parse.y
5232    if there is an identifier list instead of a parameter decl list).
5233    These two functions are separate because when a function returns
5234    or receives functions then each is called multiple times but the order
5235    of calls is different.  The last call to `grokparms' is always the one
5236    that contains the formal parameter names of a function definition.
5237
5238    Store in `last_function_parms' a chain of the decls of parms.
5239    Also store in `last_function_parm_tags' a chain of the struct, union,
5240    and enum tags declared among the parms.
5241
5242    Return a list of arg types to use in the FUNCTION_TYPE for this function.
5243
5244    FUNCDEF_FLAG is nonzero for a function definition, 0 for
5245    a mere declaration.  A nonempty identifier-list gets an error message
5246    when FUNCDEF_FLAG is zero.  */
5247
5248 static tree
5249 grokparms (parms_info, funcdef_flag)
5250      tree parms_info;
5251      int funcdef_flag;
5252 {
5253   tree first_parm = TREE_CHAIN (parms_info);
5254
5255   last_function_parms = TREE_PURPOSE (parms_info);
5256   last_function_parm_tags = TREE_VALUE (parms_info);
5257
5258   if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
5259       && !in_system_header)
5260     warning ("function declaration isn't a prototype");
5261
5262   if (first_parm != 0
5263       && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
5264     {
5265       if (! funcdef_flag)
5266         pedwarn ("parameter names (without types) in function declaration");
5267
5268       last_function_parms = first_parm;
5269       return 0;
5270     }
5271   else
5272     {
5273       tree parm;
5274       tree typelt;
5275       /* We no longer test FUNCDEF_FLAG.
5276          If the arg types are incomplete in a declaration,
5277          they must include undefined tags.
5278          These tags can never be defined in the scope of the declaration,
5279          so the types can never be completed,
5280          and no call can be compiled successfully.  */
5281 #if 0
5282       /* In a fcn definition, arg types must be complete.  */
5283       if (funcdef_flag)
5284 #endif
5285         for (parm = last_function_parms, typelt = first_parm;
5286              parm;
5287              parm = TREE_CHAIN (parm))
5288           /* Skip over any enumeration constants declared here.  */
5289           if (TREE_CODE (parm) == PARM_DECL)
5290             {
5291               /* Barf if the parameter itself has an incomplete type.  */
5292               tree type = TREE_VALUE (typelt);
5293               if (type == error_mark_node)
5294                 continue;
5295               if (!COMPLETE_TYPE_P (type))
5296                 {
5297                   if (funcdef_flag && DECL_NAME (parm) != 0)
5298                     error ("parameter `%s' has incomplete type",
5299                            IDENTIFIER_POINTER (DECL_NAME (parm)));
5300                   else
5301                     warning ("parameter has incomplete type");
5302                   if (funcdef_flag)
5303                     {
5304                       TREE_VALUE (typelt) = error_mark_node;
5305                       TREE_TYPE (parm) = error_mark_node;
5306                     }
5307                 }
5308 #if 0
5309               /* This has been replaced by parm_tags_warning, which
5310                  uses a more accurate criterion for what to warn
5311                  about.  */
5312               else
5313                 {
5314                   /* Now warn if is a pointer to an incomplete type.  */
5315                   while (TREE_CODE (type) == POINTER_TYPE
5316                          || TREE_CODE (type) == REFERENCE_TYPE)
5317                     type = TREE_TYPE (type);
5318                   type = TYPE_MAIN_VARIANT (type);
5319                   if (!COMPLETE_TYPE_P (type))
5320                     {
5321                       if (DECL_NAME (parm) != 0)
5322                         warning ("parameter `%s' points to incomplete type",
5323                                  IDENTIFIER_POINTER (DECL_NAME (parm)));
5324                       else
5325                         warning ("parameter points to incomplete type");
5326                     }
5327                 }
5328 #endif
5329               typelt = TREE_CHAIN (typelt);
5330             }
5331
5332       return first_parm;
5333     }
5334 }
5335
5336 /* Return a tree_list node with info on a parameter list just parsed.
5337    The TREE_PURPOSE is a chain of decls of those parms.
5338    The TREE_VALUE is a list of structure, union and enum tags defined.
5339    The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5340    This tree_list node is later fed to `grokparms'.
5341
5342    VOID_AT_END nonzero means append `void' to the end of the type-list.
5343    Zero means the parmlist ended with an ellipsis so don't append `void'.  */
5344
5345 tree
5346 get_parm_info (void_at_end)
5347      int void_at_end;
5348 {
5349   tree decl, t;
5350   tree types = 0;
5351   int erred = 0;
5352   tree tags = gettags ();
5353   tree parms = getdecls ();
5354   tree new_parms = 0;
5355   tree order = current_binding_level->parm_order;
5356
5357   /* Just `void' (and no ellipsis) is special.  There are really no parms.
5358      But if the `void' is qualified (by `const' or `volatile') or has a
5359      storage class specifier (`register'), then the behavior is undefined;
5360      by not counting it as the special case of `void' we will cause an
5361      error later.  Typedefs for `void' are OK (see DR#157).  */
5362   if (void_at_end && parms != 0
5363       && TREE_CHAIN (parms) == 0
5364       && VOID_TYPE_P (TREE_TYPE (parms))
5365       && ! TREE_THIS_VOLATILE (parms)
5366       && ! TREE_READONLY (parms)
5367       && ! DECL_REGISTER (parms)
5368       && DECL_NAME (parms) == 0)
5369     {
5370       parms = NULL_TREE;
5371       storedecls (NULL_TREE);
5372       return tree_cons (NULL_TREE, NULL_TREE,
5373                         tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5374     }
5375
5376   /* Extract enumerator values and other non-parms declared with the parms.
5377      Likewise any forward parm decls that didn't have real parm decls.  */
5378   for (decl = parms; decl;)
5379     {
5380       tree next = TREE_CHAIN (decl);
5381
5382       if (TREE_CODE (decl) != PARM_DECL)
5383         {
5384           TREE_CHAIN (decl) = new_parms;
5385           new_parms = decl;
5386         }
5387       else if (TREE_ASM_WRITTEN (decl))
5388         {
5389           error_with_decl (decl,
5390                            "parameter `%s' has just a forward declaration");
5391           TREE_CHAIN (decl) = new_parms;
5392           new_parms = decl;
5393         }
5394       decl = next;
5395     }
5396
5397   /* Put the parm decls back in the order they were in in the parm list.  */
5398   for (t = order; t; t = TREE_CHAIN (t))
5399     {
5400       if (TREE_CHAIN (t))
5401         TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5402       else
5403         TREE_CHAIN (TREE_VALUE (t)) = 0;
5404     }
5405
5406   new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5407                        new_parms);
5408
5409   /* Store the parmlist in the binding level since the old one
5410      is no longer a valid list.  (We have changed the chain pointers.)  */
5411   storedecls (new_parms);
5412
5413   for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5414     /* There may also be declarations for enumerators if an enumeration
5415        type is declared among the parms.  Ignore them here.  */
5416     if (TREE_CODE (decl) == PARM_DECL)
5417       {
5418         /* Since there is a prototype,
5419            args are passed in their declared types.  */
5420         tree type = TREE_TYPE (decl);
5421         DECL_ARG_TYPE (decl) = type;
5422         if (PROMOTE_PROTOTYPES
5423             && INTEGRAL_TYPE_P (type)
5424             && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5425           DECL_ARG_TYPE (decl) = integer_type_node;
5426
5427         types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5428         if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
5429             && DECL_NAME (decl) == 0)
5430           {
5431             error ("`void' in parameter list must be the entire list");
5432             erred = 1;
5433           }
5434       }
5435
5436   if (void_at_end)
5437     return tree_cons (new_parms, tags,
5438                       nreverse (tree_cons (NULL_TREE, void_type_node, types)));
5439
5440   return tree_cons (new_parms, tags, nreverse (types));
5441 }
5442
5443 /* At end of parameter list, warn about any struct, union or enum tags
5444    defined within.  Do so because these types cannot ever become complete.  */
5445
5446 void
5447 parmlist_tags_warning ()
5448 {
5449   tree elt;
5450   static int already;
5451
5452   for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5453     {
5454       enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5455       /* An anonymous union parm type is meaningful as a GNU extension.
5456          So don't warn for that.  */
5457       if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5458         continue;
5459       if (TREE_PURPOSE (elt) != 0)
5460         {
5461           if (code == RECORD_TYPE)
5462             warning ("`struct %s' declared inside parameter list",
5463                      IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5464           else if (code == UNION_TYPE)
5465             warning ("`union %s' declared inside parameter list",
5466                      IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5467           else
5468             warning ("`enum %s' declared inside parameter list",
5469                      IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5470         }
5471       else
5472         {
5473           /* For translation these need to be separate warnings */
5474           if (code == RECORD_TYPE)
5475             warning ("anonymous struct declared inside parameter list");
5476           else if (code == UNION_TYPE)
5477             warning ("anonymous union declared inside parameter list");
5478           else
5479             warning ("anonymous enum declared inside parameter list");
5480         }
5481       if (! already)
5482         {
5483           warning ("its scope is only this definition or declaration, which is probably not what you want");
5484           already = 1;
5485         }
5486     }
5487 }
5488 \f
5489 /* Get the struct, enum or union (CODE says which) with tag NAME.
5490    Define the tag as a forward-reference if it is not defined.  */
5491
5492 tree
5493 xref_tag (code, name)
5494      enum tree_code code;
5495      tree name;
5496 {
5497   /* If a cross reference is requested, look up the type
5498      already defined for this tag and return it.  */
5499
5500   tree ref = lookup_tag (code, name, current_binding_level, 0);
5501   /* If this is the right type of tag, return what we found.
5502      (This reference will be shadowed by shadow_tag later if appropriate.)
5503      If this is the wrong type of tag, do not return it.  If it was the
5504      wrong type in the same binding level, we will have had an error
5505      message already; if in a different binding level and declaring
5506      a name, pending_xref_error will give an error message; but if in a
5507      different binding level and not declaring a name, this tag should
5508      shadow the previous declaration of a different type of tag, and
5509      this would not work properly if we return the reference found.
5510      (For example, with "struct foo" in an outer scope, "union foo;"
5511      must shadow that tag with a new one of union type.)  */
5512   if (ref && TREE_CODE (ref) == code)
5513     return ref;
5514
5515   /* If no such tag is yet defined, create a forward-reference node
5516      and record it as the "definition".
5517      When a real declaration of this type is found,
5518      the forward-reference will be altered into a real type.  */
5519
5520   ref = make_node (code);
5521   if (code == ENUMERAL_TYPE)
5522     {
5523       /* Give the type a default layout like unsigned int
5524          to avoid crashing if it does not get defined.  */
5525       TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5526       TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5527       TYPE_USER_ALIGN (ref) = 0;
5528       TREE_UNSIGNED (ref) = 1;
5529       TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5530       TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5531       TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5532     }
5533
5534   pushtag (name, ref);
5535
5536   return ref;
5537 }
5538 \f
5539 /* Make sure that the tag NAME is defined *in the current binding level*
5540    at least as a forward reference.
5541    CODE says which kind of tag NAME ought to be.  */
5542
5543 tree
5544 start_struct (code, name)
5545      enum tree_code code;
5546      tree name;
5547 {
5548   /* If there is already a tag defined at this binding level
5549      (as a forward reference), just return it.  */
5550
5551   tree ref = 0;
5552
5553   if (name != 0)
5554     ref = lookup_tag (code, name, current_binding_level, 1);
5555   if (ref && TREE_CODE (ref) == code)
5556     {
5557       C_TYPE_BEING_DEFINED (ref) = 1;
5558       TYPE_PACKED (ref) = flag_pack_struct;
5559       if (TYPE_FIELDS (ref))
5560         {
5561           if (code == UNION_TYPE)
5562             error ("redefinition of `union %s'",
5563                    IDENTIFIER_POINTER (name));
5564           else
5565             error ("redefinition of `struct %s'",
5566                    IDENTIFIER_POINTER (name));
5567         }  
5568
5569       return ref;
5570     }
5571
5572   /* Otherwise create a forward-reference just so the tag is in scope.  */
5573
5574   ref = make_node (code);
5575   pushtag (name, ref);
5576   C_TYPE_BEING_DEFINED (ref) = 1;
5577   TYPE_PACKED (ref) = flag_pack_struct;
5578   return ref;
5579 }
5580
5581 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5582    of a structure component, returning a FIELD_DECL node.
5583    WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5584
5585    This is done during the parsing of the struct declaration.
5586    The FIELD_DECL nodes are chained together and the lot of them
5587    are ultimately passed to `build_struct' to make the RECORD_TYPE node.  */
5588
5589 tree
5590 grokfield (filename, line, declarator, declspecs, width)
5591      const char *filename ATTRIBUTE_UNUSED;
5592      int line ATTRIBUTE_UNUSED;
5593      tree declarator, declspecs, width;
5594 {
5595   tree value;
5596
5597   if (declarator == NULL_TREE && width == NULL_TREE)
5598     {
5599       /* This is an unnamed decl.  We only support unnamed
5600          structs/unions, so check for other things and refuse them.  */
5601       tree type = TREE_VALUE (declspecs);
5602
5603       if (TREE_CODE (type) == TYPE_DECL)
5604         type = TREE_TYPE (type);
5605       if (TREE_CODE (type) != RECORD_TYPE && TREE_CODE (type) != UNION_TYPE)
5606         {
5607           error ("unnamed fields of type other than struct or union are not allowed");
5608           return NULL_TREE;
5609         }
5610     }
5611
5612   value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5613
5614   finish_decl (value, NULL_TREE, NULL_TREE);
5615   DECL_INITIAL (value) = width;
5616
5617   maybe_objc_check_decl (value);
5618   return value;
5619 }
5620 \f
5621 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5622    FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5623    ATTRIBUTES are attributes to be applied to the structure.  */
5624
5625 tree
5626 finish_struct (t, fieldlist, attributes)
5627      tree t;
5628      tree fieldlist;
5629      tree attributes;
5630 {
5631   tree x;
5632   int toplevel = global_binding_level == current_binding_level;
5633   int saw_named_field;
5634
5635   /* If this type was previously laid out as a forward reference,
5636      make sure we lay it out again.  */
5637
5638   TYPE_SIZE (t) = 0;
5639
5640   decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5641
5642   /* Nameless union parm types are useful as GCC extension.  */
5643   if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5644     /* Otherwise, warn about any struct or union def. in parmlist.  */
5645     if (in_parm_level_p ())
5646       {
5647         if (pedantic)
5648           pedwarn ("%s defined inside parms",
5649                    TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5650         else if (! flag_traditional)
5651           warning ("%s defined inside parms",
5652                    TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5653       }
5654
5655   if (pedantic)
5656     {
5657       for (x = fieldlist; x; x = TREE_CHAIN (x))
5658         if (DECL_NAME (x) != 0)
5659           break;
5660
5661       if (x == 0)
5662         pedwarn ("%s has no %s",
5663                  TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5664                  fieldlist ? _("named members") : _("members"));
5665     }
5666
5667   /* Install struct as DECL_CONTEXT of each field decl.
5668      Also process specified field sizes,m which is found in the DECL_INITIAL.
5669      Store 0 there, except for ": 0" fields (so we can find them
5670      and delete them, below).  */
5671
5672   saw_named_field = 0;
5673   for (x = fieldlist; x; x = TREE_CHAIN (x))
5674     {
5675       DECL_CONTEXT (x) = t;
5676       DECL_PACKED (x) |= TYPE_PACKED (t);
5677
5678       /* If any field is const, the structure type is pseudo-const.  */
5679       if (TREE_READONLY (x))
5680         C_TYPE_FIELDS_READONLY (t) = 1;
5681       else
5682         {
5683           /* A field that is pseudo-const makes the structure likewise.  */
5684           tree t1 = TREE_TYPE (x);
5685           while (TREE_CODE (t1) == ARRAY_TYPE)
5686             t1 = TREE_TYPE (t1);
5687           if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5688               && C_TYPE_FIELDS_READONLY (t1))
5689             C_TYPE_FIELDS_READONLY (t) = 1;
5690         }
5691
5692       /* Any field that is volatile means variables of this type must be
5693          treated in some ways as volatile.  */
5694       if (TREE_THIS_VOLATILE (x))
5695         C_TYPE_FIELDS_VOLATILE (t) = 1;
5696
5697       /* Any field of nominal variable size implies structure is too.  */
5698       if (C_DECL_VARIABLE_SIZE (x))
5699         C_TYPE_VARIABLE_SIZE (t) = 1;
5700
5701       /* Detect invalid nested redefinition.  */
5702       if (TREE_TYPE (x) == t)
5703         error ("nested redefinition of `%s'",
5704                IDENTIFIER_POINTER (TYPE_NAME (t)));
5705
5706       /* Detect invalid bit-field size.  */
5707       if (DECL_INITIAL (x))
5708         STRIP_NOPS (DECL_INITIAL (x));
5709       if (DECL_INITIAL (x))
5710         {
5711           if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5712             constant_expression_warning (DECL_INITIAL (x));
5713           else
5714             {
5715               error_with_decl (x,
5716                                "bit-field `%s' width not an integer constant");
5717               DECL_INITIAL (x) = NULL;
5718             }
5719         }
5720
5721       /* Detect invalid bit-field type.  */
5722       if (DECL_INITIAL (x)
5723           && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5724           && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5725           && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5726         {
5727           error_with_decl (x, "bit-field `%s' has invalid type");
5728           DECL_INITIAL (x) = NULL;
5729         }
5730
5731       if (DECL_INITIAL (x) && pedantic
5732           && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5733           && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5734           && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5735           /* Accept an enum that's equivalent to int or unsigned int.  */
5736           && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5737                && (TYPE_PRECISION (TREE_TYPE (x))
5738                    == TYPE_PRECISION (integer_type_node))))
5739         pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5740
5741       /* Detect and ignore out of range field width and process valid
5742          field widths.  */
5743       if (DECL_INITIAL (x))
5744         {
5745           int max_width
5746             = (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node
5747                ? CHAR_TYPE_SIZE : TYPE_PRECISION (TREE_TYPE (x)));
5748
5749           if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5750             error_with_decl (x, "negative width in bit-field `%s'");
5751           else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5752             pedwarn_with_decl (x, "width of `%s' exceeds its type");
5753           else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5754             error_with_decl (x, "zero width for bit-field `%s'");
5755           else
5756             {
5757               /* The test above has assured us that TREE_INT_CST_HIGH is 0.  */
5758               unsigned HOST_WIDE_INT width
5759                 = tree_low_cst (DECL_INITIAL (x), 1);
5760
5761               if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5762                   && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5763                                              TREE_UNSIGNED (TREE_TYPE (x)))
5764                       || (width
5765                           < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5766                                            TREE_UNSIGNED (TREE_TYPE (x))))))
5767                 warning_with_decl (x,
5768                                    "`%s' is narrower than values of its type");
5769
5770               DECL_SIZE (x) = bitsize_int (width);
5771               DECL_BIT_FIELD (x) = 1;
5772               SET_DECL_C_BIT_FIELD (x);
5773
5774               if (width == 0
5775                   && ! (* targetm.ms_bitfield_layout_p) (t))
5776                 {
5777                   /* field size 0 => force desired amount of alignment.  */
5778 #ifdef EMPTY_FIELD_BOUNDARY
5779                   DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5780 #endif
5781 #ifdef PCC_BITFIELD_TYPE_MATTERS
5782                   if (PCC_BITFIELD_TYPE_MATTERS)
5783                     {
5784                       DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5785                                             TYPE_ALIGN (TREE_TYPE (x)));
5786                       DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5787                     }
5788 #endif
5789                 }
5790             }
5791         }
5792
5793       else if (TREE_TYPE (x) != error_mark_node)
5794         {
5795           unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5796                                     : TYPE_ALIGN (TREE_TYPE (x)));
5797
5798           /* Non-bit-fields are aligned for their type, except packed
5799              fields which require only BITS_PER_UNIT alignment.  */
5800           DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5801           if (! DECL_PACKED (x))
5802             DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5803         }
5804
5805       DECL_INITIAL (x) = 0;
5806
5807       /* Detect flexible array member in an invalid context.  */
5808       if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5809           && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5810           && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5811           && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5812         {
5813           if (TREE_CODE (t) == UNION_TYPE)
5814             error_with_decl (x, "flexible array member in union");
5815           else if (TREE_CHAIN (x) != NULL_TREE)
5816             error_with_decl (x, "flexible array member not at end of struct");
5817           else if (! saw_named_field)
5818             error_with_decl (x, "flexible array member in otherwise empty struct");
5819         }
5820       if (DECL_NAME (x))
5821         saw_named_field = 1;
5822     }
5823
5824   /* Delete all duplicate fields from the fieldlist */
5825   for (x = fieldlist; x && TREE_CHAIN (x);)
5826     /* Anonymous fields aren't duplicates.  */
5827     if (DECL_NAME (TREE_CHAIN (x)) == 0)
5828       x = TREE_CHAIN (x);
5829     else
5830       {
5831         tree y = fieldlist;
5832
5833         while (1)
5834           {
5835             if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5836               break;
5837             if (y == x)
5838               break;
5839             y = TREE_CHAIN (y);
5840           }
5841         if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5842           {
5843             error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5844             TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5845           }
5846         else
5847           x = TREE_CHAIN (x);
5848       }
5849
5850   /* Now we have the nearly final fieldlist.  Record it,
5851      then lay out the structure or union (including the fields).  */
5852
5853   TYPE_FIELDS (t) = fieldlist;
5854
5855   layout_type (t);
5856
5857   /* Delete all zero-width bit-fields from the fieldlist */
5858   {
5859     tree *fieldlistp = &fieldlist;
5860     while (*fieldlistp)
5861       if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5862         *fieldlistp = TREE_CHAIN (*fieldlistp);
5863       else
5864         fieldlistp = &TREE_CHAIN (*fieldlistp);
5865   }
5866
5867   /* Now we have the truly final field list.
5868      Store it in this type and in the variants.  */
5869
5870   TYPE_FIELDS (t) = fieldlist;
5871
5872   for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5873     {
5874       TYPE_FIELDS (x) = TYPE_FIELDS (t);
5875       TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5876       TYPE_ALIGN (x) = TYPE_ALIGN (t);
5877       TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5878     }
5879
5880   /* If this was supposed to be a transparent union, but we can't
5881      make it one, warn and turn off the flag.  */
5882   if (TREE_CODE (t) == UNION_TYPE
5883       && TYPE_TRANSPARENT_UNION (t)
5884       && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5885     {
5886       TYPE_TRANSPARENT_UNION (t) = 0;
5887       warning ("union cannot be made transparent");
5888     }
5889
5890   /* If this structure or union completes the type of any previous
5891      variable declaration, lay it out and output its rtl.  */
5892
5893   if (current_binding_level->n_incomplete != 0)
5894     {
5895       tree decl;
5896       for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5897         {
5898           if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5899               && TREE_CODE (decl) != TYPE_DECL)
5900             {
5901               layout_decl (decl, 0);
5902               /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
5903               maybe_objc_check_decl (decl);
5904               rest_of_decl_compilation (decl, NULL, toplevel, 0);
5905               if (! toplevel)
5906                 expand_decl (decl);
5907               if (--current_binding_level->n_incomplete == 0)
5908                 break;
5909             }
5910           else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5911                    && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5912             {
5913               tree element = TREE_TYPE (decl);
5914               while (TREE_CODE (element) == ARRAY_TYPE)
5915                 element = TREE_TYPE (element);
5916               if (element == t)
5917                 {
5918                   layout_array_type (TREE_TYPE (decl));
5919                   if (TREE_CODE (decl) != TYPE_DECL)
5920                     {
5921                       layout_decl (decl, 0);
5922                       maybe_objc_check_decl (decl);
5923                       rest_of_decl_compilation (decl, NULL, toplevel, 0);
5924                       if (! toplevel)
5925                         expand_decl (decl);
5926                     }
5927                   if (--current_binding_level->n_incomplete == 0)
5928                     break;
5929                 }
5930             }
5931         }
5932     }
5933
5934   /* Finish debugging output for this type.  */
5935   rest_of_type_compilation (t, toplevel);
5936
5937   return t;
5938 }
5939
5940 /* Lay out the type T, and its element type, and so on.  */
5941
5942 static void
5943 layout_array_type (t)
5944      tree t;
5945 {
5946   if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5947     layout_array_type (TREE_TYPE (t));
5948   layout_type (t);
5949 }
5950 \f
5951 /* Begin compiling the definition of an enumeration type.
5952    NAME is its name (or null if anonymous).
5953    Returns the type object, as yet incomplete.
5954    Also records info about it so that build_enumerator
5955    may be used to declare the individual values as they are read.  */
5956
5957 tree
5958 start_enum (name)
5959      tree name;
5960 {
5961   tree enumtype = 0;
5962
5963   /* If this is the real definition for a previous forward reference,
5964      fill in the contents in the same object that used to be the
5965      forward reference.  */
5966
5967   if (name != 0)
5968     enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5969
5970   if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5971     {
5972       enumtype = make_node (ENUMERAL_TYPE);
5973       pushtag (name, enumtype);
5974     }
5975
5976   C_TYPE_BEING_DEFINED (enumtype) = 1;
5977
5978   if (TYPE_VALUES (enumtype) != 0)
5979     {
5980       /* This enum is a named one that has been declared already.  */
5981       error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5982
5983       /* Completely replace its old definition.
5984          The old enumerators remain defined, however.  */
5985       TYPE_VALUES (enumtype) = 0;
5986     }
5987
5988   enum_next_value = integer_zero_node;
5989   enum_overflow = 0;
5990
5991   if (flag_short_enums)
5992     TYPE_PACKED (enumtype) = 1;
5993
5994   return enumtype;
5995 }
5996
5997 /* After processing and defining all the values of an enumeration type,
5998    install their decls in the enumeration type and finish it off.
5999    ENUMTYPE is the type object, VALUES a list of decl-value pairs,
6000    and ATTRIBUTES are the specified attributes.
6001    Returns ENUMTYPE.  */
6002
6003 tree
6004 finish_enum (enumtype, values, attributes)
6005      tree enumtype;
6006      tree values;
6007      tree attributes;
6008 {
6009   tree pair, tem;
6010   tree minnode = 0, maxnode = 0, enum_value_type;
6011   int precision, unsign;
6012   int toplevel = (global_binding_level == current_binding_level);
6013
6014   if (in_parm_level_p ())
6015     warning ("enum defined inside parms");
6016
6017   decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
6018
6019   /* Calculate the maximum value of any enumerator in this type.  */
6020
6021   if (values == error_mark_node)
6022     minnode = maxnode = integer_zero_node;
6023   else
6024     {
6025       minnode = maxnode = TREE_VALUE (values);
6026       for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
6027         {
6028           tree value = TREE_VALUE (pair);
6029           if (tree_int_cst_lt (maxnode, value))
6030             maxnode = value;
6031           if (tree_int_cst_lt (value, minnode))
6032             minnode = value;
6033         }
6034     }
6035
6036   /* Construct the final type of this enumeration.  It is the same
6037      as one of the integral types - the narrowest one that fits, except
6038      that normally we only go as narrow as int - and signed iff any of
6039      the values are negative.  */
6040   unsign = (tree_int_cst_sgn (minnode) >= 0);
6041   precision = MAX (min_precision (minnode, unsign),
6042                    min_precision (maxnode, unsign));
6043   if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
6044     {
6045       tree narrowest = type_for_size (precision, unsign);
6046       if (narrowest == 0)
6047         {
6048           warning ("enumeration values exceed range of largest integer");
6049           narrowest = long_long_integer_type_node;
6050         }
6051
6052       precision = TYPE_PRECISION (narrowest);
6053     }
6054   else
6055     precision = TYPE_PRECISION (integer_type_node);
6056
6057   if (precision == TYPE_PRECISION (integer_type_node))
6058     enum_value_type = type_for_size (precision, 0);
6059   else
6060     enum_value_type = enumtype;
6061
6062   TYPE_MIN_VALUE (enumtype) = minnode;
6063   TYPE_MAX_VALUE (enumtype) = maxnode;
6064   TYPE_PRECISION (enumtype) = precision;
6065   TREE_UNSIGNED (enumtype) = unsign;
6066   TYPE_SIZE (enumtype) = 0;
6067   layout_type (enumtype);
6068
6069   if (values != error_mark_node)
6070     {
6071       /* Change the type of the enumerators to be the enum type.  We
6072          need to do this irrespective of the size of the enum, for
6073          proper type checking.  Replace the DECL_INITIALs of the
6074          enumerators, and the value slots of the list, with copies
6075          that have the enum type; they cannot be modified in place
6076          because they may be shared (e.g.  integer_zero_node) Finally,
6077          change the purpose slots to point to the names of the decls.  */
6078       for (pair = values; pair; pair = TREE_CHAIN (pair))
6079         {
6080           tree enu = TREE_PURPOSE (pair);
6081
6082           TREE_TYPE (enu) = enumtype;
6083           DECL_SIZE (enu) = TYPE_SIZE (enumtype);
6084           DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
6085           DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
6086           DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
6087           DECL_MODE (enu) = TYPE_MODE (enumtype);
6088
6089           /* The ISO C Standard mandates enumerators to have type int,
6090              even though the underlying type of an enum type is
6091              unspecified.  Here we convert any enumerators that fit in
6092              an int to type int, to avoid promotions to unsigned types
6093              when comparing integers with enumerators that fit in the
6094              int range.  When -pedantic is given, build_enumerator()
6095              would have already taken care of those that don't fit.  */
6096           if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
6097             DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
6098           else
6099             DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
6100
6101           TREE_PURPOSE (pair) = DECL_NAME (enu);
6102           TREE_VALUE (pair) = DECL_INITIAL (enu);
6103         }
6104
6105       TYPE_VALUES (enumtype) = values;
6106     }
6107
6108   /* Fix up all variant types of this enum type.  */
6109   for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
6110     {
6111       if (tem == enumtype)
6112         continue;
6113       TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
6114       TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
6115       TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
6116       TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
6117       TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
6118       TYPE_MODE (tem) = TYPE_MODE (enumtype);
6119       TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
6120       TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
6121       TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
6122       TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
6123     }
6124
6125   /* Finish debugging output for this type.  */
6126   rest_of_type_compilation (enumtype, toplevel);
6127
6128   return enumtype;
6129 }
6130
6131 /* Build and install a CONST_DECL for one value of the
6132    current enumeration type (one that was begun with start_enum).
6133    Return a tree-list containing the CONST_DECL and its value.
6134    Assignment of sequential values by default is handled here.  */
6135
6136 tree
6137 build_enumerator (name, value)
6138      tree name, value;
6139 {
6140   tree decl, type;
6141
6142   /* Validate and default VALUE.  */
6143
6144   /* Remove no-op casts from the value.  */
6145   if (value)
6146     STRIP_TYPE_NOPS (value);
6147
6148   if (value != 0)
6149     {
6150       if (TREE_CODE (value) == INTEGER_CST)
6151         {
6152           value = default_conversion (value);
6153           constant_expression_warning (value);
6154         }
6155       else
6156         {
6157           error ("enumerator value for `%s' not integer constant",
6158                  IDENTIFIER_POINTER (name));
6159           value = 0;
6160         }
6161     }
6162
6163   /* Default based on previous value.  */
6164   /* It should no longer be possible to have NON_LVALUE_EXPR
6165      in the default.  */
6166   if (value == 0)
6167     {
6168       value = enum_next_value;
6169       if (enum_overflow)
6170         error ("overflow in enumeration values");
6171     }
6172
6173   if (pedantic && ! int_fits_type_p (value, integer_type_node))
6174     {
6175       pedwarn ("ISO C restricts enumerator values to range of `int'");
6176       value = convert (integer_type_node, value);
6177     }
6178
6179   /* Set basis for default for next value.  */
6180   enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
6181   enum_overflow = tree_int_cst_lt (enum_next_value, value);
6182
6183   /* Now create a declaration for the enum value name.  */
6184
6185   type = TREE_TYPE (value);
6186   type = type_for_size (MAX (TYPE_PRECISION (type),
6187                              TYPE_PRECISION (integer_type_node)),
6188                         ((flag_traditional
6189                           || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
6190                          && TREE_UNSIGNED (type)));
6191
6192   decl = build_decl (CONST_DECL, name, type);
6193   DECL_INITIAL (decl) = convert (type, value);
6194   pushdecl (decl);
6195
6196   return tree_cons (decl, value, NULL_TREE);
6197 }
6198
6199 \f
6200 /* Create the FUNCTION_DECL for a function definition.
6201    DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
6202    the declaration; they describe the function's name and the type it returns,
6203    but twisted together in a fashion that parallels the syntax of C.
6204
6205    This function creates a binding context for the function body
6206    as well as setting up the FUNCTION_DECL in current_function_decl.
6207
6208    Returns 1 on success.  If the DECLARATOR is not suitable for a function
6209    (it defines a datum instead), we return 0, which tells
6210    yyparse to report a parse error.  */
6211
6212 int
6213 start_function (declspecs, declarator, attributes)
6214      tree declarator, declspecs, attributes;
6215 {
6216   tree decl1, old_decl;
6217   tree restype;
6218   int old_immediate_size_expand = immediate_size_expand;
6219
6220   current_function_returns_value = 0;  /* Assume, until we see it does.  */
6221   current_function_returns_null = 0;
6222   current_function_returns_abnormally = 0;
6223   warn_about_return_type = 0;
6224   current_extern_inline = 0;
6225   c_function_varargs = 0;
6226   named_labels = 0;
6227   shadowed_labels = 0;
6228
6229   /* Don't expand any sizes in the return type of the function.  */
6230   immediate_size_expand = 0;
6231
6232   decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
6233
6234   /* If the declarator is not suitable for a function definition,
6235      cause a syntax error.  */
6236   if (decl1 == 0)
6237     {
6238       immediate_size_expand = old_immediate_size_expand;
6239       return 0;
6240     }
6241
6242   decl_attributes (&decl1, attributes, 0);
6243
6244   /* If #pragma weak was used, mark the decl weak now.  */
6245   if (current_binding_level == global_binding_level)
6246     maybe_apply_pragma_weak (decl1);
6247
6248   if (DECL_DECLARED_INLINE_P (decl1)
6249       && DECL_UNINLINABLE (decl1)
6250       && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
6251     warning_with_decl (decl1,
6252                        "inline function `%s' given attribute noinline");
6253
6254   announce_function (decl1);
6255
6256   if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
6257     {
6258       error ("return type is an incomplete type");
6259       /* Make it return void instead.  */
6260       TREE_TYPE (decl1)
6261         = build_function_type (void_type_node,
6262                                TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6263     }
6264
6265   if (warn_about_return_type)
6266     pedwarn_c99 ("return type defaults to `int'");
6267
6268   /* Save the parm names or decls from this function's declarator
6269      where store_parm_decls will find them.  */
6270   current_function_parms = last_function_parms;
6271   current_function_parm_tags = last_function_parm_tags;
6272
6273   /* Make the init_value nonzero so pushdecl knows this is not tentative.
6274      error_mark_node is replaced below (in poplevel) with the BLOCK.  */
6275   DECL_INITIAL (decl1) = error_mark_node;
6276
6277   /* If this definition isn't a prototype and we had a prototype declaration
6278      before, copy the arg type info from that prototype.
6279      But not if what we had before was a builtin function.  */
6280   old_decl = lookup_name_current_level (DECL_NAME (decl1));
6281   if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6282       && !DECL_BUILT_IN (old_decl)
6283       && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6284           == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
6285       && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6286     {
6287       TREE_TYPE (decl1) = TREE_TYPE (old_decl);
6288       current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
6289       current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
6290     }
6291
6292   /* If there is no explicit declaration, look for any out-of-scope implicit
6293      declarations.  */
6294   if (old_decl == 0)
6295     old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
6296
6297   /* Optionally warn of old-fashioned def with no previous prototype.  */
6298   if (warn_strict_prototypes
6299       && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6300       && !(old_decl != 0
6301            && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6302                || (DECL_BUILT_IN (old_decl)
6303                    && ! C_DECL_ANTICIPATED (old_decl)))))
6304     warning ("function declaration isn't a prototype");
6305   /* Optionally warn of any global def with no previous prototype.  */
6306   else if (warn_missing_prototypes
6307            && TREE_PUBLIC (decl1)
6308            && !(old_decl != 0
6309                 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6310                     || (DECL_BUILT_IN (old_decl)
6311                         && ! C_DECL_ANTICIPATED (old_decl))))
6312            && ! MAIN_NAME_P (DECL_NAME (decl1)))
6313     warning_with_decl (decl1, "no previous prototype for `%s'");
6314   /* Optionally warn of any def with no previous prototype
6315      if the function has already been used.  */
6316   else if (warn_missing_prototypes
6317            && old_decl != 0 && TREE_USED (old_decl)
6318            && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6319     warning_with_decl (decl1,
6320                        "`%s' was used with no prototype before its definition");
6321   /* Optionally warn of any global def with no previous declaration.  */
6322   else if (warn_missing_declarations
6323            && TREE_PUBLIC (decl1)
6324            && old_decl == 0
6325            && ! MAIN_NAME_P (DECL_NAME (decl1)))
6326     warning_with_decl (decl1, "no previous declaration for `%s'");
6327   /* Optionally warn of any def with no previous declaration
6328      if the function has already been used.  */
6329   else if (warn_missing_declarations
6330            && old_decl != 0 && TREE_USED (old_decl)
6331            && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
6332     warning_with_decl (decl1,
6333                        "`%s' was used with no declaration before its definition");
6334
6335   /* This is a definition, not a reference.
6336      So normally clear DECL_EXTERNAL.
6337      However, `extern inline' acts like a declaration
6338      except for defining how to inline.  So set DECL_EXTERNAL in that case.  */
6339   DECL_EXTERNAL (decl1) = current_extern_inline;
6340
6341   /* This function exists in static storage.
6342      (This does not mean `static' in the C sense!)  */
6343   TREE_STATIC (decl1) = 1;
6344
6345   /* A nested function is not global.  */
6346   if (current_function_decl != 0)
6347     TREE_PUBLIC (decl1) = 0;
6348
6349   /* Warn for unlikely, improbable, or stupid declarations of `main'.  */
6350   if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
6351     {
6352       tree args;
6353       int argct = 0;
6354
6355       if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6356           != integer_type_node)
6357         pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
6358
6359       for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
6360            args = TREE_CHAIN (args))
6361         {
6362           tree type = args ? TREE_VALUE (args) : 0;
6363
6364           if (type == void_type_node)
6365             break;
6366
6367           ++argct;
6368           switch (argct)
6369             {
6370             case 1:
6371               if (TYPE_MAIN_VARIANT (type) != integer_type_node)
6372                 pedwarn_with_decl (decl1,
6373                                    "first argument of `%s' should be `int'");
6374               break;
6375
6376             case 2:
6377               if (TREE_CODE (type) != POINTER_TYPE
6378                   || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6379                   || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6380                       != char_type_node))
6381                 pedwarn_with_decl (decl1,
6382                                    "second argument of `%s' should be `char **'");
6383               break;
6384
6385             case 3:
6386               if (TREE_CODE (type) != POINTER_TYPE
6387                   || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6388                   || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6389                       != char_type_node))
6390                 pedwarn_with_decl (decl1,
6391                                    "third argument of `%s' should probably be `char **'");
6392               break;
6393             }
6394         }
6395
6396       /* It is intentional that this message does not mention the third
6397          argument because it's only mentioned in an appendix of the
6398          standard.  */
6399       if (argct > 0 && (argct < 2 || argct > 3))
6400         pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
6401
6402       if (! TREE_PUBLIC (decl1))
6403         pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
6404     }
6405
6406   /* Record the decl so that the function name is defined.
6407      If we already have a decl for this name, and it is a FUNCTION_DECL,
6408      use the old decl.  */
6409
6410   current_function_decl = pushdecl (decl1);
6411
6412   pushlevel (0);
6413   declare_parm_level (1);
6414   current_binding_level->subblocks_tag_transparent = 1;
6415
6416   make_decl_rtl (current_function_decl, NULL);
6417
6418   restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6419   /* Promote the value to int before returning it.  */
6420   if (c_promoting_integer_type_p (restype))
6421     {
6422       /* It retains unsignedness if traditional
6423          or if not really getting wider.  */
6424       if (TREE_UNSIGNED (restype)
6425           && (flag_traditional
6426               || (TYPE_PRECISION (restype)
6427                   == TYPE_PRECISION (integer_type_node))))
6428         restype = unsigned_type_node;
6429       else
6430         restype = integer_type_node;
6431     }
6432   DECL_RESULT (current_function_decl)
6433     = build_decl (RESULT_DECL, NULL_TREE, restype);
6434
6435   /* If this fcn was already referenced via a block-scope `extern' decl
6436      (or an implicit decl), propagate certain information about the usage.  */
6437   if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6438     TREE_ADDRESSABLE (current_function_decl) = 1;
6439
6440   immediate_size_expand = old_immediate_size_expand;
6441
6442   start_fname_decls ();
6443   
6444   return 1;
6445 }
6446
6447 /* Record that this function is going to be a varargs function.
6448    This is called before store_parm_decls, which is too early
6449    to call mark_varargs directly.  */
6450
6451 void
6452 c_mark_varargs ()
6453 {
6454   c_function_varargs = 1;
6455 }
6456 \f
6457 /* Store the parameter declarations into the current function declaration.
6458    This is called after parsing the parameter declarations, before
6459    digesting the body of the function.
6460
6461    For an old-style definition, modify the function's type
6462    to specify at least the number of arguments.  */
6463
6464 void
6465 store_parm_decls ()
6466 {
6467   tree fndecl = current_function_decl;
6468   tree parm;
6469
6470   /* This is either a chain of PARM_DECLs (if a prototype was used)
6471      or a list of IDENTIFIER_NODEs (for an old-fashioned C definition).  */
6472   tree specparms = current_function_parms;
6473
6474   /* This is a list of types declared among parms in a prototype.  */
6475   tree parmtags = current_function_parm_tags;
6476
6477   /* This is a chain of PARM_DECLs from old-style parm declarations.  */
6478   tree parmdecls = getdecls ();
6479
6480   /* This is a chain of any other decls that came in among the parm
6481      declarations.  If a parm is declared with  enum {foo, bar} x;
6482      then CONST_DECLs for foo and bar are put here.  */
6483   tree nonparms = 0;
6484
6485   /* The function containing FNDECL, if any.  */
6486   tree context = decl_function_context (fndecl);
6487
6488   /* Nonzero if this definition is written with a prototype.  */
6489   int prototype = 0;
6490
6491   int saved_warn_shadow = warn_shadow;
6492
6493   /* Don't re-emit shadow warnings.  */
6494   warn_shadow = 0;
6495
6496   if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6497     {
6498       /* This case is when the function was defined with an ANSI prototype.
6499          The parms already have decls, so we need not do anything here
6500          except record them as in effect
6501          and complain if any redundant old-style parm decls were written.  */
6502
6503       tree next;
6504       tree others = 0;
6505
6506       prototype = 1;
6507
6508       if (parmdecls != 0)
6509         {
6510           tree decl, link;
6511
6512           error_with_decl (fndecl,
6513                            "parm types given both in parmlist and separately");
6514           /* Get rid of the erroneous decls; don't keep them on
6515              the list of parms, since they might not be PARM_DECLs.  */
6516           for (decl = current_binding_level->names;
6517                decl; decl = TREE_CHAIN (decl))
6518             if (DECL_NAME (decl))
6519               IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6520           for (link = current_binding_level->shadowed;
6521                link; link = TREE_CHAIN (link))
6522             IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6523           current_binding_level->names = 0;
6524           current_binding_level->shadowed = 0;
6525         }
6526
6527       specparms = nreverse (specparms);
6528       for (parm = specparms; parm; parm = next)
6529         {
6530           next = TREE_CHAIN (parm);
6531           if (TREE_CODE (parm) == PARM_DECL)
6532             {
6533               if (DECL_NAME (parm) == 0)
6534                 error_with_decl (parm, "parameter name omitted");
6535               else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
6536                        && VOID_TYPE_P (TREE_TYPE (parm)))
6537                 {
6538                   error_with_decl (parm, "parameter `%s' declared void");
6539                   /* Change the type to error_mark_node so this parameter
6540                      will be ignored by assign_parms.  */
6541                   TREE_TYPE (parm) = error_mark_node;
6542                 }
6543               pushdecl (parm);
6544             }
6545           else
6546             {
6547               /* If we find an enum constant or a type tag,
6548                  put it aside for the moment.  */
6549               TREE_CHAIN (parm) = 0;
6550               others = chainon (others, parm);
6551             }
6552         }
6553
6554       /* Get the decls in their original chain order
6555          and record in the function.  */
6556       DECL_ARGUMENTS (fndecl) = getdecls ();
6557
6558 #if 0
6559       /* If this function takes a variable number of arguments,
6560          add a phony parameter to the end of the parm list,
6561          to represent the position of the first unnamed argument.  */
6562       if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6563           != void_type_node)
6564         {
6565           tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6566           /* Let's hope the address of the unnamed parm
6567              won't depend on its type.  */
6568           TREE_TYPE (dummy) = integer_type_node;
6569           DECL_ARG_TYPE (dummy) = integer_type_node;
6570           DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6571         }
6572 #endif
6573
6574       /* Now pushdecl the enum constants.  */
6575       for (parm = others; parm; parm = next)
6576         {
6577           next = TREE_CHAIN (parm);
6578           if (DECL_NAME (parm) == 0)
6579             ;
6580           else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6581             ;
6582           else if (TREE_CODE (parm) != PARM_DECL)
6583             pushdecl (parm);
6584         }
6585
6586       storetags (chainon (parmtags, gettags ()));
6587     }
6588   else
6589     {
6590       /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6591          each with a parm name as the TREE_VALUE.
6592
6593          PARMDECLS is a chain of declarations for parameters.
6594          Warning! It can also contain CONST_DECLs which are not parameters
6595          but are names of enumerators of any enum types
6596          declared among the parameters.
6597
6598          First match each formal parameter name with its declaration.
6599          Associate decls with the names and store the decls
6600          into the TREE_PURPOSE slots.  */
6601
6602       /* We use DECL_WEAK as a flag to show which parameters have been
6603          seen already since it is not used on PARM_DECL or CONST_DECL.  */
6604       for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6605         DECL_WEAK (parm) = 0;
6606
6607       for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6608         {
6609           tree tail, found = NULL;
6610
6611           if (TREE_VALUE (parm) == 0)
6612             {
6613               error_with_decl (fndecl,
6614                                "parameter name missing from parameter list");
6615               TREE_PURPOSE (parm) = 0;
6616               continue;
6617             }
6618
6619           /* See if any of the parmdecls specifies this parm by name.
6620              Ignore any enumerator decls.  */
6621           for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6622             if (DECL_NAME (tail) == TREE_VALUE (parm)
6623                 && TREE_CODE (tail) == PARM_DECL)
6624               {
6625                 found = tail;
6626                 break;
6627               }
6628
6629           /* If declaration already marked, we have a duplicate name.
6630              Complain, and don't use this decl twice.  */
6631           if (found && DECL_WEAK (found))
6632             {
6633               error_with_decl (found, "multiple parameters named `%s'");
6634               found = 0;
6635             }
6636
6637           /* If the declaration says "void", complain and ignore it.  */
6638           if (found && VOID_TYPE_P (TREE_TYPE (found)))
6639             {
6640               error_with_decl (found, "parameter `%s' declared void");
6641               TREE_TYPE (found) = integer_type_node;
6642               DECL_ARG_TYPE (found) = integer_type_node;
6643               layout_decl (found, 0);
6644             }
6645
6646           /* Traditionally, a parm declared float is actually a double.  */
6647           if (found && flag_traditional
6648               && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6649             {
6650               TREE_TYPE (found) = double_type_node;
6651               DECL_ARG_TYPE (found) = double_type_node;
6652               layout_decl (found, 0);
6653             }
6654
6655           /* If no declaration found, default to int.  */
6656           if (!found)
6657             {
6658               found = build_decl (PARM_DECL, TREE_VALUE (parm),
6659                                   integer_type_node);
6660               DECL_ARG_TYPE (found) = TREE_TYPE (found);
6661               DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6662               DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6663               if (flag_isoc99)
6664                 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6665               else if (extra_warnings)
6666                 warning_with_decl (found, "type of `%s' defaults to `int'");
6667               pushdecl (found);
6668             }
6669
6670           TREE_PURPOSE (parm) = found;
6671
6672           /* Mark this decl as "already found".  */
6673           DECL_WEAK (found) = 1;
6674         }
6675
6676       /* Put anything which is on the parmdecls chain and which is
6677          not a PARM_DECL onto the list NONPARMS.  (The types of
6678          non-parm things which might appear on the list include
6679          enumerators and NULL-named TYPE_DECL nodes.) Complain about
6680          any actual PARM_DECLs not matched with any names.  */
6681
6682       nonparms = 0;
6683       for (parm = parmdecls; parm;)
6684         {
6685           tree next = TREE_CHAIN (parm);
6686           TREE_CHAIN (parm) = 0;
6687
6688           if (TREE_CODE (parm) != PARM_DECL)
6689             nonparms = chainon (nonparms, parm);
6690           else
6691             {
6692               /* Complain about args with incomplete types.  */
6693               if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6694                 {
6695                   error_with_decl (parm, "parameter `%s' has incomplete type");
6696                   TREE_TYPE (parm) = error_mark_node;
6697                 }
6698
6699               if (! DECL_WEAK (parm))
6700                 {
6701                   error_with_decl (parm,
6702                                    "declaration for parameter `%s' but no such parameter");
6703                   /* Pretend the parameter was not missing.
6704                      This gets us to a standard state and minimizes
6705                      further error messages.  */
6706                   specparms
6707                     = chainon (specparms,
6708                                tree_cons (parm, NULL_TREE, NULL_TREE));
6709                 }
6710             }
6711
6712           parm = next;
6713         }
6714
6715       /* Chain the declarations together in the order of the list of
6716          names.  Store that chain in the function decl, replacing the
6717          list of names.  */
6718       parm = specparms;
6719       DECL_ARGUMENTS (fndecl) = 0;
6720       {
6721         tree last;
6722         for (last = 0; parm; parm = TREE_CHAIN (parm))
6723           if (TREE_PURPOSE (parm))
6724             {
6725               if (last == 0)
6726                 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6727               else
6728                 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6729               last = TREE_PURPOSE (parm);
6730               TREE_CHAIN (last) = 0;
6731             }
6732       }
6733
6734       /* If there was a previous prototype,
6735          set the DECL_ARG_TYPE of each argument according to
6736          the type previously specified, and report any mismatches.  */
6737
6738       if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6739         {
6740           tree type;
6741           for (parm = DECL_ARGUMENTS (fndecl),
6742                type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6743                parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6744                                  != void_type_node));
6745                parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6746             {
6747               if (parm == 0 || type == 0
6748                   || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6749                 {
6750                   error ("number of arguments doesn't match prototype");
6751                   error_with_file_and_line (current_function_prototype_file,
6752                                             current_function_prototype_line,
6753                                             "prototype declaration");
6754                   break;
6755                 }
6756               /* Type for passing arg must be consistent with that
6757                  declared for the arg.  ISO C says we take the unqualified
6758                  type for parameters declared with qualified type.  */
6759               if (! comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6760                                TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6761                 {
6762                   if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6763                       == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6764                     {
6765                       /* Adjust argument to match prototype.  E.g. a previous
6766                          `int foo(float);' prototype causes
6767                          `int foo(x) float x; {...}' to be treated like
6768                          `int foo(float x) {...}'.  This is particularly
6769                          useful for argument types like uid_t.  */
6770                       DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6771
6772                       if (PROMOTE_PROTOTYPES
6773                           && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6774                           && TYPE_PRECISION (TREE_TYPE (parm))
6775                           < TYPE_PRECISION (integer_type_node))
6776                         DECL_ARG_TYPE (parm) = integer_type_node;
6777
6778                       if (pedantic)
6779                         {
6780                           pedwarn ("promoted argument `%s' doesn't match prototype",
6781                                    IDENTIFIER_POINTER (DECL_NAME (parm)));
6782                           warning_with_file_and_line
6783                             (current_function_prototype_file,
6784                              current_function_prototype_line,
6785                              "prototype declaration");
6786                         }
6787                     }
6788                   /* If -traditional, allow `int' argument to match
6789                      `unsigned' prototype.  */
6790                   else if (! (flag_traditional
6791                               && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6792                               && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6793                     {
6794                       error ("argument `%s' doesn't match prototype",
6795                              IDENTIFIER_POINTER (DECL_NAME (parm)));
6796                       error_with_file_and_line (current_function_prototype_file,
6797                                                 current_function_prototype_line,
6798                                                 "prototype declaration");
6799                     }
6800                 }
6801             }
6802           TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6803         }
6804
6805       /* Otherwise, create a prototype that would match.  */
6806
6807       else
6808         {
6809           tree actual = 0, last = 0, type;
6810
6811           for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6812             {
6813               type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6814               if (last)
6815                 TREE_CHAIN (last) = type;
6816               else
6817                 actual = type;
6818               last = type;
6819             }
6820           type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6821           if (last)
6822             TREE_CHAIN (last) = type;
6823           else
6824             actual = type;
6825
6826           /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6827              of the type of this function, but we need to avoid having this
6828              affect the types of other similarly-typed functions, so we must
6829              first force the generation of an identical (but separate) type
6830              node for the relevant function type.  The new node we create
6831              will be a variant of the main variant of the original function
6832              type.  */
6833
6834           TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6835
6836           TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6837         }
6838
6839       /* Now store the final chain of decls for the arguments
6840          as the decl-chain of the current lexical scope.
6841          Put the enumerators in as well, at the front so that
6842          DECL_ARGUMENTS is not modified.  */
6843
6844       storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6845     }
6846
6847   /* Make sure the binding level for the top of the function body
6848      gets a BLOCK if there are any in the function.
6849      Otherwise, the dbx output is wrong.  */
6850
6851   keep_next_if_subblocks = 1;
6852
6853   /* ??? This might be an improvement,
6854      but needs to be thought about some more.  */
6855 #if 0
6856   keep_next_level_flag = 1;
6857 #endif
6858
6859   /* Write a record describing this function definition to the prototypes
6860      file (if requested).  */
6861
6862   gen_aux_info_record (fndecl, 1, 0, prototype);
6863
6864   /* Initialize the RTL code for the function.  */
6865   init_function_start (fndecl, input_filename, lineno);
6866
6867   /* Begin the statement tree for this function.  */
6868   begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6869
6870   /* If this is a nested function, save away the sizes of any
6871      variable-size types so that we can expand them when generating
6872      RTL.  */
6873   if (context)
6874     {
6875       tree t;
6876
6877       DECL_LANG_SPECIFIC (fndecl)->pending_sizes 
6878         = nreverse (get_pending_sizes ());
6879       for (t = DECL_LANG_SPECIFIC (fndecl)->pending_sizes;
6880            t;
6881            t = TREE_CHAIN (t))
6882         SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = context;
6883     }
6884
6885   /* This function is being processed in whole-function mode.  */
6886   cfun->x_whole_function_mode_p = 1;
6887
6888   /* Even though we're inside a function body, we still don't want to
6889      call expand_expr to calculate the size of a variable-sized array.
6890      We haven't necessarily assigned RTL to all variables yet, so it's
6891      not safe to try to expand expressions involving them.  */
6892   immediate_size_expand = 0;
6893   cfun->x_dont_save_pending_sizes_p = 1;
6894
6895   warn_shadow = saved_warn_shadow;
6896 }
6897 \f
6898 /* Finish up a function declaration and compile that function
6899    all the way to assembler language output.  The free the storage
6900    for the function definition.
6901
6902    This is called after parsing the body of the function definition.
6903
6904    NESTED is nonzero if the function being finished is nested in another.
6905    CAN_DEFER_P is nonzero if the function may be deferred.  */
6906
6907 void
6908 finish_function (nested, can_defer_p)
6909      int nested;
6910      int can_defer_p;
6911 {
6912   tree fndecl = current_function_decl;
6913
6914 #if 0
6915   /* This caused &foo to be of type ptr-to-const-function which then
6916      got a warning when stored in a ptr-to-function variable.  */
6917   TREE_READONLY (fndecl) = 1;
6918 #endif
6919
6920   poplevel (1, 0, 1);
6921   BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6922
6923   /* Must mark the RESULT_DECL as being in this function.  */
6924
6925   DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6926
6927   /* Obey `register' declarations if `setjmp' is called in this fn.  */
6928   if (flag_traditional && current_function_calls_setjmp)
6929     {
6930       setjmp_protect (DECL_INITIAL (fndecl));
6931       setjmp_protect_args ();
6932     }
6933
6934   if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6935     {
6936       if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6937           != integer_type_node)
6938         {
6939           /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6940              If warn_main is -1 (-Wno-main) we don't want to be warned.  */
6941           if (! warn_main)
6942             pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6943         }
6944       else
6945         {
6946 #ifdef DEFAULT_MAIN_RETURN
6947           /* Make it so that `main' always returns success by default.  */
6948           DEFAULT_MAIN_RETURN;
6949 #else
6950           if (flag_isoc99)
6951             c_expand_return (integer_zero_node);
6952 #endif
6953         }
6954     }
6955   
6956   finish_fname_decls ();
6957
6958   /* Tie off the statement tree for this function.  */
6959   finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6960
6961   /* Complain if there's just no return statement.  */
6962   if (warn_return_type
6963       && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
6964       && !current_function_returns_value && !current_function_returns_null
6965       /* Don't complain if we abort.  */
6966       && !current_function_returns_abnormally
6967       /* Don't warn for main().  */
6968       && !MAIN_NAME_P (DECL_NAME (fndecl))
6969       /* Or if they didn't actually specify a return type.  */
6970       && !C_FUNCTION_IMPLICIT_INT (fndecl)
6971       /* Normally, with -Wreturn-type, flow will complain.  Unless we're an
6972          inline function, as we might never be compiled separately.  */
6973       && DECL_INLINE (fndecl))
6974     warning ("no return statement in function returning non-void");
6975
6976   /* Clear out memory we no longer need.  */
6977   free_after_parsing (cfun);
6978   /* Since we never call rest_of_compilation, we never clear
6979      CFUN.  Do so explicitly.  */
6980   free_after_compilation (cfun);
6981   cfun = NULL;
6982
6983   if (! nested)
6984     {
6985       /* Generate RTL for the body of this function.  */
6986       c_expand_body (fndecl, nested, can_defer_p);
6987
6988       /* Let the error reporting routines know that we're outside a
6989          function.  For a nested function, this value is used in
6990          pop_c_function_context and then reset via pop_function_context.  */
6991       current_function_decl = NULL;
6992     }
6993 }
6994
6995 /* Generate the RTL for a deferred function FNDECL.  */
6996
6997 void
6998 c_expand_deferred_function (fndecl)
6999      tree fndecl;
7000 {
7001   /* DECL_INLINE or DECL_RESULT might got cleared after the inline
7002      function was deferred, e.g. in duplicate_decls.  */
7003   if (DECL_INLINE (fndecl) && DECL_RESULT (fndecl))
7004     {
7005       c_expand_body (fndecl, 0, 0);
7006       current_function_decl = NULL;
7007     }
7008 }
7009
7010 /* Generate the RTL for the body of FNDECL.  If NESTED_P is non-zero,
7011    then we are already in the process of generating RTL for another
7012    function.  If can_defer_p is zero, we won't attempt to defer the
7013    generation of RTL.  */
7014
7015 static void
7016 c_expand_body (fndecl, nested_p, can_defer_p)
7017      tree fndecl;
7018      int nested_p, can_defer_p;
7019 {
7020   int uninlinable = 1;
7021
7022   /* There's no reason to do any of the work here if we're only doing
7023      semantic analysis; this code just generates RTL.  */
7024   if (flag_syntax_only)
7025     return;
7026
7027   if (flag_inline_trees)
7028     {
7029       /* First, cache whether the current function is inlinable.  Some
7030          predicates depend on cfun and current_function_decl to
7031          function completely.  */
7032       timevar_push (TV_INTEGRATION);
7033       uninlinable = ! tree_inlinable_function_p (fndecl);
7034       
7035       if (! uninlinable && can_defer_p
7036           /* Save function tree for inlining.  Should return 0 if the
7037              language does not support function deferring or the
7038              function could not be deferred.  */
7039           && defer_fn (fndecl))
7040         {
7041           /* Let the back-end know that this function exists.  */
7042           (*debug_hooks->deferred_inline_function) (fndecl);
7043           timevar_pop (TV_INTEGRATION);
7044           return;
7045         }
7046       
7047       /* Then, inline any functions called in it.  */
7048       optimize_inline_calls (fndecl);
7049       timevar_pop (TV_INTEGRATION);
7050     }
7051
7052   timevar_push (TV_EXPAND);
7053
7054   if (nested_p)
7055     {
7056       /* Make sure that we will evaluate variable-sized types involved
7057          in our function's type.  */
7058       expand_pending_sizes (DECL_LANG_SPECIFIC (fndecl)->pending_sizes);
7059       /* Squirrel away our current state.  */
7060       push_function_context ();
7061     }
7062
7063   /* Initialize the RTL code for the function.  */
7064   current_function_decl = fndecl;
7065   input_filename = DECL_SOURCE_FILE (fndecl);
7066   init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
7067
7068   /* This function is being processed in whole-function mode.  */
7069   cfun->x_whole_function_mode_p = 1;
7070
7071   /* Even though we're inside a function body, we still don't want to
7072      call expand_expr to calculate the size of a variable-sized array.
7073      We haven't necessarily assigned RTL to all variables yet, so it's
7074      not safe to try to expand expressions involving them.  */
7075   immediate_size_expand = 0;
7076   cfun->x_dont_save_pending_sizes_p = 1;
7077
7078   /* If this is a varargs function, inform function.c.  */
7079   if (c_function_varargs)
7080     mark_varargs ();
7081
7082   /* Set up parameters and prepare for return, for the function.  */
7083   expand_function_start (fndecl, 0);
7084
7085   /* If this function is `main', emit a call to `__main'
7086      to run global initializers, etc.  */
7087   if (DECL_NAME (fndecl)
7088       && MAIN_NAME_P (DECL_NAME (fndecl))
7089       && DECL_CONTEXT (fndecl) == NULL_TREE)
7090     expand_main_function ();
7091
7092   /* Generate the RTL for this function.  */
7093   expand_stmt (DECL_SAVED_TREE (fndecl));
7094   if (uninlinable)
7095     {
7096       /* Allow the body of the function to be garbage collected.  */
7097       DECL_SAVED_TREE (fndecl) = NULL_TREE;
7098     }
7099
7100   /* We hard-wired immediate_size_expand to zero above.
7101      expand_function_end will decrement this variable.  So, we set the
7102      variable to one here, so that after the decrement it will remain
7103      zero.  */
7104   immediate_size_expand = 1;
7105
7106   /* Allow language dialects to perform special processing.  */
7107   if (lang_expand_function_end)
7108     (*lang_expand_function_end) ();
7109
7110   /* Generate rtl for function exit.  */
7111   expand_function_end (input_filename, lineno, 0);
7112
7113   /* If this is a nested function, protect the local variables in the stack
7114      above us from being collected while we're compiling this function.  */
7115   if (nested_p)
7116     ggc_push_context ();
7117
7118   /* Run the optimizers and output the assembler code for this function.  */
7119   rest_of_compilation (fndecl);
7120
7121   /* Undo the GC context switch.  */
7122   if (nested_p)
7123     ggc_pop_context ();
7124
7125   /* With just -W, complain only if function returns both with
7126      and without a value.  */
7127   if (extra_warnings
7128       && current_function_returns_value
7129       && current_function_returns_null)
7130     warning ("this function may return with or without a value");
7131
7132   /* If requested, warn about function definitions where the function will
7133      return a value (usually of some struct or union type) which itself will
7134      take up a lot of stack space.  */
7135
7136   if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
7137     {
7138       tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
7139
7140       if (ret_type && TYPE_SIZE_UNIT (ret_type)
7141           && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
7142           && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
7143                                    larger_than_size))
7144         {
7145           unsigned int size_as_int
7146             = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
7147
7148           if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
7149             warning_with_decl (fndecl,
7150                                "size of return value of `%s' is %u bytes",
7151                                size_as_int);
7152           else
7153             warning_with_decl (fndecl,
7154                                "size of return value of `%s' is larger than %d bytes",
7155                                larger_than_size);
7156         }
7157     }
7158
7159   if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p
7160       && ! flag_inline_trees)
7161     {
7162       /* Stop pointing to the local nodes about to be freed.
7163          But DECL_INITIAL must remain nonzero so we know this
7164          was an actual function definition.
7165          For a nested function, this is done in pop_c_function_context.
7166          If rest_of_compilation set this to 0, leave it 0.  */
7167       if (DECL_INITIAL (fndecl) != 0)
7168         DECL_INITIAL (fndecl) = error_mark_node;
7169
7170       DECL_ARGUMENTS (fndecl) = 0;
7171     }
7172
7173   if (DECL_STATIC_CONSTRUCTOR (fndecl))
7174     {
7175       if (targetm.have_ctors_dtors)
7176         (* targetm.asm_out.constructor) (XEXP (DECL_RTL (fndecl), 0),
7177                                          DEFAULT_INIT_PRIORITY);
7178       else
7179         static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
7180     }
7181
7182   if (DECL_STATIC_DESTRUCTOR (fndecl))
7183     {
7184       if (targetm.have_ctors_dtors)
7185         (* targetm.asm_out.destructor) (XEXP (DECL_RTL (fndecl), 0),
7186                                         DEFAULT_INIT_PRIORITY);
7187       else
7188         static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
7189     }
7190
7191   if (nested_p)
7192     /* Return to the enclosing function.  */
7193     pop_function_context ();
7194   timevar_pop (TV_EXPAND);
7195 }
7196 \f
7197 /* Check the declarations given in a for-loop for satisfying the C99
7198    constraints.  */
7199 void
7200 check_for_loop_decls ()
7201 {
7202   tree t;
7203
7204   if (!flag_isoc99)
7205     {
7206       /* If we get here, declarations have been used in a for loop without
7207          the C99 for loop scope.  This doesn't make much sense, so don't
7208          allow it.  */
7209       error ("`for' loop initial declaration used outside C99 mode");
7210       return;
7211     }
7212   /* C99 subclause 6.8.5 paragraph 3:
7213
7214        [#3]  The  declaration  part  of  a for statement shall only
7215        declare identifiers for objects having storage class auto or
7216        register.
7217
7218      It isn't clear whether, in this sentence, "identifiers" binds to
7219      "shall only declare" or to "objects" - that is, whether all identifiers
7220      declared must be identifiers for objects, or whether the restriction
7221      only applies to those that are.  (A question on this in comp.std.c
7222      in November 2000 received no answer.)  We implement the strictest
7223      interpretation, to avoid creating an extension which later causes
7224      problems.  */
7225
7226   for (t = gettags (); t; t = TREE_CHAIN (t))
7227     {
7228       if (TREE_PURPOSE (t) != 0)
7229         {
7230           enum tree_code code = TREE_CODE (TREE_VALUE (t));
7231           
7232           if (code == RECORD_TYPE)
7233             error ("`struct %s' declared in `for' loop initial declaration",
7234                    IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7235           else if (code == UNION_TYPE)
7236             error ("`union %s' declared in `for' loop initial declaration",
7237                    IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7238           else
7239             error ("`enum %s' declared in `for' loop initial declaration",
7240                    IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7241         }
7242     }
7243
7244   for (t = getdecls (); t; t = TREE_CHAIN (t))
7245     {
7246       if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
7247         error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
7248       else if (TREE_STATIC (t))
7249         error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
7250       else if (DECL_EXTERNAL (t))
7251         error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
7252     }
7253 }
7254 \f
7255 /* Save and restore the variables in this file and elsewhere
7256    that keep track of the progress of compilation of the current function.
7257    Used for nested functions.  */
7258
7259 struct c_language_function
7260 {
7261   struct language_function base;
7262   tree named_labels;
7263   tree shadowed_labels;
7264   int returns_value;
7265   int returns_null;
7266   int returns_abnormally;
7267   int warn_about_return_type;
7268   int extern_inline;
7269   struct binding_level *binding_level;
7270 };
7271
7272 /* Save and reinitialize the variables
7273    used during compilation of a C function.  */
7274
7275 void
7276 push_c_function_context (f)
7277      struct function *f;
7278 {
7279   struct c_language_function *p;
7280   p = ((struct c_language_function *)
7281        xmalloc (sizeof (struct c_language_function)));
7282   f->language = (struct language_function *) p;
7283
7284   p->base.x_stmt_tree = c_stmt_tree;
7285   p->base.x_scope_stmt_stack = c_scope_stmt_stack;
7286   p->named_labels = named_labels;
7287   p->shadowed_labels = shadowed_labels;
7288   p->returns_value = current_function_returns_value;
7289   p->returns_null = current_function_returns_null;
7290   p->returns_abnormally = current_function_returns_abnormally;
7291   p->warn_about_return_type = warn_about_return_type;
7292   p->extern_inline = current_extern_inline;
7293   p->binding_level = current_binding_level;
7294 }
7295
7296 /* Restore the variables used during compilation of a C function.  */
7297
7298 void
7299 pop_c_function_context (f)
7300      struct function *f;
7301 {
7302   struct c_language_function *p
7303     = (struct c_language_function *) f->language;
7304   tree link;
7305
7306   /* Bring back all the labels that were shadowed.  */
7307   for (link = shadowed_labels; link; link = TREE_CHAIN (link))
7308     if (DECL_NAME (TREE_VALUE (link)) != 0)
7309       IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
7310         = TREE_VALUE (link);
7311
7312   if (DECL_SAVED_INSNS (current_function_decl) == 0
7313       && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
7314     {
7315       /* Stop pointing to the local nodes about to be freed.  */
7316       /* But DECL_INITIAL must remain nonzero so we know this
7317          was an actual function definition.  */
7318       DECL_INITIAL (current_function_decl) = error_mark_node;
7319       DECL_ARGUMENTS (current_function_decl) = 0;
7320     }
7321
7322   c_stmt_tree = p->base.x_stmt_tree;
7323   c_scope_stmt_stack = p->base.x_scope_stmt_stack;
7324   named_labels = p->named_labels;
7325   shadowed_labels = p->shadowed_labels;
7326   current_function_returns_value = p->returns_value;
7327   current_function_returns_null = p->returns_null;
7328   current_function_returns_abnormally = p->returns_abnormally;
7329   warn_about_return_type = p->warn_about_return_type;
7330   current_extern_inline = p->extern_inline;
7331   current_binding_level = p->binding_level;
7332
7333   free (p);
7334   f->language = 0;
7335 }
7336
7337 /* Mark the language specific parts of F for GC.  */
7338
7339 void
7340 mark_c_function_context (f)
7341      struct function *f;
7342 {
7343   struct c_language_function *p
7344     = (struct c_language_function *) f->language;
7345
7346   if (p == 0)
7347     return;
7348
7349   mark_c_language_function (&p->base);
7350   ggc_mark_tree (p->shadowed_labels);
7351   ggc_mark_tree (p->named_labels);
7352   mark_binding_level (&p->binding_level);
7353 }
7354
7355 /* Copy the DECL_LANG_SPECIFIC data associated with NODE.  */
7356
7357 void
7358 copy_lang_decl (decl)
7359      tree decl;
7360 {
7361   struct lang_decl *ld;
7362
7363   if (!DECL_LANG_SPECIFIC (decl))
7364     return;
7365
7366   ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
7367   memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
7368           sizeof (struct lang_decl));
7369   DECL_LANG_SPECIFIC (decl) = ld;
7370 }
7371
7372 /* Mark the language specific bits in T for GC.  */
7373
7374 void
7375 lang_mark_tree (t)
7376      tree t;
7377 {
7378   if (TREE_CODE (t) == IDENTIFIER_NODE)
7379     {
7380       struct lang_identifier *i = (struct lang_identifier *) t;
7381       ggc_mark_tree (i->global_value);
7382       ggc_mark_tree (i->local_value);
7383       ggc_mark_tree (i->label_value);
7384       ggc_mark_tree (i->implicit_decl);
7385       ggc_mark_tree (i->error_locus);
7386       ggc_mark_tree (i->limbo_value);
7387     }
7388   else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
7389     ggc_mark (TYPE_LANG_SPECIFIC (t));
7390   else if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
7391     {
7392       ggc_mark (DECL_LANG_SPECIFIC (t));
7393       c_mark_lang_decl (&DECL_LANG_SPECIFIC (t)->base);
7394       ggc_mark_tree (DECL_LANG_SPECIFIC (t)->pending_sizes);
7395     }
7396 }
7397
7398 /* The functions below are required for functionality of doing
7399    function at once processing in the C front end. Currently these
7400    functions are not called from anywhere in the C front end, but as
7401    these changes continue, that will change.  */
7402
7403 /* Returns non-zero if the current statement is a full expression,
7404    i.e. temporaries created during that statement should be destroyed
7405    at the end of the statement.  */
7406
7407 int
7408 stmts_are_full_exprs_p ()
7409 {
7410   return 0;
7411 }
7412
7413 /* Returns the stmt_tree (if any) to which statements are currently
7414    being added.  If there is no active statement-tree, NULL is
7415    returned.  */
7416
7417 stmt_tree
7418 current_stmt_tree ()
7419 {
7420   return &c_stmt_tree;
7421 }
7422
7423 /* Returns the stack of SCOPE_STMTs for the current function.  */
7424
7425 tree *
7426 current_scope_stmt_stack ()
7427 {
7428   return &c_scope_stmt_stack;
7429 }
7430
7431 /* Nonzero if TYPE is an anonymous union or struct type.  Always 0 in
7432    C.  */
7433
7434 int
7435 anon_aggr_type_p (node)
7436      tree node ATTRIBUTE_UNUSED;
7437 {
7438   return 0;
7439 }
7440
7441 /* Dummy function in place of callback used by C++.  */
7442
7443 void
7444 extract_interface_info ()
7445 {
7446 }
7447
7448 /* Return a new COMPOUND_STMT, after adding it to the current
7449    statement tree.  */
7450
7451 tree
7452 c_begin_compound_stmt ()
7453 {
7454   tree stmt;
7455
7456   /* Create the COMPOUND_STMT.  */
7457   stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
7458
7459   return stmt;
7460 }
7461
7462 /* Expand T (a DECL_STMT) if it declares an entity not handled by the
7463    common code.  */
7464
7465 void
7466 c_expand_decl_stmt (t)
7467      tree t;
7468 {
7469   tree decl = DECL_STMT_DECL (t);
7470
7471   /* Expand nested functions.  */
7472   if (TREE_CODE (decl) == FUNCTION_DECL
7473       && DECL_CONTEXT (decl) == current_function_decl
7474       && DECL_SAVED_TREE (decl))
7475     c_expand_body (decl, /*nested_p=*/1, /*can_defer_p=*/0);
7476 }
7477
7478 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
7479    the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++.  */
7480
7481 tree
7482 identifier_global_value (t)
7483      tree t;
7484 {
7485   return IDENTIFIER_GLOBAL_VALUE (t);
7486 }
7487
7488 /* Record a builtin type for C.  If NAME is non-NULL, it is the name used;
7489    otherwise the name is found in ridpointers from RID_INDEX.  */
7490
7491 void
7492 record_builtin_type (rid_index, name, type)
7493      enum rid rid_index;
7494      const char *name;
7495      tree type;
7496 {
7497   tree id;
7498   if (name == 0)
7499     id = ridpointers[(int) rid_index];
7500   else
7501     id = get_identifier (name);
7502   pushdecl (build_decl (TYPE_DECL, id, type));
7503 }
7504
7505 /* Build the void_list_node (void_type_node having been created).  */
7506 tree
7507 build_void_list_node ()
7508 {
7509   tree t = build_tree_list (NULL_TREE, void_type_node);
7510   return t;
7511 }