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