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