OSDN Git Service

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