OSDN Git Service

* c-decl.c (grokdeclarator): Don't warn about implicit int in
[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
2012          Do not set TREE_ASM_WRITTEN for a FUNCTION_DECL since we may actually
2013          just have two declarations without a definition.  VAR_DECLs may need
2014          the same treatment, I'm not sure.  */
2015       if (TREE_CODE (newdecl) == FUNCTION_DECL)
2016         DECL_IGNORED_P (newdecl) = 1;
2017       else
2018         TREE_ASM_WRITTEN (newdecl) = DECL_IGNORED_P (newdecl) = 1;
2019       return 0;
2020     }
2021
2022   /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2023      But preserve OLDDECL's DECL_UID.  */
2024   {
2025     register unsigned olddecl_uid = DECL_UID (olddecl);
2026
2027     bcopy ((char *) newdecl + sizeof (struct tree_common),
2028            (char *) olddecl + sizeof (struct tree_common),
2029            sizeof (struct tree_decl) - sizeof (struct tree_common));
2030     DECL_UID (olddecl) = olddecl_uid;
2031   }
2032
2033   /* NEWDECL contains the merged attribute lists.
2034      Update OLDDECL to be the same.  */
2035   DECL_MACHINE_ATTRIBUTES (olddecl) = DECL_MACHINE_ATTRIBUTES (newdecl);
2036
2037   return 1;
2038 }
2039
2040 /* Record a decl-node X as belonging to the current lexical scope.
2041    Check for errors (such as an incompatible declaration for the same
2042    name already seen in the same scope).
2043
2044    Returns either X or an old decl for the same name.
2045    If an old decl is returned, it may have been smashed
2046    to agree with what X says.  */
2047
2048 tree
2049 pushdecl (x)
2050      tree x;
2051 {
2052   register tree t;
2053   register tree name = DECL_NAME (x);
2054   register struct binding_level *b = current_binding_level;
2055
2056   DECL_CONTEXT (x) = current_function_decl;
2057   /* A local extern declaration for a function doesn't constitute nesting.
2058      A local auto declaration does, since it's a forward decl
2059      for a nested function coming later.  */
2060   if (TREE_CODE (x) == FUNCTION_DECL && DECL_INITIAL (x) == 0
2061       && DECL_EXTERNAL (x))
2062     DECL_CONTEXT (x) = 0;
2063
2064   if (warn_nested_externs && DECL_EXTERNAL (x) && b != global_binding_level
2065       && x != IDENTIFIER_IMPLICIT_DECL (name)
2066       /* Don't print error messages for __FUNCTION__ and __PRETTY_FUNCTION__ */
2067       && !DECL_IN_SYSTEM_HEADER (x))
2068     warning ("nested extern declaration of `%s'", IDENTIFIER_POINTER (name));
2069
2070   if (name)
2071     {
2072       char *file;
2073       int line;
2074       int different_binding_level = 0;
2075
2076       t = lookup_name_current_level (name);
2077       /* Don't type check externs here when -traditional.  This is so that
2078          code with conflicting declarations inside blocks will get warnings
2079          not errors.  X11 for instance depends on this.  */
2080       if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2081         {
2082           t = IDENTIFIER_GLOBAL_VALUE (name);
2083           /* Type decls at global scope don't conflict with externs declared
2084              inside lexical blocks.  */
2085           if (t && TREE_CODE (t) == TYPE_DECL)
2086             t = 0;
2087           different_binding_level = 1;
2088         }
2089       if (t != 0 && t == error_mark_node)
2090         /* error_mark_node is 0 for a while during initialization!  */
2091         {
2092           t = 0;
2093           error_with_decl (x, "`%s' used prior to declaration");
2094         }
2095
2096       if (t != 0)
2097         {
2098           file = DECL_SOURCE_FILE (t);
2099           line = DECL_SOURCE_LINE (t);
2100         }
2101
2102       /* If this decl is `static' and an implicit decl was seen previously,
2103          warn.  But don't complain if -traditional,
2104          since traditional compilers don't complain.  */
2105       if (! flag_traditional && TREE_PUBLIC (name)
2106           /* Don't test for DECL_EXTERNAL, because grokdeclarator
2107              sets this for all functions.  */
2108           && ! TREE_PUBLIC (x)
2109           && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2110           /* We used to warn also for explicit extern followed by static,
2111              but sometimes you need to do it that way.  */
2112           && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2113         {
2114           pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2115                    IDENTIFIER_POINTER (name));
2116           pedwarn_with_file_and_line
2117             (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2118              DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2119              "previous declaration of `%s'",
2120              IDENTIFIER_POINTER (name));
2121           TREE_THIS_VOLATILE (name) = 1;
2122         }
2123
2124       if (t != 0 && duplicate_decls (x, t, different_binding_level))
2125         {
2126           if (TREE_CODE (t) == PARM_DECL)
2127             {
2128               /* Don't allow more than one "real" duplicate
2129                  of a forward parm decl.  */
2130               TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2131               return t;
2132             }
2133           return t;
2134         }
2135
2136       /* If we are processing a typedef statement, generate a whole new
2137          ..._TYPE node (which will be just an variant of the existing
2138          ..._TYPE node with identical properties) and then install the
2139          TYPE_DECL node generated to represent the typedef name as the
2140          TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2141
2142          The whole point here is to end up with a situation where each
2143          and every ..._TYPE node the compiler creates will be uniquely
2144          associated with AT MOST one node representing a typedef name.
2145          This way, even though the compiler substitutes corresponding
2146          ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2147          early on, later parts of the compiler can always do the reverse
2148          translation and get back the corresponding typedef name.  For
2149          example, given:
2150
2151                 typedef struct S MY_TYPE;
2152                 MY_TYPE object;
2153
2154          Later parts of the compiler might only know that `object' was of
2155          type `struct S' if it were not for code just below.  With this
2156          code however, later parts of the compiler see something like:
2157
2158                 struct S' == struct S
2159                 typedef struct S' MY_TYPE;
2160                 struct S' object;
2161
2162          And they can then deduce (from the node for type struct S') that
2163          the original object declaration was:
2164
2165                 MY_TYPE object;
2166
2167          Being able to do this is important for proper support of protoize,
2168          and also for generating precise symbolic debugging information
2169          which takes full account of the programmer's (typedef) vocabulary.
2170
2171          Obviously, we don't want to generate a duplicate ..._TYPE node if
2172          the TYPE_DECL node that we are now processing really represents a
2173          standard built-in type.
2174
2175          Since all standard types are effectively declared at line zero
2176          in the source file, we can easily check to see if we are working
2177          on a standard type by checking the current value of lineno.  */
2178
2179       if (TREE_CODE (x) == TYPE_DECL)
2180         {
2181           if (DECL_SOURCE_LINE (x) == 0)
2182             {
2183               if (TYPE_NAME (TREE_TYPE (x)) == 0)
2184                 TYPE_NAME (TREE_TYPE (x)) = x;
2185             }
2186           else if (TREE_TYPE (x) != error_mark_node
2187                    && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2188             {
2189               tree tt = TREE_TYPE (x);
2190               DECL_ORIGINAL_TYPE (x) = tt;
2191               tt = build_type_copy (tt);
2192               TYPE_NAME (tt) = x;
2193               TREE_TYPE (x) = tt;
2194             }
2195         }
2196
2197       /* Multiple external decls of the same identifier ought to match.
2198          Check against both global declarations (when traditional) and out of
2199          scope (limbo) block level declarations.
2200
2201          We get warnings about inline functions where they are defined.
2202          Avoid duplicate warnings where they are used.  */
2203       if (TREE_PUBLIC (x) && ! DECL_INLINE (x))
2204         {
2205           tree decl;
2206
2207           if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2208               && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2209                   || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2210             decl = IDENTIFIER_GLOBAL_VALUE (name);
2211           else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2212             /* Decls in limbo are always extern, so no need to check that.  */
2213             decl = IDENTIFIER_LIMBO_VALUE (name);
2214           else
2215             decl = 0;
2216
2217           if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2218               /* If old decl is built-in, we already warned if we should.  */
2219               && !DECL_BUILT_IN (decl))
2220             {
2221               pedwarn_with_decl (x,
2222                                  "type mismatch with previous external decl");
2223               pedwarn_with_decl (decl, "previous external decl of `%s'");
2224             }
2225         }
2226
2227       /* If a function has had an implicit declaration, and then is defined,
2228          make sure they are compatible.  */
2229
2230       if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2231           && IDENTIFIER_GLOBAL_VALUE (name) == 0
2232           && TREE_CODE (x) == FUNCTION_DECL
2233           && ! comptypes (TREE_TYPE (x),
2234                           TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2235         {
2236           warning_with_decl (x, "type mismatch with previous implicit declaration");
2237           warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2238                              "previous implicit declaration of `%s'");
2239         }
2240
2241       /* In PCC-compatibility mode, extern decls of vars with no current decl
2242          take effect at top level no matter where they are.  */
2243       if (flag_traditional && DECL_EXTERNAL (x)
2244           && lookup_name (name) == 0)
2245         {
2246           tree type = TREE_TYPE (x);
2247
2248           /* But don't do this if the type contains temporary nodes.  */
2249           while (type)
2250             {
2251               if (type == error_mark_node)
2252                 break;
2253               if (! TREE_PERMANENT (type))
2254                 {
2255                   warning_with_decl (x, "type of external `%s' is not global");
2256                   /* By exiting the loop early, we leave TYPE nonzero,
2257                      and thus prevent globalization of the decl.  */
2258                   break;
2259                 }
2260               else if (TREE_CODE (type) == FUNCTION_TYPE
2261                        && TYPE_ARG_TYPES (type) != 0)
2262                 /* The types might not be truly local,
2263                    but the list of arg types certainly is temporary.
2264                    Since prototypes are nontraditional,
2265                    ok not to do the traditional thing.  */
2266                 break;
2267               type = TREE_TYPE (type);
2268             }
2269
2270           if (type == 0)
2271             b = global_binding_level;
2272         }
2273
2274       /* This name is new in its binding level.
2275          Install the new declaration and return it.  */
2276       if (b == global_binding_level)
2277         {
2278           /* Install a global value.  */
2279           
2280           /* If the first global decl has external linkage,
2281              warn if we later see static one.  */
2282           if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2283             TREE_PUBLIC (name) = 1;
2284
2285           IDENTIFIER_GLOBAL_VALUE (name) = x;
2286
2287           /* We no longer care about any previous block level declarations.  */
2288           IDENTIFIER_LIMBO_VALUE (name) = 0;
2289
2290           /* Don't forget if the function was used via an implicit decl.  */
2291           if (IDENTIFIER_IMPLICIT_DECL (name)
2292               && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2293             TREE_USED (x) = 1, TREE_USED (name) = 1;
2294
2295           /* Don't forget if its address was taken in that way.  */
2296           if (IDENTIFIER_IMPLICIT_DECL (name)
2297               && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2298             TREE_ADDRESSABLE (x) = 1;
2299
2300           /* Warn about mismatches against previous implicit decl.  */
2301           if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2302               /* If this real decl matches the implicit, don't complain.  */
2303               && ! (TREE_CODE (x) == FUNCTION_DECL
2304                     && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2305                         == integer_type_node)))
2306             pedwarn ("`%s' was previously implicitly declared to return `int'",
2307                      IDENTIFIER_POINTER (name));
2308
2309           /* If this decl is `static' and an `extern' was seen previously,
2310              that is erroneous.  */
2311           if (TREE_PUBLIC (name)
2312               && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2313             {
2314               /* Okay to redeclare an ANSI built-in as static.  */
2315               if (t != 0 && DECL_BUILT_IN (t))
2316                 ;
2317               /* Okay to declare a non-ANSI built-in as anything.  */
2318               else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2319                 ;
2320               /* Okay to have global type decl after an earlier extern
2321                  declaration inside a lexical block.  */
2322               else if (TREE_CODE (x) == TYPE_DECL)
2323                 ;
2324               else if (IDENTIFIER_IMPLICIT_DECL (name))
2325                 {
2326                   if (! TREE_THIS_VOLATILE (name))
2327                     pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2328                              IDENTIFIER_POINTER (name));
2329                 }
2330               else
2331                 pedwarn ("`%s' was declared `extern' and later `static'",
2332                          IDENTIFIER_POINTER (name));
2333             }
2334         }
2335       else
2336         {
2337           /* Here to install a non-global value.  */
2338           tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2339           tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2340           IDENTIFIER_LOCAL_VALUE (name) = x;
2341
2342           /* If this is an extern function declaration, see if we
2343              have a global definition or declaration for the function.  */
2344           if (oldlocal == 0
2345               && DECL_EXTERNAL (x) && !DECL_INLINE (x)
2346               && oldglobal != 0
2347               && TREE_CODE (x) == FUNCTION_DECL
2348               && TREE_CODE (oldglobal) == FUNCTION_DECL)
2349             {
2350               /* We have one.  Their types must agree.  */
2351               if (! comptypes (TREE_TYPE (x),
2352                                TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2353                 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2354               else
2355                 {
2356                   /* Inner extern decl is inline if global one is.
2357                      Copy enough to really inline it.  */
2358                   if (DECL_INLINE (oldglobal))
2359                     {
2360                       DECL_INLINE (x) = DECL_INLINE (oldglobal);
2361                       DECL_INITIAL (x) = (current_function_decl == oldglobal
2362                                           ? 0 : DECL_INITIAL (oldglobal));
2363                       DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2364                       DECL_FRAME_SIZE (x) = DECL_FRAME_SIZE (oldglobal);
2365                       DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2366                       DECL_RESULT (x) = DECL_RESULT (oldglobal);
2367                       TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2368                       DECL_ABSTRACT_ORIGIN (x) = oldglobal;
2369                     }
2370                   /* Inner extern decl is built-in if global one is.  */
2371                   if (DECL_BUILT_IN (oldglobal))
2372                     {
2373                       DECL_BUILT_IN (x) = DECL_BUILT_IN (oldglobal);
2374                       DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2375                     }
2376                   /* Keep the arg types from a file-scope fcn defn.  */
2377                   if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2378                       && DECL_INITIAL (oldglobal)
2379                       && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2380                     TREE_TYPE (x) = TREE_TYPE (oldglobal);
2381                 }
2382             }
2383
2384 #if 0 /* This case is probably sometimes the right thing to do.  */
2385           /* If we have a local external declaration,
2386              then any file-scope declaration should not
2387              have been static.  */
2388           if (oldlocal == 0 && oldglobal != 0
2389               && !TREE_PUBLIC (oldglobal)
2390               && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2391             warning ("`%s' locally external but globally static",
2392                      IDENTIFIER_POINTER (name));
2393 #endif
2394
2395           /* If we have a local external declaration,
2396              and no file-scope declaration has yet been seen,
2397              then if we later have a file-scope decl it must not be static.  */
2398           if (oldlocal == 0
2399               && DECL_EXTERNAL (x)
2400               && TREE_PUBLIC (x))
2401             {
2402               if (oldglobal == 0)
2403                 TREE_PUBLIC (name) = 1;
2404
2405               /* Save this decl, so that we can do type checking against
2406                  other decls after it falls out of scope.
2407
2408                  Only save it once.  This prevents temporary decls created in
2409                  expand_inline_function from being used here, since this
2410                  will have been set when the inline function was parsed.
2411                  It also helps give slightly better warnings.  */
2412               if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2413                 IDENTIFIER_LIMBO_VALUE (name) = x;
2414             }
2415
2416           /* Warn if shadowing an argument at the top level of the body.  */
2417           if (oldlocal != 0 && !DECL_EXTERNAL (x)
2418               /* This warning doesn't apply to the parms of a nested fcn.  */
2419               && ! current_binding_level->parm_flag
2420               /* Check that this is one level down from the parms.  */
2421               && current_binding_level->level_chain->parm_flag
2422               /* Check that the decl being shadowed
2423                  comes from the parm level, one level up.  */
2424               && chain_member (oldlocal, current_binding_level->level_chain->names))
2425             {
2426               if (TREE_CODE (oldlocal) == PARM_DECL)
2427                 pedwarn ("declaration of `%s' shadows a parameter",
2428                          IDENTIFIER_POINTER (name));
2429               else
2430                 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2431                          IDENTIFIER_POINTER (name));
2432             }
2433
2434           /* Maybe warn if shadowing something else.  */
2435           else if (warn_shadow && !DECL_EXTERNAL (x)
2436                    /* No shadow warnings for internally generated vars.  */
2437                    && DECL_SOURCE_LINE (x) != 0
2438                    /* No shadow warnings for vars made for inlining.  */
2439                    && ! DECL_FROM_INLINE (x))
2440             {
2441               char *warnstring = 0;
2442
2443               if (TREE_CODE (x) == PARM_DECL
2444                   && current_binding_level->level_chain->parm_flag)
2445                 /* Don't warn about the parm names in function declarator
2446                    within a function declarator.
2447                    It would be nice to avoid warning in any function
2448                    declarator in a declaration, as opposed to a definition,
2449                    but there is no way to tell it's not a definition.  */
2450                 ;
2451               else if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
2452                 warnstring = "declaration of `%s' shadows a parameter";
2453               else if (oldlocal != 0)
2454                 warnstring = "declaration of `%s' shadows previous local";
2455               else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2456                        && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2457                 warnstring = "declaration of `%s' shadows global declaration";
2458
2459               if (warnstring)
2460                 warning (warnstring, IDENTIFIER_POINTER (name));
2461             }
2462
2463           /* If storing a local value, there may already be one (inherited).
2464              If so, record it for restoration when this binding level ends.  */
2465           if (oldlocal != 0)
2466             b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2467         }
2468
2469       /* Keep count of variables in this level with incomplete type.  */
2470       if (TYPE_SIZE (TREE_TYPE (x)) == 0)
2471         ++b->n_incomplete;
2472     }
2473
2474   /* Put decls on list in reverse order.
2475      We will reverse them later if necessary.  */
2476   TREE_CHAIN (x) = b->names;
2477   b->names = x;
2478
2479   return x;
2480 }
2481
2482 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate.  */
2483
2484 tree
2485 pushdecl_top_level (x)
2486      tree x;
2487 {
2488   register tree t;
2489   register struct binding_level *b = current_binding_level;
2490
2491   current_binding_level = global_binding_level;
2492   t = pushdecl (x);
2493   current_binding_level = b;
2494   return t;
2495 }
2496 \f
2497 /* Generate an implicit declaration for identifier FUNCTIONID
2498    as a function of type int ().  Print a warning if appropriate.  */
2499
2500 tree
2501 implicitly_declare (functionid)
2502      tree functionid;
2503 {
2504   register tree decl;
2505   int traditional_warning = 0;
2506   /* Only one "implicit declaration" warning per identifier.  */
2507   int implicit_warning;
2508
2509   /* Save the decl permanently so we can warn if definition follows.  */
2510   push_obstacks_nochange ();
2511   end_temporary_allocation ();
2512
2513   /* We used to reuse an old implicit decl here,
2514      but this loses with inline functions because it can clobber
2515      the saved decl chains.  */
2516 /*  if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2517     decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2518   else  */
2519     decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2520
2521   /* Warn of implicit decl following explicit local extern decl.
2522      This is probably a program designed for traditional C.  */
2523   if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2524     traditional_warning = 1;
2525
2526   /* Warn once of an implicit declaration.  */
2527   implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2528
2529   DECL_EXTERNAL (decl) = 1;
2530   TREE_PUBLIC (decl) = 1;
2531
2532   /* Record that we have an implicit decl and this is it.  */
2533   IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2534
2535   /* ANSI standard says implicit declarations are in the innermost block.
2536      So we record the decl in the standard fashion.
2537      If flag_traditional is set, pushdecl does it top-level.  */
2538   pushdecl (decl);
2539
2540   /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
2541   maybe_objc_check_decl (decl);
2542
2543   rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
2544
2545   if (mesg_implicit_function_declaration && implicit_warning)
2546     {
2547       if (mesg_implicit_function_declaration == 2)
2548         error ("implicit declaration of function `%s'",
2549                  IDENTIFIER_POINTER (functionid));
2550       else
2551         warning ("implicit declaration of function `%s'",
2552                  IDENTIFIER_POINTER (functionid));
2553     }
2554   else if (warn_traditional && traditional_warning)
2555     warning ("function `%s' was previously declared within a block",
2556              IDENTIFIER_POINTER (functionid));
2557
2558   /* Write a record describing this implicit function declaration to the
2559      prototypes file (if requested).  */
2560
2561   gen_aux_info_record (decl, 0, 1, 0);
2562
2563   pop_obstacks ();
2564
2565   return decl;
2566 }
2567
2568 /* Return zero if the declaration NEWDECL is valid
2569    when the declaration OLDDECL (assumed to be for the same name)
2570    has already been seen.
2571    Otherwise return an error message format string with a %s
2572    where the identifier should go.  */
2573
2574 static char *
2575 redeclaration_error_message (newdecl, olddecl)
2576      tree newdecl, olddecl;
2577 {
2578   if (TREE_CODE (newdecl) == TYPE_DECL)
2579     {
2580       if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2581         return 0;
2582       /* pushdecl creates distinct types for TYPE_DECLs by calling
2583          build_type_copy, so the above comparison generally fails.  We do
2584          another test against the TYPE_MAIN_VARIANT of the olddecl, which
2585          is equivalent to what this code used to do before the build_type_copy
2586          call.  The variant type distinction should not matter for traditional
2587          code, because it doesn't have type qualifiers.  */
2588       if (flag_traditional 
2589           && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2590         return 0;
2591       if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2592         return 0;
2593       return "redefinition of `%s'";
2594     }
2595   else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2596     {
2597       /* Declarations of functions can insist on internal linkage
2598          but they can't be inconsistent with internal linkage,
2599          so there can be no error on that account.
2600          However defining the same name twice is no good.  */
2601       if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2602           /* However, defining once as extern inline and a second
2603              time in another way is ok.  */
2604           && !(DECL_INLINE (olddecl) && DECL_EXTERNAL (olddecl)
2605                && !(DECL_INLINE (newdecl) && DECL_EXTERNAL (newdecl))))
2606         return "redefinition of `%s'";
2607       return 0;
2608     }
2609   else if (current_binding_level == global_binding_level)
2610     {
2611       /* Objects declared at top level:  */
2612       /* If at least one is a reference, it's ok.  */
2613       if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2614         return 0;
2615       /* Reject two definitions.  */
2616       if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2617         return "redefinition of `%s'";
2618       /* Now we have two tentative defs, or one tentative and one real def.  */
2619       /* Insist that the linkage match.  */
2620       if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2621         return "conflicting declarations of `%s'";
2622       return 0;
2623     }
2624   else if (current_binding_level->parm_flag
2625            && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2626     return 0;
2627   else
2628     {
2629       /* Newdecl has block scope.  If olddecl has block scope also, then
2630          reject two definitions, and reject a definition together with an
2631          external reference.  Otherwise, it is OK, because newdecl must
2632          be an extern reference to olddecl.  */
2633       if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2634           && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2635         return "redeclaration of `%s'";
2636       return 0;
2637     }
2638 }
2639 \f
2640 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2641    Create one if none exists so far for the current function.
2642    This function is called for both label definitions and label references.  */
2643
2644 tree
2645 lookup_label (id)
2646      tree id;
2647 {
2648   register tree decl = IDENTIFIER_LABEL_VALUE (id);
2649
2650   if (current_function_decl == 0)
2651     {
2652       error ("label %s referenced outside of any function",
2653              IDENTIFIER_POINTER (id));
2654       return 0;
2655     }
2656
2657   /* Use a label already defined or ref'd with this name.  */
2658   if (decl != 0)
2659     {
2660       /* But not if it is inherited and wasn't declared to be inheritable.  */
2661       if (DECL_CONTEXT (decl) != current_function_decl
2662           && ! C_DECLARED_LABEL_FLAG (decl))
2663         return shadow_label (id);
2664       return decl;
2665     }
2666
2667   decl = build_decl (LABEL_DECL, id, void_type_node);
2668
2669   /* Make sure every label has an rtx.  */
2670   label_rtx (decl);
2671
2672   /* A label not explicitly declared must be local to where it's ref'd.  */
2673   DECL_CONTEXT (decl) = current_function_decl;
2674
2675   DECL_MODE (decl) = VOIDmode;
2676
2677   /* Say where one reference is to the label,
2678      for the sake of the error if it is not defined.  */
2679   DECL_SOURCE_LINE (decl) = lineno;
2680   DECL_SOURCE_FILE (decl) = input_filename;
2681
2682   IDENTIFIER_LABEL_VALUE (id) = decl;
2683
2684   named_labels = tree_cons (NULL_TREE, decl, named_labels);
2685
2686   return decl;
2687 }
2688
2689 /* Make a label named NAME in the current function,
2690    shadowing silently any that may be inherited from containing functions
2691    or containing scopes.
2692
2693    Note that valid use, if the label being shadowed
2694    comes from another scope in the same function,
2695    requires calling declare_nonlocal_label right away.  */
2696
2697 tree
2698 shadow_label (name)
2699      tree name;
2700 {
2701   register tree decl = IDENTIFIER_LABEL_VALUE (name);
2702
2703   if (decl != 0)
2704     {
2705       register tree dup;
2706
2707       /* Check to make sure that the label hasn't already been declared
2708          at this label scope */
2709       for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2710         if (TREE_VALUE (dup) == decl)
2711           {
2712             error ("duplicate label declaration `%s'", 
2713                    IDENTIFIER_POINTER (name));
2714             error_with_decl (TREE_VALUE (dup),
2715                              "this is a previous declaration");
2716             /* Just use the previous declaration.  */
2717             return lookup_label (name);
2718           }
2719
2720       shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2721       IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2722     }
2723
2724   return lookup_label (name);
2725 }
2726
2727 /* Define a label, specifying the location in the source file.
2728    Return the LABEL_DECL node for the label, if the definition is valid.
2729    Otherwise return 0.  */
2730
2731 tree
2732 define_label (filename, line, name)
2733      char *filename;
2734      int line;
2735      tree name;
2736 {
2737   tree decl = lookup_label (name);
2738
2739   /* If label with this name is known from an outer context, shadow it.  */
2740   if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2741     {
2742       shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2743       IDENTIFIER_LABEL_VALUE (name) = 0;
2744       decl = lookup_label (name);
2745     }
2746
2747   if (DECL_INITIAL (decl) != 0)
2748     {
2749       error ("duplicate label `%s'", IDENTIFIER_POINTER (name));
2750       return 0;
2751     }
2752   else
2753     {
2754       /* Mark label as having been defined.  */
2755       DECL_INITIAL (decl) = error_mark_node;
2756       /* Say where in the source.  */
2757       DECL_SOURCE_FILE (decl) = filename;
2758       DECL_SOURCE_LINE (decl) = line;
2759       return decl;
2760     }
2761 }
2762 \f
2763 /* Return the list of declarations of the current level.
2764    Note that this list is in reverse order unless/until
2765    you nreverse it; and when you do nreverse it, you must
2766    store the result back using `storedecls' or you will lose.  */
2767
2768 tree
2769 getdecls ()
2770 {
2771   return current_binding_level->names;
2772 }
2773
2774 /* Return the list of type-tags (for structs, etc) of the current level.  */
2775
2776 tree
2777 gettags ()
2778 {
2779   return current_binding_level->tags;
2780 }
2781
2782 /* Store the list of declarations of the current level.
2783    This is done for the parameter declarations of a function being defined,
2784    after they are modified in the light of any missing parameters.  */
2785
2786 static void
2787 storedecls (decls)
2788      tree decls;
2789 {
2790   current_binding_level->names = decls;
2791 }
2792
2793 /* Similarly, store the list of tags of the current level.  */
2794
2795 static void
2796 storetags (tags)
2797      tree tags;
2798 {
2799   current_binding_level->tags = tags;
2800 }
2801 \f
2802 /* Given NAME, an IDENTIFIER_NODE,
2803    return the structure (or union or enum) definition for that name.
2804    Searches binding levels from BINDING_LEVEL up to the global level.
2805    If THISLEVEL_ONLY is nonzero, searches only the specified context
2806    (but skips any tag-transparent contexts to find one that is
2807    meaningful for tags).
2808    CODE says which kind of type the caller wants;
2809    it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2810    If the wrong kind of type is found, an error is reported.  */
2811
2812 static tree
2813 lookup_tag (code, name, binding_level, thislevel_only)
2814      enum tree_code code;
2815      struct binding_level *binding_level;
2816      tree name;
2817      int thislevel_only;
2818 {
2819   register struct binding_level *level;
2820
2821   for (level = binding_level; level; level = level->level_chain)
2822     {
2823       register tree tail;
2824       for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2825         {
2826           if (TREE_PURPOSE (tail) == name)
2827             {
2828               if (TREE_CODE (TREE_VALUE (tail)) != code)
2829                 {
2830                   /* Definition isn't the kind we were looking for.  */
2831                   pending_invalid_xref = name;
2832                   pending_invalid_xref_file = input_filename;
2833                   pending_invalid_xref_line = lineno;
2834                 }
2835               return TREE_VALUE (tail);
2836             }
2837         }
2838       if (thislevel_only && ! level->tag_transparent)
2839         return NULL_TREE;
2840     }
2841   return NULL_TREE;
2842 }
2843
2844 /* Print an error message now
2845    for a recent invalid struct, union or enum cross reference.
2846    We don't print them immediately because they are not invalid
2847    when used in the `struct foo;' construct for shadowing.  */
2848
2849 void
2850 pending_xref_error ()
2851 {
2852   if (pending_invalid_xref != 0)
2853     error_with_file_and_line (pending_invalid_xref_file,
2854                               pending_invalid_xref_line,
2855                               "`%s' defined as wrong kind of tag",
2856                               IDENTIFIER_POINTER (pending_invalid_xref));
2857   pending_invalid_xref = 0;
2858 }
2859
2860 /* Given a type, find the tag that was defined for it and return the tag name.
2861    Otherwise return 0.  */
2862
2863 static tree
2864 lookup_tag_reverse (type)
2865      tree type;
2866 {
2867   register struct binding_level *level;
2868
2869   for (level = current_binding_level; level; level = level->level_chain)
2870     {
2871       register tree tail;
2872       for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2873         {
2874           if (TREE_VALUE (tail) == type)
2875             return TREE_PURPOSE (tail);
2876         }
2877     }
2878   return NULL_TREE;
2879 }
2880 \f
2881 /* Look up NAME in the current binding level and its superiors
2882    in the namespace of variables, functions and typedefs.
2883    Return a ..._DECL node of some kind representing its definition,
2884    or return 0 if it is undefined.  */
2885
2886 tree
2887 lookup_name (name)
2888      tree name;
2889 {
2890   register tree val;
2891   if (current_binding_level != global_binding_level
2892       && IDENTIFIER_LOCAL_VALUE (name))
2893     val = IDENTIFIER_LOCAL_VALUE (name);
2894   else
2895     val = IDENTIFIER_GLOBAL_VALUE (name);
2896   return val;
2897 }
2898
2899 /* Similar to `lookup_name' but look only at current binding level.  */
2900
2901 tree
2902 lookup_name_current_level (name)
2903      tree name;
2904 {
2905   register tree t;
2906
2907   if (current_binding_level == global_binding_level)
2908     return IDENTIFIER_GLOBAL_VALUE (name);
2909
2910   if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2911     return 0;
2912
2913   for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2914     if (DECL_NAME (t) == name)
2915       break;
2916
2917   return t;
2918 }
2919 \f
2920 /* Create the predefined scalar types of C,
2921    and some nodes representing standard constants (0, 1, (void *) 0).
2922    Initialize the global binding level.
2923    Make definitions for built-in primitive functions.  */
2924
2925 void
2926 init_decl_processing ()
2927 {
2928   register tree endlink;
2929   /* Either char* or void*.  */
2930   tree traditional_ptr_type_node;
2931   /* Data types of memcpy and strlen.  */
2932   tree memcpy_ftype, memset_ftype, strlen_ftype;
2933   tree void_ftype_any, ptr_ftype_void, ptr_ftype_ptr;
2934   int wchar_type_size;
2935   tree temp;
2936   tree array_domain_type;
2937
2938   current_function_decl = NULL;
2939   named_labels = NULL;
2940   current_binding_level = NULL_BINDING_LEVEL;
2941   free_binding_level = NULL_BINDING_LEVEL;
2942   pushlevel (0);        /* make the binding_level structure for global names */
2943   global_binding_level = current_binding_level;
2944
2945   /* Define `int' and `char' first so that dbx will output them first.  */
2946
2947   integer_type_node = make_signed_type (INT_TYPE_SIZE);
2948   pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_INT],
2949                         integer_type_node));
2950
2951   /* Define `char', which is like either `signed char' or `unsigned char'
2952      but not the same as either.  */
2953
2954   char_type_node
2955     = (flag_signed_char
2956        ? make_signed_type (CHAR_TYPE_SIZE)
2957        : make_unsigned_type (CHAR_TYPE_SIZE));
2958   pushdecl (build_decl (TYPE_DECL, get_identifier ("char"),
2959                         char_type_node));
2960
2961   long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
2962   pushdecl (build_decl (TYPE_DECL, get_identifier ("long int"),
2963                         long_integer_type_node));
2964
2965   unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
2966   pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned int"),
2967                         unsigned_type_node));
2968
2969   long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
2970   pushdecl (build_decl (TYPE_DECL, get_identifier ("long unsigned int"),
2971                         long_unsigned_type_node));
2972
2973   long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
2974   pushdecl (build_decl (TYPE_DECL, get_identifier ("long long int"),
2975                         long_long_integer_type_node));
2976
2977   long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
2978   pushdecl (build_decl (TYPE_DECL, get_identifier ("long long unsigned int"),
2979                         long_long_unsigned_type_node));
2980
2981   short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
2982   pushdecl (build_decl (TYPE_DECL, get_identifier ("short int"),
2983                         short_integer_type_node));
2984
2985   short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
2986   pushdecl (build_decl (TYPE_DECL, get_identifier ("short unsigned int"),
2987                         short_unsigned_type_node));
2988
2989   /* `unsigned long' is the standard type for sizeof.
2990      Traditionally, use a signed type.
2991      Note that stddef.h uses `unsigned long',
2992      and this must agree, even if long and int are the same size.  */
2993   set_sizetype
2994     (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE))));
2995   if (flag_traditional && TREE_UNSIGNED (sizetype))
2996     set_sizetype (signed_type (sizetype));
2997
2998   ptrdiff_type_node
2999     = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE)));
3000
3001   error_mark_node = make_node (ERROR_MARK);
3002   TREE_TYPE (error_mark_node) = error_mark_node;
3003
3004   /* Define both `signed char' and `unsigned char'.  */
3005   signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
3006   pushdecl (build_decl (TYPE_DECL, get_identifier ("signed char"),
3007                         signed_char_type_node));
3008
3009   unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
3010   pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned char"),
3011                         unsigned_char_type_node));
3012
3013   intQI_type_node = make_signed_type (GET_MODE_BITSIZE (QImode));
3014   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intQI_type_node));
3015
3016   intHI_type_node = make_signed_type (GET_MODE_BITSIZE (HImode));
3017   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intHI_type_node));
3018
3019   intSI_type_node = make_signed_type (GET_MODE_BITSIZE (SImode));
3020   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intSI_type_node));
3021
3022   intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
3023   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
3024
3025   intTI_type_node = make_signed_type (GET_MODE_BITSIZE (TImode));
3026   pushdecl (build_decl (TYPE_DECL, NULL_TREE, intTI_type_node));
3027
3028   unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
3029   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
3030
3031   unsigned_intHI_type_node = make_unsigned_type (GET_MODE_BITSIZE (HImode));
3032   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intHI_type_node));
3033
3034   unsigned_intSI_type_node = make_unsigned_type (GET_MODE_BITSIZE (SImode));
3035   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intSI_type_node));
3036
3037   unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
3038   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
3039
3040   unsigned_intTI_type_node = make_unsigned_type (GET_MODE_BITSIZE (TImode));
3041   pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intTI_type_node));
3042
3043   float_type_node = make_node (REAL_TYPE);
3044   TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
3045   pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_FLOAT],
3046                         float_type_node));
3047   layout_type (float_type_node);
3048
3049   double_type_node = make_node (REAL_TYPE);
3050   if (flag_short_double)
3051     TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
3052   else
3053     TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
3054   pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_DOUBLE],
3055                         double_type_node));
3056   layout_type (double_type_node);
3057
3058   long_double_type_node = make_node (REAL_TYPE);
3059   TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
3060   pushdecl (build_decl (TYPE_DECL, get_identifier ("long double"),
3061                         long_double_type_node));
3062   layout_type (long_double_type_node);
3063
3064   complex_integer_type_node = make_node (COMPLEX_TYPE);
3065   pushdecl (build_decl (TYPE_DECL, get_identifier ("complex int"),
3066                         complex_integer_type_node));
3067   TREE_TYPE (complex_integer_type_node) = integer_type_node;
3068   layout_type (complex_integer_type_node);
3069
3070   complex_float_type_node = make_node (COMPLEX_TYPE);
3071   pushdecl (build_decl (TYPE_DECL, get_identifier ("complex float"),
3072                         complex_float_type_node));
3073   TREE_TYPE (complex_float_type_node) = float_type_node;
3074   layout_type (complex_float_type_node);
3075
3076   complex_double_type_node = make_node (COMPLEX_TYPE);
3077   pushdecl (build_decl (TYPE_DECL, get_identifier ("complex double"),
3078                         complex_double_type_node));
3079   TREE_TYPE (complex_double_type_node) = double_type_node;
3080   layout_type (complex_double_type_node);
3081
3082   complex_long_double_type_node = make_node (COMPLEX_TYPE);
3083   pushdecl (build_decl (TYPE_DECL, get_identifier ("complex long double"),
3084                         complex_long_double_type_node));
3085   TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
3086   layout_type (complex_long_double_type_node);
3087
3088   wchar_type_node
3089     = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (WCHAR_TYPE)));
3090   wchar_type_size = TYPE_PRECISION (wchar_type_node);
3091   signed_wchar_type_node = signed_type (wchar_type_node);
3092   unsigned_wchar_type_node = unsigned_type (wchar_type_node);
3093
3094   integer_zero_node = build_int_2 (0, 0);
3095   TREE_TYPE (integer_zero_node) = integer_type_node;
3096   integer_one_node = build_int_2 (1, 0);
3097   TREE_TYPE (integer_one_node) = integer_type_node;
3098
3099   boolean_type_node = integer_type_node;
3100   boolean_true_node = integer_one_node;
3101   boolean_false_node = integer_zero_node;
3102
3103   size_zero_node = build_int_2 (0, 0);
3104   TREE_TYPE (size_zero_node) = sizetype;
3105   size_one_node = build_int_2 (1, 0);
3106   TREE_TYPE (size_one_node) = sizetype;
3107
3108   void_type_node = make_node (VOID_TYPE);
3109   pushdecl (build_decl (TYPE_DECL,
3110                         ridpointers[(int) RID_VOID], void_type_node));
3111   layout_type (void_type_node); /* Uses integer_zero_node */
3112   /* We are not going to have real types in C with less than byte alignment,
3113      so we might as well not have any types that claim to have it.  */
3114   TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
3115
3116   null_pointer_node = build_int_2 (0, 0);
3117   TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
3118   layout_type (TREE_TYPE (null_pointer_node));
3119
3120   string_type_node = build_pointer_type (char_type_node);
3121   const_string_type_node
3122     = build_pointer_type (build_type_variant (char_type_node, 1, 0));
3123
3124   /* Make a type to be the domain of a few array types
3125      whose domains don't really matter.
3126      200 is small enough that it always fits in size_t
3127      and large enough that it can hold most function names for the
3128      initializations of __FUNCTION__ and __PRETTY_FUNCTION__.  */
3129   array_domain_type = build_index_type (build_int_2 (200, 0));
3130
3131   /* make a type for arrays of characters.
3132      With luck nothing will ever really depend on the length of this
3133      array type.  */
3134   char_array_type_node
3135     = build_array_type (char_type_node, array_domain_type);
3136   /* Likewise for arrays of ints.  */
3137   int_array_type_node
3138     = build_array_type (integer_type_node, array_domain_type);
3139   /* This is for wide string constants.  */
3140   wchar_array_type_node
3141     = build_array_type (wchar_type_node, array_domain_type);
3142
3143   default_function_type
3144     = build_function_type (integer_type_node, NULL_TREE);
3145
3146   ptr_type_node = build_pointer_type (void_type_node);
3147   const_ptr_type_node
3148     = build_pointer_type (build_type_variant (void_type_node, 1, 0));
3149
3150   endlink = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
3151
3152   void_ftype_any
3153     = build_function_type (void_type_node, NULL_TREE);
3154
3155   float_ftype_float
3156     = build_function_type (float_type_node,
3157                            tree_cons (NULL_TREE, float_type_node, endlink));
3158
3159   double_ftype_double
3160     = build_function_type (double_type_node,
3161                            tree_cons (NULL_TREE, double_type_node, endlink));
3162
3163   ldouble_ftype_ldouble
3164     = build_function_type (long_double_type_node,
3165                            tree_cons (NULL_TREE, long_double_type_node,
3166                                       endlink));
3167
3168   double_ftype_double_double
3169     = build_function_type (double_type_node,
3170                            tree_cons (NULL_TREE, double_type_node,
3171                                       tree_cons (NULL_TREE,
3172                                                  double_type_node, endlink)));
3173
3174   int_ftype_int
3175     = build_function_type (integer_type_node,
3176                            tree_cons (NULL_TREE, integer_type_node, endlink));
3177
3178   long_ftype_long
3179     = build_function_type (long_integer_type_node,
3180                            tree_cons (NULL_TREE,
3181                                       long_integer_type_node, endlink));
3182
3183   void_ftype_ptr_ptr_int
3184     = build_function_type (void_type_node,
3185                            tree_cons (NULL_TREE, ptr_type_node,
3186                                       tree_cons (NULL_TREE, ptr_type_node,
3187                                                  tree_cons (NULL_TREE,
3188                                                             integer_type_node,
3189                                                             endlink))));
3190
3191   int_ftype_cptr_cptr_sizet
3192     = build_function_type (integer_type_node,
3193                            tree_cons (NULL_TREE, const_ptr_type_node,
3194                                       tree_cons (NULL_TREE, const_ptr_type_node,
3195                                                  tree_cons (NULL_TREE,
3196                                                             sizetype,
3197                                                             endlink))));
3198
3199   void_ftype_ptr_int_int
3200     = build_function_type (void_type_node,
3201                            tree_cons (NULL_TREE, ptr_type_node,
3202                                       tree_cons (NULL_TREE, integer_type_node,
3203                                                  tree_cons (NULL_TREE,
3204                                                             integer_type_node,
3205                                                             endlink))));
3206
3207   string_ftype_ptr_ptr          /* strcpy prototype */
3208     = build_function_type (string_type_node,
3209                            tree_cons (NULL_TREE, string_type_node,
3210                                       tree_cons (NULL_TREE,
3211                                                  const_string_type_node,
3212                                                  endlink)));
3213
3214   int_ftype_string_string       /* strcmp prototype */
3215     = build_function_type (integer_type_node,
3216                            tree_cons (NULL_TREE, const_string_type_node,
3217                                       tree_cons (NULL_TREE,
3218                                                  const_string_type_node,
3219                                                  endlink)));
3220
3221   strlen_ftype          /* strlen prototype */
3222     = build_function_type (flag_traditional ? integer_type_node : sizetype,
3223                            tree_cons (NULL_TREE, const_string_type_node,
3224                                       endlink));
3225
3226   traditional_ptr_type_node
3227     = (flag_traditional ? string_type_node : ptr_type_node);
3228
3229   memcpy_ftype  /* memcpy prototype */
3230     = build_function_type (traditional_ptr_type_node,
3231                            tree_cons (NULL_TREE, ptr_type_node,
3232                                       tree_cons (NULL_TREE, const_ptr_type_node,
3233                                                  tree_cons (NULL_TREE,
3234                                                             sizetype,
3235                                                             endlink))));
3236
3237   memset_ftype  /* memset prototype */
3238     = build_function_type (traditional_ptr_type_node,
3239                            tree_cons (NULL_TREE, ptr_type_node,
3240                                       tree_cons (NULL_TREE, integer_type_node,
3241                                                  tree_cons (NULL_TREE,
3242                                                             sizetype,
3243                                                             endlink))));
3244
3245   ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3246   ptr_ftype_ptr
3247     = build_function_type (ptr_type_node,
3248                            tree_cons (NULL_TREE, ptr_type_node, endlink));
3249
3250   builtin_function ("__builtin_constant_p", default_function_type,
3251                     BUILT_IN_CONSTANT_P, NULL_PTR);
3252
3253   builtin_function ("__builtin_return_address",
3254                     build_function_type (ptr_type_node, 
3255                                          tree_cons (NULL_TREE,
3256                                                     unsigned_type_node,
3257                                                     endlink)),
3258                     BUILT_IN_RETURN_ADDRESS, NULL_PTR);
3259
3260   builtin_function ("__builtin_frame_address",
3261                     build_function_type (ptr_type_node, 
3262                                          tree_cons (NULL_TREE,
3263                                                     unsigned_type_node,
3264                                                     endlink)),
3265                     BUILT_IN_FRAME_ADDRESS, NULL_PTR);
3266
3267   builtin_function ("__builtin_aggregate_incoming_address",
3268                     build_function_type (ptr_type_node, NULL_TREE),
3269                     BUILT_IN_AGGREGATE_INCOMING_ADDRESS, NULL_PTR);
3270
3271   /* Hooks for the DWARF 2 __throw routine.  */
3272   builtin_function ("__builtin_unwind_init",
3273                     build_function_type (void_type_node, endlink),
3274                     BUILT_IN_UNWIND_INIT, NULL_PTR);
3275   builtin_function ("__builtin_fp", ptr_ftype_void, BUILT_IN_FP, NULL_PTR);
3276   builtin_function ("__builtin_sp", ptr_ftype_void, BUILT_IN_SP, NULL_PTR);
3277   builtin_function ("__builtin_dwarf_fp_regnum",
3278                     build_function_type (unsigned_type_node, endlink),
3279                     BUILT_IN_DWARF_FP_REGNUM, NULL_PTR);
3280   builtin_function ("__builtin_dwarf_reg_size", int_ftype_int,
3281                     BUILT_IN_DWARF_REG_SIZE, NULL_PTR);             
3282   builtin_function ("__builtin_frob_return_addr", ptr_ftype_ptr,
3283                     BUILT_IN_FROB_RETURN_ADDR, NULL_PTR);
3284   builtin_function ("__builtin_extract_return_addr", ptr_ftype_ptr,
3285                     BUILT_IN_EXTRACT_RETURN_ADDR, NULL_PTR);
3286   builtin_function ("__builtin_set_return_addr_reg",
3287                     build_function_type (void_type_node, 
3288                                          tree_cons (NULL_TREE,
3289                                                     ptr_type_node,
3290                                                     endlink)),
3291                     BUILT_IN_SET_RETURN_ADDR_REG, NULL_PTR);
3292   builtin_function ("__builtin_eh_stub_old", ptr_ftype_void,
3293                     BUILT_IN_EH_STUB_OLD, NULL_PTR);
3294   builtin_function ("__builtin_eh_stub", ptr_ftype_void,
3295                     BUILT_IN_EH_STUB, NULL_PTR);
3296   builtin_function
3297     ("__builtin_set_eh_regs",
3298      build_function_type (void_type_node,
3299                           tree_cons (NULL_TREE, ptr_type_node,
3300                                      tree_cons (NULL_TREE,
3301                                                 type_for_mode (ptr_mode, 0),
3302                                                 endlink))),
3303      BUILT_IN_SET_EH_REGS, NULL_PTR);
3304
3305   builtin_function ("__builtin_alloca",
3306                     build_function_type (ptr_type_node,
3307                                          tree_cons (NULL_TREE,
3308                                                     sizetype,
3309                                                     endlink)),
3310                     BUILT_IN_ALLOCA, "alloca");
3311   builtin_function ("__builtin_ffs", int_ftype_int, BUILT_IN_FFS, NULL_PTR);
3312   /* Define alloca, ffs as builtins.
3313      Declare _exit just to mark it as volatile.  */
3314   if (! flag_no_builtin && !flag_no_nonansi_builtin)
3315     {
3316       temp = builtin_function ("alloca",
3317                                build_function_type (ptr_type_node,
3318                                                     tree_cons (NULL_TREE,
3319                                                                sizetype,
3320                                                                endlink)),
3321                                BUILT_IN_ALLOCA, NULL_PTR);
3322       /* Suppress error if redefined as a non-function.  */
3323       DECL_BUILT_IN_NONANSI (temp) = 1;
3324       temp = builtin_function ("ffs", int_ftype_int, BUILT_IN_FFS, NULL_PTR);
3325       /* Suppress error if redefined as a non-function.  */
3326       DECL_BUILT_IN_NONANSI (temp) = 1;
3327       temp = builtin_function ("_exit", void_ftype_any, NOT_BUILT_IN,
3328                                NULL_PTR);
3329       TREE_THIS_VOLATILE (temp) = 1;
3330       TREE_SIDE_EFFECTS (temp) = 1;
3331       /* Suppress error if redefined as a non-function.  */
3332       DECL_BUILT_IN_NONANSI (temp) = 1;
3333     }
3334
3335   builtin_function ("__builtin_abs", int_ftype_int, BUILT_IN_ABS, NULL_PTR);
3336   builtin_function ("__builtin_fabsf", float_ftype_float, BUILT_IN_FABS,
3337                     NULL_PTR);
3338   builtin_function ("__builtin_fabs", double_ftype_double, BUILT_IN_FABS,
3339                     NULL_PTR);
3340   builtin_function ("__builtin_fabsl", ldouble_ftype_ldouble, BUILT_IN_FABS,
3341                     NULL_PTR);
3342   builtin_function ("__builtin_labs", long_ftype_long, BUILT_IN_LABS,
3343                     NULL_PTR);
3344   builtin_function ("__builtin_saveregs",
3345                     build_function_type (ptr_type_node, NULL_TREE),
3346                     BUILT_IN_SAVEREGS, NULL_PTR);
3347 /* EXPAND_BUILTIN_VARARGS is obsolete.  */
3348 #if 0
3349   builtin_function ("__builtin_varargs",
3350                     build_function_type (ptr_type_node,
3351                                          tree_cons (NULL_TREE,
3352                                                     integer_type_node,
3353                                                     endlink)),
3354                     BUILT_IN_VARARGS, NULL_PTR);
3355 #endif
3356   builtin_function ("__builtin_classify_type", default_function_type,
3357                     BUILT_IN_CLASSIFY_TYPE, NULL_PTR);
3358   builtin_function ("__builtin_next_arg",
3359                     build_function_type (ptr_type_node, NULL_TREE),
3360                     BUILT_IN_NEXT_ARG, NULL_PTR);
3361   builtin_function ("__builtin_args_info",
3362                     build_function_type (integer_type_node,
3363                                          tree_cons (NULL_TREE,
3364                                                     integer_type_node,
3365                                                     endlink)),
3366                     BUILT_IN_ARGS_INFO, NULL_PTR);
3367
3368   /* Untyped call and return.  */
3369   builtin_function ("__builtin_apply_args",
3370                     build_function_type (ptr_type_node, NULL_TREE),
3371                     BUILT_IN_APPLY_ARGS, NULL_PTR);
3372
3373   temp = tree_cons (NULL_TREE,
3374                     build_pointer_type (build_function_type (void_type_node,
3375                                                              NULL_TREE)),
3376                     tree_cons (NULL_TREE,
3377                                ptr_type_node,
3378                                tree_cons (NULL_TREE,
3379                                           sizetype,
3380                                           endlink)));
3381   builtin_function ("__builtin_apply",
3382                     build_function_type (ptr_type_node, temp),
3383                     BUILT_IN_APPLY, NULL_PTR);
3384   builtin_function ("__builtin_return",
3385                     build_function_type (void_type_node,
3386                                          tree_cons (NULL_TREE,
3387                                                     ptr_type_node,
3388                                                     endlink)),
3389                     BUILT_IN_RETURN, NULL_PTR);
3390
3391   /* Currently under experimentation.  */
3392   builtin_function ("__builtin_memcpy", memcpy_ftype,
3393                     BUILT_IN_MEMCPY, "memcpy");
3394   builtin_function ("__builtin_memcmp", int_ftype_cptr_cptr_sizet,
3395                     BUILT_IN_MEMCMP, "memcmp");
3396   builtin_function ("__builtin_memset", memset_ftype,
3397                     BUILT_IN_MEMSET, "memset");
3398   builtin_function ("__builtin_strcmp", int_ftype_string_string,
3399                     BUILT_IN_STRCMP, "strcmp");
3400   builtin_function ("__builtin_strcpy", string_ftype_ptr_ptr,
3401                     BUILT_IN_STRCPY, "strcpy");
3402   builtin_function ("__builtin_strlen", strlen_ftype,
3403                     BUILT_IN_STRLEN, "strlen");
3404   builtin_function ("__builtin_sqrtf", float_ftype_float, 
3405                     BUILT_IN_FSQRT, "sqrtf");
3406   builtin_function ("__builtin_fsqrt", double_ftype_double, 
3407                     BUILT_IN_FSQRT, "sqrt");
3408   builtin_function ("__builtin_sqrtl", ldouble_ftype_ldouble, 
3409                     BUILT_IN_FSQRT, "sqrtl");
3410   builtin_function ("__builtin_sinf", float_ftype_float, 
3411                     BUILT_IN_SIN, "sinf");
3412   builtin_function ("__builtin_sin", double_ftype_double, 
3413                     BUILT_IN_SIN, "sin");
3414   builtin_function ("__builtin_sinl", ldouble_ftype_ldouble, 
3415                     BUILT_IN_SIN, "sinl");
3416   builtin_function ("__builtin_cosf", float_ftype_float, 
3417                     BUILT_IN_COS, "cosf");
3418   builtin_function ("__builtin_cos", double_ftype_double, 
3419                     BUILT_IN_COS, "cos");
3420   builtin_function ("__builtin_cosl", ldouble_ftype_ldouble, 
3421                     BUILT_IN_COS, "cosl");
3422   builtin_function ("__builtin_setjmp",
3423                     build_function_type (integer_type_node,
3424                                          tree_cons (NULL_TREE,
3425                                                     ptr_type_node, endlink)),
3426                     BUILT_IN_SETJMP, NULL_PTR);
3427   builtin_function ("__builtin_longjmp",
3428                     build_function_type
3429                     (void_type_node,
3430                      tree_cons (NULL, ptr_type_node,
3431                                 tree_cons (NULL_TREE,
3432                                            integer_type_node,
3433                                            endlink))),
3434                     BUILT_IN_LONGJMP, NULL_PTR);
3435   builtin_function ("__builtin_trap",
3436                     build_function_type (void_type_node, endlink),
3437                     BUILT_IN_TRAP, NULL_PTR);
3438
3439   /* In an ANSI C program, it is okay to supply built-in meanings
3440      for these functions, since applications cannot validly use them
3441      with any other meaning.
3442      However, honor the -fno-builtin option.  */
3443   if (!flag_no_builtin)
3444     {
3445       builtin_function ("abs", int_ftype_int, BUILT_IN_ABS, NULL_PTR);
3446       builtin_function ("fabsf", float_ftype_float, BUILT_IN_FABS, NULL_PTR);
3447       builtin_function ("fabs", double_ftype_double, BUILT_IN_FABS, NULL_PTR);
3448       builtin_function ("fabsl", ldouble_ftype_ldouble, BUILT_IN_FABS,
3449                         NULL_PTR);
3450       builtin_function ("labs", long_ftype_long, BUILT_IN_LABS, NULL_PTR);
3451       builtin_function ("memcpy", memcpy_ftype, BUILT_IN_MEMCPY, NULL_PTR);
3452       builtin_function ("memcmp", int_ftype_cptr_cptr_sizet, BUILT_IN_MEMCMP,
3453                         NULL_PTR);
3454       builtin_function ("memset", memset_ftype, BUILT_IN_MEMSET, NULL_PTR);
3455       builtin_function ("strcmp", int_ftype_string_string, BUILT_IN_STRCMP,
3456                         NULL_PTR);
3457       builtin_function ("strcpy", string_ftype_ptr_ptr, BUILT_IN_STRCPY,
3458                         NULL_PTR);
3459       builtin_function ("strlen", strlen_ftype, BUILT_IN_STRLEN, NULL_PTR);
3460       builtin_function ("sqrtf", float_ftype_float, BUILT_IN_FSQRT, NULL_PTR);
3461       builtin_function ("sqrt", double_ftype_double, BUILT_IN_FSQRT, NULL_PTR);
3462       builtin_function ("sqrtl", ldouble_ftype_ldouble, BUILT_IN_FSQRT,
3463                         NULL_PTR);
3464       builtin_function ("sinf", float_ftype_float, BUILT_IN_SIN, NULL_PTR);
3465       builtin_function ("sin", double_ftype_double, BUILT_IN_SIN, NULL_PTR);
3466       builtin_function ("sinl", ldouble_ftype_ldouble, BUILT_IN_SIN, NULL_PTR);
3467       builtin_function ("cosf", float_ftype_float, BUILT_IN_COS, NULL_PTR);
3468       builtin_function ("cos", double_ftype_double, BUILT_IN_COS, NULL_PTR);
3469       builtin_function ("cosl", ldouble_ftype_ldouble, BUILT_IN_COS, NULL_PTR);
3470
3471       /* Declare these functions volatile
3472          to avoid spurious "control drops through" warnings.  */
3473       /* Don't specify the argument types, to avoid errors
3474          from certain code which isn't valid in ANSI but which exists.  */
3475       temp = builtin_function ("abort", void_ftype_any, NOT_BUILT_IN,
3476                                NULL_PTR);
3477       TREE_THIS_VOLATILE (temp) = 1;
3478       TREE_SIDE_EFFECTS (temp) = 1;
3479       temp = builtin_function ("exit", void_ftype_any, NOT_BUILT_IN, NULL_PTR);
3480       TREE_THIS_VOLATILE (temp) = 1;
3481       TREE_SIDE_EFFECTS (temp) = 1;
3482     }
3483
3484 #if 0
3485   /* Support for these has not been written in either expand_builtin
3486      or build_function_call.  */
3487   builtin_function ("__builtin_div", default_ftype, BUILT_IN_DIV, NULL_PTR);
3488   builtin_function ("__builtin_ldiv", default_ftype, BUILT_IN_LDIV, NULL_PTR);
3489   builtin_function ("__builtin_ffloor", double_ftype_double, BUILT_IN_FFLOOR,
3490                     NULL_PTR);
3491   builtin_function ("__builtin_fceil", double_ftype_double, BUILT_IN_FCEIL,
3492                     NULL_PTR);
3493   builtin_function ("__builtin_fmod", double_ftype_double_double,
3494                     BUILT_IN_FMOD, NULL_PTR);
3495   builtin_function ("__builtin_frem", double_ftype_double_double,
3496                     BUILT_IN_FREM, NULL_PTR);
3497   builtin_function ("__builtin_getexp", double_ftype_double, BUILT_IN_GETEXP,
3498                     NULL_PTR);
3499   builtin_function ("__builtin_getman", double_ftype_double, BUILT_IN_GETMAN,
3500                     NULL_PTR);
3501 #endif
3502
3503   pedantic_lvalues = pedantic;
3504
3505   /* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__.  */
3506   declare_function_name ();
3507
3508   start_identifier_warnings ();
3509
3510   /* Prepare to check format strings against argument lists.  */
3511   init_function_format_info ();
3512
3513   init_iterators ();
3514
3515   incomplete_decl_finalize_hook = finish_incomplete_decl;
3516
3517   lang_get_alias_set = &c_get_alias_set;
3518 }
3519
3520 /* Return a definition for a builtin function named NAME and whose data type
3521    is TYPE.  TYPE should be a function type with argument types.
3522    FUNCTION_CODE tells later passes how to compile calls to this function.
3523    See tree.h for its possible values.
3524
3525    If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3526    the name to be called if we can't opencode the function.  */
3527
3528 tree
3529 builtin_function (name, type, function_code, library_name)
3530      char *name;
3531      tree type;
3532      enum built_in_function function_code;
3533      char *library_name;
3534 {
3535   tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3536   DECL_EXTERNAL (decl) = 1;
3537   TREE_PUBLIC (decl) = 1;
3538   /* If -traditional, permit redefining a builtin function any way you like.
3539      (Though really, if the program redefines these functions,
3540      it probably won't work right unless compiled with -fno-builtin.)  */
3541   if (flag_traditional && name[0] != '_')
3542     DECL_BUILT_IN_NONANSI (decl) = 1;
3543   if (library_name)
3544     DECL_ASSEMBLER_NAME (decl) = get_identifier (library_name);
3545   make_decl_rtl (decl, NULL_PTR, 1);
3546   pushdecl (decl);
3547   if (function_code != NOT_BUILT_IN)
3548     {
3549       DECL_BUILT_IN (decl) = 1;
3550       DECL_FUNCTION_CODE (decl) = function_code;
3551     }
3552   /* Warn if a function in the namespace for users
3553      is used without an occasion to consider it declared.  */
3554   if (name[0] != '_' || name[1] != '_')
3555     C_DECL_ANTICIPATED (decl) = 1;
3556
3557   return decl;
3558 }
3559 \f
3560 /* Called when a declaration is seen that contains no names to declare.
3561    If its type is a reference to a structure, union or enum inherited
3562    from a containing scope, shadow that tag name for the current scope
3563    with a forward reference.
3564    If its type defines a new named structure or union
3565    or defines an enum, it is valid but we need not do anything here.
3566    Otherwise, it is an error.  */
3567
3568 void
3569 shadow_tag (declspecs)
3570      tree declspecs;
3571 {
3572   shadow_tag_warned (declspecs, 0);
3573 }
3574
3575 void
3576 shadow_tag_warned (declspecs, warned)
3577      tree declspecs;
3578      int warned;
3579      /* 1 => we have done a pedwarn.  2 => we have done a warning, but
3580         no pedwarn.  */
3581 {
3582   int found_tag = 0;
3583   register tree link;
3584   tree specs, attrs;
3585
3586   pending_invalid_xref = 0;
3587
3588   /* Remove the attributes from declspecs, since they will confuse the
3589      following code.  */
3590   split_specs_attrs (declspecs, &specs, &attrs);
3591
3592   for (link = specs; link; link = TREE_CHAIN (link))
3593     {
3594       register tree value = TREE_VALUE (link);
3595       register enum tree_code code = TREE_CODE (value);
3596
3597       if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3598         /* Used to test also that TYPE_SIZE (value) != 0.
3599            That caused warning for `struct foo;' at top level in the file.  */
3600         {
3601           register tree name = lookup_tag_reverse (value);
3602           register tree t;
3603
3604           found_tag++;
3605
3606           if (name == 0)
3607             {
3608               if (warned != 1 && code != ENUMERAL_TYPE)
3609                 /* Empty unnamed enum OK */
3610                 {
3611                   pedwarn ("unnamed struct/union that defines no instances");
3612                   warned = 1;
3613                 }
3614             }
3615           else
3616             {
3617               t = lookup_tag (code, name, current_binding_level, 1);
3618
3619               if (t == 0)
3620                 {
3621                   t = make_node (code);
3622                   pushtag (name, t);
3623                 }
3624             }
3625         }
3626       else
3627         {
3628           if (!warned && ! in_system_header)
3629             {
3630               warning ("useless keyword or type name in empty declaration");
3631               warned = 2;
3632             }
3633         }
3634     }
3635
3636   if (found_tag > 1)
3637     error ("two types specified in one empty declaration");
3638
3639   if (warned != 1)
3640     {
3641       if (found_tag == 0)
3642         pedwarn ("empty declaration");
3643     }
3644 }
3645 \f
3646 /* Decode a "typename", such as "int **", returning a ..._TYPE node.  */
3647
3648 tree
3649 groktypename (typename)
3650      tree typename;
3651 {
3652   if (TREE_CODE (typename) != TREE_LIST)
3653     return typename;
3654   return grokdeclarator (TREE_VALUE (typename),
3655                          TREE_PURPOSE (typename),
3656                          TYPENAME, 0);
3657 }
3658
3659 /* Return a PARM_DECL node for a given pair of specs and declarator.  */
3660
3661 tree
3662 groktypename_in_parm_context (typename)
3663      tree typename;
3664 {
3665   if (TREE_CODE (typename) != TREE_LIST)
3666     return typename;
3667   return grokdeclarator (TREE_VALUE (typename),
3668                          TREE_PURPOSE (typename),
3669                          PARM, 0);
3670 }
3671
3672 /* Decode a declarator in an ordinary declaration or data definition.
3673    This is called as soon as the type information and variable name
3674    have been parsed, before parsing the initializer if any.
3675    Here we create the ..._DECL node, fill in its type,
3676    and put it on the list of decls for the current context.
3677    The ..._DECL node is returned as the value.
3678
3679    Exception: for arrays where the length is not specified,
3680    the type is left null, to be filled in by `finish_decl'.
3681
3682    Function definitions do not come here; they go to start_function
3683    instead.  However, external and forward declarations of functions
3684    do go through here.  Structure field declarations are done by
3685    grokfield and not through here.  */
3686
3687 /* Set this to zero to debug not using the temporary obstack
3688    to parse initializers.  */
3689 int debug_temp_inits = 1;
3690
3691 tree
3692 start_decl (declarator, declspecs, initialized, attributes, prefix_attributes)
3693      tree declarator, declspecs;
3694      int initialized;
3695      tree attributes, prefix_attributes;
3696 {
3697   register tree decl = grokdeclarator (declarator, declspecs,
3698                                        NORMAL, initialized);
3699   register tree tem;
3700   int init_written = initialized;
3701
3702   /* The corresponding pop_obstacks is in finish_decl.  */
3703   push_obstacks_nochange ();
3704
3705   if (warn_main && TREE_CODE (decl) != FUNCTION_DECL 
3706       && !strcmp (IDENTIFIER_POINTER (DECL_NAME (decl)), "main"))
3707     warning_with_decl (decl, "`%s' is usually a function");
3708
3709   if (initialized)
3710     /* Is it valid for this decl to have an initializer at all?
3711        If not, set INITIALIZED to zero, which will indirectly
3712        tell `finish_decl' to ignore the initializer once it is parsed.  */
3713     switch (TREE_CODE (decl))
3714       {
3715       case TYPE_DECL:
3716         /* typedef foo = bar  means give foo the same type as bar.
3717            We haven't parsed bar yet, so `finish_decl' will fix that up.
3718            Any other case of an initialization in a TYPE_DECL is an error.  */
3719         if (pedantic || list_length (declspecs) > 1)
3720           {
3721             error ("typedef `%s' is initialized",
3722                    IDENTIFIER_POINTER (DECL_NAME (decl)));
3723             initialized = 0;
3724           }
3725         break;
3726
3727       case FUNCTION_DECL:
3728         error ("function `%s' is initialized like a variable",
3729                IDENTIFIER_POINTER (DECL_NAME (decl)));
3730         initialized = 0;
3731         break;
3732
3733       case PARM_DECL:
3734         /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE.  */
3735         error ("parameter `%s' is initialized",
3736                IDENTIFIER_POINTER (DECL_NAME (decl)));
3737         initialized = 0;
3738         break;
3739
3740       default:
3741         /* Don't allow initializations for incomplete types
3742            except for arrays which might be completed by the initialization.  */
3743         if (TYPE_SIZE (TREE_TYPE (decl)) != 0)
3744           {
3745             /* A complete type is ok if size is fixed.  */
3746
3747             if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3748                 || C_DECL_VARIABLE_SIZE (decl))
3749               {
3750                 error ("variable-sized object may not be initialized");
3751                 initialized = 0;
3752               }
3753           }
3754         else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3755           {
3756             error ("variable `%s' has initializer but incomplete type",
3757                    IDENTIFIER_POINTER (DECL_NAME (decl)));
3758             initialized = 0;
3759           }
3760         else if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl))) == 0)
3761           {
3762             error ("elements of array `%s' have incomplete type",
3763                    IDENTIFIER_POINTER (DECL_NAME (decl)));
3764             initialized = 0;
3765           }
3766       }
3767
3768   if (initialized)
3769     {
3770 #if 0  /* Seems redundant with grokdeclarator.  */
3771       if (current_binding_level != global_binding_level
3772           && DECL_EXTERNAL (decl)
3773           && TREE_CODE (decl) != FUNCTION_DECL)
3774         warning ("declaration of `%s' has `extern' and is initialized",
3775                  IDENTIFIER_POINTER (DECL_NAME (decl)));
3776 #endif
3777       DECL_EXTERNAL (decl) = 0;
3778       if (current_binding_level == global_binding_level)
3779         TREE_STATIC (decl) = 1;
3780
3781       /* Tell `pushdecl' this is an initialized decl
3782          even though we don't yet have the initializer expression.
3783          Also tell `finish_decl' it may store the real initializer.  */
3784       DECL_INITIAL (decl) = error_mark_node;
3785     }
3786
3787   /* If this is a function declaration, write a record describing it to the
3788      prototypes file (if requested).  */
3789
3790   if (TREE_CODE (decl) == FUNCTION_DECL)
3791     gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3792
3793   /* ANSI specifies that a tentative definition which is not merged with
3794      a non-tentative definition behaves exactly like a definition with an
3795      initializer equal to zero.  (Section 3.7.2)
3796      -fno-common gives strict ANSI behavior.  Usually you don't want it.
3797      This matters only for variables with external linkage.  */
3798   if (! flag_no_common || ! TREE_PUBLIC (decl))
3799     DECL_COMMON (decl) = 1;
3800
3801 #ifdef SET_DEFAULT_DECL_ATTRIBUTES
3802   SET_DEFAULT_DECL_ATTRIBUTES (decl, attributes);
3803 #endif
3804
3805   /* Set attributes here so if duplicate decl, will have proper attributes.  */
3806   decl_attributes (decl, attributes, prefix_attributes);
3807
3808   /* Add this decl to the current binding level.
3809      TEM may equal DECL or it may be a previous decl of the same name.  */
3810   tem = pushdecl (decl);
3811
3812   /* For a local variable, define the RTL now.  */
3813   if (current_binding_level != global_binding_level
3814       /* But not if this is a duplicate decl
3815          and we preserved the rtl from the previous one
3816          (which may or may not happen).  */
3817       && DECL_RTL (tem) == 0)
3818     {
3819       if (TYPE_SIZE (TREE_TYPE (tem)) != 0)
3820         expand_decl (tem);
3821       else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3822                && DECL_INITIAL (tem) != 0)
3823         expand_decl (tem);
3824     }
3825
3826   if (init_written)
3827     {
3828       /* When parsing and digesting the initializer,
3829          use temporary storage.  Do this even if we will ignore the value.  */
3830       if (current_binding_level == global_binding_level && debug_temp_inits)
3831         temporary_allocation ();
3832     }
3833
3834   return tem;
3835 }
3836
3837 /* Finish processing of a declaration;
3838    install its initial value.
3839    If the length of an array type is not known before,
3840    it must be determined now, from the initial value, or it is an error.  */
3841
3842 void
3843 finish_decl (decl, init, asmspec_tree)
3844      tree decl, init;
3845      tree asmspec_tree;
3846 {
3847   register tree type = TREE_TYPE (decl);
3848   int was_incomplete = (DECL_SIZE (decl) == 0);
3849   int temporary = allocation_temporary_p ();
3850   char *asmspec = 0;
3851
3852   /* If a name was specified, get the string.   */
3853   if (asmspec_tree)
3854     asmspec = TREE_STRING_POINTER (asmspec_tree);
3855
3856   /* If `start_decl' didn't like having an initialization, ignore it now.  */
3857
3858   if (init != 0 && DECL_INITIAL (decl) == 0)
3859     init = 0;
3860   /* Don't crash if parm is initialized.  */
3861   if (TREE_CODE (decl) == PARM_DECL)
3862     init = 0;
3863
3864   if (ITERATOR_P (decl))
3865     {
3866       if (init == 0)
3867         error_with_decl (decl, "iterator has no initial value");
3868       else
3869         init = save_expr (init);
3870     }
3871
3872   if (init)
3873     {
3874       if (TREE_CODE (decl) != TYPE_DECL)
3875         store_init_value (decl, init);
3876       else
3877         {
3878           /* typedef foo = bar; store the type of bar as the type of foo.  */
3879           TREE_TYPE (decl) = TREE_TYPE (init);
3880           DECL_INITIAL (decl) = init = 0;
3881         }
3882     }
3883
3884   /* Pop back to the obstack that is current for this binding level.
3885      This is because MAXINDEX, rtl, etc. to be made below
3886      must go in the permanent obstack.  But don't discard the
3887      temporary data yet.  */
3888   pop_obstacks ();
3889 #if 0 /* pop_obstacks was near the end; this is what was here.  */
3890   if (current_binding_level == global_binding_level && temporary)
3891     end_temporary_allocation ();
3892 #endif
3893
3894   /* Deduce size of array from initialization, if not already known */
3895
3896   if (TREE_CODE (type) == ARRAY_TYPE
3897       && TYPE_DOMAIN (type) == 0
3898       && TREE_CODE (decl) != TYPE_DECL)
3899     {
3900       int do_default
3901         = (TREE_STATIC (decl)
3902            /* Even if pedantic, an external linkage array
3903               may have incomplete type at first.  */
3904            ? pedantic && !TREE_PUBLIC (decl)
3905            : !DECL_EXTERNAL (decl));
3906       int failure
3907         = complete_array_type (type, DECL_INITIAL (decl), do_default);
3908
3909       /* Get the completed type made by complete_array_type.  */
3910       type = TREE_TYPE (decl);
3911
3912       if (failure == 1)
3913         error_with_decl (decl, "initializer fails to determine size of `%s'");
3914
3915       if (failure == 2)
3916         {
3917           if (do_default)
3918             error_with_decl (decl, "array size missing in `%s'");
3919           /* If a `static' var's size isn't known,
3920              make it extern as well as static, so it does not get
3921              allocated.
3922              If it is not `static', then do not mark extern;
3923              finish_incomplete_decl will give it a default size
3924              and it will get allocated.  */
3925           else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3926             DECL_EXTERNAL (decl) = 1;
3927         }
3928
3929       /* TYPE_MAX_VALUE is always one less than the number of elements
3930          in the array, because we start counting at zero.  Therefore,
3931          warn only if the value is less than zero.  */
3932       if (pedantic && TYPE_DOMAIN (type) != 0
3933           && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3934         error_with_decl (decl, "zero or negative size array `%s'");
3935
3936       layout_decl (decl, 0);
3937     }
3938
3939   if (TREE_CODE (decl) == VAR_DECL)
3940     {
3941       if (DECL_SIZE (decl) == 0
3942           && TYPE_SIZE (TREE_TYPE (decl)) != 0)
3943         layout_decl (decl, 0);
3944
3945       if (DECL_SIZE (decl) == 0
3946           && (TREE_STATIC (decl)
3947               ?
3948                 /* A static variable with an incomplete type
3949                    is an error if it is initialized.
3950                    Also if it is not file scope.
3951                    Otherwise, let it through, but if it is not `extern'
3952                    then it may cause an error message later.  */
3953               /* A duplicate_decls call could have changed an extern
3954                  declaration into a file scope one.  This can be detected
3955                  by TREE_ASM_WRITTEN being set.  */
3956                 (DECL_INITIAL (decl) != 0
3957                  || (DECL_CONTEXT (decl) != 0 && ! TREE_ASM_WRITTEN (decl)))
3958               :
3959                 /* An automatic variable with an incomplete type
3960                    is an error.  */
3961                 !DECL_EXTERNAL (decl)))
3962         {
3963           error_with_decl (decl, "storage size of `%s' isn't known");
3964           TREE_TYPE (decl) = error_mark_node;
3965         }
3966
3967       if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3968           && DECL_SIZE (decl) != 0)
3969         {
3970           if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3971             constant_expression_warning (DECL_SIZE (decl));
3972           else
3973             error_with_decl (decl, "storage size of `%s' isn't constant");
3974         }
3975
3976       if (TREE_USED  (type))
3977         TREE_USED (decl) = 1;
3978     }
3979
3980   /* If this is a function and an assembler name is specified, it isn't
3981      builtin any more.  Also reset DECL_RTL so we can give it its new
3982      name.  */
3983   if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3984       {
3985         DECL_BUILT_IN (decl) = 0;
3986         DECL_RTL (decl) = 0;
3987       }
3988
3989   /* Output the assembler code and/or RTL code for variables and functions,
3990      unless the type is an undefined structure or union.
3991      If not, it will get done when the type is completed.  */
3992
3993   if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3994     {
3995       if ((flag_traditional || TREE_PERMANENT (decl))
3996           && allocation_temporary_p ())
3997         {
3998           push_obstacks_nochange ();
3999           end_temporary_allocation ();
4000           /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
4001           maybe_objc_check_decl (decl);
4002           rest_of_decl_compilation (decl, asmspec,
4003                                     (DECL_CONTEXT (decl) == 0
4004                                      || TREE_ASM_WRITTEN (decl)),
4005                                     0);
4006           pop_obstacks ();
4007         }
4008       else
4009         {
4010           /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
4011           maybe_objc_check_decl (decl);
4012           rest_of_decl_compilation (decl, asmspec, DECL_CONTEXT (decl) == 0,
4013                                     0);
4014         }
4015       if (DECL_CONTEXT (decl) != 0)
4016         {
4017           /* Recompute the RTL of a local array now
4018              if it used to be an incomplete type.  */
4019           if (was_incomplete
4020               && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
4021             {
4022               /* If we used it already as memory, it must stay in memory.  */
4023               TREE_ADDRESSABLE (decl) = TREE_USED (decl);
4024               /* If it's still incomplete now, no init will save it.  */
4025               if (DECL_SIZE (decl) == 0)
4026                 DECL_INITIAL (decl) = 0;
4027               expand_decl (decl);
4028             }
4029           /* Compute and store the initial value.  */
4030           if (TREE_CODE (decl) != FUNCTION_DECL)
4031             expand_decl_init (decl);
4032         }
4033     }
4034
4035   if (TREE_CODE (decl) == TYPE_DECL)
4036     {
4037       /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
4038       maybe_objc_check_decl (decl);
4039       rest_of_decl_compilation (decl, NULL_PTR, DECL_CONTEXT (decl) == 0,
4040                                 0);
4041     }
4042
4043   /* ??? After 2.3, test (init != 0) instead of TREE_CODE.  */
4044   /* This test used to include TREE_PERMANENT, however, we have the same
4045      problem with initializers at the function level.  Such initializers get
4046      saved until the end of the function on the momentary_obstack.  */
4047   if (!(TREE_CODE (decl) == FUNCTION_DECL && DECL_INLINE (decl))
4048       && temporary
4049       /* DECL_INITIAL is not defined in PARM_DECLs, since it shares
4050          space with DECL_ARG_TYPE.  */
4051       && TREE_CODE (decl) != PARM_DECL)
4052     {
4053       /* We need to remember that this array HAD an initialization,
4054          but discard the actual temporary nodes,
4055          since we can't have a permanent node keep pointing to them.  */
4056       /* We make an exception for inline functions, since it's
4057          normal for a local extern redeclaration of an inline function
4058          to have a copy of the top-level decl's DECL_INLINE.  */
4059       if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
4060         {
4061           /* If this is a const variable, then preserve the
4062              initializer instead of discarding it so that we can optimize
4063              references to it.  */
4064           /* This test used to include TREE_STATIC, but this won't be set
4065              for function level initializers.  */
4066           if (TREE_READONLY (decl) || ITERATOR_P (decl))
4067             {
4068               preserve_initializer ();
4069               /* Hack?  Set the permanent bit for something that is permanent,
4070                  but not on the permanent obstack, so as to convince
4071                  output_constant_def to make its rtl on the permanent
4072                  obstack.  */
4073               TREE_PERMANENT (DECL_INITIAL (decl)) = 1;
4074
4075               /* The initializer and DECL must have the same (or equivalent
4076                  types), but if the initializer is a STRING_CST, its type
4077                  might not be on the right obstack, so copy the type
4078                  of DECL.  */
4079               TREE_TYPE (DECL_INITIAL (decl)) = type;
4080             }
4081           else
4082             DECL_INITIAL (decl) = error_mark_node;
4083         }
4084     }
4085
4086   /* If requested, warn about definitions of large data objects.  */
4087
4088   if (warn_larger_than
4089       && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
4090       && !DECL_EXTERNAL (decl))
4091     {
4092       register tree decl_size = DECL_SIZE (decl);
4093
4094       if (decl_size && TREE_CODE (decl_size) == INTEGER_CST)
4095         {
4096            unsigned units = TREE_INT_CST_LOW(decl_size) / BITS_PER_UNIT;
4097
4098           if (units > larger_than_size)
4099             warning_with_decl (decl, "size of `%s' is %u bytes", units);
4100         }
4101     }
4102
4103 #if 0
4104   /* Resume permanent allocation, if not within a function.  */
4105   /* The corresponding push_obstacks_nochange is in start_decl,
4106      and in push_parm_decl and in grokfield.  */
4107   pop_obstacks ();
4108 #endif
4109
4110   /* If we have gone back from temporary to permanent allocation,
4111      actually free the temporary space that we no longer need.  */
4112   if (temporary && !allocation_temporary_p ())
4113     permanent_allocation (0);
4114
4115   /* At the end of a declaration, throw away any variable type sizes
4116      of types defined inside that declaration.  There is no use
4117      computing them in the following function definition.  */
4118   if (current_binding_level == global_binding_level)
4119     get_pending_sizes ();
4120 }
4121
4122 /* If DECL has a cleanup, build and return that cleanup here.
4123    This is a callback called by expand_expr.  */
4124
4125 tree
4126 maybe_build_cleanup (decl)
4127      tree decl ATTRIBUTE_UNUSED;
4128 {
4129   /* There are no cleanups in C.  */
4130   return NULL_TREE;
4131 }
4132
4133 /* Given a parsed parameter declaration,
4134    decode it into a PARM_DECL and push that on the current binding level.
4135    Also, for the sake of forward parm decls,
4136    record the given order of parms in `parm_order'.  */
4137
4138 void
4139 push_parm_decl (parm)
4140      tree parm;
4141 {
4142   tree decl;
4143   int old_immediate_size_expand = immediate_size_expand;
4144   /* Don't try computing parm sizes now -- wait till fn is called.  */
4145   immediate_size_expand = 0;
4146
4147   /* The corresponding pop_obstacks is in finish_decl.  */
4148   push_obstacks_nochange ();
4149
4150   decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
4151                          TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
4152   decl_attributes (decl, TREE_VALUE (TREE_VALUE (parm)),
4153                    TREE_PURPOSE (TREE_VALUE (parm)));
4154
4155 #if 0
4156   if (DECL_NAME (decl))
4157     {
4158       tree olddecl;
4159       olddecl = lookup_name (DECL_NAME (decl));
4160       if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
4161         pedwarn_with_decl (decl, "ANSI C forbids parameter `%s' shadowing typedef");
4162     }
4163 #endif
4164
4165   decl = pushdecl (decl);
4166
4167   immediate_size_expand = old_immediate_size_expand;
4168
4169   current_binding_level->parm_order
4170     = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
4171
4172   /* Add this decl to the current binding level.  */
4173   finish_decl (decl, NULL_TREE, NULL_TREE);
4174 }
4175
4176 /* Clear the given order of parms in `parm_order'.
4177    Used at start of parm list,
4178    and also at semicolon terminating forward decls.  */
4179
4180 void
4181 clear_parm_order ()
4182 {
4183   current_binding_level->parm_order = NULL_TREE;
4184 }
4185 \f
4186 /* Make TYPE a complete type based on INITIAL_VALUE.
4187    Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
4188    2 if there was no information (in which case assume 1 if DO_DEFAULT).  */
4189
4190 int
4191 complete_array_type (type, initial_value, do_default)
4192      tree type;
4193      tree initial_value;
4194      int do_default;
4195 {
4196   register tree maxindex = NULL_TREE;
4197   int value = 0;
4198
4199   if (initial_value)
4200     {
4201       /* Note MAXINDEX  is really the maximum index,
4202          one less than the size.  */
4203       if (TREE_CODE (initial_value) == STRING_CST)
4204         {
4205           int eltsize
4206             = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
4207           maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
4208                                    / eltsize) - 1, 0);
4209         }
4210       else if (TREE_CODE (initial_value) == CONSTRUCTOR)
4211         {
4212           tree elts = CONSTRUCTOR_ELTS (initial_value);
4213           maxindex = size_binop (MINUS_EXPR, integer_zero_node, size_one_node);
4214           for (; elts; elts = TREE_CHAIN (elts))
4215             {
4216               if (TREE_PURPOSE (elts))
4217                 maxindex = TREE_PURPOSE (elts);
4218               else
4219                 maxindex = size_binop (PLUS_EXPR, maxindex, size_one_node);
4220             }
4221           maxindex = copy_node (maxindex);
4222         }
4223       else
4224         {
4225           /* Make an error message unless that happened already.  */
4226           if (initial_value != error_mark_node)
4227             value = 1;
4228
4229           /* Prevent further error messages.  */
4230           maxindex = build_int_2 (0, 0);
4231         }
4232     }
4233
4234   if (!maxindex)
4235     {
4236       if (do_default)
4237         maxindex = build_int_2 (0, 0);
4238       value = 2;
4239     }
4240
4241   if (maxindex)
4242     {
4243       TYPE_DOMAIN (type) = build_index_type (maxindex);
4244       if (!TREE_TYPE (maxindex))
4245         TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
4246     }
4247
4248   /* Lay out the type now that we can get the real answer.  */
4249
4250   layout_type (type);
4251
4252   return value;
4253 }
4254 \f
4255 /* Given declspecs and a declarator,
4256    determine the name and type of the object declared
4257    and construct a ..._DECL node for it.
4258    (In one case we can return a ..._TYPE node instead.
4259     For invalid input we sometimes return 0.)
4260
4261    DECLSPECS is a chain of tree_list nodes whose value fields
4262     are the storage classes and type specifiers.
4263
4264    DECL_CONTEXT says which syntactic context this declaration is in:
4265      NORMAL for most contexts.  Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4266      FUNCDEF for a function definition.  Like NORMAL but a few different
4267       error messages in each case.  Return value may be zero meaning
4268       this definition is too screwy to try to parse.
4269      PARM for a parameter declaration (either within a function prototype
4270       or before a function body).  Make a PARM_DECL, or return void_type_node.
4271      TYPENAME if for a typename (in a cast or sizeof).
4272       Don't make a DECL node; just return the ..._TYPE node.
4273      FIELD for a struct or union field; make a FIELD_DECL.
4274      BITFIELD for a field with specified width.
4275    INITIALIZED is 1 if the decl has an initializer.
4276
4277    In the TYPENAME case, DECLARATOR is really an absolute declarator.
4278    It may also be so in the PARM case, for a prototype where the
4279    argument type is specified but not the name.
4280
4281    This function is where the complicated C meanings of `static'
4282    and `extern' are interpreted.  */
4283
4284 static tree
4285 grokdeclarator (declarator, declspecs, decl_context, initialized)
4286      tree declspecs;
4287      tree declarator;
4288      enum decl_context decl_context;
4289      int initialized;
4290 {
4291   int specbits = 0;
4292   tree spec;
4293   tree type = NULL_TREE;
4294   int longlong = 0;
4295   int constp;
4296   int volatilep;
4297   int inlinep;
4298   int explicit_int = 0;
4299   int explicit_char = 0;
4300   int defaulted_int = 0;
4301   tree typedef_decl = 0;
4302   char *name;
4303   tree typedef_type = 0;
4304   int funcdef_flag = 0;
4305   enum tree_code innermost_code = ERROR_MARK;
4306   int bitfield = 0;
4307   int size_varies = 0;
4308   tree decl_machine_attr = NULL_TREE;
4309
4310   if (decl_context == BITFIELD)
4311     bitfield = 1, decl_context = FIELD;
4312
4313   if (decl_context == FUNCDEF)
4314     funcdef_flag = 1, decl_context = NORMAL;
4315
4316   push_obstacks_nochange ();
4317
4318   if (flag_traditional && allocation_temporary_p ())
4319     end_temporary_allocation ();
4320
4321   /* Look inside a declarator for the name being declared
4322      and get it as a string, for an error message.  */
4323   {
4324     register tree decl = declarator;
4325     name = 0;
4326
4327     while (decl)
4328       switch (TREE_CODE (decl))
4329         {
4330         case ARRAY_REF:
4331         case INDIRECT_REF:
4332         case CALL_EXPR:
4333           innermost_code = TREE_CODE (decl);
4334           decl = TREE_OPERAND (decl, 0);
4335           break;
4336
4337         case IDENTIFIER_NODE:
4338           name = IDENTIFIER_POINTER (decl);
4339           decl = 0;
4340           break;
4341
4342         default:
4343           abort ();
4344         }
4345     if (name == 0)
4346       name = "type name";
4347   }
4348
4349   /* A function definition's declarator must have the form of
4350      a function declarator.  */
4351
4352   if (funcdef_flag && innermost_code != CALL_EXPR)
4353     return 0;
4354
4355   /* Anything declared one level down from the top level
4356      must be one of the parameters of a function
4357      (because the body is at least two levels down).  */
4358
4359   /* If this looks like a function definition, make it one,
4360      even if it occurs where parms are expected.
4361      Then store_parm_decls will reject it and not use it as a parm.  */
4362   if (decl_context == NORMAL && !funcdef_flag
4363       && current_binding_level->parm_flag)
4364     decl_context = PARM;
4365
4366   /* Look through the decl specs and record which ones appear.
4367      Some typespecs are defined as built-in typenames.
4368      Others, the ones that are modifiers of other types,
4369      are represented by bits in SPECBITS: set the bits for
4370      the modifiers that appear.  Storage class keywords are also in SPECBITS.
4371
4372      If there is a typedef name or a type, store the type in TYPE.
4373      This includes builtin typedefs such as `int'.
4374
4375      Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
4376      and did not come from a user typedef.
4377
4378      Set LONGLONG if `long' is mentioned twice.  */
4379
4380   for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
4381     {
4382       register int i;
4383       register tree id = TREE_VALUE (spec);
4384
4385       if (id == ridpointers[(int) RID_INT])
4386         explicit_int = 1;
4387       if (id == ridpointers[(int) RID_CHAR])
4388         explicit_char = 1;
4389
4390       if (TREE_CODE (id) == IDENTIFIER_NODE)
4391         for (i = (int) RID_FIRST_MODIFIER; i < (int) RID_MAX; i++)
4392           {
4393             if (ridpointers[i] == id)
4394               {
4395                 if (i == (int) RID_LONG && specbits & (1<<i))
4396                   {
4397                     if (longlong)
4398                       error ("`long long long' is too long for GCC");
4399                     else
4400                       {
4401                         if (pedantic && ! in_system_header)
4402                           pedwarn ("ANSI C does not support `long long'");
4403                         longlong = 1;
4404                       }
4405                   }
4406                 else if (specbits & (1 << i))
4407                   pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
4408                 specbits |= 1 << i;
4409                 goto found;
4410               }
4411           }
4412       if (type)
4413         error ("two or more data types in declaration of `%s'", name);
4414       /* Actual typedefs come to us as TYPE_DECL nodes.  */
4415       else if (TREE_CODE (id) == TYPE_DECL)
4416         {
4417           type = TREE_TYPE (id);
4418           decl_machine_attr = DECL_MACHINE_ATTRIBUTES (id);
4419           typedef_decl = id;
4420         }
4421       /* Built-in types come as identifiers.  */
4422       else if (TREE_CODE (id) == IDENTIFIER_NODE)
4423         {
4424           register tree t = lookup_name (id);
4425           if (TREE_TYPE (t) == error_mark_node)
4426             ;
4427           else if (!t || TREE_CODE (t) != TYPE_DECL)
4428             error ("`%s' fails to be a typedef or built in type",
4429                    IDENTIFIER_POINTER (id));
4430           else
4431             {
4432               type = TREE_TYPE (t);
4433               typedef_decl = t;
4434             }
4435         }
4436       else if (TREE_CODE (id) != ERROR_MARK)
4437         type = id;
4438
4439     found: {}
4440     }
4441
4442   typedef_type = type;
4443   if (type)
4444     size_varies = C_TYPE_VARIABLE_SIZE (type);
4445
4446   /* No type at all: default to `int', and set DEFAULTED_INT
4447      because it was not a user-defined typedef.  */
4448
4449   if (type == 0)
4450     {
4451       if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4452                           | (1 << (int) RID_SIGNED)
4453                           | (1 << (int) RID_UNSIGNED))))
4454           /* Don't warn about typedef foo = bar.  */
4455           && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
4456           && ! (in_system_header && ! allocation_temporary_p ()))
4457         {
4458           /* C9x will probably require a diagnostic here.
4459              For now, issue a warning if -Wreturn-type and this is a function,
4460              or if -Wimplicit; prefer the former warning since it is more
4461              explicit.  */
4462           if ((warn_implicit_int || warn_return_type) && funcdef_flag)
4463             warn_about_return_type = 1;
4464           else if (warn_implicit_int)
4465             warning ("type defaults to `int' in declaration of `%s'", name);
4466         }
4467
4468       defaulted_int = 1;
4469       type = integer_type_node;
4470     }
4471
4472   /* Now process the modifiers that were specified
4473      and check for invalid combinations.  */
4474
4475   /* Long double is a special combination.  */
4476
4477   if ((specbits & 1 << (int) RID_LONG) && ! longlong
4478       && TYPE_MAIN_VARIANT (type) == double_type_node)
4479     {
4480       specbits &= ~ (1 << (int) RID_LONG);
4481       type = long_double_type_node;
4482     }
4483
4484   /* Check all other uses of type modifiers.  */
4485
4486   if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4487                   | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4488     {
4489       int ok = 0;
4490
4491       if ((specbits & 1 << (int) RID_LONG)
4492           && (specbits & 1 << (int) RID_SHORT))
4493         error ("both long and short specified for `%s'", name);
4494       else if (((specbits & 1 << (int) RID_LONG)
4495                 || (specbits & 1 << (int) RID_SHORT))
4496                && explicit_char)
4497         error ("long or short specified with char for `%s'", name);
4498       else if (((specbits & 1 << (int) RID_LONG)
4499                 || (specbits & 1 << (int) RID_SHORT))
4500                && TREE_CODE (type) == REAL_TYPE)
4501         {
4502           static int already = 0;
4503
4504           error ("long or short specified with floating type for `%s'", name);
4505           if (! already && ! pedantic)
4506             {
4507               error ("the only valid combination is `long double'");
4508               already = 1;
4509             }
4510         }
4511       else if ((specbits & 1 << (int) RID_SIGNED)
4512                && (specbits & 1 << (int) RID_UNSIGNED))
4513         error ("both signed and unsigned specified for `%s'", name);
4514       else if (TREE_CODE (type) != INTEGER_TYPE)
4515         error ("long, short, signed or unsigned invalid for `%s'", name);
4516       else
4517         {
4518           ok = 1;
4519           if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4520             {
4521               pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4522                        name);
4523               if (flag_pedantic_errors)
4524                 ok = 0;
4525             }
4526         }
4527
4528       /* Discard the type modifiers if they are invalid.  */
4529       if (! ok)
4530         {
4531           specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4532                         | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4533           longlong = 0;
4534         }
4535     }
4536
4537   if ((specbits & (1 << (int) RID_COMPLEX))
4538       && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4539     {
4540       error ("complex invalid for `%s'", name);
4541       specbits &= ~ (1 << (int) RID_COMPLEX);
4542     }
4543
4544   /* Decide whether an integer type is signed or not.
4545      Optionally treat bitfields as signed by default.  */
4546   if (specbits & 1 << (int) RID_UNSIGNED
4547       /* Traditionally, all bitfields are unsigned.  */
4548       || (bitfield && flag_traditional
4549           && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4550       || (bitfield && ! flag_signed_bitfields
4551           && (explicit_int || defaulted_int || explicit_char
4552               /* A typedef for plain `int' without `signed'
4553                  can be controlled just like plain `int'.  */
4554               || ! (typedef_decl != 0
4555                     && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4556           && TREE_CODE (type) != ENUMERAL_TYPE
4557           && !(specbits & 1 << (int) RID_SIGNED)))
4558     {
4559       if (longlong)
4560         type = long_long_unsigned_type_node;
4561       else if (specbits & 1 << (int) RID_LONG)
4562         type = long_unsigned_type_node;
4563       else if (specbits & 1 << (int) RID_SHORT)
4564         type = short_unsigned_type_node;
4565       else if (type == char_type_node)
4566         type = unsigned_char_type_node;
4567       else if (typedef_decl)
4568         type = unsigned_type (type);
4569       else
4570         type = unsigned_type_node;
4571     }
4572   else if ((specbits & 1 << (int) RID_SIGNED)
4573            && type == char_type_node)
4574     type = signed_char_type_node;
4575   else if (longlong)
4576     type = long_long_integer_type_node;
4577   else if (specbits & 1 << (int) RID_LONG)
4578     type = long_integer_type_node;
4579   else if (specbits & 1 << (int) RID_SHORT)
4580     type = short_integer_type_node;
4581
4582   if (specbits & 1 << (int) RID_COMPLEX)
4583     {
4584       /* If we just have "complex", it is equivalent to
4585          "complex double", but if any modifiers at all are specified it is
4586          the complex form of TYPE.  E.g, "complex short" is
4587          "complex short int".  */
4588
4589       if (defaulted_int && ! longlong
4590           && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4591                             | (1 << (int) RID_SIGNED)
4592                             | (1 << (int) RID_UNSIGNED))))
4593         type = complex_double_type_node;
4594       else if (type == integer_type_node)
4595         type = complex_integer_type_node;
4596       else if (type == float_type_node)
4597         type = complex_float_type_node;
4598       else if (type == double_type_node)
4599         type = complex_double_type_node;
4600       else if (type == long_double_type_node)
4601         type = complex_long_double_type_node;
4602       else
4603         type = build_complex_type (type);
4604     }
4605
4606   /* Set CONSTP if this declaration is `const', whether by
4607      explicit specification or via a typedef.
4608      Likewise for VOLATILEP.  */
4609
4610   constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4611   volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4612   inlinep = !! (specbits & (1 << (int) RID_INLINE));
4613   if (constp > 1)
4614     pedwarn ("duplicate `const'");
4615   if (volatilep > 1)
4616     pedwarn ("duplicate `volatile'");
4617   if (! flag_gen_aux_info && (TYPE_READONLY (type) || TYPE_VOLATILE (type)))
4618     type = TYPE_MAIN_VARIANT (type);
4619
4620   /* Warn if two storage classes are given. Default to `auto'.  */
4621
4622   {
4623     int nclasses = 0;
4624
4625     if (specbits & 1 << (int) RID_AUTO) nclasses++;
4626     if (specbits & 1 << (int) RID_STATIC) nclasses++;
4627     if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4628     if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4629     if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4630     if (specbits & 1 << (int) RID_ITERATOR) nclasses++;
4631
4632     /* Warn about storage classes that are invalid for certain
4633        kinds of declarations (parameters, typenames, etc.).  */
4634
4635     if (nclasses > 1)
4636       error ("multiple storage classes in declaration of `%s'", name);
4637     else if (funcdef_flag
4638              && (specbits
4639                  & ((1 << (int) RID_REGISTER)
4640                     | (1 << (int) RID_AUTO)
4641                     | (1 << (int) RID_TYPEDEF))))
4642       {
4643         if (specbits & 1 << (int) RID_AUTO
4644             && (pedantic || current_binding_level == global_binding_level))
4645           pedwarn ("function definition declared `auto'");
4646         if (specbits & 1 << (int) RID_REGISTER)
4647           error ("function definition declared `register'");
4648         if (specbits & 1 << (int) RID_TYPEDEF)
4649           error ("function definition declared `typedef'");
4650         specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4651                        | (1 << (int) RID_AUTO));
4652       }
4653     else if (decl_context != NORMAL && nclasses > 0)
4654       {
4655         if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4656           ;
4657         else
4658           {
4659             error ((decl_context == FIELD
4660                     ? "storage class specified for structure field `%s'"
4661                     : (decl_context == PARM
4662                        ? "storage class specified for parameter `%s'"
4663                        : "storage class specified for typename")),
4664                    name);
4665             specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4666                            | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4667                            | (1 << (int) RID_EXTERN));
4668           }
4669       }
4670     else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4671       {
4672         /* `extern' with initialization is invalid if not at top level.  */
4673         if (current_binding_level == global_binding_level)
4674           warning ("`%s' initialized and declared `extern'", name);
4675         else
4676           error ("`%s' has both `extern' and initializer", name);
4677       }
4678     else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4679              && current_binding_level != global_binding_level)
4680       error ("nested function `%s' declared `extern'", name);
4681     else if (current_binding_level == global_binding_level
4682              && specbits & (1 << (int) RID_AUTO))
4683       error ("top-level declaration of `%s' specifies `auto'", name);
4684     else if ((specbits & 1 << (int) RID_ITERATOR)
4685              && TREE_CODE (declarator) != IDENTIFIER_NODE)
4686       {
4687         error ("iterator `%s' has derived type", name);
4688         type = error_mark_node;
4689       }
4690     else if ((specbits & 1 << (int) RID_ITERATOR)
4691              && TREE_CODE (type) != INTEGER_TYPE)
4692       {
4693         error ("iterator `%s' has noninteger type", name);
4694         type = error_mark_node;
4695       }
4696   }
4697
4698   /* Now figure out the structure of the declarator proper.
4699      Descend through it, creating more complex types, until we reach
4700      the declared identifier (or NULL_TREE, in an absolute declarator).  */
4701
4702   while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4703     {
4704       if (type == error_mark_node)
4705         {
4706           declarator = TREE_OPERAND (declarator, 0);
4707           continue;
4708         }
4709
4710       /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4711          an INDIRECT_REF (for *...),
4712          a CALL_EXPR (for ...(...)),
4713          an identifier (for the name being declared)
4714          or a null pointer (for the place in an absolute declarator
4715          where the name was omitted).
4716          For the last two cases, we have just exited the loop.
4717
4718          At this point, TYPE is the type of elements of an array,
4719          or for a function to return, or for a pointer to point to.
4720          After this sequence of ifs, TYPE is the type of the
4721          array or function or pointer, and DECLARATOR has had its
4722          outermost layer removed.  */
4723
4724       if (TREE_CODE (declarator) == ARRAY_REF)
4725         {
4726           register tree itype = NULL_TREE;
4727           register tree size = TREE_OPERAND (declarator, 1);
4728           /* An uninitialized decl with `extern' is a reference.  */
4729           int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
4730           /* The index is a signed object `sizetype' bits wide.  */
4731           tree index_type = signed_type (sizetype);
4732
4733           declarator = TREE_OPERAND (declarator, 0);
4734
4735           /* Check for some types that there cannot be arrays of.  */
4736
4737           if (TYPE_MAIN_VARIANT (type) == void_type_node)
4738             {
4739               error ("declaration of `%s' as array of voids", name);
4740               type = error_mark_node;
4741             }
4742
4743           if (TREE_CODE (type) == FUNCTION_TYPE)
4744             {
4745               error ("declaration of `%s' as array of functions", name);
4746               type = error_mark_node;
4747             }
4748
4749           if (size == error_mark_node)
4750             type = error_mark_node;
4751
4752           if (type == error_mark_node)
4753             continue;
4754
4755           /* If this is a block level extern, it must live past the end
4756              of the function so that we can check it against other extern
4757              declarations (IDENTIFIER_LIMBO_VALUE).  */
4758           if (extern_ref && allocation_temporary_p ())
4759             end_temporary_allocation ();
4760
4761           /* If size was specified, set ITYPE to a range-type for that size.
4762              Otherwise, ITYPE remains null.  finish_decl may figure it out
4763              from an initial value.  */
4764
4765           if (size)
4766             {
4767               /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue.  */
4768               STRIP_TYPE_NOPS (size);
4769
4770               if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
4771                   && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
4772                 {
4773                   error ("size of array `%s' has non-integer type", name);
4774                   size = integer_one_node;
4775                 }
4776
4777               if (pedantic && integer_zerop (size))
4778                 pedwarn ("ANSI C forbids zero-size array `%s'", name);
4779
4780               if (TREE_CODE (size) == INTEGER_CST)
4781                 {
4782                   constant_expression_warning (size);
4783                   if (tree_int_cst_sgn (size) < 0)
4784                     {
4785                       error ("size of array `%s' is negative", name);
4786                       size = integer_one_node;
4787                     }
4788                 }
4789               else
4790                 {
4791                   /* Make sure the array size remains visibly nonconstant
4792                      even if it is (eg) a const variable with known value.  */
4793                   size_varies = 1;
4794
4795                   if (pedantic)
4796                     {
4797                       if (TREE_CONSTANT (size))
4798                         pedwarn ("ANSI C forbids array `%s' whose size can't be evaluated", name);
4799                       else
4800                         pedwarn ("ANSI C forbids variable-size array `%s'", name);
4801                     }
4802                 }
4803
4804               /* Convert size to index_type, so that if it is a variable
4805                  the computations will be done in the proper mode.  */
4806               itype = fold (build (MINUS_EXPR, index_type,
4807                                    convert (index_type, size),
4808                                    convert (index_type, size_one_node)));
4809
4810               /* If that overflowed, the array is too big.
4811                  ??? While a size of INT_MAX+1 technically shouldn't cause
4812                  an overflow (because we subtract 1), the overflow is recorded
4813                  during the conversion to index_type, before the subtraction.
4814                  Handling this case seems like an unnecessary complication.  */
4815               if (TREE_OVERFLOW (itype))
4816                 {
4817                   error ("size of array `%s' is too large", name);
4818                   type = error_mark_node;
4819                   continue;
4820                 }
4821
4822               if (size_varies)
4823                 itype = variable_size (itype);
4824               itype = build_index_type (itype);
4825             }
4826
4827 #if 0 /* This had bad results for pointers to arrays, as in
4828          union incomplete (*foo)[4];  */
4829           /* Complain about arrays of incomplete types, except in typedefs.  */
4830
4831           if (TYPE_SIZE (type) == 0
4832               /* Avoid multiple warnings for nested array types.  */
4833               && TREE_CODE (type) != ARRAY_TYPE
4834               && !(specbits & (1 << (int) RID_TYPEDEF))
4835               && !C_TYPE_BEING_DEFINED (type))
4836             warning ("array type has incomplete element type");
4837 #endif
4838
4839 #if 0  /* We shouldn't have a function type here at all!
4840           Functions aren't allowed as array elements.  */
4841           if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4842               && (constp || volatilep))
4843             pedwarn ("ANSI C forbids const or volatile function types");
4844 #endif
4845
4846           /* Build the array type itself, then merge any constancy or
4847              volatility into the target type.  We must do it in this order
4848              to ensure that the TYPE_MAIN_VARIANT field of the array type
4849              is set correctly.  */
4850
4851           type = build_array_type (type, itype);
4852           if (constp || volatilep)
4853             type = c_build_type_variant (type, constp, volatilep);
4854
4855 #if 0   /* don't clear these; leave them set so that the array type
4856            or the variable is itself const or volatile.  */
4857           constp = 0;
4858           volatilep = 0;
4859 #endif
4860
4861           if (size_varies)
4862             C_TYPE_VARIABLE_SIZE (type) = 1;
4863         }
4864       else if (TREE_CODE (declarator) == CALL_EXPR)
4865         {
4866           int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4867                             || current_binding_level == global_binding_level);
4868           tree arg_types;
4869
4870           /* Declaring a function type.
4871              Make sure we have a valid type for the function to return.  */
4872           if (type == error_mark_node)
4873             continue;
4874
4875           size_varies = 0;
4876
4877           /* Warn about some types functions can't return.  */
4878
4879           if (TREE_CODE (type) == FUNCTION_TYPE)
4880             {
4881               error ("`%s' declared as function returning a function", name);
4882               type = integer_type_node;
4883             }
4884           if (TREE_CODE (type) == ARRAY_TYPE)
4885             {
4886               error ("`%s' declared as function returning an array", name);
4887               type = integer_type_node;
4888             }
4889
4890 #ifndef TRADITIONAL_RETURN_FLOAT
4891           /* Traditionally, declaring return type float means double.  */
4892
4893           if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4894             type = double_type_node;
4895 #endif /* TRADITIONAL_RETURN_FLOAT */
4896
4897           /* If this is a block level extern, it must live past the end
4898              of the function so that we can check it against other extern
4899              declarations (IDENTIFIER_LIMBO_VALUE).  */
4900           if (extern_ref && allocation_temporary_p ())
4901             end_temporary_allocation ();
4902
4903           /* Construct the function type and go to the next
4904              inner layer of declarator.  */
4905
4906           arg_types = grokparms (TREE_OPERAND (declarator, 1),
4907                                  funcdef_flag
4908                                  /* Say it's a definition
4909                                     only for the CALL_EXPR
4910                                     closest to the identifier.  */
4911                                  && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4912 #if 0 /* This seems to be false.  We turn off temporary allocation
4913          above in this function if -traditional.
4914          And this code caused inconsistent results with prototypes:
4915          callers would ignore them, and pass arguments wrong.  */
4916
4917           /* Omit the arg types if -traditional, since the arg types
4918              and the list links might not be permanent.  */
4919           type = build_function_type (type,
4920                                       flag_traditional 
4921                                       ? NULL_TREE : arg_types);
4922 #endif
4923           /* ANSI seems to say that `const int foo ();'
4924              does not make the function foo const.  */
4925           if (constp || volatilep)
4926             type = c_build_type_variant (type, constp, volatilep);
4927           constp = 0;
4928           volatilep = 0;
4929
4930           type = build_function_type (type, arg_types);
4931           declarator = TREE_OPERAND (declarator, 0);
4932
4933           /* Set the TYPE_CONTEXTs for each tagged type which is local to
4934              the formal parameter list of this FUNCTION_TYPE to point to
4935              the FUNCTION_TYPE node itself.  */
4936
4937           {
4938             register tree link;
4939
4940             for (link = last_function_parm_tags;
4941                  link;
4942                  link = TREE_CHAIN (link))
4943               TYPE_CONTEXT (TREE_VALUE (link)) = type;
4944           }
4945         }
4946       else if (TREE_CODE (declarator) == INDIRECT_REF)
4947         {
4948           /* Merge any constancy or volatility into the target type
4949              for the pointer.  */
4950
4951           if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4952               && (constp || volatilep))
4953             pedwarn ("ANSI C forbids const or volatile function types");
4954           if (constp || volatilep)
4955             type = c_build_type_variant (type, constp, volatilep);
4956           constp = 0;
4957           volatilep = 0;
4958           size_varies = 0;
4959
4960           type = build_pointer_type (type);
4961
4962           /* Process a list of type modifier keywords
4963              (such as const or volatile) that were given inside the `*'.  */
4964
4965           if (TREE_TYPE (declarator))
4966             {
4967               register tree typemodlist;
4968               int erred = 0;
4969               for (typemodlist = TREE_TYPE (declarator); typemodlist;
4970                    typemodlist = TREE_CHAIN (typemodlist))
4971                 {
4972                   if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_CONST])
4973                     constp++;
4974                   else if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_VOLATILE])
4975                     volatilep++;
4976                   else if (!erred)
4977                     {
4978                       erred = 1;
4979                       error ("invalid type modifier within pointer declarator");
4980                     }
4981                 }
4982               if (constp > 1)
4983                 pedwarn ("duplicate `const'");
4984               if (volatilep > 1)
4985                 pedwarn ("duplicate `volatile'");
4986             }
4987
4988           declarator = TREE_OPERAND (declarator, 0);
4989         }
4990       else
4991         abort ();
4992
4993     }
4994
4995   /* Now TYPE has the actual type.  */
4996
4997   /* Did array size calculations overflow?  */
4998
4999   if (TREE_CODE (type) == ARRAY_TYPE
5000       && TYPE_SIZE (type)
5001       && TREE_OVERFLOW (TYPE_SIZE (type)))
5002     error ("size of array `%s' is too large", name);
5003
5004   /* If this is declaring a typedef name, return a TYPE_DECL.  */
5005
5006   if (specbits & (1 << (int) RID_TYPEDEF))
5007     {
5008       tree decl;
5009       /* Note that the grammar rejects storage classes
5010          in typenames, fields or parameters */
5011       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5012           && (constp || volatilep))
5013         pedwarn ("ANSI C forbids const or volatile function types");
5014       if (constp || volatilep)
5015         type = c_build_type_variant (type, constp, volatilep);
5016       decl = build_decl (TYPE_DECL, declarator, type);
5017       if ((specbits & (1 << (int) RID_SIGNED))
5018           || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
5019         C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
5020       pop_obstacks ();
5021       return decl;
5022     }
5023
5024   /* Detect the case of an array type of unspecified size
5025      which came, as such, direct from a typedef name.
5026      We must copy the type, so that each identifier gets
5027      a distinct type, so that each identifier's size can be
5028      controlled separately by its own initializer.  */
5029
5030   if (type != 0 && typedef_type != 0
5031       && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type)
5032       && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0)
5033     {
5034       type = build_array_type (TREE_TYPE (type), 0);
5035       if (size_varies)
5036         C_TYPE_VARIABLE_SIZE (type) = 1;
5037     }
5038
5039   /* If this is a type name (such as, in a cast or sizeof),
5040      compute the type and return it now.  */
5041
5042   if (decl_context == TYPENAME)
5043     {
5044       /* Note that the grammar rejects storage classes
5045          in typenames, fields or parameters */
5046       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5047           && (constp || volatilep))
5048         pedwarn ("ANSI C forbids const or volatile function types");
5049       if (constp || volatilep)
5050         type = c_build_type_variant (type, constp, volatilep);
5051       pop_obstacks ();
5052       return type;
5053     }
5054
5055   /* Aside from typedefs and type names (handle above),
5056      `void' at top level (not within pointer)
5057      is allowed only in public variables.
5058      We don't complain about parms either, but that is because
5059      a better error message can be made later.  */
5060
5061   if (TYPE_MAIN_VARIANT (type) == void_type_node && decl_context != PARM
5062       && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
5063             && ((specbits & (1 << (int) RID_EXTERN))
5064                 || (current_binding_level == global_binding_level
5065                     && !(specbits
5066                          & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
5067     {
5068       error ("variable or field `%s' declared void", name);
5069       type = integer_type_node;
5070     }
5071
5072   /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
5073      or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE.  */
5074
5075   {
5076     register tree decl;
5077
5078     if (decl_context == PARM)
5079       {
5080         tree type_as_written = type;
5081         tree main_type;
5082
5083         /* A parameter declared as an array of T is really a pointer to T.
5084            One declared as a function is really a pointer to a function.  */
5085
5086         if (TREE_CODE (type) == ARRAY_TYPE)
5087           {
5088             /* Transfer const-ness of array into that of type pointed to.  */
5089             type = TREE_TYPE (type);
5090             if (constp || volatilep)
5091               type = c_build_type_variant (type, constp, volatilep);
5092             type = build_pointer_type (type);
5093             volatilep = constp = 0;
5094             size_varies = 0;
5095           }
5096         else if (TREE_CODE (type) == FUNCTION_TYPE)
5097           {
5098             if (pedantic && (constp || volatilep))
5099               pedwarn ("ANSI C forbids const or volatile function types");
5100             if (constp || volatilep)
5101               type = c_build_type_variant (type, constp, volatilep);
5102             type = build_pointer_type (type);
5103             volatilep = constp = 0;
5104           }
5105
5106         decl = build_decl (PARM_DECL, declarator, type);
5107         if (size_varies)
5108           C_DECL_VARIABLE_SIZE (decl) = 1;
5109
5110         /* Compute the type actually passed in the parmlist,
5111            for the case where there is no prototype.
5112            (For example, shorts and chars are passed as ints.)
5113            When there is a prototype, this is overridden later.  */
5114
5115         DECL_ARG_TYPE (decl) = type;
5116         main_type = (type == error_mark_node
5117                      ? error_mark_node
5118                      : TYPE_MAIN_VARIANT (type));
5119         if (main_type == float_type_node)
5120           DECL_ARG_TYPE (decl) = double_type_node;
5121         /* Don't use TYPE_PRECISION to decide whether to promote,
5122            because we should convert short if it's the same size as int,
5123            but we should not convert long if it's the same size as int.  */
5124         else if (TREE_CODE (main_type) != ERROR_MARK
5125                  && C_PROMOTING_INTEGER_TYPE_P (main_type))
5126           {
5127             if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)
5128                 && TREE_UNSIGNED (type))
5129               DECL_ARG_TYPE (decl) = unsigned_type_node;
5130             else
5131               DECL_ARG_TYPE (decl) = integer_type_node;
5132           }
5133
5134         DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
5135       }
5136     else if (decl_context == FIELD)
5137       {
5138         /* Structure field.  It may not be a function.  */
5139
5140         if (TREE_CODE (type) == FUNCTION_TYPE)
5141           {
5142             error ("field `%s' declared as a function", name);
5143             type = build_pointer_type (type);
5144           }
5145         else if (TREE_CODE (type) != ERROR_MARK && TYPE_SIZE (type) == 0)
5146           {
5147             error ("field `%s' has incomplete type", name);
5148             type = error_mark_node;
5149           }
5150         /* Move type qualifiers down to element of an array.  */
5151         if (TREE_CODE (type) == ARRAY_TYPE && (constp || volatilep))
5152           {
5153             type = build_array_type (c_build_type_variant (TREE_TYPE (type),
5154                                                            constp, volatilep),
5155                                      TYPE_DOMAIN (type));
5156 #if 0 /* Leave the field const or volatile as well.  */
5157             constp = volatilep = 0;
5158 #endif
5159           }
5160         decl = build_decl (FIELD_DECL, declarator, type);
5161         if (size_varies)
5162           C_DECL_VARIABLE_SIZE (decl) = 1;
5163       }
5164     else if (TREE_CODE (type) == FUNCTION_TYPE)
5165       {
5166         /* Every function declaration is "external"
5167            except for those which are inside a function body
5168            in which `auto' is used.
5169            That is a case not specified by ANSI C,
5170            and we use it for forward declarations for nested functions.  */
5171         int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
5172                           || current_binding_level == global_binding_level);
5173
5174         if (specbits & (1 << (int) RID_AUTO)
5175             && (pedantic || current_binding_level == global_binding_level))
5176           pedwarn ("invalid storage class for function `%s'", name);
5177         if (specbits & (1 << (int) RID_REGISTER))
5178           error ("invalid storage class for function `%s'", name);
5179         /* Function declaration not at top level.
5180            Storage classes other than `extern' are not allowed
5181            and `extern' makes no difference.  */
5182         if (current_binding_level != global_binding_level
5183             && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
5184             && pedantic)
5185           pedwarn ("invalid storage class for function `%s'", name);
5186
5187         /* If this is a block level extern, it must live past the end
5188            of the function so that we can check it against other
5189            extern declarations (IDENTIFIER_LIMBO_VALUE).  */
5190         if (extern_ref && allocation_temporary_p ())
5191           end_temporary_allocation ();
5192
5193         decl = build_decl (FUNCTION_DECL, declarator, type);
5194         decl = build_decl_attribute_variant (decl, decl_machine_attr);
5195
5196         if (pedantic && (constp || volatilep)
5197             && ! DECL_IN_SYSTEM_HEADER (decl))
5198           pedwarn ("ANSI C forbids const or volatile functions");
5199
5200         if (pedantic
5201             && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl))) == void_type_node
5202             && (TYPE_READONLY (TREE_TYPE (TREE_TYPE (decl)))
5203                 || TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (decl))))
5204             && ! DECL_IN_SYSTEM_HEADER (decl))
5205           pedwarn ("ANSI C forbids const or volatile void function return type");
5206
5207         if (volatilep
5208             && TREE_TYPE (TREE_TYPE (decl)) != void_type_node)
5209           warning ("`noreturn' function returns non-void value");
5210
5211         if (extern_ref)
5212           DECL_EXTERNAL (decl) = 1;
5213         /* Record absence of global scope for `static' or `auto'.  */
5214         TREE_PUBLIC (decl)
5215           = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
5216
5217         /* Record presence of `inline', if it is reasonable.  */
5218         if (inlinep)
5219           {
5220             if (! strcmp (IDENTIFIER_POINTER (declarator), "main"))
5221               warning ("cannot inline function `main'");
5222             else
5223               /* Assume that otherwise the function can be inlined.  */
5224               DECL_INLINE (decl) = 1;
5225
5226             if (specbits & (1 << (int) RID_EXTERN))
5227               current_extern_inline = 1;
5228           }
5229       }
5230     else
5231       {
5232         /* It's a variable.  */
5233         /* An uninitialized decl with `extern' is a reference.  */
5234         int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
5235
5236         /* Move type qualifiers down to element of an array.  */
5237         if (TREE_CODE (type) == ARRAY_TYPE && (constp || volatilep))
5238           {
5239             type = build_array_type (c_build_type_variant (TREE_TYPE (type),
5240                                                            constp, volatilep),
5241                                      TYPE_DOMAIN (type));
5242 #if 0 /* Leave the variable const or volatile as well.  */
5243             constp = volatilep = 0;
5244 #endif
5245           }
5246
5247         /* If this is a block level extern, it must live past the end
5248            of the function so that we can check it against other
5249            extern declarations (IDENTIFIER_LIMBO_VALUE).  */
5250         if (extern_ref && allocation_temporary_p ())
5251           end_temporary_allocation ();
5252
5253         decl = build_decl (VAR_DECL, declarator, type);
5254         if (size_varies)
5255           C_DECL_VARIABLE_SIZE (decl) = 1;
5256
5257         if (inlinep)
5258           pedwarn_with_decl (decl, "variable `%s' declared `inline'");
5259
5260         DECL_EXTERNAL (decl) = extern_ref;
5261         /* At top level, the presence of a `static' or `register' storage
5262            class specifier, or the absence of all storage class specifiers
5263            makes this declaration a definition (perhaps tentative).  Also,
5264            the absence of both `static' and `register' makes it public.  */
5265         if (current_binding_level == global_binding_level)
5266           {
5267             TREE_PUBLIC (decl)
5268               = !(specbits
5269                   & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
5270             TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
5271           }
5272         /* Not at top level, only `static' makes a static definition.  */
5273         else
5274           {
5275             TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
5276             TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
5277           }
5278
5279         if (specbits & 1 << (int) RID_ITERATOR)
5280           ITERATOR_P (decl) = 1;
5281       }
5282
5283     /* Record `register' declaration for warnings on &
5284        and in case doing stupid register allocation.  */
5285
5286     if (specbits & (1 << (int) RID_REGISTER))
5287       DECL_REGISTER (decl) = 1;
5288
5289     /* Record constancy and volatility.  */
5290
5291     if (constp)
5292       TREE_READONLY (decl) = 1;
5293     if (volatilep)
5294       {
5295         TREE_SIDE_EFFECTS (decl) = 1;
5296         TREE_THIS_VOLATILE (decl) = 1;
5297       }
5298     /* If a type has volatile components, it should be stored in memory.
5299        Otherwise, the fact that those components are volatile
5300        will be ignored, and would even crash the compiler.  */
5301     if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
5302       mark_addressable (decl);
5303
5304     pop_obstacks ();
5305
5306     return decl;
5307   }
5308 }
5309 \f
5310 /* Decode the parameter-list info for a function type or function definition.
5311    The argument is the value returned by `get_parm_info' (or made in parse.y
5312    if there is an identifier list instead of a parameter decl list).
5313    These two functions are separate because when a function returns
5314    or receives functions then each is called multiple times but the order
5315    of calls is different.  The last call to `grokparms' is always the one
5316    that contains the formal parameter names of a function definition.
5317
5318    Store in `last_function_parms' a chain of the decls of parms.
5319    Also store in `last_function_parm_tags' a chain of the struct, union,
5320    and enum tags declared among the parms.
5321
5322    Return a list of arg types to use in the FUNCTION_TYPE for this function.
5323
5324    FUNCDEF_FLAG is nonzero for a function definition, 0 for
5325    a mere declaration.  A nonempty identifier-list gets an error message
5326    when FUNCDEF_FLAG is zero.  */
5327
5328 static tree
5329 grokparms (parms_info, funcdef_flag)
5330      tree parms_info;
5331      int funcdef_flag;
5332 {
5333   tree first_parm = TREE_CHAIN (parms_info);
5334
5335   last_function_parms = TREE_PURPOSE (parms_info);
5336   last_function_parm_tags = TREE_VALUE (parms_info);
5337
5338   if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
5339       && !in_system_header)
5340     warning ("function declaration isn't a prototype");
5341
5342   if (first_parm != 0
5343       && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
5344     {
5345       if (! funcdef_flag)
5346         pedwarn ("parameter names (without types) in function declaration");
5347
5348       last_function_parms = first_parm;
5349       return 0;
5350     }
5351   else
5352     {
5353       tree parm;
5354       tree typelt;
5355       /* We no longer test FUNCDEF_FLAG.
5356          If the arg types are incomplete in a declaration,
5357          they must include undefined tags.
5358          These tags can never be defined in the scope of the declaration,
5359          so the types can never be completed,
5360          and no call can be compiled successfully.  */
5361 #if 0
5362       /* In a fcn definition, arg types must be complete.  */
5363       if (funcdef_flag)
5364 #endif
5365         for (parm = last_function_parms, typelt = first_parm;
5366              parm;
5367              parm = TREE_CHAIN (parm))
5368           /* Skip over any enumeration constants declared here.  */
5369           if (TREE_CODE (parm) == PARM_DECL)
5370             {
5371               /* Barf if the parameter itself has an incomplete type.  */
5372               tree type = TREE_VALUE (typelt);
5373               if (TYPE_SIZE (type) == 0)
5374                 {
5375                   if (funcdef_flag && DECL_NAME (parm) != 0)
5376                     error ("parameter `%s' has incomplete type",
5377                            IDENTIFIER_POINTER (DECL_NAME (parm)));
5378                   else
5379                     warning ("parameter has incomplete type");
5380                   if (funcdef_flag)
5381                     {
5382                       TREE_VALUE (typelt) = error_mark_node;
5383                       TREE_TYPE (parm) = error_mark_node;
5384                     }
5385                 }
5386 #if 0  /* This has been replaced by parm_tags_warning
5387           which uses a more accurate criterion for what to warn about.  */
5388               else
5389                 {
5390                   /* Now warn if is a pointer to an incomplete type.  */
5391                   while (TREE_CODE (type) == POINTER_TYPE
5392                          || TREE_CODE (type) == REFERENCE_TYPE)
5393                     type = TREE_TYPE (type);
5394                   type = TYPE_MAIN_VARIANT (type);
5395                   if (TYPE_SIZE (type) == 0)
5396                     {
5397                       if (DECL_NAME (parm) != 0)
5398                         warning ("parameter `%s' points to incomplete type",
5399                                  IDENTIFIER_POINTER (DECL_NAME (parm)));
5400                       else
5401                         warning ("parameter points to incomplete type");
5402                     }
5403                 }
5404 #endif
5405               typelt = TREE_CHAIN (typelt);
5406             }
5407
5408       /* Allocate the list of types the way we allocate a type.  */
5409       if (first_parm && ! TREE_PERMANENT (first_parm))
5410         {
5411           /* Construct a copy of the list of types
5412              on the saveable obstack.  */
5413           tree result = NULL;
5414           for (typelt = first_parm; typelt; typelt = TREE_CHAIN (typelt))
5415             result = saveable_tree_cons (NULL_TREE, TREE_VALUE (typelt),
5416                                          result);
5417           return nreverse (result);
5418         }
5419       else
5420         /* The list we have is permanent already.  */
5421         return first_parm;
5422     }
5423 }
5424
5425
5426 /* Return a tree_list node with info on a parameter list just parsed.
5427    The TREE_PURPOSE is a chain of decls of those parms.
5428    The TREE_VALUE is a list of structure, union and enum tags defined.
5429    The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5430    This tree_list node is later fed to `grokparms'.
5431
5432    VOID_AT_END nonzero means append `void' to the end of the type-list.
5433    Zero means the parmlist ended with an ellipsis so don't append `void'.  */
5434
5435 tree
5436 get_parm_info (void_at_end)
5437      int void_at_end;
5438 {
5439   register tree decl, t;
5440   register tree types = 0;
5441   int erred = 0;
5442   tree tags = gettags ();
5443   tree parms = getdecls ();
5444   tree new_parms = 0;
5445   tree order = current_binding_level->parm_order;
5446
5447   /* Just `void' (and no ellipsis) is special.  There are really no parms.  */
5448   if (void_at_end && parms != 0
5449       && TREE_CHAIN (parms) == 0
5450       && TYPE_MAIN_VARIANT (TREE_TYPE (parms)) == void_type_node
5451       && DECL_NAME (parms) == 0)
5452     {
5453       parms = NULL_TREE;
5454       storedecls (NULL_TREE);
5455       return saveable_tree_cons (NULL_TREE, NULL_TREE,
5456                                  saveable_tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5457     }
5458
5459   /* Extract enumerator values and other non-parms declared with the parms.
5460      Likewise any forward parm decls that didn't have real parm decls.  */
5461   for (decl = parms; decl; )
5462     {
5463       tree next = TREE_CHAIN (decl);
5464
5465       if (TREE_CODE (decl) != PARM_DECL)
5466         {
5467           TREE_CHAIN (decl) = new_parms;
5468           new_parms = decl;
5469         }
5470       else if (TREE_ASM_WRITTEN (decl))
5471         {
5472           error_with_decl (decl, "parameter `%s' has just a forward declaration");
5473           TREE_CHAIN (decl) = new_parms;
5474           new_parms = decl;
5475         }
5476       decl = next;
5477     }
5478
5479   /* Put the parm decls back in the order they were in in the parm list.  */
5480   for (t = order; t; t = TREE_CHAIN (t))
5481     {
5482       if (TREE_CHAIN (t))
5483         TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5484       else
5485         TREE_CHAIN (TREE_VALUE (t)) = 0;
5486     }
5487
5488   new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5489                        new_parms);
5490
5491   /* Store the parmlist in the binding level since the old one
5492      is no longer a valid list.  (We have changed the chain pointers.)  */
5493   storedecls (new_parms);
5494
5495   for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5496     /* There may also be declarations for enumerators if an enumeration
5497        type is declared among the parms.  Ignore them here.  */
5498     if (TREE_CODE (decl) == PARM_DECL)
5499       {
5500         /* Since there is a prototype,
5501            args are passed in their declared types.  */
5502         tree type = TREE_TYPE (decl);
5503         DECL_ARG_TYPE (decl) = type;
5504 #ifdef PROMOTE_PROTOTYPES
5505         if ((TREE_CODE (type) == INTEGER_TYPE
5506              || TREE_CODE (type) == ENUMERAL_TYPE)
5507             && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5508           DECL_ARG_TYPE (decl) = integer_type_node;
5509 #endif
5510
5511         types = saveable_tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5512         if (TYPE_MAIN_VARIANT (TREE_VALUE (types)) == void_type_node && ! erred
5513             && DECL_NAME (decl) == 0)
5514           {
5515             error ("`void' in parameter list must be the entire list");
5516             erred = 1;
5517           }
5518       }
5519
5520   if (void_at_end)
5521     return saveable_tree_cons (new_parms, tags,
5522                                nreverse (saveable_tree_cons (NULL_TREE, void_type_node, types)));
5523
5524   return saveable_tree_cons (new_parms, tags, nreverse (types));
5525 }
5526
5527 /* At end of parameter list, warn about any struct, union or enum tags
5528    defined within.  Do so because these types cannot ever become complete.  */
5529
5530 void
5531 parmlist_tags_warning ()
5532 {
5533   tree elt;
5534   static int already;
5535
5536   for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5537     {
5538       enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5539       /* An anonymous union parm type is meaningful as a GNU extension.
5540          So don't warn for that.  */
5541       if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5542         continue;
5543       if (TREE_PURPOSE (elt) != 0)
5544         warning ("`%s %s' declared inside parameter list",
5545                  (code == RECORD_TYPE ? "struct"
5546                   : code == UNION_TYPE ? "union"
5547                   : "enum"),
5548                  IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5549       else
5550         warning ("anonymous %s declared inside parameter list",
5551                  (code == RECORD_TYPE ? "struct"
5552                   : code == UNION_TYPE ? "union"
5553                   : "enum"));
5554
5555       if (! already)
5556         {
5557           warning ("its scope is only this definition or declaration,");
5558           warning ("which is probably not what you want.");
5559           already = 1;
5560         }
5561     }
5562 }
5563 \f
5564 /* Get the struct, enum or union (CODE says which) with tag NAME.
5565    Define the tag as a forward-reference if it is not defined.  */
5566
5567 tree
5568 xref_tag (code, name)
5569      enum tree_code code;
5570      tree name;
5571 {
5572   int temporary = allocation_temporary_p ();
5573
5574   /* If a cross reference is requested, look up the type
5575      already defined for this tag and return it.  */
5576
5577   register tree ref = lookup_tag (code, name, current_binding_level, 0);
5578   /* Even if this is the wrong type of tag, return what we found.
5579      There will be an error message anyway, from pending_xref_error.
5580      If we create an empty xref just for an invalid use of the type,
5581      the main result is to create lots of superfluous error messages.  */
5582   if (ref)
5583     return ref;
5584
5585   push_obstacks_nochange ();
5586
5587   if (current_binding_level == global_binding_level && temporary)
5588     end_temporary_allocation ();
5589
5590   /* If no such tag is yet defined, create a forward-reference node
5591      and record it as the "definition".
5592      When a real declaration of this type is found,
5593      the forward-reference will be altered into a real type.  */
5594
5595   ref = make_node (code);
5596   if (code == ENUMERAL_TYPE)
5597     {
5598       /* (In ANSI, Enums can be referred to only if already defined.)  */
5599       if (pedantic)
5600         pedwarn ("ANSI C forbids forward references to `enum' types");
5601       /* Give the type a default layout like unsigned int
5602          to avoid crashing if it does not get defined.  */
5603       TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5604       TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5605       TREE_UNSIGNED (ref) = 1;
5606       TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5607       TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5608       TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5609     }
5610
5611   pushtag (name, ref);
5612
5613   pop_obstacks ();
5614
5615   return ref;
5616 }
5617 \f
5618 /* Make sure that the tag NAME is defined *in the current binding level*
5619    at least as a forward reference.
5620    CODE says which kind of tag NAME ought to be.
5621
5622    We also do a push_obstacks_nochange
5623    whose matching pop is in finish_struct.  */
5624
5625 tree
5626 start_struct (code, name)
5627      enum tree_code code;
5628      tree name;
5629 {
5630   /* If there is already a tag defined at this binding level
5631      (as a forward reference), just return it.  */
5632
5633   register tree ref = 0;
5634
5635   push_obstacks_nochange ();
5636   if (current_binding_level == global_binding_level)
5637     end_temporary_allocation ();
5638
5639   if (name != 0)
5640     ref = lookup_tag (code, name, current_binding_level, 1);
5641   if (ref && TREE_CODE (ref) == code)
5642     {
5643       C_TYPE_BEING_DEFINED (ref) = 1;
5644       TYPE_PACKED (ref) = flag_pack_struct;
5645       if (TYPE_FIELDS (ref))
5646         error ((code == UNION_TYPE ? "redefinition of `union %s'"
5647                 : "redefinition of `struct %s'"),
5648                IDENTIFIER_POINTER (name));
5649
5650       return ref;
5651     }
5652
5653   /* Otherwise create a forward-reference just so the tag is in scope.  */
5654
5655   ref = make_node (code);
5656   pushtag (name, ref);
5657   C_TYPE_BEING_DEFINED (ref) = 1;
5658   TYPE_PACKED (ref) = flag_pack_struct;
5659   return ref;
5660 }
5661
5662 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5663    of a structure component, returning a FIELD_DECL node.
5664    WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5665
5666    This is done during the parsing of the struct declaration.
5667    The FIELD_DECL nodes are chained together and the lot of them
5668    are ultimately passed to `build_struct' to make the RECORD_TYPE node.  */
5669
5670 tree
5671 grokfield (filename, line, declarator, declspecs, width)
5672      char *filename;
5673      int line;
5674      tree declarator, declspecs, width;
5675 {
5676   tree value;
5677
5678   /* The corresponding pop_obstacks is in finish_decl.  */
5679   push_obstacks_nochange ();
5680
5681   value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5682
5683   finish_decl (value, NULL_TREE, NULL_TREE);
5684   DECL_INITIAL (value) = width;
5685
5686   maybe_objc_check_decl (value);
5687   return value;
5688 }
5689 \f
5690 /* Function to help qsort sort FIELD_DECLs by name order.  */
5691
5692 static int
5693 field_decl_cmp (xp, yp)
5694      const GENERIC_PTR xp;
5695      const GENERIC_PTR yp;
5696 {
5697   tree *x = (tree *)xp, *y = (tree *)yp;
5698
5699   if (DECL_NAME (*x) == DECL_NAME (*y))
5700     return 0;
5701   if (DECL_NAME (*x) == NULL)
5702     return -1;
5703   if (DECL_NAME (*y) == NULL)
5704     return 1;
5705   if (DECL_NAME (*x) < DECL_NAME (*y))
5706     return -1;
5707   return 1;
5708 }
5709
5710 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5711    FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5712    ATTRIBUTES are attributes to be applied to the structure.
5713
5714    We also do a pop_obstacks to match the push in start_struct.  */
5715
5716 tree
5717 finish_struct (t, fieldlist, attributes)
5718      tree t;
5719      tree fieldlist;
5720      tree attributes;
5721 {
5722   register tree x;
5723   int old_momentary;
5724   int toplevel = global_binding_level == current_binding_level;
5725
5726   /* If this type was previously laid out as a forward reference,
5727      make sure we lay it out again.  */
5728
5729   TYPE_SIZE (t) = 0;
5730
5731   decl_attributes (t, attributes, NULL_TREE);
5732
5733   /* Nameless union parm types are useful as GCC extension.  */
5734   if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5735     /* Otherwise, warn about any struct or union def. in parmlist.  */
5736     if (in_parm_level_p ())
5737       {
5738         if (pedantic)
5739           pedwarn ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
5740                     : "structure defined inside parms"));
5741         else if (! flag_traditional)
5742           warning ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
5743                     : "structure defined inside parms"));
5744       }
5745
5746   old_momentary = suspend_momentary ();
5747
5748   if (pedantic)
5749     {
5750       for (x = fieldlist; x; x = TREE_CHAIN (x))
5751         if (DECL_NAME (x) != 0)
5752           break;
5753
5754       if (x == 0)
5755         pedwarn ("%s has no %smembers",
5756                  (TREE_CODE (t) == UNION_TYPE ? "union" : "structure"),
5757                  (fieldlist ? "named " : ""));
5758     }
5759
5760   /* Install struct as DECL_CONTEXT of each field decl.
5761      Also process specified field sizes.
5762      Set DECL_FIELD_SIZE to the specified size, or 0 if none specified.
5763      The specified size is found in the DECL_INITIAL.
5764      Store 0 there, except for ": 0" fields (so we can find them
5765      and delete them, below).  */
5766
5767   for (x = fieldlist; x; x = TREE_CHAIN (x))
5768     {
5769       DECL_CONTEXT (x) = t;
5770       DECL_PACKED (x) |= TYPE_PACKED (t);
5771       DECL_FIELD_SIZE (x) = 0;
5772
5773       /* If any field is const, the structure type is pseudo-const.  */
5774       if (TREE_READONLY (x))
5775         C_TYPE_FIELDS_READONLY (t) = 1;
5776       else
5777         {
5778           /* A field that is pseudo-const makes the structure likewise.  */
5779           tree t1 = TREE_TYPE (x);
5780           while (TREE_CODE (t1) == ARRAY_TYPE)
5781             t1 = TREE_TYPE (t1);
5782           if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5783               && C_TYPE_FIELDS_READONLY (t1))
5784             C_TYPE_FIELDS_READONLY (t) = 1;
5785         }
5786
5787       /* Any field that is volatile means variables of this type must be
5788          treated in some ways as volatile.  */
5789       if (TREE_THIS_VOLATILE (x))
5790         C_TYPE_FIELDS_VOLATILE (t) = 1;
5791
5792       /* Any field of nominal variable size implies structure is too.  */
5793       if (C_DECL_VARIABLE_SIZE (x))
5794         C_TYPE_VARIABLE_SIZE (t) = 1;
5795
5796       /* Detect invalid nested redefinition.  */
5797       if (TREE_TYPE (x) == t)
5798         error ("nested redefinition of `%s'",
5799                IDENTIFIER_POINTER (TYPE_NAME (t)));
5800
5801       /* Detect invalid bit-field size.  */
5802       if (DECL_INITIAL (x))
5803         STRIP_NOPS (DECL_INITIAL (x));
5804       if (DECL_INITIAL (x))
5805         {
5806           if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5807             constant_expression_warning (DECL_INITIAL (x));
5808           else
5809             {
5810               error_with_decl (x, "bit-field `%s' width not an integer constant");
5811               DECL_INITIAL (x) = NULL;
5812             }
5813         }
5814
5815       /* Detect invalid bit-field type.  */
5816       if (DECL_INITIAL (x)
5817           && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5818           && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5819         {
5820           error_with_decl (x, "bit-field `%s' has invalid type");
5821           DECL_INITIAL (x) = NULL;
5822         }
5823       if (DECL_INITIAL (x) && pedantic
5824           && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5825           && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5826           /* Accept an enum that's equivalent to int or unsigned int.  */
5827           && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5828                && (TYPE_PRECISION (TREE_TYPE (x))
5829                    == TYPE_PRECISION (integer_type_node))))
5830         pedwarn_with_decl (x, "bit-field `%s' type invalid in ANSI C");
5831
5832       /* Detect and ignore out of range field width.  */
5833       if (DECL_INITIAL (x))
5834         {
5835           unsigned HOST_WIDE_INT width = TREE_INT_CST_LOW (DECL_INITIAL (x));
5836
5837           if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5838             {
5839               DECL_INITIAL (x) = NULL;
5840               error_with_decl (x, "negative width in bit-field `%s'");
5841             }
5842           else if (TREE_INT_CST_HIGH (DECL_INITIAL (x)) != 0
5843                    || width > TYPE_PRECISION (TREE_TYPE (x)))
5844             {
5845               DECL_INITIAL (x) = NULL;
5846               pedwarn_with_decl (x, "width of `%s' exceeds its type");
5847             }
5848           else if (width == 0 && DECL_NAME (x) != 0)
5849             {
5850               error_with_decl (x, "zero width for bit-field `%s'");
5851               DECL_INITIAL (x) = NULL;
5852             }
5853         }
5854
5855       /* Process valid field width.  */
5856       if (DECL_INITIAL (x))
5857         {
5858           register int width = TREE_INT_CST_LOW (DECL_INITIAL (x));
5859
5860           if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5861               && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5862                                          TREE_UNSIGNED (TREE_TYPE (x)))
5863                   || width < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5864                                             TREE_UNSIGNED (TREE_TYPE (x)))))
5865             warning_with_decl (x, "`%s' is narrower than values of its type");
5866
5867           DECL_FIELD_SIZE (x) = width;
5868           DECL_BIT_FIELD (x) = DECL_C_BIT_FIELD (x) = 1;
5869           DECL_INITIAL (x) = NULL;
5870
5871           if (width == 0)
5872             {
5873               /* field size 0 => force desired amount of alignment.  */
5874 #ifdef EMPTY_FIELD_BOUNDARY
5875               DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5876 #endif
5877 #ifdef PCC_BITFIELD_TYPE_MATTERS
5878               if (PCC_BITFIELD_TYPE_MATTERS)
5879                 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5880                                       TYPE_ALIGN (TREE_TYPE (x)));
5881 #endif
5882             }
5883         }
5884       else if (TREE_TYPE (x) != error_mark_node)
5885         {
5886           unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5887                            : TYPE_ALIGN (TREE_TYPE (x)));
5888           /* Non-bit-fields are aligned for their type, except packed
5889              fields which require only BITS_PER_UNIT alignment.  */
5890           DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5891         }
5892     }
5893
5894   /* Now DECL_INITIAL is null on all members.  */
5895
5896   /* Delete all duplicate fields from the fieldlist */
5897   for (x = fieldlist; x && TREE_CHAIN (x);)
5898     /* Anonymous fields aren't duplicates.  */
5899     if (DECL_NAME (TREE_CHAIN (x)) == 0)
5900       x = TREE_CHAIN (x);
5901     else
5902       {
5903         register tree y = fieldlist;
5904           
5905         while (1)
5906           {
5907             if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5908               break;
5909             if (y == x)
5910               break;
5911             y = TREE_CHAIN (y);
5912           }
5913         if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5914           {
5915             error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5916             TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5917           }
5918         else x = TREE_CHAIN (x);
5919       }
5920
5921   /* Now we have the nearly final fieldlist.  Record it,
5922      then lay out the structure or union (including the fields).  */
5923
5924   TYPE_FIELDS (t) = fieldlist;
5925
5926   layout_type (t);
5927
5928   /* Delete all zero-width bit-fields from the front of the fieldlist */
5929   while (fieldlist
5930          && DECL_INITIAL (fieldlist))
5931     fieldlist = TREE_CHAIN (fieldlist);
5932   /* Delete all such members from the rest of the fieldlist */
5933   for (x = fieldlist; x;)
5934     {
5935       if (TREE_CHAIN (x) && DECL_INITIAL (TREE_CHAIN (x)))
5936         TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5937       else x = TREE_CHAIN (x);
5938     }
5939
5940   /*  Now we have the truly final field list.
5941       Store it in this type and in the variants.  */
5942
5943   TYPE_FIELDS (t) = fieldlist;
5944
5945   /* If there are lots of fields, sort so we can look through them fast.
5946      We arbitrarily consider 16 or more elts to be "a lot".  */
5947   {
5948     int len = 0;
5949
5950     for (x = fieldlist; x; x = TREE_CHAIN (x))
5951       {
5952         if (len > 15)
5953           break;
5954         len += 1;
5955       }
5956     if (len > 15)
5957       {
5958         tree *field_array;
5959         char *space;
5960
5961         len += list_length (x);
5962         /* Use the same allocation policy here that make_node uses, to
5963            ensure that this lives as long as the rest of the struct decl.
5964            All decls in an inline function need to be saved.  */
5965         if (allocation_temporary_p ())
5966           space = savealloc (sizeof (struct lang_type) + len * sizeof (tree));
5967         else
5968           space = oballoc (sizeof (struct lang_type) + len * sizeof (tree));
5969
5970         TYPE_LANG_SPECIFIC (t) = (struct lang_type *) space;
5971         TYPE_LANG_SPECIFIC (t)->len = len;
5972
5973         field_array = &TYPE_LANG_SPECIFIC (t)->elts[0];
5974         len = 0;
5975         for (x = fieldlist; x; x = TREE_CHAIN (x))
5976           field_array[len++] = x;
5977
5978         qsort (field_array, len, sizeof (tree), field_decl_cmp);
5979       }
5980   }
5981
5982   for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5983     {
5984       TYPE_FIELDS (x) = TYPE_FIELDS (t);
5985       TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5986       TYPE_ALIGN (x) = TYPE_ALIGN (t);
5987     }
5988
5989   /* If this was supposed to be a transparent union, but we can't
5990      make it one, warn and turn off the flag.  */
5991   if (TREE_CODE (t) == UNION_TYPE
5992       && TYPE_TRANSPARENT_UNION (t)
5993       && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5994     {
5995       TYPE_TRANSPARENT_UNION (t) = 0;
5996       warning ("union cannot be made transparent");
5997     }
5998
5999   /* If this structure or union completes the type of any previous
6000      variable declaration, lay it out and output its rtl.  */
6001
6002   if (current_binding_level->n_incomplete != 0)
6003     {
6004       tree decl;
6005       for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
6006         {
6007           if (TREE_TYPE (decl) == t
6008               && TREE_CODE (decl) != TYPE_DECL)
6009             {
6010               layout_decl (decl, 0);
6011               /* This is a no-op in c-lang.c or something real in objc-actions.c.  */
6012               maybe_objc_check_decl (decl);
6013               rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
6014               if (! toplevel)
6015                 expand_decl (decl);
6016               --current_binding_level->n_incomplete;
6017             }
6018           else if (TYPE_SIZE (TREE_TYPE (decl)) == 0
6019                    && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
6020             {
6021               tree element = TREE_TYPE (decl);
6022               while (TREE_CODE (element) == ARRAY_TYPE)
6023                 element = TREE_TYPE (element);
6024               if (element == t)
6025                 layout_array_type (TREE_TYPE (decl));
6026             }
6027         }
6028     }
6029
6030   resume_momentary (old_momentary);
6031
6032   /* Finish debugging output for this type.  */
6033   rest_of_type_compilation (t, toplevel);
6034
6035   /* The matching push is in start_struct.  */
6036   pop_obstacks ();
6037
6038   return t;
6039 }
6040
6041 /* Lay out the type T, and its element type, and so on.  */
6042
6043 static void
6044 layout_array_type (t)
6045      tree t;
6046 {
6047   if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
6048     layout_array_type (TREE_TYPE (t));
6049   layout_type (t);
6050 }
6051 \f
6052 /* Begin compiling the definition of an enumeration type.
6053    NAME is its name (or null if anonymous).
6054    Returns the type object, as yet incomplete.
6055    Also records info about it so that build_enumerator
6056    may be used to declare the individual values as they are read.  */
6057
6058 tree
6059 start_enum (name)
6060      tree name;
6061 {
6062   register tree enumtype = 0;
6063
6064   /* If this is the real definition for a previous forward reference,
6065      fill in the contents in the same object that used to be the
6066      forward reference.  */
6067
6068   if (name != 0)
6069     enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
6070
6071   /* The corresponding pop_obstacks is in finish_enum.  */
6072   push_obstacks_nochange ();
6073   /* If these symbols and types are global, make them permanent.  */
6074   if (current_binding_level == global_binding_level)
6075     end_temporary_allocation ();
6076
6077   if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
6078     {
6079       enumtype = make_node (ENUMERAL_TYPE);
6080       pushtag (name, enumtype);
6081     }
6082
6083   C_TYPE_BEING_DEFINED (enumtype) = 1;
6084
6085   if (TYPE_VALUES (enumtype) != 0)
6086     {
6087       /* This enum is a named one that has been declared already.  */
6088       error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
6089
6090       /* Completely replace its old definition.
6091          The old enumerators remain defined, however.  */
6092       TYPE_VALUES (enumtype) = 0;
6093     }
6094
6095   enum_next_value = integer_zero_node;
6096   enum_overflow = 0;
6097
6098   if (flag_short_enums)
6099     TYPE_PACKED (enumtype) = 1;
6100
6101   return enumtype;
6102 }
6103
6104 /* After processing and defining all the values of an enumeration type,
6105    install their decls in the enumeration type and finish it off.
6106    ENUMTYPE is the type object, VALUES a list of decl-value pairs,
6107    and ATTRIBUTES are the specified attributes.
6108    Returns ENUMTYPE.  */
6109
6110 tree
6111 finish_enum (enumtype, values, attributes)
6112      tree enumtype;
6113      tree values;
6114      tree attributes;
6115 {
6116   register tree pair, tem;
6117   tree minnode = 0, maxnode = 0;
6118   int lowprec, highprec, precision;
6119   int toplevel = global_binding_level == current_binding_level;
6120
6121   if (in_parm_level_p ())
6122     warning ("enum defined inside parms");
6123
6124   decl_attributes (enumtype, attributes, NULL_TREE);
6125
6126   /* Calculate the maximum value of any enumerator in this type.  */
6127
6128   if (values == error_mark_node)
6129     minnode = maxnode = integer_zero_node;
6130   else
6131     for (pair = values; pair; pair = TREE_CHAIN (pair))
6132       {
6133         tree value = TREE_VALUE (pair);
6134         if (pair == values)
6135           minnode = maxnode = TREE_VALUE (pair);
6136         else
6137           {
6138             if (tree_int_cst_lt (maxnode, value))
6139               maxnode = value;
6140             if (tree_int_cst_lt (value, minnode))
6141               minnode = value;
6142           }
6143       }
6144
6145   TYPE_MIN_VALUE (enumtype) = minnode;
6146   TYPE_MAX_VALUE (enumtype) = maxnode;
6147
6148   /* An enum can have some negative values; then it is signed.  */
6149   TREE_UNSIGNED (enumtype) = tree_int_cst_sgn (minnode) >= 0;
6150
6151   /* Determine the precision this type needs.  */
6152
6153   lowprec = min_precision (minnode, TREE_UNSIGNED (enumtype));
6154   highprec = min_precision (maxnode, TREE_UNSIGNED (enumtype));
6155   precision = MAX (lowprec, highprec);
6156
6157   if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
6158     {
6159       tree narrowest = type_for_size (precision, 1);
6160       if (narrowest == 0)
6161         {
6162           warning ("enumeration values exceed range of largest integer");
6163           narrowest = long_long_integer_type_node;
6164         }
6165
6166       TYPE_PRECISION (enumtype) = TYPE_PRECISION (narrowest);
6167     }
6168   else
6169     TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
6170
6171   TYPE_SIZE (enumtype) = 0;
6172   layout_type (enumtype);
6173
6174   if (values != error_mark_node)
6175     {
6176       /* Change the type of the enumerators to be the enum type.
6177          Formerly this was done only for enums that fit in an int,
6178          but the comment said it was done only for enums wider than int.
6179          It seems necessary to do this for wide enums,
6180          and best not to change what's done for ordinary narrower ones.  */
6181       for (pair = values; pair; pair = TREE_CHAIN (pair))
6182         {
6183           TREE_TYPE (TREE_PURPOSE (pair)) = enumtype;
6184           DECL_SIZE (TREE_PURPOSE (pair)) = TYPE_SIZE (enumtype);
6185           if (TREE_CODE (TREE_PURPOSE (pair)) != FUNCTION_DECL)
6186             DECL_ALIGN (TREE_PURPOSE (pair)) = TYPE_ALIGN (enumtype);
6187         }
6188
6189       /* Replace the decl nodes in VALUES with their names.  */
6190       for (pair = values; pair; pair = TREE_CHAIN (pair))
6191         TREE_PURPOSE (pair) = DECL_NAME (TREE_PURPOSE (pair));
6192
6193       TYPE_VALUES (enumtype) = values;
6194     }
6195
6196   /* Fix up all variant types of this enum type.  */
6197   for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
6198     {
6199       TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
6200       TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
6201       TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
6202       TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
6203       TYPE_MODE (tem) = TYPE_MODE (enumtype);
6204       TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
6205       TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
6206       TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
6207     }
6208
6209   /* Finish debugging output for this type.  */
6210   rest_of_type_compilation (enumtype, toplevel);
6211
6212   /* This matches a push in start_enum.  */
6213   pop_obstacks ();
6214
6215   return enumtype;
6216 }
6217
6218 /* Build and install a CONST_DECL for one value of the
6219    current enumeration type (one that was begun with start_enum).
6220    Return a tree-list containing the CONST_DECL and its value.
6221    Assignment of sequential values by default is handled here.  */
6222
6223 tree
6224 build_enumerator (name, value)
6225      tree name, value;
6226 {
6227   register tree decl, type;
6228
6229   /* Validate and default VALUE.  */
6230
6231   /* Remove no-op casts from the value.  */
6232   if (value)
6233     STRIP_TYPE_NOPS (value);
6234
6235   if (value != 0)
6236     {
6237       if (TREE_CODE (value) == INTEGER_CST)
6238         {
6239           value = default_conversion (value);
6240           constant_expression_warning (value);
6241         }
6242       else
6243         {
6244           error ("enumerator value for `%s' not integer constant",
6245                  IDENTIFIER_POINTER (name));
6246           value = 0;
6247         }
6248     }
6249
6250   /* Default based on previous value.  */
6251   /* It should no longer be possible to have NON_LVALUE_EXPR
6252      in the default.  */
6253   if (value == 0)
6254     {
6255       value = enum_next_value;
6256       if (enum_overflow)
6257         error ("overflow in enumeration values");
6258     }
6259
6260   if (pedantic && ! int_fits_type_p (value, integer_type_node))
6261     {
6262       pedwarn ("ANSI C restricts enumerator values to range of `int'");
6263       value = integer_zero_node;
6264     }
6265
6266   /* Set basis for default for next value.  */
6267   enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
6268   enum_overflow = tree_int_cst_lt (enum_next_value, value);
6269
6270   /* Now create a declaration for the enum value name.  */
6271
6272   type = TREE_TYPE (value);
6273   type = type_for_size (MAX (TYPE_PRECISION (type),
6274                              TYPE_PRECISION (integer_type_node)),
6275                         ((flag_traditional
6276                           || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
6277                          && TREE_UNSIGNED (type)));
6278
6279   decl = build_decl (CONST_DECL, name, type);
6280   DECL_INITIAL (decl) = value;
6281   TREE_TYPE (value) = type;
6282   pushdecl (decl);
6283
6284   return saveable_tree_cons (decl, value, NULL_TREE);
6285 }
6286 \f
6287 /* Create the FUNCTION_DECL for a function definition.
6288    DECLSPECS, DECLARATOR, PREFIX_ATTRIBUTES and ATTRIBUTES are the parts of
6289    the declaration; they describe the function's name and the type it returns,
6290    but twisted together in a fashion that parallels the syntax of C.
6291
6292    This function creates a binding context for the function body
6293    as well as setting up the FUNCTION_DECL in current_function_decl.
6294
6295    Returns 1 on success.  If the DECLARATOR is not suitable for a function
6296    (it defines a datum instead), we return 0, which tells
6297    yyparse to report a parse error.
6298
6299    NESTED is nonzero for a function nested within another function.  */
6300
6301 int
6302 start_function (declspecs, declarator, prefix_attributes, attributes, nested)
6303      tree declarator, declspecs, prefix_attributes, attributes;
6304      int nested;
6305 {
6306   tree decl1, old_decl;
6307   tree restype;
6308   int old_immediate_size_expand = immediate_size_expand;
6309
6310   current_function_returns_value = 0;  /* Assume, until we see it does.  */
6311   current_function_returns_null = 0;
6312   warn_about_return_type = 0;
6313   current_extern_inline = 0;
6314   c_function_varargs = 0;
6315   named_labels = 0;
6316   shadowed_labels = 0;
6317
6318   /* Don't expand any sizes in the return type of the function.  */
6319   immediate_size_expand = 0;
6320
6321   decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
6322
6323   /* If the declarator is not suitable for a function definition,
6324      cause a syntax error.  */
6325   if (decl1 == 0)
6326     {
6327       immediate_size_expand = old_immediate_size_expand;
6328       return 0;
6329     }
6330
6331   decl_attributes (decl1, prefix_attributes, attributes);
6332
6333   announce_function (decl1);
6334
6335   if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl1))) == 0)
6336     {
6337       error ("return-type is an incomplete type");
6338       /* Make it return void instead.  */
6339       TREE_TYPE (decl1)
6340         = build_function_type (void_type_node,
6341                                TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6342     }
6343
6344   if (warn_about_return_type)
6345     warning ("return-type defaults to `int'");
6346
6347   /* Save the parm names or decls from this function's declarator
6348      where store_parm_decls will find them.  */
6349   current_function_parms = last_function_parms;
6350   current_function_parm_tags = last_function_parm_tags;
6351
6352   /* Make the init_value nonzero so pushdecl knows this is not tentative.
6353      error_mark_node is replaced below (in poplevel) with the BLOCK.  */
6354   DECL_INITIAL (decl1) = error_mark_node;
6355
6356   /* If this definition isn't a prototype and we had a prototype declaration
6357      before, copy the arg type info from that prototype.
6358      But not if what we had before was a builtin function.  */
6359   old_decl = lookup_name_current_level (DECL_NAME (decl1));
6360   if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6361       && !DECL_BUILT_IN (old_decl)
6362       && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6363           == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
6364       && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6365     {
6366       TREE_TYPE (decl1) = TREE_TYPE (old_decl);
6367       current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
6368       current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
6369     }
6370
6371   /* If there is no explicit declaration, look for any out-of-scope implicit
6372      declarations.  */
6373   if (old_decl == 0)
6374     old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
6375
6376   /* Optionally warn of old-fashioned def with no previous prototype.  */
6377   if (warn_strict_prototypes
6378       && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6379       && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0))
6380     warning ("function declaration isn't a prototype");
6381   /* Optionally warn of any global def with no previous prototype.  */
6382   else if (warn_missing_prototypes
6383            && TREE_PUBLIC (decl1)
6384            && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0)
6385            && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
6386     warning_with_decl (decl1, "no previous prototype for `%s'");
6387   /* Optionally warn of any def with no previous prototype
6388      if the function has already been used.  */
6389   else if (warn_missing_prototypes
6390            && old_decl != 0 && TREE_USED (old_decl)
6391            && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6392     warning_with_decl (decl1,
6393                       "`%s' was used with no prototype before its definition");
6394   /* Optionally warn of any global def with no previous declaration.  */
6395   else if (warn_missing_declarations
6396            && TREE_PUBLIC (decl1)
6397            && old_decl == 0
6398            && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
6399     warning_with_decl (decl1, "no previous declaration for `%s'");
6400   /* Optionally warn of any def with no previous declaration
6401      if the function has already been used.  */
6402   else if (warn_missing_declarations
6403            && old_decl != 0 && TREE_USED (old_decl)
6404            && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
6405     warning_with_decl (decl1,
6406                     "`%s' was used with no declaration before its definition");
6407
6408   /* This is a definition, not a reference.
6409      So normally clear DECL_EXTERNAL.
6410      However, `extern inline' acts like a declaration
6411      except for defining how to inline.  So set DECL_EXTERNAL in that case.  */
6412   DECL_EXTERNAL (decl1) = current_extern_inline;
6413
6414   /* This function exists in static storage.
6415      (This does not mean `static' in the C sense!)  */
6416   TREE_STATIC (decl1) = 1;
6417
6418   /* A nested function is not global.  */
6419   if (current_function_decl != 0)
6420     TREE_PUBLIC (decl1) = 0;
6421
6422   /* Warn for unlikely, improbable, or stupid declarations of `main'. */
6423   if (warn_main
6424       && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))) == 0)
6425     {
6426       tree args;
6427       int argct = 0;
6428
6429       if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6430            != integer_type_node)
6431         pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
6432
6433       for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
6434            args = TREE_CHAIN (args))
6435         {
6436           tree type = args ? TREE_VALUE (args) : 0;
6437
6438           if (type == void_type_node)
6439             break;
6440
6441           ++argct;
6442           switch (argct)
6443             {
6444             case 1:
6445               if (TYPE_MAIN_VARIANT (type) != integer_type_node)
6446                 pedwarn_with_decl (decl1,
6447                                    "first argument of `%s' should be `int'");
6448               break;
6449
6450             case 2:
6451               if (TREE_CODE (type) != POINTER_TYPE
6452                   || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6453                   || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6454                       != char_type_node))
6455                 pedwarn_with_decl (decl1,
6456                                "second argument of `%s' should be `char **'");
6457               break;
6458
6459             case 3:
6460               if (TREE_CODE (type) != POINTER_TYPE
6461                   || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6462                   || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6463                       != char_type_node))
6464                 pedwarn_with_decl (decl1,
6465                    "third argument of `%s' should probably be `char **'");
6466               break;
6467             }
6468         }
6469
6470       /* It is intentional that this message does not mention the third
6471          argument, which is warned for only pedantically, because it's
6472          blessed by mention in an appendix of the standard. */
6473       if (argct > 0 && (argct < 2 || argct > 3))
6474         pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
6475
6476       if (argct == 3 && pedantic)
6477         pedwarn_with_decl (decl1, "third argument of `%s' is deprecated");
6478
6479       if (! TREE_PUBLIC (decl1))
6480         pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
6481     }
6482
6483   /* Record the decl so that the function name is defined.
6484      If we already have a decl for this name, and it is a FUNCTION_DECL,
6485      use the old decl.  */
6486
6487   current_function_decl = pushdecl (decl1);
6488
6489   pushlevel (0);
6490   declare_parm_level (1);
6491   current_binding_level->subblocks_tag_transparent = 1;
6492
6493   make_function_rtl (current_function_decl);
6494
6495   restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6496   /* Promote the value to int before returning it.  */
6497   if (C_PROMOTING_INTEGER_TYPE_P (restype))
6498     {
6499       /* It retains unsignedness if traditional
6500          or if not really getting wider.  */
6501       if (TREE_UNSIGNED (restype)
6502           && (flag_traditional
6503               || (TYPE_PRECISION (restype)
6504                   == TYPE_PRECISION (integer_type_node))))
6505         restype = unsigned_type_node;
6506       else
6507         restype = integer_type_node;
6508     }
6509   DECL_RESULT (current_function_decl)
6510     = build_decl (RESULT_DECL, NULL_TREE, restype);
6511
6512   if (!nested)
6513     /* Allocate further tree nodes temporarily during compilation
6514        of this function only.  */
6515     temporary_allocation ();
6516
6517   /* If this fcn was already referenced via a block-scope `extern' decl
6518      (or an implicit decl), propagate certain information about the usage.  */
6519   if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6520     TREE_ADDRESSABLE (current_function_decl) = 1;
6521
6522   immediate_size_expand = old_immediate_size_expand;
6523
6524   return 1;
6525 }
6526
6527 /* Record that this function is going to be a varargs function.
6528    This is called before store_parm_decls, which is too early
6529    to call mark_varargs directly.  */
6530
6531 void
6532 c_mark_varargs ()
6533 {
6534   c_function_varargs = 1;
6535 }
6536 \f
6537 /* Store the parameter declarations into the current function declaration.
6538    This is called after parsing the parameter declarations, before
6539    digesting the body of the function.
6540
6541    For an old-style definition, modify the function's type
6542    to specify at least the number of arguments.  */
6543
6544 void
6545 store_parm_decls ()
6546 {
6547   register tree fndecl = current_function_decl;
6548   register tree parm;
6549
6550   /* This is either a chain of PARM_DECLs (if a prototype was used)
6551      or a list of IDENTIFIER_NODEs (for an old-fashioned C definition).  */
6552   tree specparms = current_function_parms;
6553
6554   /* This is a list of types declared among parms in a prototype.  */
6555   tree parmtags = current_function_parm_tags;
6556
6557   /* This is a chain of PARM_DECLs from old-style parm declarations.  */
6558   register tree parmdecls = getdecls ();
6559
6560   /* This is a chain of any other decls that came in among the parm
6561      declarations.  If a parm is declared with  enum {foo, bar} x;
6562      then CONST_DECLs for foo and bar are put here.  */
6563   tree nonparms = 0;
6564
6565   /* Nonzero if this definition is written with a prototype.  */
6566   int prototype = 0;
6567
6568   if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6569     {
6570       /* This case is when the function was defined with an ANSI prototype.
6571          The parms already have decls, so we need not do anything here
6572          except record them as in effect
6573          and complain if any redundant old-style parm decls were written.  */
6574
6575       register tree next;
6576       tree others = 0;
6577
6578       prototype = 1;
6579
6580       if (parmdecls != 0)
6581         {
6582           tree decl, link;
6583
6584           error_with_decl (fndecl,
6585                            "parm types given both in parmlist and separately");
6586           /* Get rid of the erroneous decls; don't keep them on
6587              the list of parms, since they might not be PARM_DECLs.  */
6588           for (decl = current_binding_level->names;
6589                decl; decl = TREE_CHAIN (decl))
6590             if (DECL_NAME (decl))
6591               IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6592           for (link = current_binding_level->shadowed;
6593                link; link = TREE_CHAIN (link))
6594             IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6595           current_binding_level->names = 0;
6596           current_binding_level->shadowed = 0;
6597         }
6598
6599       specparms = nreverse (specparms);
6600       for (parm = specparms; parm; parm = next)
6601         {
6602           next = TREE_CHAIN (parm);
6603           if (TREE_CODE (parm) == PARM_DECL)
6604             {
6605               if (DECL_NAME (parm) == 0)
6606                 error_with_decl (parm, "parameter name omitted");
6607               else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6608                 {
6609                   error_with_decl (parm, "parameter `%s' declared void");
6610                   /* Change the type to error_mark_node so this parameter
6611                      will be ignored by assign_parms.  */
6612                   TREE_TYPE (parm) = error_mark_node;
6613                 }
6614               pushdecl (parm);
6615             }
6616           else
6617             {
6618               /* If we find an enum constant or a type tag,
6619                  put it aside for the moment.  */
6620               TREE_CHAIN (parm) = 0;
6621               others = chainon (others, parm);
6622             }
6623         }
6624
6625       /* Get the decls in their original chain order
6626          and record in the function.  */
6627       DECL_ARGUMENTS (fndecl) = getdecls ();
6628
6629 #if 0
6630       /* If this function takes a variable number of arguments,
6631          add a phony parameter to the end of the parm list,
6632          to represent the position of the first unnamed argument.  */
6633       if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6634           != void_type_node)
6635         {
6636           tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6637           /* Let's hope the address of the unnamed parm
6638              won't depend on its type.  */
6639           TREE_TYPE (dummy) = integer_type_node;
6640           DECL_ARG_TYPE (dummy) = integer_type_node;
6641           DECL_ARGUMENTS (fndecl)
6642             = chainon (DECL_ARGUMENTS (fndecl), dummy);
6643         }
6644 #endif
6645
6646       /* Now pushdecl the enum constants.  */
6647       for (parm = others; parm; parm = next)
6648         {
6649           next = TREE_CHAIN (parm);
6650           if (DECL_NAME (parm) == 0)
6651             ;
6652           else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6653             ;
6654           else if (TREE_CODE (parm) != PARM_DECL)
6655             pushdecl (parm);
6656         }
6657
6658       storetags (chainon (parmtags, gettags ()));
6659     }
6660   else
6661     {
6662       /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6663          each with a parm name as the TREE_VALUE.
6664
6665          PARMDECLS is a chain of declarations for parameters.
6666          Warning! It can also contain CONST_DECLs which are not parameters
6667          but are names of enumerators of any enum types
6668          declared among the parameters.
6669
6670          First match each formal parameter name with its declaration.
6671          Associate decls with the names and store the decls
6672          into the TREE_PURPOSE slots.  */
6673
6674       for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6675         DECL_RESULT (parm) = 0;
6676
6677       for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6678         {
6679           register tree tail, found = NULL;
6680
6681           if (TREE_VALUE (parm) == 0)
6682             {
6683               error_with_decl (fndecl, "parameter name missing from parameter list");
6684               TREE_PURPOSE (parm) = 0;
6685               continue;
6686             }
6687
6688           /* See if any of the parmdecls specifies this parm by name.
6689              Ignore any enumerator decls.  */
6690           for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6691             if (DECL_NAME (tail) == TREE_VALUE (parm)
6692                 && TREE_CODE (tail) == PARM_DECL)
6693               {
6694                 found = tail;
6695                 break;
6696               }
6697
6698           /* If declaration already marked, we have a duplicate name.
6699              Complain, and don't use this decl twice.   */
6700           if (found && DECL_RESULT (found) != 0)
6701             {
6702               error_with_decl (found, "multiple parameters named `%s'");
6703               found = 0;
6704             }
6705
6706           /* If the declaration says "void", complain and ignore it.  */
6707           if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
6708             {
6709               error_with_decl (found, "parameter `%s' declared void");
6710               TREE_TYPE (found) = integer_type_node;
6711               DECL_ARG_TYPE (found) = integer_type_node;
6712               layout_decl (found, 0);
6713             }
6714
6715           /* Traditionally, a parm declared float is actually a double.  */
6716           if (found && flag_traditional
6717               && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6718             {
6719               TREE_TYPE (found) = double_type_node;
6720               DECL_ARG_TYPE (found) = double_type_node;
6721               layout_decl (found, 0);
6722             }
6723
6724           /* If no declaration found, default to int.  */
6725           if (!found)
6726             {
6727               found = build_decl (PARM_DECL, TREE_VALUE (parm),
6728                                   integer_type_node);
6729               DECL_ARG_TYPE (found) = TREE_TYPE (found);
6730               DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6731               DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6732               if (extra_warnings)
6733                 warning_with_decl (found, "type of `%s' defaults to `int'");
6734               pushdecl (found);
6735             }
6736
6737           TREE_PURPOSE (parm) = found;
6738
6739           /* Mark this decl as "already found" -- see test, above.
6740              It is safe to use DECL_RESULT for this
6741              since it is not used in PARM_DECLs or CONST_DECLs.  */
6742           DECL_RESULT (found) = error_mark_node;
6743         }
6744
6745       /* Put anything which is on the parmdecls chain and which is
6746          not a PARM_DECL onto the list NONPARMS.  (The types of
6747          non-parm things which might appear on the list include
6748          enumerators and NULL-named TYPE_DECL nodes.) Complain about
6749          any actual PARM_DECLs not matched with any names.  */
6750
6751       nonparms = 0;
6752       for (parm = parmdecls; parm; )
6753         {
6754           tree next = TREE_CHAIN (parm);
6755           TREE_CHAIN (parm) = 0;
6756
6757           if (TREE_CODE (parm) != PARM_DECL)
6758             nonparms = chainon (nonparms, parm);
6759           else
6760             {
6761               /* Complain about args with incomplete types.  */
6762               if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
6763                 {
6764                   error_with_decl (parm, "parameter `%s' has incomplete type");
6765                   TREE_TYPE (parm) = error_mark_node;
6766                 }
6767
6768               if (DECL_RESULT (parm) == 0)
6769                 {
6770                   error_with_decl (parm,
6771                                    "declaration for parameter `%s' but no such parameter");
6772                   /* Pretend the parameter was not missing.
6773                      This gets us to a standard state and minimizes
6774                      further error messages.  */
6775                   specparms
6776                     = chainon (specparms,
6777                                tree_cons (parm, NULL_TREE, NULL_TREE));
6778                 }
6779             }
6780
6781           parm = next;
6782         }
6783
6784       /* Chain the declarations together in the order of the list of names.  */
6785       /* Store that chain in the function decl, replacing the list of names.  */
6786       parm = specparms;
6787       DECL_ARGUMENTS (fndecl) = 0;
6788       {
6789         register tree last;
6790         for (last = 0; parm; parm = TREE_CHAIN (parm))
6791           if (TREE_PURPOSE (parm))
6792             {
6793               if (last == 0)
6794                 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6795               else
6796                 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6797               last = TREE_PURPOSE (parm);
6798               TREE_CHAIN (last) = 0;
6799             }
6800       }
6801
6802       /* If there was a previous prototype,
6803          set the DECL_ARG_TYPE of each argument according to
6804          the type previously specified, and report any mismatches.  */
6805
6806       if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6807         {
6808           register tree type;
6809           for (parm = DECL_ARGUMENTS (fndecl),
6810                type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6811                parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6812                                  != void_type_node));
6813                parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6814             {
6815               if (parm == 0 || type == 0
6816                   || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6817                 {
6818                   error ("number of arguments doesn't match prototype");
6819                   error_with_file_and_line (current_function_prototype_file,
6820                                             current_function_prototype_line,
6821                                             "prototype declaration");
6822                   break;
6823                 }
6824               /* Type for passing arg must be consistent
6825                  with that declared for the arg.  */
6826               if (! comptypes (DECL_ARG_TYPE (parm), TREE_VALUE (type)))
6827                 {
6828                   if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6829                       == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6830                     {
6831                       /* Adjust argument to match prototype.  E.g. a previous
6832                          `int foo(float);' prototype causes
6833                          `int foo(x) float x; {...}' to be treated like
6834                          `int foo(float x) {...}'.  This is particularly
6835                          useful for argument types like uid_t.  */
6836                       DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6837 #ifdef PROMOTE_PROTOTYPES
6838                       if ((TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
6839                            || TREE_CODE (TREE_TYPE (parm)) == ENUMERAL_TYPE)
6840                           && TYPE_PRECISION (TREE_TYPE (parm))
6841                           < TYPE_PRECISION (integer_type_node))
6842                         DECL_ARG_TYPE (parm) = integer_type_node;
6843 #endif
6844                       if (pedantic)
6845                         {
6846                           pedwarn ("promoted argument `%s' doesn't match prototype",
6847                                    IDENTIFIER_POINTER (DECL_NAME (parm)));
6848                           warning_with_file_and_line
6849                             (current_function_prototype_file,
6850                              current_function_prototype_line,
6851                              "prototype declaration");
6852                         }
6853                     }
6854                   /* If -traditional, allow `int' argument to match
6855                      `unsigned' prototype.  */
6856                   else if (! (flag_traditional
6857                               && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6858                               && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6859                     {
6860                       error ("argument `%s' doesn't match prototype",
6861                              IDENTIFIER_POINTER (DECL_NAME (parm)));
6862                       error_with_file_and_line (current_function_prototype_file,
6863                                                 current_function_prototype_line,
6864                                                 "prototype declaration");
6865                     }
6866                 }
6867             }
6868           TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6869         }
6870
6871       /* Otherwise, create a prototype that would match.  */
6872
6873       else
6874         {
6875           tree actual = 0, last = 0, type;
6876
6877           for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6878             {
6879               type = perm_tree_cons (NULL_TREE, DECL_ARG_TYPE (parm),
6880                                      NULL_TREE);
6881               if (last)
6882                 TREE_CHAIN (last) = type;
6883               else
6884                 actual = type;
6885               last = type;
6886             }
6887           type = perm_tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6888           if (last)
6889             TREE_CHAIN (last) = type;
6890           else
6891             actual = type;
6892
6893           /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6894              of the type of this function, but we need to avoid having this
6895              affect the types of other similarly-typed functions, so we must
6896              first force the generation of an identical (but separate) type
6897              node for the relevant function type.  The new node we create
6898              will be a variant of the main variant of the original function
6899              type.  */
6900
6901           TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6902
6903           TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6904         }
6905
6906       /* Now store the final chain of decls for the arguments
6907          as the decl-chain of the current lexical scope.
6908          Put the enumerators in as well, at the front so that
6909          DECL_ARGUMENTS is not modified.  */
6910
6911       storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6912     }
6913
6914   /* Make sure the binding level for the top of the function body
6915      gets a BLOCK if there are any in the function.
6916      Otherwise, the dbx output is wrong.  */
6917
6918   keep_next_if_subblocks = 1;
6919
6920   /* ??? This might be an improvement,
6921      but needs to be thought about some more.  */
6922 #if 0
6923   keep_next_level_flag = 1;
6924 #endif
6925
6926   /* Write a record describing this function definition to the prototypes
6927      file (if requested).  */
6928
6929   gen_aux_info_record (fndecl, 1, 0, prototype);
6930
6931   /* Initialize the RTL code for the function.  */
6932
6933   init_function_start (fndecl, input_filename, lineno);
6934
6935   /* If this is a varargs function, inform function.c.  */
6936
6937   if (c_function_varargs)
6938     mark_varargs ();
6939
6940   /* Declare __FUNCTION__ and __PRETTY_FUNCTION__ for this function.  */
6941
6942   declare_function_name ();
6943
6944   /* Set up parameters and prepare for return, for the function.  */
6945
6946   expand_function_start (fndecl, 0);
6947
6948   /* If this function is `main', emit a call to `__main'
6949      to run global initializers, etc.  */
6950   if (DECL_NAME (fndecl)
6951       && strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main") == 0
6952       && DECL_CONTEXT (fndecl) == NULL_TREE)
6953     expand_main_function ();
6954 }
6955 \f
6956 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6957    each with a parm name as the TREE_VALUE.  A null pointer as TREE_VALUE
6958    stands for an ellipsis in the identifier list.
6959
6960    PARMLIST is the data returned by get_parm_info for the
6961    parmlist that follows the semicolon.
6962
6963    We return a value of the same sort that get_parm_info returns,
6964    except that it describes the combination of identifiers and parmlist.  */
6965
6966 tree
6967 combine_parm_decls (specparms, parmlist, void_at_end)
6968      tree specparms, parmlist;
6969      int void_at_end;
6970 {
6971   register tree fndecl = current_function_decl;
6972   register tree parm;
6973
6974   tree parmdecls = TREE_PURPOSE (parmlist);
6975
6976   /* This is a chain of any other decls that came in among the parm
6977      declarations.  They were separated already by get_parm_info,
6978      so we just need to keep them separate.  */
6979   tree nonparms = TREE_VALUE (parmlist);
6980
6981   tree types = 0;
6982
6983   for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6984     DECL_RESULT (parm) = 0;
6985
6986   for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6987     {
6988       register tree tail, found = NULL;
6989
6990       /* See if any of the parmdecls specifies this parm by name.  */
6991       for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6992         if (DECL_NAME (tail) == TREE_VALUE (parm))
6993           {
6994             found = tail;
6995             break;
6996           }
6997
6998       /* If declaration already marked, we have a duplicate name.
6999          Complain, and don't use this decl twice.   */
7000       if (found && DECL_RESULT (found) != 0)
7001         {
7002           error_with_decl (found, "multiple parameters named `%s'");
7003           found = 0;
7004         }
7005
7006       /* If the declaration says "void", complain and ignore it.  */
7007       if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
7008         {
7009           error_with_decl (found, "parameter `%s' declared void");
7010           TREE_TYPE (found) = integer_type_node;
7011           DECL_ARG_TYPE (found) = integer_type_node;
7012           layout_decl (found, 0);
7013         }
7014
7015       /* Traditionally, a parm declared float is actually a double.  */
7016       if (found && flag_traditional
7017           && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
7018         {
7019           TREE_TYPE (found) = double_type_node;
7020           DECL_ARG_TYPE (found) = double_type_node;
7021           layout_decl (found, 0);
7022         }
7023
7024       /* If no declaration found, default to int.  */
7025       if (!found)
7026         {
7027           found = build_decl (PARM_DECL, TREE_VALUE (parm),
7028                               integer_type_node);
7029           DECL_ARG_TYPE (found) = TREE_TYPE (found);
7030           DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
7031           DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
7032           error_with_decl (found, "type of parameter `%s' is not declared");
7033           pushdecl (found);
7034         }
7035
7036       TREE_PURPOSE (parm) = found;
7037
7038       /* Mark this decl as "already found" -- see test, above.
7039          It is safe to use DECL_RESULT for this
7040          since it is not used in PARM_DECLs or CONST_DECLs.  */
7041       DECL_RESULT (found) = error_mark_node;
7042     }
7043
7044   /* Complain about any actual PARM_DECLs not matched with any names.  */
7045
7046   for (parm = parmdecls; parm; )
7047     {
7048       tree next = TREE_CHAIN (parm);
7049       TREE_CHAIN (parm) = 0;
7050
7051       /* Complain about args with incomplete types.  */
7052       if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
7053         {
7054           error_with_decl (parm, "parameter `%s' has incomplete type");
7055           TREE_TYPE (parm) = error_mark_node;
7056         }
7057
7058       if (DECL_RESULT (parm) == 0)
7059         {
7060           error_with_decl (parm,
7061                            "declaration for parameter `%s' but no such parameter");
7062           /* Pretend the parameter was not missing.
7063              This gets us to a standard state and minimizes
7064              further error messages.  */
7065           specparms
7066             = chainon (specparms,
7067                        tree_cons (parm, NULL_TREE, NULL_TREE));
7068         }
7069
7070       parm = next;
7071     }
7072
7073   /* Chain the declarations together in the order of the list of names.
7074      At the same time, build up a list of their types, in reverse order.  */
7075
7076   parm = specparms;
7077   parmdecls = 0;
7078   {
7079     register tree last;
7080     for (last = 0; parm; parm = TREE_CHAIN (parm))
7081       if (TREE_PURPOSE (parm))
7082         {
7083           if (last == 0)
7084             parmdecls = TREE_PURPOSE (parm);
7085           else
7086             TREE_CHAIN (last) = TREE_PURPOSE (parm);
7087           last = TREE_PURPOSE (parm);
7088           TREE_CHAIN (last) = 0;
7089
7090           types = saveable_tree_cons (NULL_TREE, TREE_TYPE (parm), types);
7091         }
7092   }
7093   
7094   if (void_at_end)
7095     return saveable_tree_cons (parmdecls, nonparms,
7096                                nreverse (saveable_tree_cons (NULL_TREE,
7097                                                              void_type_node,
7098                                                              types)));
7099
7100   return saveable_tree_cons (parmdecls, nonparms, nreverse (types));
7101 }
7102 \f
7103 /* Finish up a function declaration and compile that function
7104    all the way to assembler language output.  The free the storage
7105    for the function definition.
7106
7107    This is called after parsing the body of the function definition.
7108
7109    NESTED is nonzero if the function being finished is nested in another.  */
7110
7111 void
7112 finish_function (nested)
7113      int nested;
7114 {
7115   register tree fndecl = current_function_decl;
7116
7117 /*  TREE_READONLY (fndecl) = 1;
7118     This caused &foo to be of type ptr-to-const-function
7119     which then got a warning when stored in a ptr-to-function variable.  */
7120
7121   poplevel (1, 0, 1);
7122   BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
7123
7124   /* Must mark the RESULT_DECL as being in this function.  */
7125
7126   DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
7127
7128   /* Obey `register' declarations if `setjmp' is called in this fn.  */
7129   if (flag_traditional && current_function_calls_setjmp)
7130     {
7131       setjmp_protect (DECL_INITIAL (fndecl));
7132       setjmp_protect_args ();
7133     }
7134
7135   if (! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main"))
7136     {
7137       if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
7138           != integer_type_node)
7139         {
7140           /* You would expect the sense of this test to be the other way
7141              around, but if warn_main is set, we will already have warned,
7142              so this would be a duplicate.  This is the warning you get
7143              in some environments even if you *don't* ask for it, because
7144              these are environments where it may be more of a problem than
7145              usual.  */
7146           if (! warn_main)
7147             pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
7148         }
7149       else
7150         {
7151 #ifdef DEFAULT_MAIN_RETURN
7152           /* Make it so that `main' always returns success by default.  */
7153           DEFAULT_MAIN_RETURN;
7154 #endif
7155         }
7156     }
7157
7158   /* Generate rtl for function exit.  */
7159   expand_function_end (input_filename, lineno, 0);
7160
7161   /* So we can tell if jump_optimize sets it to 1.  */
7162   can_reach_end = 0;
7163
7164   /* Run the optimizers and output the assembler code for this function.  */
7165   rest_of_compilation (fndecl);
7166
7167   current_function_returns_null |= can_reach_end;
7168
7169   if (TREE_THIS_VOLATILE (fndecl) && current_function_returns_null)
7170     warning ("`noreturn' function does return");
7171   else if (warn_return_type && can_reach_end
7172            && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl))) != void_type_node)
7173     /* If this function returns non-void and control can drop through,
7174        complain.  */
7175     warning ("control reaches end of non-void function");
7176   /* With just -W, complain only if function returns both with
7177      and without a value.  */
7178   else if (extra_warnings
7179            && current_function_returns_value && current_function_returns_null)
7180     warning ("this function may return with or without a value");
7181
7182   /* If requested, warn about function definitions where the function will
7183      return a value (usually of some struct or union type) which itself will
7184      take up a lot of stack space.  */
7185
7186   if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
7187     {
7188       register tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
7189
7190       if (ret_type)
7191         {
7192           register tree ret_type_size = TYPE_SIZE (ret_type);
7193
7194           if (TREE_CODE (ret_type_size) == INTEGER_CST)
7195             {
7196               unsigned units
7197                 = TREE_INT_CST_LOW (ret_type_size) / BITS_PER_UNIT;
7198
7199               if (units > larger_than_size)
7200                 warning_with_decl (fndecl,
7201                                    "size of return value of `%s' is %u bytes",
7202                                    units);
7203             }
7204         }
7205     }
7206
7207   /* Free all the tree nodes making up this function.  */
7208   /* Switch back to allocating nodes permanently
7209      until we start another function.  */
7210   if (! nested)
7211     permanent_allocation (1);
7212
7213   if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested)
7214     {
7215       /* Stop pointing to the local nodes about to be freed.  */
7216       /* But DECL_INITIAL must remain nonzero so we know this
7217          was an actual function definition.  */
7218       /* For a nested function, this is done in pop_c_function_context.  */
7219       /* If rest_of_compilation set this to 0, leave it 0.  */
7220       if (DECL_INITIAL (fndecl) != 0)
7221         DECL_INITIAL (fndecl) = error_mark_node;
7222       DECL_ARGUMENTS (fndecl) = 0;
7223     }
7224
7225   if (DECL_STATIC_CONSTRUCTOR (fndecl))
7226     {
7227 #ifndef ASM_OUTPUT_CONSTRUCTOR
7228       if (! flag_gnu_linker)
7229         static_ctors = perm_tree_cons (NULL_TREE, fndecl, static_ctors);
7230       else
7231 #endif
7232       assemble_constructor (IDENTIFIER_POINTER (DECL_NAME (fndecl)));
7233     }
7234   if (DECL_STATIC_DESTRUCTOR (fndecl))
7235     {
7236 #ifndef ASM_OUTPUT_DESTRUCTOR
7237       if (! flag_gnu_linker)
7238         static_dtors = perm_tree_cons (NULL_TREE, fndecl, static_dtors);
7239       else
7240 #endif
7241       assemble_destructor (IDENTIFIER_POINTER (DECL_NAME (fndecl)));
7242     }
7243
7244   if (! nested)
7245     {
7246       /* Let the error reporting routines know that we're outside a
7247          function.  For a nested function, this value is used in
7248          pop_c_function_context and then reset via pop_function_context.  */
7249       current_function_decl = NULL;
7250     }
7251 }
7252 \f
7253 /* Save and restore the variables in this file and elsewhere
7254    that keep track of the progress of compilation of the current function.
7255    Used for nested functions.  */
7256
7257 struct c_function
7258 {
7259   struct c_function *next;
7260   tree named_labels;
7261   tree shadowed_labels;
7262   int returns_value;
7263   int returns_null;
7264   int warn_about_return_type;
7265   int extern_inline;
7266   struct binding_level *binding_level;
7267 };
7268
7269 struct c_function *c_function_chain;
7270
7271 /* Save and reinitialize the variables
7272    used during compilation of a C function.  */
7273
7274 void
7275 push_c_function_context ()
7276 {
7277   struct c_function *p
7278     = (struct c_function *) xmalloc (sizeof (struct c_function));
7279
7280   if (pedantic)
7281     pedwarn ("ANSI C forbids nested functions");
7282
7283   push_function_context ();
7284
7285   p->next = c_function_chain;
7286   c_function_chain = p;
7287
7288   p->named_labels = named_labels;
7289   p->shadowed_labels = shadowed_labels;
7290   p->returns_value = current_function_returns_value;
7291   p->returns_null = current_function_returns_null;
7292   p->warn_about_return_type = warn_about_return_type;
7293   p->extern_inline = current_extern_inline;
7294   p->binding_level = current_binding_level;
7295 }
7296
7297 /* Restore the variables used during compilation of a C function.  */
7298
7299 void
7300 pop_c_function_context ()
7301 {
7302   struct c_function *p = c_function_chain;
7303   tree link;
7304
7305   /* Bring back all the labels that were shadowed.  */
7306   for (link = shadowed_labels; link; link = TREE_CHAIN (link))
7307     if (DECL_NAME (TREE_VALUE (link)) != 0)
7308       IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
7309         = TREE_VALUE (link);
7310
7311   if (DECL_SAVED_INSNS (current_function_decl) == 0)
7312     {
7313       /* Stop pointing to the local nodes about to be freed.  */
7314       /* But DECL_INITIAL must remain nonzero so we know this
7315          was an actual function definition.  */
7316       DECL_INITIAL (current_function_decl) = error_mark_node;
7317       DECL_ARGUMENTS (current_function_decl) = 0;
7318     }
7319
7320   pop_function_context ();
7321
7322   c_function_chain = p->next;
7323
7324   named_labels = p->named_labels;
7325   shadowed_labels = p->shadowed_labels;
7326   current_function_returns_value = p->returns_value;
7327   current_function_returns_null = p->returns_null;
7328   warn_about_return_type = p->warn_about_return_type;
7329   current_extern_inline = p->extern_inline;
7330   current_binding_level = p->binding_level;
7331
7332   free (p);
7333 }
7334
7335 /* integrate_decl_tree calls this function, but since we don't use the
7336    DECL_LANG_SPECIFIC field, this is a no-op.  */
7337
7338 void
7339 copy_lang_decl (node)
7340      tree node ATTRIBUTE_UNUSED;
7341 {
7342 }