OSDN Git Service

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