OSDN Git Service

PR c/42439
[pf3gnuchains/gcc-fork.git] / gcc / c-decl.c
1 /* Process declarations and variables for C compiler.
2    Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3    2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4    Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
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 "input.h"
33 #include "tm.h"
34 #include "intl.h"
35 #include "tree.h"
36 #include "tree-inline.h"
37 #include "rtl.h"
38 #include "flags.h"
39 #include "function.h"
40 #include "output.h"
41 #include "expr.h"
42 #include "c-tree.h"
43 #include "toplev.h"
44 #include "ggc.h"
45 #include "tm_p.h"
46 #include "cpplib.h"
47 #include "target.h"
48 #include "debug.h"
49 #include "opts.h"
50 #include "timevar.h"
51 #include "c-common.h"
52 #include "c-pragma.h"
53 #include "c-lang.h"
54 #include "langhooks.h"
55 #include "tree-mudflap.h"
56 #include "gimple.h"
57 #include "tree-iterator.h"
58 #include "diagnostic.h"
59 #include "tree-dump.h"
60 #include "cgraph.h"
61 #include "hashtab.h"
62 #include "libfuncs.h"
63 #include "except.h"
64 #include "langhooks-def.h"
65 #include "pointer-set.h"
66 #include "gimple.h"
67 #include "plugin.h"
68
69 /* In grokdeclarator, distinguish syntactic contexts of declarators.  */
70 enum decl_context
71 { NORMAL,                       /* Ordinary declaration */
72   FUNCDEF,                      /* Function definition */
73   PARM,                         /* Declaration of parm before function body */
74   FIELD,                        /* Declaration inside struct or union */
75   TYPENAME};                    /* Typename (inside cast or sizeof)  */
76
77 /* States indicating how grokdeclarator() should handle declspecs marked
78    with __attribute__((deprecated)).  An object declared as
79    __attribute__((deprecated)) suppresses warnings of uses of other
80    deprecated items.  */
81
82 enum deprecated_states {
83   DEPRECATED_NORMAL,
84   DEPRECATED_SUPPRESS
85 };
86
87 \f
88 /* Nonzero if we have seen an invalid cross reference
89    to a struct, union, or enum, but not yet printed the message.  */
90 tree pending_invalid_xref;
91
92 /* File and line to appear in the eventual error message.  */
93 location_t pending_invalid_xref_location;
94
95 /* The file and line that the prototype came from if this is an
96    old-style definition; used for diagnostics in
97    store_parm_decls_oldstyle.  */
98
99 static location_t current_function_prototype_locus;
100
101 /* Whether this prototype was built-in.  */
102
103 static bool current_function_prototype_built_in;
104
105 /* The argument type information of this prototype.  */
106
107 static tree current_function_prototype_arg_types;
108
109 /* The argument information structure for the function currently being
110    defined.  */
111
112 static struct c_arg_info *current_function_arg_info;
113
114 /* The obstack on which parser and related data structures, which are
115    not live beyond their top-level declaration or definition, are
116    allocated.  */
117 struct obstack parser_obstack;
118
119 /* The current statement tree.  */
120
121 static GTY(()) struct stmt_tree_s c_stmt_tree;
122
123 /* State saving variables.  */
124 tree c_break_label;
125 tree c_cont_label;
126
127 /* Linked list of TRANSLATION_UNIT_DECLS for the translation units
128    included in this invocation.  Note that the current translation
129    unit is not included in this list.  */
130
131 static GTY(()) tree all_translation_units;
132
133 /* A list of decls to be made automatically visible in each file scope.  */
134 static GTY(()) tree visible_builtins;
135
136 /* Set to 0 at beginning of a function definition, set to 1 if
137    a return statement that specifies a return value is seen.  */
138
139 int current_function_returns_value;
140
141 /* Set to 0 at beginning of a function definition, set to 1 if
142    a return statement with no argument is seen.  */
143
144 int current_function_returns_null;
145
146 /* Set to 0 at beginning of a function definition, set to 1 if
147    a call to a noreturn function is seen.  */
148
149 int current_function_returns_abnormally;
150
151 /* Set to nonzero by `grokdeclarator' for a function
152    whose return type is defaulted, if warnings for this are desired.  */
153
154 static int warn_about_return_type;
155
156 /* Nonzero when the current toplevel function contains a declaration
157    of a nested function which is never defined.  */
158
159 static bool undef_nested_function;
160
161 /* True means global_bindings_p should return false even if the scope stack
162    says we are in file scope.  */
163 bool c_override_global_bindings_to_false;
164
165 \f
166 /* Each c_binding structure describes one binding of an identifier to
167    a decl.  All the decls in a scope - irrespective of namespace - are
168    chained together by the ->prev field, which (as the name implies)
169    runs in reverse order.  All the decls in a given namespace bound to
170    a given identifier are chained by the ->shadowed field, which runs
171    from inner to outer scopes.
172
173    The ->decl field usually points to a DECL node, but there are two
174    exceptions.  In the namespace of type tags, the bound entity is a
175    RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node.  If an undeclared
176    identifier is encountered, it is bound to error_mark_node to
177    suppress further errors about that identifier in the current
178    function.
179
180    The ->u.type field stores the type of the declaration in this scope;
181    if NULL, the type is the type of the ->decl field.  This is only of
182    relevance for objects with external or internal linkage which may
183    be redeclared in inner scopes, forming composite types that only
184    persist for the duration of those scopes.  In the external scope,
185    this stores the composite of all the types declared for this
186    object, visible or not.  The ->inner_comp field (used only at file
187    scope) stores whether an incomplete array type at file scope was
188    completed at an inner scope to an array size other than 1.
189
190    The ->u.label field is used for labels.  It points to a structure
191    which stores additional information used for warnings.
192
193    The depth field is copied from the scope structure that holds this
194    decl.  It is used to preserve the proper ordering of the ->shadowed
195    field (see bind()) and also for a handful of special-case checks.
196    Finally, the invisible bit is true for a decl which should be
197    ignored for purposes of normal name lookup, and the nested bit is
198    true for a decl that's been bound a second time in an inner scope;
199    in all such cases, the binding in the outer scope will have its
200    invisible bit true.  */
201
202 struct GTY((chain_next ("%h.prev"))) c_binding {
203   union GTY(()) {               /* first so GTY desc can use decl */
204     tree GTY((tag ("0"))) type; /* the type in this scope */
205     struct c_label_vars * GTY((tag ("1"))) label; /* for warnings */
206   } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u;
207   tree decl;                    /* the decl bound */
208   tree id;                      /* the identifier it's bound to */
209   struct c_binding *prev;       /* the previous decl in this scope */
210   struct c_binding *shadowed;   /* the innermost decl shadowed by this one */
211   unsigned int depth : 28;      /* depth of this scope */
212   BOOL_BITFIELD invisible : 1;  /* normal lookup should ignore this binding */
213   BOOL_BITFIELD nested : 1;     /* do not set DECL_CONTEXT when popping */
214   BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
215   BOOL_BITFIELD in_struct : 1;  /* currently defined as struct field */
216   location_t locus;             /* location for nested bindings */
217 };
218 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
219 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
220 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
221 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
222
223 #define I_SYMBOL_BINDING(node) \
224   (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
225 #define I_SYMBOL_DECL(node) \
226  (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
227
228 #define I_TAG_BINDING(node) \
229   (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
230 #define I_TAG_DECL(node) \
231  (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
232
233 #define I_LABEL_BINDING(node) \
234   (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
235 #define I_LABEL_DECL(node) \
236  (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
237
238 /* Each C symbol points to three linked lists of c_binding structures.
239    These describe the values of the identifier in the three different
240    namespaces defined by the language.  */
241
242 struct GTY(()) lang_identifier {
243   struct c_common_identifier common_id;
244   struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
245   struct c_binding *tag_binding;    /* struct/union/enum tags */
246   struct c_binding *label_binding;  /* labels */
247 };
248
249 /* Validate c-lang.c's assumptions.  */
250 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
251 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
252
253 /* The resulting tree type.  */
254
255 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
256        chain_next ("TREE_CODE (&%h.generic) == INTEGER_TYPE ? (union lang_tree_node *) TYPE_NEXT_VARIANT (&%h.generic) : ((union lang_tree_node *) TREE_CHAIN (&%h.generic))")))  lang_tree_node
257  {
258   union tree_node GTY ((tag ("0"),
259                         desc ("tree_node_structure (&%h)")))
260     generic;
261   struct lang_identifier GTY ((tag ("1"))) identifier;
262 };
263
264 /* Track bindings and other things that matter for goto warnings.  For
265    efficiency, we do not gather all the decls at the point of
266    definition.  Instead, we point into the bindings structure.  As
267    scopes are popped, we update these structures and gather the decls
268    that matter at that time.  */
269
270 struct GTY(()) c_spot_bindings {
271   /* The currently open scope which holds bindings defined when the
272      label was defined or the goto statement was found.  */
273   struct c_scope *scope;
274   /* The bindings in the scope field which were defined at the point
275      of the label or goto.  This lets us look at older or newer
276      bindings in the scope, as appropriate.  */
277   struct c_binding *bindings_in_scope;
278   /* The number of statement expressions that have started since this
279      label or goto statement was defined.  This is zero if we are at
280      the same statement expression level.  It is positive if we are in
281      a statement expression started since this spot.  It is negative
282      if this spot was in a statement expression and we have left
283      it.  */
284   int stmt_exprs;
285   /* Whether we started in a statement expression but are no longer in
286      it.  This is set to true if stmt_exprs ever goes negative.  */
287   bool left_stmt_expr;
288 };
289
290 /* This structure is used to keep track of bindings seen when a goto
291    statement is defined.  This is only used if we see the goto
292    statement before we see the label.  */
293
294 struct GTY(()) c_goto_bindings {
295   /* The location of the goto statement.  */
296   location_t loc;
297   /* The bindings of the goto statement.  */
298   struct c_spot_bindings goto_bindings;
299 };
300
301 typedef struct c_goto_bindings *c_goto_bindings_p;
302 DEF_VEC_P(c_goto_bindings_p);
303 DEF_VEC_ALLOC_P(c_goto_bindings_p,gc);
304
305 /* The additional information we keep track of for a label binding.
306    These fields are updated as scopes are popped.  */
307
308 struct GTY(()) c_label_vars {
309   /* The shadowed c_label_vars, when one label shadows another (which
310      can only happen using a __label__ declaration).  */
311   struct c_label_vars *shadowed;
312   /* The bindings when the label was defined.  */
313   struct c_spot_bindings label_bindings;
314   /* A list of decls that we care about: decls about which we should
315      warn if a goto branches to this label from later in the function.
316      Decls are added to this list as scopes are popped.  We only add
317      the decls that matter.  */
318   VEC(tree,gc) *decls_in_scope;
319   /* A list of goto statements to this label.  This is only used for
320      goto statements seen before the label was defined, so that we can
321      issue appropriate warnings for them.  */
322   VEC(c_goto_bindings_p,gc) *gotos;
323 };
324
325 /* Each c_scope structure describes the complete contents of one
326    scope.  Four scopes are distinguished specially: the innermost or
327    current scope, the innermost function scope, the file scope (always
328    the second to outermost) and the outermost or external scope.
329
330    Most declarations are recorded in the current scope.
331
332    All normal label declarations are recorded in the innermost
333    function scope, as are bindings of undeclared identifiers to
334    error_mark_node.  (GCC permits nested functions as an extension,
335    hence the 'innermost' qualifier.)  Explicitly declared labels
336    (using the __label__ extension) appear in the current scope.
337
338    Being in the file scope (current_scope == file_scope) causes
339    special behavior in several places below.  Also, under some
340    conditions the Objective-C front end records declarations in the
341    file scope even though that isn't the current scope.
342
343    All declarations with external linkage are recorded in the external
344    scope, even if they aren't visible there; this models the fact that
345    such declarations are visible to the entire program, and (with a
346    bit of cleverness, see pushdecl) allows diagnosis of some violations
347    of C99 6.2.2p7 and 6.2.7p2:
348
349      If, within the same translation unit, the same identifier appears
350      with both internal and external linkage, the behavior is
351      undefined.
352
353      All declarations that refer to the same object or function shall
354      have compatible type; otherwise, the behavior is undefined.
355
356    Initially only the built-in declarations, which describe compiler
357    intrinsic functions plus a subset of the standard library, are in
358    this scope.
359
360    The order of the blocks list matters, and it is frequently appended
361    to.  To avoid having to walk all the way to the end of the list on
362    each insertion, or reverse the list later, we maintain a pointer to
363    the last list entry.  (FIXME: It should be feasible to use a reversed
364    list here.)
365
366    The bindings list is strictly in reverse order of declarations;
367    pop_scope relies on this.  */
368
369
370 struct GTY((chain_next ("%h.outer"))) c_scope {
371   /* The scope containing this one.  */
372   struct c_scope *outer;
373
374   /* The next outermost function scope.  */
375   struct c_scope *outer_function;
376
377   /* All bindings in this scope.  */
378   struct c_binding *bindings;
379
380   /* For each scope (except the global one), a chain of BLOCK nodes
381      for all the scopes that were entered and exited one level down.  */
382   tree blocks;
383   tree blocks_last;
384
385   /* The depth of this scope.  Used to keep the ->shadowed chain of
386      bindings sorted innermost to outermost.  */
387   unsigned int depth : 28;
388
389   /* True if we are currently filling this scope with parameter
390      declarations.  */
391   BOOL_BITFIELD parm_flag : 1;
392
393   /* True if we saw [*] in this scope.  Used to give an error messages
394      if these appears in a function definition.  */
395   BOOL_BITFIELD had_vla_unspec : 1;
396
397   /* True if we already complained about forward parameter decls
398      in this scope.  This prevents double warnings on
399      foo (int a; int b; ...)  */
400   BOOL_BITFIELD warned_forward_parm_decls : 1;
401
402   /* True if this is the outermost block scope of a function body.
403      This scope contains the parameters, the local variables declared
404      in the outermost block, and all the labels (except those in
405      nested functions, or declared at block scope with __label__).  */
406   BOOL_BITFIELD function_body : 1;
407
408   /* True means make a BLOCK for this scope no matter what.  */
409   BOOL_BITFIELD keep : 1;
410
411   /* True means that an unsuffixed float constant is _Decimal64.  */
412   BOOL_BITFIELD float_const_decimal64 : 1;
413
414   /* True if this scope has any label bindings.  This is used to speed
415      up searching for labels when popping scopes, particularly since
416      labels are normally only found at function scope.  */
417   BOOL_BITFIELD has_label_bindings : 1;
418 };
419
420 /* The scope currently in effect.  */
421
422 static GTY(()) struct c_scope *current_scope;
423
424 /* The innermost function scope.  Ordinary (not explicitly declared)
425    labels, bindings to error_mark_node, and the lazily-created
426    bindings of __func__ and its friends get this scope.  */
427
428 static GTY(()) struct c_scope *current_function_scope;
429
430 /* The C file scope.  This is reset for each input translation unit.  */
431
432 static GTY(()) struct c_scope *file_scope;
433
434 /* The outermost scope.  This is used for all declarations with
435    external linkage, and only these, hence the name.  */
436
437 static GTY(()) struct c_scope *external_scope;
438
439 /* A chain of c_scope structures awaiting reuse.  */
440
441 static GTY((deletable)) struct c_scope *scope_freelist;
442
443 /* A chain of c_binding structures awaiting reuse.  */
444
445 static GTY((deletable)) struct c_binding *binding_freelist;
446
447 /* Append VAR to LIST in scope SCOPE.  */
448 #define SCOPE_LIST_APPEND(scope, list, decl) do {       \
449   struct c_scope *s_ = (scope);                         \
450   tree d_ = (decl);                                     \
451   if (s_->list##_last)                                  \
452     BLOCK_CHAIN (s_->list##_last) = d_;                 \
453   else                                                  \
454     s_->list = d_;                                      \
455   s_->list##_last = d_;                                 \
456 } while (0)
457
458 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE.  */
459 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do {        \
460   struct c_scope *t_ = (tscope);                                \
461   struct c_scope *f_ = (fscope);                                \
462   if (t_->to##_last)                                            \
463     BLOCK_CHAIN (t_->to##_last) = f_->from;                     \
464   else                                                          \
465     t_->to = f_->from;                                          \
466   t_->to##_last = f_->from##_last;                              \
467 } while (0)
468
469 /* A c_inline_static structure stores details of a static identifier
470    referenced in a definition of a function that may be an inline
471    definition if no subsequent declaration of that function uses
472    "extern" or does not use "inline".  */
473
474 struct GTY((chain_next ("%h.next"))) c_inline_static {
475   /* The location for a diagnostic.  */
476   location_t location;
477
478   /* The function that may be an inline definition.  */
479   tree function;
480
481   /* The object or function referenced.  */
482   tree static_decl;
483
484   /* What sort of reference this is.  */
485   enum c_inline_static_type type;
486
487   /* The next such structure or NULL.  */
488   struct c_inline_static *next;
489 };
490
491 /* List of static identifiers used or referenced in functions that may
492    be inline definitions.  */
493 static GTY(()) struct c_inline_static *c_inline_statics;
494
495 /* True means unconditionally make a BLOCK for the next scope pushed.  */
496
497 static bool keep_next_level_flag;
498
499 /* True means the next call to push_scope will be the outermost scope
500    of a function body, so do not push a new scope, merely cease
501    expecting parameter decls.  */
502
503 static bool next_is_function_body;
504
505 /* A VEC of pointers to c_binding structures.  */
506
507 typedef struct c_binding *c_binding_ptr;
508 DEF_VEC_P(c_binding_ptr);
509 DEF_VEC_ALLOC_P(c_binding_ptr,heap);
510
511 /* Information that we keep for a struct or union while it is being
512    parsed.  */
513
514 struct c_struct_parse_info
515 {
516   /* If warn_cxx_compat, a list of types defined within this
517      struct.  */
518   VEC(tree,heap) *struct_types;
519   /* If warn_cxx_compat, a list of field names which have bindings,
520      and which are defined in this struct, but which are not defined
521      in any enclosing struct.  This is used to clear the in_struct
522      field of the c_bindings structure.  */
523   VEC(c_binding_ptr,heap) *fields;
524   /* If warn_cxx_compat, a list of typedef names used when defining
525      fields in this struct.  */
526   VEC(tree,heap) *typedefs_seen;
527 };
528
529 /* Information for the struct or union currently being parsed, or
530    NULL if not parsing a struct or union.  */
531 static struct c_struct_parse_info *struct_parse_info;
532
533 /* Forward declarations.  */
534 static tree lookup_name_in_scope (tree, struct c_scope *);
535 static tree c_make_fname_decl (location_t, tree, int);
536 static tree grokdeclarator (const struct c_declarator *,
537                             struct c_declspecs *,
538                             enum decl_context, bool, tree *, tree *, tree *,
539                             bool *, enum deprecated_states);
540 static tree grokparms (struct c_arg_info *, bool);
541 static void layout_array_type (tree);
542 \f
543 /* T is a statement.  Add it to the statement-tree.  This is the
544    C/ObjC version--C++ has a slightly different version of this
545    function.  */
546
547 tree
548 add_stmt (tree t)
549 {
550   enum tree_code code = TREE_CODE (t);
551
552   if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
553     {
554       if (!EXPR_HAS_LOCATION (t))
555         SET_EXPR_LOCATION (t, input_location);
556     }
557
558   if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
559     STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
560
561   /* Add T to the statement-tree.  Non-side-effect statements need to be
562      recorded during statement expressions.  */
563   append_to_statement_list_force (t, &cur_stmt_list);
564
565   return t;
566 }
567 \f
568
569 void
570 c_print_identifier (FILE *file, tree node, int indent)
571 {
572   print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
573   print_node (file, "tag", I_TAG_DECL (node), indent + 4);
574   print_node (file, "label", I_LABEL_DECL (node), indent + 4);
575   if (C_IS_RESERVED_WORD (node) && C_RID_CODE (node) != RID_CXX_COMPAT_WARN)
576     {
577       tree rid = ridpointers[C_RID_CODE (node)];
578       indent_to (file, indent + 4);
579       fprintf (file, "rid " HOST_PTR_PRINTF " \"%s\"",
580                (void *) rid, IDENTIFIER_POINTER (rid));
581     }
582 }
583
584 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
585    which may be any of several kinds of DECL or TYPE or error_mark_node,
586    in the scope SCOPE.  */
587 static void
588 bind (tree name, tree decl, struct c_scope *scope, bool invisible,
589       bool nested, location_t locus)
590 {
591   struct c_binding *b, **here;
592
593   if (binding_freelist)
594     {
595       b = binding_freelist;
596       binding_freelist = b->prev;
597     }
598   else
599     b = GGC_NEW (struct c_binding);
600
601   b->shadowed = 0;
602   b->decl = decl;
603   b->id = name;
604   b->depth = scope->depth;
605   b->invisible = invisible;
606   b->nested = nested;
607   b->inner_comp = 0;
608   b->in_struct = 0;
609   b->locus = locus;
610
611   b->u.type = NULL;
612
613   b->prev = scope->bindings;
614   scope->bindings = b;
615
616   if (!name)
617     return;
618
619   switch (TREE_CODE (decl))
620     {
621     case LABEL_DECL:     here = &I_LABEL_BINDING (name);   break;
622     case ENUMERAL_TYPE:
623     case UNION_TYPE:
624     case RECORD_TYPE:    here = &I_TAG_BINDING (name);     break;
625     case VAR_DECL:
626     case FUNCTION_DECL:
627     case TYPE_DECL:
628     case CONST_DECL:
629     case PARM_DECL:
630     case ERROR_MARK:     here = &I_SYMBOL_BINDING (name);  break;
631
632     default:
633       gcc_unreachable ();
634     }
635
636   /* Locate the appropriate place in the chain of shadowed decls
637      to insert this binding.  Normally, scope == current_scope and
638      this does nothing.  */
639   while (*here && (*here)->depth > scope->depth)
640     here = &(*here)->shadowed;
641
642   b->shadowed = *here;
643   *here = b;
644 }
645
646 /* Clear the binding structure B, stick it on the binding_freelist,
647    and return the former value of b->prev.  This is used by pop_scope
648    and get_parm_info to iterate destructively over all the bindings
649    from a given scope.  */
650 static struct c_binding *
651 free_binding_and_advance (struct c_binding *b)
652 {
653   struct c_binding *prev = b->prev;
654
655   memset (b, 0, sizeof (struct c_binding));
656   b->prev = binding_freelist;
657   binding_freelist = b;
658
659   return prev;
660 }
661
662 /* Bind a label.  Like bind, but skip fields which aren't used for
663    labels, and add the LABEL_VARS value.  */
664 static void
665 bind_label (tree name, tree label, struct c_scope *scope,
666             struct c_label_vars *label_vars)
667 {
668   struct c_binding *b;
669
670   bind (name, label, scope, /*invisible=*/false, /*nested=*/false,
671         UNKNOWN_LOCATION);
672
673   scope->has_label_bindings = true;
674
675   b = scope->bindings;
676   gcc_assert (b->decl == label);
677   label_vars->shadowed = b->u.label;
678   b->u.label = label_vars;
679 }
680 \f
681 /* Hook called at end of compilation to assume 1 elt
682    for a file-scope tentative array defn that wasn't complete before.  */
683
684 void
685 c_finish_incomplete_decl (tree decl)
686 {
687   if (TREE_CODE (decl) == VAR_DECL)
688     {
689       tree type = TREE_TYPE (decl);
690       if (type != error_mark_node
691           && TREE_CODE (type) == ARRAY_TYPE
692           && !DECL_EXTERNAL (decl)
693           && TYPE_DOMAIN (type) == 0)
694         {
695           warning_at (DECL_SOURCE_LOCATION (decl),
696                       0, "array %q+D assumed to have one element", decl);
697
698           complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
699
700           layout_decl (decl, 0);
701         }
702     }
703 }
704 \f
705 /* Record that inline function FUNC contains a reference (location
706    LOC) to static DECL (file-scope or function-local according to
707    TYPE).  */
708
709 void
710 record_inline_static (location_t loc, tree func, tree decl,
711                       enum c_inline_static_type type)
712 {
713   struct c_inline_static *csi = GGC_NEW (struct c_inline_static);
714   csi->location = loc;
715   csi->function = func;
716   csi->static_decl = decl;
717   csi->type = type;
718   csi->next = c_inline_statics;
719   c_inline_statics = csi;
720 }
721
722 /* Check for references to static declarations in inline functions at
723    the end of the translation unit and diagnose them if the functions
724    are still inline definitions.  */
725
726 static void
727 check_inline_statics (void)
728 {
729   struct c_inline_static *csi;
730   for (csi = c_inline_statics; csi; csi = csi->next)
731     {
732       if (DECL_EXTERNAL (csi->function))
733         switch (csi->type)
734           {
735           case csi_internal:
736             pedwarn (csi->location, 0,
737                      "%qD is static but used in inline function %qD "
738                      "which is not static", csi->static_decl, csi->function);
739             break;
740           case csi_modifiable:
741             pedwarn (csi->location, 0,
742                      "%q+D is static but declared in inline function %qD "
743                      "which is not static", csi->static_decl, csi->function);
744             break;
745           default:
746             gcc_unreachable ();
747           }
748     }
749   c_inline_statics = NULL;
750 }
751 \f
752 /* Fill in a c_spot_bindings structure.  If DEFINING is true, set it
753    for the current state, otherwise set it to uninitialized.  */
754
755 static void
756 set_spot_bindings (struct c_spot_bindings *p, bool defining)
757 {
758   if (defining)
759     {
760       p->scope = current_scope;
761       p->bindings_in_scope = current_scope->bindings;
762     }
763   else
764     {
765       p->scope = NULL;
766       p->bindings_in_scope = NULL;
767     }
768   p->stmt_exprs = 0;
769   p->left_stmt_expr = false;
770 }
771
772 /* Return true if we will want to say something if a goto statement
773    crosses DECL.  */
774
775 static bool
776 decl_jump_unsafe (tree decl)
777 {
778   if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
779     return false;
780
781   /* Always warn about crossing variably modified types.  */
782   if ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == TYPE_DECL)
783       && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
784     return true;
785
786   /* Otherwise, only warn if -Wgoto-misses-init and this is an
787      initialized automatic decl.  */
788   if (warn_jump_misses_init
789       && TREE_CODE (decl) == VAR_DECL
790       && !TREE_STATIC (decl)
791       && DECL_INITIAL (decl) != NULL_TREE)
792     return true;
793
794   return false;
795 }
796
797 /* Update spot bindings P as we pop out of SCOPE.  Return true if we
798    should push decls for a label.  */
799
800 static bool
801 update_spot_bindings (struct c_scope *scope, struct c_spot_bindings *p)
802 {
803   if (p->scope != scope)
804     {
805       /* This label or goto is defined in some other scope, or it is a
806          label which is not yet defined.  There is nothing to
807          update.  */
808       return false;
809     }
810
811   /* Adjust the spot bindings to refer to the bindings already defined
812      in the enclosing scope.  */
813   p->scope = scope->outer;
814   p->bindings_in_scope = p->scope->bindings;
815
816   return true;
817 }
818 \f
819 /* The Objective-C front-end often needs to determine the current scope.  */
820
821 void *
822 objc_get_current_scope (void)
823 {
824   return current_scope;
825 }
826
827 /* The following function is used only by Objective-C.  It needs to live here
828    because it accesses the innards of c_scope.  */
829
830 void
831 objc_mark_locals_volatile (void *enclosing_blk)
832 {
833   struct c_scope *scope;
834   struct c_binding *b;
835
836   for (scope = current_scope;
837        scope && scope != enclosing_blk;
838        scope = scope->outer)
839     {
840       for (b = scope->bindings; b; b = b->prev)
841         objc_volatilize_decl (b->decl);
842
843       /* Do not climb up past the current function.  */
844       if (scope->function_body)
845         break;
846     }
847 }
848
849 /* Nonzero if we are currently in file scope.  */
850
851 int
852 global_bindings_p (void)
853 {
854   return (current_scope == file_scope && !c_override_global_bindings_to_false
855           ? -1
856           : 0);
857 }
858
859 void
860 keep_next_level (void)
861 {
862   keep_next_level_flag = true;
863 }
864
865 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON.  */
866
867 void
868 set_float_const_decimal64 (void)
869 {
870   current_scope->float_const_decimal64 = true;
871 }
872
873 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma.  */
874
875 void
876 clear_float_const_decimal64 (void)
877 {
878   current_scope->float_const_decimal64 = false;
879 }
880
881 /* Return nonzero if an unsuffixed float constant is _Decimal64.  */
882
883 bool
884 float_const_decimal64_p (void)
885 {
886   return current_scope->float_const_decimal64;
887 }
888
889 /* Identify this scope as currently being filled with parameters.  */
890
891 void
892 declare_parm_level (void)
893 {
894   current_scope->parm_flag = true;
895 }
896
897 void
898 push_scope (void)
899 {
900   if (next_is_function_body)
901     {
902       /* This is the transition from the parameters to the top level
903          of the function body.  These are the same scope
904          (C99 6.2.1p4,6) so we do not push another scope structure.
905          next_is_function_body is set only by store_parm_decls, which
906          in turn is called when and only when we are about to
907          encounter the opening curly brace for the function body.
908
909          The outermost block of a function always gets a BLOCK node,
910          because the debugging output routines expect that each
911          function has at least one BLOCK.  */
912       current_scope->parm_flag         = false;
913       current_scope->function_body     = true;
914       current_scope->keep              = true;
915       current_scope->outer_function    = current_function_scope;
916       current_function_scope           = current_scope;
917
918       keep_next_level_flag = false;
919       next_is_function_body = false;
920
921       /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes.  */
922       if (current_scope->outer)
923         current_scope->float_const_decimal64
924           = current_scope->outer->float_const_decimal64;
925       else
926         current_scope->float_const_decimal64 = false;
927     }
928   else
929     {
930       struct c_scope *scope;
931       if (scope_freelist)
932         {
933           scope = scope_freelist;
934           scope_freelist = scope->outer;
935         }
936       else
937         scope = GGC_CNEW (struct c_scope);
938
939       /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes.  */
940       if (current_scope)
941         scope->float_const_decimal64 = current_scope->float_const_decimal64;
942       else
943         scope->float_const_decimal64 = false;
944
945       scope->keep          = keep_next_level_flag;
946       scope->outer         = current_scope;
947       scope->depth         = current_scope ? (current_scope->depth + 1) : 0;
948
949       /* Check for scope depth overflow.  Unlikely (2^28 == 268,435,456) but
950          possible.  */
951       if (current_scope && scope->depth == 0)
952         {
953           scope->depth--;
954           sorry ("GCC supports only %u nested scopes", scope->depth);
955         }
956
957       current_scope        = scope;
958       keep_next_level_flag = false;
959     }
960 }
961
962 /* This is called when we are leaving SCOPE.  For each label defined
963    in SCOPE, add any appropriate decls to its decls_in_scope fields.
964    These are the decls whose initialization will be skipped by a goto
965    later in the function.  */
966
967 static void
968 update_label_decls (struct c_scope *scope)
969 {
970   struct c_scope *s;
971
972   s = scope;
973   while (s != NULL)
974     {
975       if (s->has_label_bindings)
976         {
977           struct c_binding *b;
978
979           for (b = s->bindings; b != NULL; b = b->prev)
980             {
981               struct c_label_vars *label_vars;
982               struct c_binding *b1;
983               unsigned int ix;
984               struct c_goto_bindings *g;
985
986               if (TREE_CODE (b->decl) != LABEL_DECL)
987                 continue;
988               label_vars = b->u.label;
989
990               b1 = label_vars->label_bindings.bindings_in_scope;
991               if (update_spot_bindings (scope, &label_vars->label_bindings))
992                 {
993                   /* This label is defined in this scope.  */
994                   for (; b1 != NULL;  b1 = b1->prev)
995                     {
996                       /* A goto from later in the function to this
997                          label will never see the initialization of
998                          B1, if any.  Save it to issue a warning if
999                          needed.  */
1000                       if (decl_jump_unsafe (b1->decl))
1001                         VEC_safe_push (tree, gc, label_vars->decls_in_scope,
1002                                        b1->decl);
1003                     }
1004                 }
1005
1006               /* Update the bindings of any goto statements associated
1007                  with this label.  */
1008               for (ix = 0;
1009                    VEC_iterate (c_goto_bindings_p, label_vars->gotos, ix, g);
1010                    ++ix)
1011                 update_spot_bindings (scope, &g->goto_bindings);
1012             }
1013         }
1014
1015       /* Don't search beyond the current function.  */
1016       if (s == current_function_scope)
1017         break;
1018
1019       s = s->outer;
1020     }
1021 }
1022
1023 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT.  */
1024
1025 static void
1026 set_type_context (tree type, tree context)
1027 {
1028   for (type = TYPE_MAIN_VARIANT (type); type;
1029        type = TYPE_NEXT_VARIANT (type))
1030     TYPE_CONTEXT (type) = context;
1031 }
1032
1033 /* Exit a scope.  Restore the state of the identifier-decl mappings
1034    that were in effect when this scope was entered.  Return a BLOCK
1035    node containing all the DECLs in this scope that are of interest
1036    to debug info generation.  */
1037
1038 tree
1039 pop_scope (void)
1040 {
1041   struct c_scope *scope = current_scope;
1042   tree block, context, p;
1043   struct c_binding *b;
1044
1045   bool functionbody = scope->function_body;
1046   bool keep = functionbody || scope->keep || scope->bindings;
1047
1048   update_label_decls (scope);
1049
1050   /* If appropriate, create a BLOCK to record the decls for the life
1051      of this function.  */
1052   block = 0;
1053   if (keep)
1054     {
1055       block = make_node (BLOCK);
1056       BLOCK_SUBBLOCKS (block) = scope->blocks;
1057       TREE_USED (block) = 1;
1058
1059       /* In each subblock, record that this is its superior.  */
1060       for (p = scope->blocks; p; p = BLOCK_CHAIN (p))
1061         BLOCK_SUPERCONTEXT (p) = block;
1062
1063       BLOCK_VARS (block) = 0;
1064     }
1065
1066   /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1067      scope must be set so that they point to the appropriate
1068      construct, i.e.  either to the current FUNCTION_DECL node, or
1069      else to the BLOCK node we just constructed.
1070
1071      Note that for tagged types whose scope is just the formal
1072      parameter list for some function type specification, we can't
1073      properly set their TYPE_CONTEXTs here, because we don't have a
1074      pointer to the appropriate FUNCTION_TYPE node readily available
1075      to us.  For those cases, the TYPE_CONTEXTs of the relevant tagged
1076      type nodes get set in `grokdeclarator' as soon as we have created
1077      the FUNCTION_TYPE node which will represent the "scope" for these
1078      "parameter list local" tagged types.  */
1079   if (scope->function_body)
1080     context = current_function_decl;
1081   else if (scope == file_scope)
1082     {
1083       tree file_decl = build_decl (UNKNOWN_LOCATION,
1084                                    TRANSLATION_UNIT_DECL, 0, 0);
1085       TREE_CHAIN (file_decl) = all_translation_units;
1086       all_translation_units = file_decl;
1087       context = file_decl;
1088     }
1089   else
1090     context = block;
1091
1092   /* Clear all bindings in this scope.  */
1093   for (b = scope->bindings; b; b = free_binding_and_advance (b))
1094     {
1095       p = b->decl;
1096       switch (TREE_CODE (p))
1097         {
1098         case LABEL_DECL:
1099           /* Warnings for unused labels, errors for undefined labels.  */
1100           if (TREE_USED (p) && !DECL_INITIAL (p))
1101             {
1102               error ("label %q+D used but not defined", p);
1103               DECL_INITIAL (p) = error_mark_node;
1104             }
1105           else
1106             warn_for_unused_label (p);
1107
1108           /* Labels go in BLOCK_VARS.  */
1109           TREE_CHAIN (p) = BLOCK_VARS (block);
1110           BLOCK_VARS (block) = p;
1111           gcc_assert (I_LABEL_BINDING (b->id) == b);
1112           I_LABEL_BINDING (b->id) = b->shadowed;
1113
1114           /* Also pop back to the shadowed label_vars.  */
1115           release_tree_vector (b->u.label->decls_in_scope);
1116           b->u.label = b->u.label->shadowed;
1117           break;
1118
1119         case ENUMERAL_TYPE:
1120         case UNION_TYPE:
1121         case RECORD_TYPE:
1122           set_type_context (p, context);
1123
1124           /* Types may not have tag-names, in which case the type
1125              appears in the bindings list with b->id NULL.  */
1126           if (b->id)
1127             {
1128               gcc_assert (I_TAG_BINDING (b->id) == b);
1129               I_TAG_BINDING (b->id) = b->shadowed;
1130             }
1131           break;
1132
1133         case FUNCTION_DECL:
1134           /* Propagate TREE_ADDRESSABLE from nested functions to their
1135              containing functions.  */
1136           if (!TREE_ASM_WRITTEN (p)
1137               && DECL_INITIAL (p) != 0
1138               && TREE_ADDRESSABLE (p)
1139               && DECL_ABSTRACT_ORIGIN (p) != 0
1140               && DECL_ABSTRACT_ORIGIN (p) != p)
1141             TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
1142           if (!DECL_EXTERNAL (p)
1143               && !DECL_INITIAL (p)
1144               && scope != file_scope
1145               && scope != external_scope)
1146             {
1147               error ("nested function %q+D declared but never defined", p);
1148               undef_nested_function = true;
1149             }
1150           else if (DECL_DECLARED_INLINE_P (p)
1151                    && TREE_PUBLIC (p)
1152                    && !DECL_INITIAL (p))
1153             {
1154               /* C99 6.7.4p6: "a function with external linkage... declared
1155                  with an inline function specifier ... shall also be defined
1156                  in the same translation unit."  */
1157               if (!flag_gnu89_inline)
1158                 pedwarn (input_location, 0,
1159                          "inline function %q+D declared but never defined", p);
1160               DECL_EXTERNAL (p) = 1;
1161             }
1162
1163           goto common_symbol;
1164
1165         case VAR_DECL:
1166           /* Warnings for unused variables.  */
1167           if (!TREE_USED (p)
1168               && !TREE_NO_WARNING (p)
1169               && !DECL_IN_SYSTEM_HEADER (p)
1170               && DECL_NAME (p)
1171               && !DECL_ARTIFICIAL (p)
1172               && scope != file_scope
1173               && scope != external_scope)
1174             warning (OPT_Wunused_variable, "unused variable %q+D", p);
1175
1176           if (b->inner_comp)
1177             {
1178               error ("type of array %q+D completed incompatibly with"
1179                      " implicit initialization", p);
1180             }
1181
1182           /* Fall through.  */
1183         case TYPE_DECL:
1184         case CONST_DECL:
1185         common_symbol:
1186           /* All of these go in BLOCK_VARS, but only if this is the
1187              binding in the home scope.  */
1188           if (!b->nested)
1189             {
1190               TREE_CHAIN (p) = BLOCK_VARS (block);
1191               BLOCK_VARS (block) = p;
1192             }
1193           else if (VAR_OR_FUNCTION_DECL_P (p))
1194             {
1195               /* For block local externs add a special
1196                  DECL_EXTERNAL decl for debug info generation.  */
1197               tree extp = copy_node (p);
1198
1199               DECL_EXTERNAL (extp) = 1;
1200               TREE_STATIC (extp) = 0;
1201               TREE_PUBLIC (extp) = 1;
1202               DECL_INITIAL (extp) = NULL_TREE;
1203               DECL_LANG_SPECIFIC (extp) = NULL;
1204               DECL_CONTEXT (extp) = current_function_decl;
1205               if (TREE_CODE (p) == FUNCTION_DECL)
1206                 {
1207                   DECL_RESULT (extp) = NULL_TREE;
1208                   DECL_SAVED_TREE (extp) = NULL_TREE;
1209                   DECL_STRUCT_FUNCTION (extp) = NULL;
1210                 }
1211               if (b->locus != UNKNOWN_LOCATION)
1212                 DECL_SOURCE_LOCATION (extp) = b->locus;
1213               TREE_CHAIN (extp) = BLOCK_VARS (block);
1214               BLOCK_VARS (block) = extp;
1215             }
1216           /* If this is the file scope, and we are processing more
1217              than one translation unit in this compilation, set
1218              DECL_CONTEXT of each decl to the TRANSLATION_UNIT_DECL.
1219              This makes same_translation_unit_p work, and causes
1220              static declarations to be given disambiguating suffixes.  */
1221           if (scope == file_scope && num_in_fnames > 1)
1222             {
1223               DECL_CONTEXT (p) = context;
1224               if (TREE_CODE (p) == TYPE_DECL)
1225                 set_type_context (TREE_TYPE (p), context);
1226             }
1227
1228           /* Fall through.  */
1229           /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1230              already been put there by store_parm_decls.  Unused-
1231              parameter warnings are handled by function.c.
1232              error_mark_node obviously does not go in BLOCK_VARS and
1233              does not get unused-variable warnings.  */
1234         case PARM_DECL:
1235         case ERROR_MARK:
1236           /* It is possible for a decl not to have a name.  We get
1237              here with b->id NULL in this case.  */
1238           if (b->id)
1239             {
1240               gcc_assert (I_SYMBOL_BINDING (b->id) == b);
1241               I_SYMBOL_BINDING (b->id) = b->shadowed;
1242               if (b->shadowed && b->shadowed->u.type)
1243                 TREE_TYPE (b->shadowed->decl) = b->shadowed->u.type;
1244             }
1245           break;
1246
1247         default:
1248           gcc_unreachable ();
1249         }
1250     }
1251
1252
1253   /* Dispose of the block that we just made inside some higher level.  */
1254   if ((scope->function_body || scope == file_scope) && context)
1255     {
1256       DECL_INITIAL (context) = block;
1257       BLOCK_SUPERCONTEXT (block) = context;
1258     }
1259   else if (scope->outer)
1260     {
1261       if (block)
1262         SCOPE_LIST_APPEND (scope->outer, blocks, block);
1263       /* If we did not make a block for the scope just exited, any
1264          blocks made for inner scopes must be carried forward so they
1265          will later become subblocks of something else.  */
1266       else if (scope->blocks)
1267         SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
1268     }
1269
1270   /* Pop the current scope, and free the structure for reuse.  */
1271   current_scope = scope->outer;
1272   if (scope->function_body)
1273     current_function_scope = scope->outer_function;
1274
1275   memset (scope, 0, sizeof (struct c_scope));
1276   scope->outer = scope_freelist;
1277   scope_freelist = scope;
1278
1279   return block;
1280 }
1281
1282 void
1283 push_file_scope (void)
1284 {
1285   tree decl;
1286
1287   if (file_scope)
1288     return;
1289
1290   push_scope ();
1291   file_scope = current_scope;
1292
1293   start_fname_decls ();
1294
1295   for (decl = visible_builtins; decl; decl = TREE_CHAIN (decl))
1296     bind (DECL_NAME (decl), decl, file_scope,
1297           /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl));
1298 }
1299
1300 void
1301 pop_file_scope (void)
1302 {
1303   /* In case there were missing closebraces, get us back to the global
1304      binding level.  */
1305   while (current_scope != file_scope)
1306     pop_scope ();
1307
1308   /* __FUNCTION__ is defined at file scope ("").  This
1309      call may not be necessary as my tests indicate it
1310      still works without it.  */
1311   finish_fname_decls ();
1312
1313   check_inline_statics ();
1314
1315   /* This is the point to write out a PCH if we're doing that.
1316      In that case we do not want to do anything else.  */
1317   if (pch_file)
1318     {
1319       c_common_write_pch ();
1320       return;
1321     }
1322
1323   /* Pop off the file scope and close this translation unit.  */
1324   pop_scope ();
1325   file_scope = 0;
1326
1327   maybe_apply_pending_pragma_weaks ();
1328 }
1329 \f
1330 /* Adjust the bindings for the start of a statement expression.  */
1331
1332 void
1333 c_bindings_start_stmt_expr (struct c_spot_bindings* switch_bindings)
1334 {
1335   struct c_scope *scope;
1336
1337   for (scope = current_scope; scope != NULL; scope = scope->outer)
1338     {
1339       struct c_binding *b;
1340
1341       if (!scope->has_label_bindings)
1342         continue;
1343
1344       for (b = scope->bindings; b != NULL; b = b->prev)
1345         {
1346           struct c_label_vars *label_vars;
1347           unsigned int ix;
1348           struct c_goto_bindings *g;
1349
1350           if (TREE_CODE (b->decl) != LABEL_DECL)
1351             continue;
1352           label_vars = b->u.label;
1353           ++label_vars->label_bindings.stmt_exprs;
1354           for (ix = 0;
1355                VEC_iterate (c_goto_bindings_p, label_vars->gotos, ix, g);
1356                ++ix)
1357             ++g->goto_bindings.stmt_exprs;
1358         }
1359     }
1360
1361   if (switch_bindings != NULL)
1362     ++switch_bindings->stmt_exprs;
1363 }
1364
1365 /* Adjust the bindings for the end of a statement expression.  */
1366
1367 void
1368 c_bindings_end_stmt_expr (struct c_spot_bindings *switch_bindings)
1369 {
1370   struct c_scope *scope;
1371
1372   for (scope = current_scope; scope != NULL; scope = scope->outer)
1373     {
1374       struct c_binding *b;
1375
1376       if (!scope->has_label_bindings)
1377         continue;
1378
1379       for (b = scope->bindings; b != NULL; b = b->prev)
1380         {
1381           struct c_label_vars *label_vars;
1382           unsigned int ix;
1383           struct c_goto_bindings *g;
1384
1385           if (TREE_CODE (b->decl) != LABEL_DECL)
1386             continue;
1387           label_vars = b->u.label;
1388           --label_vars->label_bindings.stmt_exprs;
1389           if (label_vars->label_bindings.stmt_exprs < 0)
1390             {
1391               label_vars->label_bindings.left_stmt_expr = true;
1392               label_vars->label_bindings.stmt_exprs = 0;
1393             }
1394           for (ix = 0;
1395                VEC_iterate (c_goto_bindings_p, label_vars->gotos, ix, g);
1396                ++ix)
1397             {
1398               --g->goto_bindings.stmt_exprs;
1399               if (g->goto_bindings.stmt_exprs < 0)
1400                 {
1401                   g->goto_bindings.left_stmt_expr = true;
1402                   g->goto_bindings.stmt_exprs = 0;
1403                 }
1404             }
1405         }
1406     }
1407
1408   if (switch_bindings != NULL)
1409     {
1410       --switch_bindings->stmt_exprs;
1411       gcc_assert (switch_bindings->stmt_exprs >= 0);
1412     }
1413 }
1414 \f
1415 /* Push a definition or a declaration of struct, union or enum tag "name".
1416    "type" should be the type node.
1417    We assume that the tag "name" is not already defined, and has a location
1418    of LOC.
1419
1420    Note that the definition may really be just a forward reference.
1421    In that case, the TYPE_SIZE will be zero.  */
1422
1423 static void
1424 pushtag (location_t loc, tree name, tree type)
1425 {
1426   /* Record the identifier as the type's name if it has none.  */
1427   if (name && !TYPE_NAME (type))
1428     TYPE_NAME (type) = name;
1429   bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false, loc);
1430
1431   /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1432      tagged type we just added to the current scope.  This fake
1433      NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1434      to output a representation of a tagged type, and it also gives
1435      us a convenient place to record the "scope start" address for the
1436      tagged type.  */
1437
1438   TYPE_STUB_DECL (type) = pushdecl (build_decl (loc,
1439                                                 TYPE_DECL, NULL_TREE, type));
1440
1441   /* An approximation for now, so we can tell this is a function-scope tag.
1442      This will be updated in pop_scope.  */
1443   TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1444
1445   if (warn_cxx_compat && name != NULL_TREE)
1446     {
1447       struct c_binding *b = I_SYMBOL_BINDING (name);
1448
1449       if (b != NULL
1450           && b->decl != NULL_TREE
1451           && TREE_CODE (b->decl) == TYPE_DECL
1452           && (B_IN_CURRENT_SCOPE (b)
1453               || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
1454           && (TYPE_MAIN_VARIANT (TREE_TYPE (b->decl))
1455               != TYPE_MAIN_VARIANT (type)))
1456         {
1457           warning_at (loc, OPT_Wc___compat,
1458                       ("using %qD as both a typedef and a tag is "
1459                        "invalid in C++"),
1460                       b->decl);
1461           if (b->locus != UNKNOWN_LOCATION)
1462             inform (b->locus, "originally defined here");
1463         }
1464     }
1465 }
1466 \f
1467 /* Subroutine of compare_decls.  Allow harmless mismatches in return
1468    and argument types provided that the type modes match.  This function
1469    return a unified type given a suitable match, and 0 otherwise.  */
1470
1471 static tree
1472 match_builtin_function_types (tree newtype, tree oldtype)
1473 {
1474   tree newrettype, oldrettype;
1475   tree newargs, oldargs;
1476   tree trytype, tryargs;
1477
1478   /* Accept the return type of the new declaration if same modes.  */
1479   oldrettype = TREE_TYPE (oldtype);
1480   newrettype = TREE_TYPE (newtype);
1481
1482   if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
1483     return 0;
1484
1485   oldargs = TYPE_ARG_TYPES (oldtype);
1486   newargs = TYPE_ARG_TYPES (newtype);
1487   tryargs = newargs;
1488
1489   while (oldargs || newargs)
1490     {
1491       if (!oldargs
1492           || !newargs
1493           || !TREE_VALUE (oldargs)
1494           || !TREE_VALUE (newargs)
1495           || TYPE_MODE (TREE_VALUE (oldargs))
1496              != TYPE_MODE (TREE_VALUE (newargs)))
1497         return 0;
1498
1499       oldargs = TREE_CHAIN (oldargs);
1500       newargs = TREE_CHAIN (newargs);
1501     }
1502
1503   trytype = build_function_type (newrettype, tryargs);
1504   return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1505 }
1506
1507 /* Subroutine of diagnose_mismatched_decls.  Check for function type
1508    mismatch involving an empty arglist vs a nonempty one and give clearer
1509    diagnostics.  */
1510 static void
1511 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1512                            tree newtype, tree oldtype)
1513 {
1514   tree t;
1515
1516   if (TREE_CODE (olddecl) != FUNCTION_DECL
1517       || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1518       || !((TYPE_ARG_TYPES (oldtype) == 0 && DECL_INITIAL (olddecl) == 0)
1519            ||
1520            (TYPE_ARG_TYPES (newtype) == 0 && DECL_INITIAL (newdecl) == 0)))
1521     return;
1522
1523   t = TYPE_ARG_TYPES (oldtype);
1524   if (t == 0)
1525     t = TYPE_ARG_TYPES (newtype);
1526   for (; t; t = TREE_CHAIN (t))
1527     {
1528       tree type = TREE_VALUE (t);
1529
1530       if (TREE_CHAIN (t) == 0
1531           && TYPE_MAIN_VARIANT (type) != void_type_node)
1532         {
1533           inform (input_location, "a parameter list with an ellipsis can%'t match "
1534                   "an empty parameter name list declaration");
1535           break;
1536         }
1537
1538       if (c_type_promotes_to (type) != type)
1539         {
1540           inform (input_location, "an argument type that has a default promotion can%'t match "
1541                   "an empty parameter name list declaration");
1542           break;
1543         }
1544     }
1545 }
1546
1547 /* Another subroutine of diagnose_mismatched_decls.  OLDDECL is an
1548    old-style function definition, NEWDECL is a prototype declaration.
1549    Diagnose inconsistencies in the argument list.  Returns TRUE if
1550    the prototype is compatible, FALSE if not.  */
1551 static bool
1552 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1553 {
1554   tree newargs, oldargs;
1555   int i;
1556
1557 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1558
1559   oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1560   newargs = TYPE_ARG_TYPES (newtype);
1561   i = 1;
1562
1563   for (;;)
1564     {
1565       tree oldargtype = TREE_VALUE (oldargs);
1566       tree newargtype = TREE_VALUE (newargs);
1567
1568       if (oldargtype == error_mark_node || newargtype == error_mark_node)
1569         return false;
1570
1571       oldargtype = TYPE_MAIN_VARIANT (oldargtype);
1572       newargtype = TYPE_MAIN_VARIANT (newargtype);
1573
1574       if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1575         break;
1576
1577       /* Reaching the end of just one list means the two decls don't
1578          agree on the number of arguments.  */
1579       if (END_OF_ARGLIST (oldargtype))
1580         {
1581           error ("prototype for %q+D declares more arguments "
1582                  "than previous old-style definition", newdecl);
1583           return false;
1584         }
1585       else if (END_OF_ARGLIST (newargtype))
1586         {
1587           error ("prototype for %q+D declares fewer arguments "
1588                  "than previous old-style definition", newdecl);
1589           return false;
1590         }
1591
1592       /* Type for passing arg must be consistent with that declared
1593          for the arg.  */
1594       else if (!comptypes (oldargtype, newargtype))
1595         {
1596           error ("prototype for %q+D declares argument %d"
1597                  " with incompatible type",
1598                  newdecl, i);
1599           return false;
1600         }
1601
1602       oldargs = TREE_CHAIN (oldargs);
1603       newargs = TREE_CHAIN (newargs);
1604       i++;
1605     }
1606
1607   /* If we get here, no errors were found, but do issue a warning
1608      for this poor-style construct.  */
1609   warning (0, "prototype for %q+D follows non-prototype definition",
1610            newdecl);
1611   return true;
1612 #undef END_OF_ARGLIST
1613 }
1614
1615 /* Subroutine of diagnose_mismatched_decls.  Report the location of DECL,
1616    first in a pair of mismatched declarations, using the diagnostic
1617    function DIAG.  */
1618 static void
1619 locate_old_decl (tree decl)
1620 {
1621   if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1622     ;
1623   else if (DECL_INITIAL (decl))
1624     inform (input_location, "previous definition of %q+D was here", decl);
1625   else if (C_DECL_IMPLICIT (decl))
1626     inform (input_location, "previous implicit declaration of %q+D was here", decl);
1627   else
1628     inform (input_location, "previous declaration of %q+D was here", decl);
1629 }
1630
1631 /* Subroutine of duplicate_decls.  Compare NEWDECL to OLDDECL.
1632    Returns true if the caller should proceed to merge the two, false
1633    if OLDDECL should simply be discarded.  As a side effect, issues
1634    all necessary diagnostics for invalid or poor-style combinations.
1635    If it returns true, writes the types of NEWDECL and OLDDECL to
1636    *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1637    TREE_TYPE (NEWDECL, OLDDECL) respectively.  */
1638
1639 static bool
1640 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1641                            tree *newtypep, tree *oldtypep)
1642 {
1643   tree newtype, oldtype;
1644   bool pedwarned = false;
1645   bool warned = false;
1646   bool retval = true;
1647
1648 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL)  \
1649                                   && DECL_EXTERNAL (DECL))
1650
1651   /* If we have error_mark_node for either decl or type, just discard
1652      the previous decl - we're in an error cascade already.  */
1653   if (olddecl == error_mark_node || newdecl == error_mark_node)
1654     return false;
1655   *oldtypep = oldtype = TREE_TYPE (olddecl);
1656   *newtypep = newtype = TREE_TYPE (newdecl);
1657   if (oldtype == error_mark_node || newtype == error_mark_node)
1658     return false;
1659
1660   /* Two different categories of symbol altogether.  This is an error
1661      unless OLDDECL is a builtin.  OLDDECL will be discarded in any case.  */
1662   if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1663     {
1664       if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1665             && DECL_BUILT_IN (olddecl)
1666             && !C_DECL_DECLARED_BUILTIN (olddecl)))
1667         {
1668           error ("%q+D redeclared as different kind of symbol", newdecl);
1669           locate_old_decl (olddecl);
1670         }
1671       else if (TREE_PUBLIC (newdecl))
1672         warning (0, "built-in function %q+D declared as non-function",
1673                  newdecl);
1674       else
1675         warning (OPT_Wshadow, "declaration of %q+D shadows "
1676                  "a built-in function", newdecl);
1677       return false;
1678     }
1679
1680   /* Enumerators have no linkage, so may only be declared once in a
1681      given scope.  */
1682   if (TREE_CODE (olddecl) == CONST_DECL)
1683     {
1684       error ("redeclaration of enumerator %q+D", newdecl);
1685       locate_old_decl (olddecl);
1686       return false;
1687     }
1688
1689   if (!comptypes (oldtype, newtype))
1690     {
1691       if (TREE_CODE (olddecl) == FUNCTION_DECL
1692           && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1693         {
1694           /* Accept harmless mismatch in function types.
1695              This is for the ffs and fprintf builtins.  */
1696           tree trytype = match_builtin_function_types (newtype, oldtype);
1697
1698           if (trytype && comptypes (newtype, trytype))
1699             *oldtypep = oldtype = trytype;
1700           else
1701             {
1702               /* If types don't match for a built-in, throw away the
1703                  built-in.  No point in calling locate_old_decl here, it
1704                  won't print anything.  */
1705               warning (0, "conflicting types for built-in function %q+D",
1706                        newdecl);
1707               return false;
1708             }
1709         }
1710       else if (TREE_CODE (olddecl) == FUNCTION_DECL
1711                && DECL_IS_BUILTIN (olddecl))
1712         {
1713           /* A conflicting function declaration for a predeclared
1714              function that isn't actually built in.  Objective C uses
1715              these.  The new declaration silently overrides everything
1716              but the volatility (i.e. noreturn) indication.  See also
1717              below.  FIXME: Make Objective C use normal builtins.  */
1718           TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1719           return false;
1720         }
1721       /* Permit void foo (...) to match int foo (...) if the latter is
1722          the definition and implicit int was used.  See
1723          c-torture/compile/920625-2.c.  */
1724       else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1725                && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1726                && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1727                && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1728         {
1729           pedwarned = pedwarn (input_location, 0,
1730                                "conflicting types for %q+D", newdecl);
1731           /* Make sure we keep void as the return type.  */
1732           TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1733           C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1734         }
1735       /* Permit void foo (...) to match an earlier call to foo (...) with
1736          no declared type (thus, implicitly int).  */
1737       else if (TREE_CODE (newdecl) == FUNCTION_DECL
1738                && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1739                && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1740                && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1741         {
1742           pedwarned = pedwarn (input_location, 0,
1743                                "conflicting types for %q+D", newdecl);
1744           /* Make sure we keep void as the return type.  */
1745           TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1746         }
1747       else
1748         {
1749           int new_quals = TYPE_QUALS (newtype);
1750           int old_quals = TYPE_QUALS (oldtype);
1751
1752           if (new_quals != old_quals)
1753             {
1754               addr_space_t new_addr = DECODE_QUAL_ADDR_SPACE (new_quals);
1755               addr_space_t old_addr = DECODE_QUAL_ADDR_SPACE (old_quals);
1756               if (new_addr != old_addr)
1757                 {
1758                   if (ADDR_SPACE_GENERIC_P (new_addr))
1759                     error ("conflicting named address spaces (generic vs %s) "
1760                            "for %q+D",
1761                            c_addr_space_name (old_addr), newdecl);
1762                   else if (ADDR_SPACE_GENERIC_P (old_addr))
1763                     error ("conflicting named address spaces (%s vs generic) "
1764                            "for %q+D",
1765                            c_addr_space_name (new_addr), newdecl);
1766                   else
1767                     error ("conflicting named address spaces (%s vs %s) "
1768                            "for %q+D",
1769                            c_addr_space_name (new_addr),
1770                            c_addr_space_name (old_addr),
1771                            newdecl);
1772                 }
1773
1774               if (CLEAR_QUAL_ADDR_SPACE (new_quals)
1775                   != CLEAR_QUAL_ADDR_SPACE (old_quals))
1776                 error ("conflicting type qualifiers for %q+D", newdecl);
1777             }
1778           else
1779             error ("conflicting types for %q+D", newdecl);
1780           diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1781           locate_old_decl (olddecl);
1782           return false;
1783         }
1784     }
1785
1786   /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1787      but silently ignore the redeclaration if either is in a system
1788      header.  (Conflicting redeclarations were handled above.)  */
1789   if (TREE_CODE (newdecl) == TYPE_DECL)
1790     {
1791       if (DECL_IN_SYSTEM_HEADER (newdecl)
1792           || DECL_IN_SYSTEM_HEADER (olddecl)
1793           || TREE_NO_WARNING (newdecl)
1794           || TREE_NO_WARNING (olddecl))
1795         return true;  /* Allow OLDDECL to continue in use.  */
1796
1797       error ("redefinition of typedef %q+D", newdecl);
1798       locate_old_decl (olddecl);
1799       return false;
1800     }
1801
1802   /* Function declarations can either be 'static' or 'extern' (no
1803      qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1804      can never conflict with each other on account of linkage
1805      (6.2.2p4).  Multiple definitions are not allowed (6.9p3,5) but
1806      gnu89 mode permits two definitions if one is 'extern inline' and
1807      one is not.  The non- extern-inline definition supersedes the
1808      extern-inline definition.  */
1809
1810   else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1811     {
1812       /* If you declare a built-in function name as static, or
1813          define the built-in with an old-style definition (so we
1814          can't validate the argument list) the built-in definition is
1815          overridden, but optionally warn this was a bad choice of name.  */
1816       if (DECL_BUILT_IN (olddecl)
1817           && !C_DECL_DECLARED_BUILTIN (olddecl)
1818           && (!TREE_PUBLIC (newdecl)
1819               || (DECL_INITIAL (newdecl)
1820                   && !TYPE_ARG_TYPES (TREE_TYPE (newdecl)))))
1821         {
1822           warning (OPT_Wshadow, "declaration of %q+D shadows "
1823                    "a built-in function", newdecl);
1824           /* Discard the old built-in function.  */
1825           return false;
1826         }
1827
1828       if (DECL_INITIAL (newdecl))
1829         {
1830           if (DECL_INITIAL (olddecl))
1831             {
1832               /* If both decls are in the same TU and the new declaration
1833                  isn't overriding an extern inline reject the new decl.
1834                  In c99, no overriding is allowed in the same translation
1835                  unit.  */
1836               if ((!DECL_EXTERN_INLINE (olddecl)
1837                    || DECL_EXTERN_INLINE (newdecl)
1838                    || (!flag_gnu89_inline
1839                        && (!DECL_DECLARED_INLINE_P (olddecl)
1840                            || !lookup_attribute ("gnu_inline",
1841                                                  DECL_ATTRIBUTES (olddecl)))
1842                        && (!DECL_DECLARED_INLINE_P (newdecl)
1843                            || !lookup_attribute ("gnu_inline",
1844                                                  DECL_ATTRIBUTES (newdecl))))
1845                   )
1846                   && same_translation_unit_p (newdecl, olddecl))
1847                 {
1848                   error ("redefinition of %q+D", newdecl);
1849                   locate_old_decl (olddecl);
1850                   return false;
1851                 }
1852             }
1853         }
1854       /* If we have a prototype after an old-style function definition,
1855          the argument types must be checked specially.  */
1856       else if (DECL_INITIAL (olddecl)
1857                && !TYPE_ARG_TYPES (oldtype) && TYPE_ARG_TYPES (newtype)
1858                && TYPE_ACTUAL_ARG_TYPES (oldtype)
1859                && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1860         {
1861           locate_old_decl (olddecl);
1862           return false;
1863         }
1864       /* A non-static declaration (even an "extern") followed by a
1865          static declaration is undefined behavior per C99 6.2.2p3-5,7.
1866          The same is true for a static forward declaration at block
1867          scope followed by a non-static declaration/definition at file
1868          scope.  Static followed by non-static at the same scope is
1869          not undefined behavior, and is the most convenient way to get
1870          some effects (see e.g.  what unwind-dw2-fde-glibc.c does to
1871          the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1872          we do diagnose it if -Wtraditional.  */
1873       if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1874         {
1875           /* Two exceptions to the rule.  If olddecl is an extern
1876              inline, or a predeclared function that isn't actually
1877              built in, newdecl silently overrides olddecl.  The latter
1878              occur only in Objective C; see also above.  (FIXME: Make
1879              Objective C use normal builtins.)  */
1880           if (!DECL_IS_BUILTIN (olddecl)
1881               && !DECL_EXTERN_INLINE (olddecl))
1882             {
1883               error ("static declaration of %q+D follows "
1884                      "non-static declaration", newdecl);
1885               locate_old_decl (olddecl);
1886             }
1887           return false;
1888         }
1889       else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1890         {
1891           if (DECL_CONTEXT (olddecl))
1892             {
1893               error ("non-static declaration of %q+D follows "
1894                      "static declaration", newdecl);
1895               locate_old_decl (olddecl);
1896               return false;
1897             }
1898           else if (warn_traditional)
1899             {
1900               warned |= warning (OPT_Wtraditional,
1901                                  "non-static declaration of %q+D "
1902                                  "follows static declaration", newdecl);
1903             }
1904         }
1905
1906       /* Make sure gnu_inline attribute is either not present, or
1907          present on all inline decls.  */
1908       if (DECL_DECLARED_INLINE_P (olddecl)
1909           && DECL_DECLARED_INLINE_P (newdecl))
1910         {
1911           bool newa = lookup_attribute ("gnu_inline",
1912                                         DECL_ATTRIBUTES (newdecl)) != NULL;
1913           bool olda = lookup_attribute ("gnu_inline",
1914                                         DECL_ATTRIBUTES (olddecl)) != NULL;
1915           if (newa != olda)
1916             {
1917               error_at (input_location, "%<gnu_inline%> attribute present on %q+D",
1918                         newa ? newdecl : olddecl);
1919               error_at (DECL_SOURCE_LOCATION (newa ? olddecl : newdecl),
1920                         "but not here");
1921             }
1922         }
1923     }
1924   else if (TREE_CODE (newdecl) == VAR_DECL)
1925     {
1926       /* Only variables can be thread-local, and all declarations must
1927          agree on this property.  */
1928       if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1929         {
1930           /* Nothing to check.  Since OLDDECL is marked threadprivate
1931              and NEWDECL does not have a thread-local attribute, we
1932              will merge the threadprivate attribute into NEWDECL.  */
1933           ;
1934         }
1935       else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1936         {
1937           if (DECL_THREAD_LOCAL_P (newdecl))
1938             error ("thread-local declaration of %q+D follows "
1939                    "non-thread-local declaration", newdecl);
1940           else
1941             error ("non-thread-local declaration of %q+D follows "
1942                    "thread-local declaration", newdecl);
1943
1944           locate_old_decl (olddecl);
1945           return false;
1946         }
1947
1948       /* Multiple initialized definitions are not allowed (6.9p3,5).  */
1949       if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
1950         {
1951           error ("redefinition of %q+D", newdecl);
1952           locate_old_decl (olddecl);
1953           return false;
1954         }
1955
1956       /* Objects declared at file scope: if the first declaration had
1957          external linkage (even if it was an external reference) the
1958          second must have external linkage as well, or the behavior is
1959          undefined.  If the first declaration had internal linkage, then
1960          the second must too, or else be an external reference (in which
1961          case the composite declaration still has internal linkage).
1962          As for function declarations, we warn about the static-then-
1963          extern case only for -Wtraditional.  See generally 6.2.2p3-5,7.  */
1964       if (DECL_FILE_SCOPE_P (newdecl)
1965           && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
1966         {
1967           if (DECL_EXTERNAL (newdecl))
1968             {
1969               if (!DECL_FILE_SCOPE_P (olddecl))
1970                 {
1971                   error ("extern declaration of %q+D follows "
1972                          "declaration with no linkage", newdecl);
1973                   locate_old_decl (olddecl);
1974                   return false;
1975                 }
1976               else if (warn_traditional)
1977                 {
1978                   warned |= warning (OPT_Wtraditional,
1979                                      "non-static declaration of %q+D "
1980                                      "follows static declaration", newdecl);
1981                 }
1982             }
1983           else
1984             {
1985               if (TREE_PUBLIC (newdecl))
1986                 error ("non-static declaration of %q+D follows "
1987                        "static declaration", newdecl);
1988               else
1989                 error ("static declaration of %q+D follows "
1990                        "non-static declaration", newdecl);
1991
1992               locate_old_decl (olddecl);
1993               return false;
1994             }
1995         }
1996       /* Two objects with the same name declared at the same block
1997          scope must both be external references (6.7p3).  */
1998       else if (!DECL_FILE_SCOPE_P (newdecl))
1999         {
2000           if (DECL_EXTERNAL (newdecl))
2001             {
2002               /* Extern with initializer at block scope, which will
2003                  already have received an error.  */
2004             }
2005           else if (DECL_EXTERNAL (olddecl))
2006             {
2007               error ("declaration of %q+D with no linkage follows "
2008                      "extern declaration", newdecl);
2009               locate_old_decl (olddecl);
2010             }
2011           else
2012             {
2013               error ("redeclaration of %q+D with no linkage", newdecl);
2014               locate_old_decl (olddecl);
2015             }
2016
2017           return false;
2018         }
2019
2020       /* C++ does not permit a decl to appear multiple times at file
2021          scope.  */
2022       if (warn_cxx_compat
2023           && DECL_FILE_SCOPE_P (newdecl)
2024           && !DECL_EXTERNAL (newdecl)
2025           && !DECL_EXTERNAL (olddecl))
2026         warned |= warning_at (DECL_SOURCE_LOCATION (newdecl),
2027                               OPT_Wc___compat,
2028                               ("duplicate declaration of %qD is "
2029                                "invalid in C++"),
2030                               newdecl);
2031     }
2032
2033   /* warnings */
2034   /* All decls must agree on a visibility.  */
2035   if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
2036       && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
2037       && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2038     {
2039       warned |= warning (0, "redeclaration of %q+D with different visibility "
2040                          "(old visibility preserved)", newdecl);
2041     }
2042
2043   if (TREE_CODE (newdecl) == FUNCTION_DECL)
2044     {
2045       /* Diagnose inline __attribute__ ((noinline)) which is silly.  */
2046       if (DECL_DECLARED_INLINE_P (newdecl)
2047           && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
2048         {
2049           warned |= warning (OPT_Wattributes,
2050                              "inline declaration of %qD follows "
2051                              "declaration with attribute noinline", newdecl);
2052         }
2053       else if (DECL_DECLARED_INLINE_P (olddecl)
2054                && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
2055         {
2056           warned |= warning (OPT_Wattributes,
2057                              "declaration of %q+D with attribute "
2058                              "noinline follows inline declaration ", newdecl);
2059         }
2060     }
2061   else /* PARM_DECL, VAR_DECL */
2062     {
2063       /* Redeclaration of a parameter is a constraint violation (this is
2064          not explicitly stated, but follows from C99 6.7p3 [no more than
2065          one declaration of the same identifier with no linkage in the
2066          same scope, except type tags] and 6.2.2p6 [parameters have no
2067          linkage]).  We must check for a forward parameter declaration,
2068          indicated by TREE_ASM_WRITTEN on the old declaration - this is
2069          an extension, the mandatory diagnostic for which is handled by
2070          mark_forward_parm_decls.  */
2071
2072       if (TREE_CODE (newdecl) == PARM_DECL
2073           && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
2074         {
2075           error ("redefinition of parameter %q+D", newdecl);
2076           locate_old_decl (olddecl);
2077           return false;
2078         }
2079     }
2080
2081   /* Optional warning for completely redundant decls.  */
2082   if (!warned && !pedwarned
2083       && warn_redundant_decls
2084       /* Don't warn about a function declaration followed by a
2085          definition.  */
2086       && !(TREE_CODE (newdecl) == FUNCTION_DECL
2087            && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
2088       /* Don't warn about redundant redeclarations of builtins.  */
2089       && !(TREE_CODE (newdecl) == FUNCTION_DECL
2090            && !DECL_BUILT_IN (newdecl)
2091            && DECL_BUILT_IN (olddecl)
2092            && !C_DECL_DECLARED_BUILTIN (olddecl))
2093       /* Don't warn about an extern followed by a definition.  */
2094       && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
2095       /* Don't warn about forward parameter decls.  */
2096       && !(TREE_CODE (newdecl) == PARM_DECL
2097            && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2098       /* Don't warn about a variable definition following a declaration.  */
2099       && !(TREE_CODE (newdecl) == VAR_DECL
2100            && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
2101     {
2102       warned = warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
2103                         newdecl);
2104     }
2105
2106   /* Report location of previous decl/defn.  */
2107   if (warned || pedwarned)
2108     locate_old_decl (olddecl);
2109
2110 #undef DECL_EXTERN_INLINE
2111
2112   return retval;
2113 }
2114
2115 /* Subroutine of duplicate_decls.  NEWDECL has been found to be
2116    consistent with OLDDECL, but carries new information.  Merge the
2117    new information into OLDDECL.  This function issues no
2118    diagnostics.  */
2119
2120 static void
2121 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
2122 {
2123   bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
2124                             && DECL_INITIAL (newdecl) != 0);
2125   bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
2126                            && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0);
2127   bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
2128                            && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) != 0);
2129   bool extern_changed = false;
2130
2131   /* For real parm decl following a forward decl, rechain the old decl
2132      in its new location and clear TREE_ASM_WRITTEN (it's not a
2133      forward decl anymore).  */
2134   if (TREE_CODE (newdecl) == PARM_DECL
2135       && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2136     {
2137       struct c_binding *b, **here;
2138
2139       for (here = &current_scope->bindings; *here; here = &(*here)->prev)
2140         if ((*here)->decl == olddecl)
2141           goto found;
2142       gcc_unreachable ();
2143
2144     found:
2145       b = *here;
2146       *here = b->prev;
2147       b->prev = current_scope->bindings;
2148       current_scope->bindings = b;
2149
2150       TREE_ASM_WRITTEN (olddecl) = 0;
2151     }
2152
2153   DECL_ATTRIBUTES (newdecl)
2154     = targetm.merge_decl_attributes (olddecl, newdecl);
2155
2156   /* Merge the data types specified in the two decls.  */
2157   TREE_TYPE (newdecl)
2158     = TREE_TYPE (olddecl)
2159     = composite_type (newtype, oldtype);
2160
2161   /* Lay the type out, unless already done.  */
2162   if (!comptypes (oldtype, TREE_TYPE (newdecl)))
2163     {
2164       if (TREE_TYPE (newdecl) != error_mark_node)
2165         layout_type (TREE_TYPE (newdecl));
2166       if (TREE_CODE (newdecl) != FUNCTION_DECL
2167           && TREE_CODE (newdecl) != TYPE_DECL
2168           && TREE_CODE (newdecl) != CONST_DECL)
2169         layout_decl (newdecl, 0);
2170     }
2171   else
2172     {
2173       /* Since the type is OLDDECL's, make OLDDECL's size go with.  */
2174       DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
2175       DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
2176       DECL_MODE (newdecl) = DECL_MODE (olddecl);
2177       if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2178         {
2179           DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2180           DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2181         }
2182     }
2183
2184   /* Keep the old rtl since we can safely use it.  */
2185   if (HAS_RTL_P (olddecl))
2186     COPY_DECL_RTL (olddecl, newdecl);
2187
2188   /* Merge the type qualifiers.  */
2189   if (TREE_READONLY (newdecl))
2190     TREE_READONLY (olddecl) = 1;
2191
2192   if (TREE_THIS_VOLATILE (newdecl))
2193     TREE_THIS_VOLATILE (olddecl) = 1;
2194
2195   /* Merge deprecatedness.  */
2196   if (TREE_DEPRECATED (newdecl))
2197     TREE_DEPRECATED (olddecl) = 1;
2198
2199   /* If a decl is in a system header and the other isn't, keep the one on the
2200      system header. Otherwise, keep source location of definition rather than
2201      declaration and of prototype rather than non-prototype unless that
2202      prototype is built-in.  */
2203   if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2204       && DECL_IN_SYSTEM_HEADER (olddecl)
2205       && !DECL_IN_SYSTEM_HEADER (newdecl) )
2206     DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2207   else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2208            && DECL_IN_SYSTEM_HEADER (newdecl)
2209            && !DECL_IN_SYSTEM_HEADER (olddecl))
2210     DECL_SOURCE_LOCATION (olddecl) = DECL_SOURCE_LOCATION (newdecl);
2211   else if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
2212            || (old_is_prototype && !new_is_prototype
2213                && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
2214     DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2215
2216   /* Merge the initialization information.  */
2217    if (DECL_INITIAL (newdecl) == 0)
2218     DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2219
2220   /* Merge the threadprivate attribute.  */
2221   if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
2222     {
2223       DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
2224       C_DECL_THREADPRIVATE_P (newdecl) = 1;
2225     }
2226
2227   if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
2228     {
2229       /* Merge the section attribute.
2230          We want to issue an error if the sections conflict but that
2231          must be done later in decl_attributes since we are called
2232          before attributes are assigned.  */
2233       if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
2234         DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
2235
2236       /* Copy the assembler name.
2237          Currently, it can only be defined in the prototype.  */
2238       COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2239
2240       /* Use visibility of whichever declaration had it specified */
2241       if (DECL_VISIBILITY_SPECIFIED (olddecl))
2242         {
2243           DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2244           DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2245         }
2246
2247       if (TREE_CODE (newdecl) == FUNCTION_DECL)
2248         {
2249           DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
2250           DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
2251           DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2252           DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2253             |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2254           TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2255           DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2256           DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2257           TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2258           DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2259           DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
2260         }
2261
2262       /* Merge the storage class information.  */
2263       merge_weak (newdecl, olddecl);
2264
2265       /* For functions, static overrides non-static.  */
2266       if (TREE_CODE (newdecl) == FUNCTION_DECL)
2267         {
2268           TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
2269           /* This is since we don't automatically
2270              copy the attributes of NEWDECL into OLDDECL.  */
2271           TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2272           /* If this clears `static', clear it in the identifier too.  */
2273           if (!TREE_PUBLIC (olddecl))
2274             TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
2275         }
2276     }
2277
2278   /* In c99, 'extern' declaration before (or after) 'inline' means this
2279      function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2280      is present.  */
2281   if (TREE_CODE (newdecl) == FUNCTION_DECL
2282       && !flag_gnu89_inline
2283       && (DECL_DECLARED_INLINE_P (newdecl)
2284           || DECL_DECLARED_INLINE_P (olddecl))
2285       && (!DECL_DECLARED_INLINE_P (newdecl)
2286           || !DECL_DECLARED_INLINE_P (olddecl)
2287           || !DECL_EXTERNAL (olddecl))
2288       && DECL_EXTERNAL (newdecl)
2289       && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl))
2290       && !current_function_decl)
2291     DECL_EXTERNAL (newdecl) = 0;
2292
2293   if (DECL_EXTERNAL (newdecl))
2294     {
2295       TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
2296       DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
2297
2298       /* An extern decl does not override previous storage class.  */
2299       TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2300       if (!DECL_EXTERNAL (newdecl))
2301         {
2302           DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2303           DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2304         }
2305     }
2306   else
2307     {
2308       TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
2309       TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2310     }
2311
2312   if (TREE_CODE (newdecl) == FUNCTION_DECL)
2313     {
2314       /* If we're redefining a function previously defined as extern
2315          inline, make sure we emit debug info for the inline before we
2316          throw it away, in case it was inlined into a function that
2317          hasn't been written out yet.  */
2318       if (new_is_definition && DECL_INITIAL (olddecl))
2319         /* The new defn must not be inline.  */
2320         DECL_UNINLINABLE (newdecl) = 1;
2321       else
2322         {
2323           /* If either decl says `inline', this fn is inline, unless
2324              its definition was passed already.  */
2325           if (DECL_DECLARED_INLINE_P (newdecl)
2326               || DECL_DECLARED_INLINE_P (olddecl))
2327             DECL_DECLARED_INLINE_P (newdecl) = 1;
2328
2329           DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2330             = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2331
2332           DECL_DISREGARD_INLINE_LIMITS (newdecl)
2333             = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2334             = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2335                || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2336         }
2337
2338       if (DECL_BUILT_IN (olddecl))
2339         {
2340           /* If redeclaring a builtin function, it stays built in.
2341              But it gets tagged as having been declared.  */
2342           DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2343           DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2344           C_DECL_DECLARED_BUILTIN (newdecl) = 1;
2345           if (new_is_prototype)
2346             C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
2347           else
2348             C_DECL_BUILTIN_PROTOTYPE (newdecl)
2349               = C_DECL_BUILTIN_PROTOTYPE (olddecl);
2350         }
2351
2352       /* Preserve function specific target and optimization options */
2353       if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2354           && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2355         DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2356           = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2357
2358       if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2359           && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2360         DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2361           = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2362
2363       /* Also preserve various other info from the definition.  */
2364       if (!new_is_definition)
2365         {
2366           tree t;
2367           DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2368           DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2369           DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2370           DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2371           gimple_set_body (newdecl, gimple_body (olddecl));
2372           DECL_ARGUMENTS (newdecl) = copy_list (DECL_ARGUMENTS (olddecl));
2373           for (t = DECL_ARGUMENTS (newdecl); t ; t = TREE_CHAIN (t))
2374             DECL_CONTEXT (t) = newdecl;
2375
2376           /* See if we've got a function to instantiate from.  */
2377           if (DECL_SAVED_TREE (olddecl))
2378             DECL_ABSTRACT_ORIGIN (newdecl)
2379               = DECL_ABSTRACT_ORIGIN (olddecl);
2380         }
2381     }
2382
2383   extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
2384
2385   /* Merge the USED information.  */
2386   if (TREE_USED (olddecl))
2387     TREE_USED (newdecl) = 1;
2388   else if (TREE_USED (newdecl))
2389     TREE_USED (olddecl) = 1;
2390
2391   /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2392      But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2393      DECL_ARGUMENTS (if appropriate).  */
2394   {
2395     unsigned olddecl_uid = DECL_UID (olddecl);
2396     tree olddecl_context = DECL_CONTEXT (olddecl);
2397     tree olddecl_arguments = NULL;
2398     if (TREE_CODE (olddecl) == FUNCTION_DECL)
2399       olddecl_arguments = DECL_ARGUMENTS (olddecl);
2400
2401     memcpy ((char *) olddecl + sizeof (struct tree_common),
2402             (char *) newdecl + sizeof (struct tree_common),
2403             sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2404     switch (TREE_CODE (olddecl))
2405       {
2406       case FUNCTION_DECL:
2407         gimple_set_body (olddecl, gimple_body (newdecl));
2408         /* fall through */
2409
2410       case FIELD_DECL:
2411       case VAR_DECL:
2412       case PARM_DECL:
2413       case LABEL_DECL:
2414       case RESULT_DECL:
2415       case CONST_DECL:
2416       case TYPE_DECL:
2417         memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2418                 (char *) newdecl + sizeof (struct tree_decl_common),
2419                 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
2420         break;
2421
2422       default:
2423
2424         memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2425                 (char *) newdecl + sizeof (struct tree_decl_common),
2426                 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
2427       }
2428     DECL_UID (olddecl) = olddecl_uid;
2429     DECL_CONTEXT (olddecl) = olddecl_context;
2430     if (TREE_CODE (olddecl) == FUNCTION_DECL)
2431       DECL_ARGUMENTS (olddecl) = olddecl_arguments;
2432   }
2433
2434   /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2435      so that encode_section_info has a chance to look at the new decl
2436      flags and attributes.  */
2437   if (DECL_RTL_SET_P (olddecl)
2438       && (TREE_CODE (olddecl) == FUNCTION_DECL
2439           || (TREE_CODE (olddecl) == VAR_DECL
2440               && TREE_STATIC (olddecl))))
2441     make_decl_rtl (olddecl);
2442
2443   /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
2444      and the definition is coming from the old version, cgraph needs
2445      to be called again.  */
2446   if (extern_changed && !new_is_definition
2447       && TREE_CODE (olddecl) == FUNCTION_DECL && DECL_INITIAL (olddecl))
2448     cgraph_mark_if_needed (olddecl);
2449 }
2450
2451 /* Handle when a new declaration NEWDECL has the same name as an old
2452    one OLDDECL in the same binding contour.  Prints an error message
2453    if appropriate.
2454
2455    If safely possible, alter OLDDECL to look like NEWDECL, and return
2456    true.  Otherwise, return false.  */
2457
2458 static bool
2459 duplicate_decls (tree newdecl, tree olddecl)
2460 {
2461   tree newtype = NULL, oldtype = NULL;
2462
2463   if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
2464     {
2465       /* Avoid `unused variable' and other warnings for OLDDECL.  */
2466       TREE_NO_WARNING (olddecl) = 1;
2467       return false;
2468     }
2469
2470   merge_decls (newdecl, olddecl, newtype, oldtype);
2471   return true;
2472 }
2473
2474 \f
2475 /* Check whether decl-node NEW_DECL shadows an existing declaration.  */
2476 static void
2477 warn_if_shadowing (tree new_decl)
2478 {
2479   struct c_binding *b;
2480
2481   /* Shadow warnings wanted?  */
2482   if (!warn_shadow
2483       /* No shadow warnings for internally generated vars.  */
2484       || DECL_IS_BUILTIN (new_decl)
2485       /* No shadow warnings for vars made for inlining.  */
2486       || DECL_FROM_INLINE (new_decl))
2487     return;
2488
2489   /* Is anything being shadowed?  Invisible decls do not count.  */
2490   for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
2491     if (b->decl && b->decl != new_decl && !b->invisible)
2492       {
2493         tree old_decl = b->decl;
2494
2495         if (old_decl == error_mark_node)
2496           {
2497             warning (OPT_Wshadow, "declaration of %q+D shadows previous "
2498                      "non-variable", new_decl);
2499             break;
2500           }
2501         else if (TREE_CODE (old_decl) == PARM_DECL)
2502           warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
2503                    new_decl);
2504         else if (DECL_FILE_SCOPE_P (old_decl))
2505           warning (OPT_Wshadow, "declaration of %q+D shadows a global "
2506                    "declaration", new_decl);
2507         else if (TREE_CODE (old_decl) == FUNCTION_DECL
2508                  && DECL_BUILT_IN (old_decl))
2509           {
2510             warning (OPT_Wshadow, "declaration of %q+D shadows "
2511                      "a built-in function", new_decl);
2512             break;
2513           }
2514         else
2515           warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
2516                    new_decl);
2517
2518         warning_at (DECL_SOURCE_LOCATION (old_decl), OPT_Wshadow,
2519                     "shadowed declaration is here");
2520
2521         break;
2522       }
2523 }
2524
2525 /* Record a decl-node X as belonging to the current lexical scope.
2526    Check for errors (such as an incompatible declaration for the same
2527    name already seen in the same scope).
2528
2529    Returns either X or an old decl for the same name.
2530    If an old decl is returned, it may have been smashed
2531    to agree with what X says.  */
2532
2533 tree
2534 pushdecl (tree x)
2535 {
2536   tree name = DECL_NAME (x);
2537   struct c_scope *scope = current_scope;
2538   struct c_binding *b;
2539   bool nested = false;
2540   location_t locus = DECL_SOURCE_LOCATION (x);
2541
2542   /* Must set DECL_CONTEXT for everything not at file scope or
2543      DECL_FILE_SCOPE_P won't work.  Local externs don't count
2544      unless they have initializers (which generate code).  */
2545   if (current_function_decl
2546       && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2547           || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2548     DECL_CONTEXT (x) = current_function_decl;
2549
2550   /* Anonymous decls are just inserted in the scope.  */
2551   if (!name)
2552     {
2553       bind (name, x, scope, /*invisible=*/false, /*nested=*/false,
2554             locus);
2555       return x;
2556     }
2557
2558   /* First, see if there is another declaration with the same name in
2559      the current scope.  If there is, duplicate_decls may do all the
2560      work for us.  If duplicate_decls returns false, that indicates
2561      two incompatible decls in the same scope; we are to silently
2562      replace the old one (duplicate_decls has issued all appropriate
2563      diagnostics).  In particular, we should not consider possible
2564      duplicates in the external scope, or shadowing.  */
2565   b = I_SYMBOL_BINDING (name);
2566   if (b && B_IN_SCOPE (b, scope))
2567     {
2568       struct c_binding *b_ext, *b_use;
2569       tree type = TREE_TYPE (x);
2570       tree visdecl = b->decl;
2571       tree vistype = TREE_TYPE (visdecl);
2572       if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2573           && COMPLETE_TYPE_P (TREE_TYPE (x)))
2574         b->inner_comp = false;
2575       b_use = b;
2576       b_ext = b;
2577       /* If this is an external linkage declaration, we should check
2578          for compatibility with the type in the external scope before
2579          setting the type at this scope based on the visible
2580          information only.  */
2581       if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2582         {
2583           while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2584             b_ext = b_ext->shadowed;
2585           if (b_ext)
2586             {
2587               b_use = b_ext;
2588               if (b_use->u.type)
2589                 TREE_TYPE (b_use->decl) = b_use->u.type;
2590             }
2591         }
2592       if (duplicate_decls (x, b_use->decl))
2593         {
2594           if (b_use != b)
2595             {
2596               /* Save the updated type in the external scope and
2597                  restore the proper type for this scope.  */
2598               tree thistype;
2599               if (comptypes (vistype, type))
2600                 thistype = composite_type (vistype, type);
2601               else
2602                 thistype = TREE_TYPE (b_use->decl);
2603               b_use->u.type = TREE_TYPE (b_use->decl);
2604               if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2605                   && DECL_BUILT_IN (b_use->decl))
2606                 thistype
2607                   = build_type_attribute_variant (thistype,
2608                                                   TYPE_ATTRIBUTES
2609                                                   (b_use->u.type));
2610               TREE_TYPE (b_use->decl) = thistype;
2611             }
2612           return b_use->decl;
2613         }
2614       else
2615         goto skip_external_and_shadow_checks;
2616     }
2617
2618   /* All declarations with external linkage, and all external
2619      references, go in the external scope, no matter what scope is
2620      current.  However, the binding in that scope is ignored for
2621      purposes of normal name lookup.  A separate binding structure is
2622      created in the requested scope; this governs the normal
2623      visibility of the symbol.
2624
2625      The binding in the externals scope is used exclusively for
2626      detecting duplicate declarations of the same object, no matter
2627      what scope they are in; this is what we do here.  (C99 6.2.7p2:
2628      All declarations that refer to the same object or function shall
2629      have compatible type; otherwise, the behavior is undefined.)  */
2630   if (DECL_EXTERNAL (x) || scope == file_scope)
2631     {
2632       tree type = TREE_TYPE (x);
2633       tree vistype = 0;
2634       tree visdecl = 0;
2635       bool type_saved = false;
2636       if (b && !B_IN_EXTERNAL_SCOPE (b)
2637           && (TREE_CODE (b->decl) == FUNCTION_DECL
2638               || TREE_CODE (b->decl) == VAR_DECL)
2639           && DECL_FILE_SCOPE_P (b->decl))
2640         {
2641           visdecl = b->decl;
2642           vistype = TREE_TYPE (visdecl);
2643         }
2644       if (scope != file_scope
2645           && !DECL_IN_SYSTEM_HEADER (x))
2646         warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2647
2648       while (b && !B_IN_EXTERNAL_SCOPE (b))
2649         {
2650           /* If this decl might be modified, save its type.  This is
2651              done here rather than when the decl is first bound
2652              because the type may change after first binding, through
2653              being completed or through attributes being added.  If we
2654              encounter multiple such decls, only the first should have
2655              its type saved; the others will already have had their
2656              proper types saved and the types will not have changed as
2657              their scopes will not have been re-entered.  */
2658           if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2659             {
2660               b->u.type = TREE_TYPE (b->decl);
2661               type_saved = true;
2662             }
2663           if (B_IN_FILE_SCOPE (b)
2664               && TREE_CODE (b->decl) == VAR_DECL
2665               && TREE_STATIC (b->decl)
2666               && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2667               && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2668               && TREE_CODE (type) == ARRAY_TYPE
2669               && TYPE_DOMAIN (type)
2670               && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2671               && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2672             {
2673               /* Array type completed in inner scope, which should be
2674                  diagnosed if the completion does not have size 1 and
2675                  it does not get completed in the file scope.  */
2676               b->inner_comp = true;
2677             }
2678           b = b->shadowed;
2679         }
2680
2681       /* If a matching external declaration has been found, set its
2682          type to the composite of all the types of that declaration.
2683          After the consistency checks, it will be reset to the
2684          composite of the visible types only.  */
2685       if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2686           && b->u.type)
2687         TREE_TYPE (b->decl) = b->u.type;
2688
2689       /* The point of the same_translation_unit_p check here is,
2690          we want to detect a duplicate decl for a construct like
2691          foo() { extern bar(); } ... static bar();  but not if
2692          they are in different translation units.  In any case,
2693          the static does not go in the externals scope.  */
2694       if (b
2695           && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2696           && duplicate_decls (x, b->decl))
2697         {
2698           tree thistype;
2699           if (vistype)
2700             {
2701               if (comptypes (vistype, type))
2702                 thistype = composite_type (vistype, type);
2703               else
2704                 thistype = TREE_TYPE (b->decl);
2705             }
2706           else
2707             thistype = type;
2708           b->u.type = TREE_TYPE (b->decl);
2709           if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2710             thistype
2711               = build_type_attribute_variant (thistype,
2712                                               TYPE_ATTRIBUTES (b->u.type));
2713           TREE_TYPE (b->decl) = thistype;
2714           bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true,
2715                 locus);
2716           return b->decl;
2717         }
2718       else if (TREE_PUBLIC (x))
2719         {
2720           if (visdecl && !b && duplicate_decls (x, visdecl))
2721             {
2722               /* An external declaration at block scope referring to a
2723                  visible entity with internal linkage.  The composite
2724                  type will already be correct for this scope, so we
2725                  just need to fall through to make the declaration in
2726                  this scope.  */
2727               nested = true;
2728               x = visdecl;
2729             }
2730           else
2731             {
2732               bind (name, x, external_scope, /*invisible=*/true,
2733                     /*nested=*/false, locus);
2734               nested = true;
2735             }
2736         }
2737     }
2738
2739   if (TREE_CODE (x) != PARM_DECL)
2740     warn_if_shadowing (x);
2741
2742  skip_external_and_shadow_checks:
2743   if (TREE_CODE (x) == TYPE_DECL)
2744     set_underlying_type (x);
2745
2746   bind (name, x, scope, /*invisible=*/false, nested, locus);
2747
2748   /* If x's type is incomplete because it's based on a
2749      structure or union which has not yet been fully declared,
2750      attach it to that structure or union type, so we can go
2751      back and complete the variable declaration later, if the
2752      structure or union gets fully declared.
2753
2754      If the input is erroneous, we can have error_mark in the type
2755      slot (e.g. "f(void a, ...)") - that doesn't count as an
2756      incomplete type.  */
2757   if (TREE_TYPE (x) != error_mark_node
2758       && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2759     {
2760       tree element = TREE_TYPE (x);
2761
2762       while (TREE_CODE (element) == ARRAY_TYPE)
2763         element = TREE_TYPE (element);
2764       element = TYPE_MAIN_VARIANT (element);
2765
2766       if ((TREE_CODE (element) == RECORD_TYPE
2767            || TREE_CODE (element) == UNION_TYPE)
2768           && (TREE_CODE (x) != TYPE_DECL
2769               || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2770           && !COMPLETE_TYPE_P (element))
2771         C_TYPE_INCOMPLETE_VARS (element)
2772           = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2773     }
2774   return x;
2775 }
2776
2777 /* Record X as belonging to file scope.
2778    This is used only internally by the Objective-C front end,
2779    and is limited to its needs.  duplicate_decls is not called;
2780    if there is any preexisting decl for this identifier, it is an ICE.  */
2781
2782 tree
2783 pushdecl_top_level (tree x)
2784 {
2785   tree name;
2786   bool nested = false;
2787   gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2788
2789   name = DECL_NAME (x);
2790
2791  gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2792
2793   if (TREE_PUBLIC (x))
2794     {
2795       bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false,
2796             UNKNOWN_LOCATION);
2797       nested = true;
2798     }
2799   if (file_scope)
2800     bind (name, x, file_scope, /*invisible=*/false, nested, UNKNOWN_LOCATION);
2801
2802   return x;
2803 }
2804 \f
2805 static void
2806 implicit_decl_warning (tree id, tree olddecl)
2807 {
2808   if (warn_implicit_function_declaration)
2809     {
2810       bool warned;
2811
2812       if (flag_isoc99)
2813         warned = pedwarn (input_location, OPT_Wimplicit_function_declaration,
2814                           "implicit declaration of function %qE", id);
2815       else
2816         warned = warning (OPT_Wimplicit_function_declaration,
2817                           G_("implicit declaration of function %qE"), id);
2818       if (olddecl && warned)
2819         locate_old_decl (olddecl);
2820     }
2821 }
2822
2823 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
2824    function of type int ().  */
2825
2826 tree
2827 implicitly_declare (location_t loc, tree functionid)
2828 {
2829   struct c_binding *b;
2830   tree decl = 0;
2831   tree asmspec_tree;
2832
2833   for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2834     {
2835       if (B_IN_SCOPE (b, external_scope))
2836         {
2837           decl = b->decl;
2838           break;
2839         }
2840     }
2841
2842   if (decl)
2843     {
2844       if (decl == error_mark_node)
2845         return decl;
2846
2847       /* FIXME: Objective-C has weird not-really-builtin functions
2848          which are supposed to be visible automatically.  They wind up
2849          in the external scope because they're pushed before the file
2850          scope gets created.  Catch this here and rebind them into the
2851          file scope.  */
2852       if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2853         {
2854           bind (functionid, decl, file_scope,
2855                 /*invisible=*/false, /*nested=*/true,
2856                 DECL_SOURCE_LOCATION (decl));
2857           return decl;
2858         }
2859       else
2860         {
2861           tree newtype = default_function_type;
2862           if (b->u.type)
2863             TREE_TYPE (decl) = b->u.type;
2864           /* Implicit declaration of a function already declared
2865              (somehow) in a different scope, or as a built-in.
2866              If this is the first time this has happened, warn;
2867              then recycle the old declaration but with the new type.  */
2868           if (!C_DECL_IMPLICIT (decl))
2869             {
2870               implicit_decl_warning (functionid, decl);
2871               C_DECL_IMPLICIT (decl) = 1;
2872             }
2873           if (DECL_BUILT_IN (decl))
2874             {
2875               newtype = build_type_attribute_variant (newtype,
2876                                                       TYPE_ATTRIBUTES
2877                                                       (TREE_TYPE (decl)));
2878               if (!comptypes (newtype, TREE_TYPE (decl)))
2879                 {
2880                   warning_at (loc, 0, "incompatible implicit declaration of "
2881                               "built-in function %qD", decl);
2882                   newtype = TREE_TYPE (decl);
2883                 }
2884             }
2885           else
2886             {
2887               if (!comptypes (newtype, TREE_TYPE (decl)))
2888                 {
2889                   error_at (loc, "incompatible implicit declaration of function %qD", decl);
2890                   locate_old_decl (decl);
2891                 }
2892             }
2893           b->u.type = TREE_TYPE (decl);
2894           TREE_TYPE (decl) = newtype;
2895           bind (functionid, decl, current_scope,
2896                 /*invisible=*/false, /*nested=*/true,
2897                 DECL_SOURCE_LOCATION (decl));
2898           return decl;
2899         }
2900     }
2901
2902   /* Not seen before.  */
2903   decl = build_decl (loc, FUNCTION_DECL, functionid, default_function_type);
2904   DECL_EXTERNAL (decl) = 1;
2905   TREE_PUBLIC (decl) = 1;
2906   C_DECL_IMPLICIT (decl) = 1;
2907   implicit_decl_warning (functionid, 0);
2908   asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
2909   if (asmspec_tree)
2910     set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
2911
2912   /* C89 says implicit declarations are in the innermost block.
2913      So we record the decl in the standard fashion.  */
2914   decl = pushdecl (decl);
2915
2916   /* No need to call objc_check_decl here - it's a function type.  */
2917   rest_of_decl_compilation (decl, 0, 0);
2918
2919   /* Write a record describing this implicit function declaration
2920      to the prototypes file (if requested).  */
2921   gen_aux_info_record (decl, 0, 1, 0);
2922
2923   /* Possibly apply some default attributes to this implicit declaration.  */
2924   decl_attributes (&decl, NULL_TREE, 0);
2925
2926   return decl;
2927 }
2928
2929 /* Issue an error message for a reference to an undeclared variable
2930    ID, including a reference to a builtin outside of function-call
2931    context.  Establish a binding of the identifier to error_mark_node
2932    in an appropriate scope, which will suppress further errors for the
2933    same identifier.  The error message should be given location LOC.  */
2934 void
2935 undeclared_variable (location_t loc, tree id)
2936 {
2937   static bool already = false;
2938   struct c_scope *scope;
2939
2940   if (current_function_decl == 0)
2941     {
2942       error_at (loc, "%qE undeclared here (not in a function)", id);
2943       scope = current_scope;
2944     }
2945   else
2946     {
2947       error_at (loc, "%qE undeclared (first use in this function)", id);
2948
2949       if (!already)
2950         {
2951           error_at (loc, "(Each undeclared identifier is reported only once");
2952           error_at (loc, "for each function it appears in.)");
2953           already = true;
2954         }
2955
2956       /* If we are parsing old-style parameter decls, current_function_decl
2957          will be nonnull but current_function_scope will be null.  */
2958       scope = current_function_scope ? current_function_scope : current_scope;
2959     }
2960   bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false,
2961         UNKNOWN_LOCATION);
2962 }
2963 \f
2964 /* Subroutine of lookup_label, declare_label, define_label: construct a
2965    LABEL_DECL with all the proper frills.  Also create a struct
2966    c_label_vars initialized for the current scope.  */
2967
2968 static tree
2969 make_label (location_t location, tree name, bool defining,
2970             struct c_label_vars **p_label_vars)
2971 {
2972   tree label = build_decl (location, LABEL_DECL, name, void_type_node);
2973   struct c_label_vars *label_vars;
2974
2975   DECL_CONTEXT (label) = current_function_decl;
2976   DECL_MODE (label) = VOIDmode;
2977
2978   label_vars = GGC_NEW (struct c_label_vars);
2979   label_vars->shadowed = NULL;
2980   set_spot_bindings (&label_vars->label_bindings, defining);
2981   label_vars->decls_in_scope = make_tree_vector ();
2982   label_vars->gotos = VEC_alloc (c_goto_bindings_p, gc, 0);
2983   *p_label_vars = label_vars;
2984
2985   return label;
2986 }
2987
2988 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
2989    Create one if none exists so far for the current function.
2990    This is called when a label is used in a goto expression or
2991    has its address taken.  */
2992
2993 tree
2994 lookup_label (tree name)
2995 {
2996   tree label;
2997   struct c_label_vars *label_vars;
2998
2999   if (current_function_decl == 0)
3000     {
3001       error ("label %qE referenced outside of any function", name);
3002       return 0;
3003     }
3004
3005   /* Use a label already defined or ref'd with this name, but not if
3006      it is inherited from a containing function and wasn't declared
3007      using __label__.  */
3008   label = I_LABEL_DECL (name);
3009   if (label && (DECL_CONTEXT (label) == current_function_decl
3010                 || C_DECLARED_LABEL_FLAG (label)))
3011     {
3012       /* If the label has only been declared, update its apparent
3013          location to point here, for better diagnostics if it
3014          turns out not to have been defined.  */
3015       if (DECL_INITIAL (label) == NULL_TREE)
3016         DECL_SOURCE_LOCATION (label) = input_location;
3017       return label;
3018     }
3019
3020   /* No label binding for that identifier; make one.  */
3021   label = make_label (input_location, name, false, &label_vars);
3022
3023   /* Ordinary labels go in the current function scope.  */
3024   bind_label (name, label, current_function_scope, label_vars);
3025
3026   return label;
3027 }
3028
3029 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3030    to LABEL.  */
3031
3032 static void
3033 warn_about_goto (location_t goto_loc, tree label, tree decl)
3034 {
3035   if (variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3036     error_at (goto_loc,
3037               "jump into scope of identifier with variably modified type");
3038   else
3039     warning_at (goto_loc, OPT_Wjump_misses_init,
3040                 "jump skips variable initialization");
3041   inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3042   inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3043 }
3044
3045 /* Look up a label because of a goto statement.  This is like
3046    lookup_label, but also issues any appropriate warnings.  */
3047
3048 tree
3049 lookup_label_for_goto (location_t loc, tree name)
3050 {
3051   tree label;
3052   struct c_label_vars *label_vars;
3053   unsigned int ix;
3054   tree decl;
3055
3056   label = lookup_label (name);
3057   if (label == NULL_TREE)
3058     return NULL_TREE;
3059
3060   /* If we are jumping to a different function, we can't issue any
3061      useful warnings.  */
3062   if (DECL_CONTEXT (label) != current_function_decl)
3063     {
3064       gcc_assert (C_DECLARED_LABEL_FLAG (label));
3065       return label;
3066     }
3067
3068   label_vars = I_LABEL_BINDING (name)->u.label;
3069
3070   /* If the label has not yet been defined, then push this goto on a
3071      list for possible later warnings.  */
3072   if (label_vars->label_bindings.scope == NULL)
3073     {
3074       struct c_goto_bindings *g;
3075
3076       g = GGC_NEW (struct c_goto_bindings);
3077       g->loc = loc;
3078       set_spot_bindings (&g->goto_bindings, true);
3079       VEC_safe_push (c_goto_bindings_p, gc, label_vars->gotos, g);
3080       return label;
3081     }
3082
3083   /* If there are any decls in label_vars->decls_in_scope, then this
3084      goto has missed the declaration of the decl.  This happens for a
3085      case like
3086        int i = 1;
3087       lab:
3088        ...
3089        goto lab;
3090      Issue a warning or error.  */
3091   for (ix = 0; VEC_iterate (tree, label_vars->decls_in_scope, ix, decl); ++ix)
3092     warn_about_goto (loc, label, decl);
3093
3094   if (label_vars->label_bindings.left_stmt_expr)
3095     {
3096       error_at (loc, "jump into statement expression");
3097       inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3098     }
3099
3100   return label;
3101 }
3102
3103 /* Make a label named NAME in the current function, shadowing silently
3104    any that may be inherited from containing functions or containing
3105    scopes.  This is called for __label__ declarations.  */
3106
3107 tree
3108 declare_label (tree name)
3109 {
3110   struct c_binding *b = I_LABEL_BINDING (name);
3111   tree label;
3112   struct c_label_vars *label_vars;
3113
3114   /* Check to make sure that the label hasn't already been declared
3115      at this scope */
3116   if (b && B_IN_CURRENT_SCOPE (b))
3117     {
3118       error ("duplicate label declaration %qE", name);
3119       locate_old_decl (b->decl);
3120
3121       /* Just use the previous declaration.  */
3122       return b->decl;
3123     }
3124
3125   label = make_label (input_location, name, false, &label_vars);
3126   C_DECLARED_LABEL_FLAG (label) = 1;
3127
3128   /* Declared labels go in the current scope.  */
3129   bind_label (name, label, current_scope, label_vars);
3130
3131   return label;
3132 }
3133
3134 /* When we define a label, issue any appropriate warnings if there are
3135    any gotos earlier in the function which jump to this label.  */
3136
3137 static void
3138 check_earlier_gotos (tree label, struct c_label_vars* label_vars)
3139 {
3140   unsigned int ix;
3141   struct c_goto_bindings *g;
3142
3143   for (ix = 0;
3144        VEC_iterate (c_goto_bindings_p, label_vars->gotos, ix, g);
3145        ++ix)
3146     {
3147       struct c_binding *b;
3148       struct c_scope *scope;
3149
3150       /* We have a goto to this label.  The goto is going forward.  In
3151          g->scope, the goto is going to skip any binding which was
3152          defined after g->bindings_in_scope.  */
3153       for (b = g->goto_bindings.scope->bindings;
3154            b != g->goto_bindings.bindings_in_scope;
3155            b = b->prev)
3156         {
3157           if (decl_jump_unsafe (b->decl))
3158             warn_about_goto (g->loc, label, b->decl);
3159         }
3160
3161       /* We also need to warn about decls defined in any scopes
3162          between the scope of the label and the scope of the goto.  */
3163       for (scope = label_vars->label_bindings.scope;
3164            scope != g->goto_bindings.scope;
3165            scope = scope->outer)
3166         {
3167           gcc_assert (scope != NULL);
3168           if (scope == label_vars->label_bindings.scope)
3169             b = label_vars->label_bindings.bindings_in_scope;
3170           else
3171             b = scope->bindings;
3172           for (; b != NULL; b = b->prev)
3173             {
3174               if (decl_jump_unsafe (b->decl))
3175                 warn_about_goto (g->loc, label, b->decl);
3176             }
3177         }
3178
3179       if (g->goto_bindings.stmt_exprs > 0)
3180         {
3181           error_at (g->loc, "jump into statement expression");
3182           inform (DECL_SOURCE_LOCATION (label), "label %qD defined here",
3183                   label);
3184         }
3185     }
3186
3187   /* Now that the label is defined, we will issue warnings about
3188      subsequent gotos to this label when we see them.  */
3189   VEC_truncate (c_goto_bindings_p, label_vars->gotos, 0);
3190   label_vars->gotos = NULL;
3191 }
3192
3193 /* Define a label, specifying the location in the source file.
3194    Return the LABEL_DECL node for the label, if the definition is valid.
3195    Otherwise return 0.  */
3196
3197 tree
3198 define_label (location_t location, tree name)
3199 {
3200   /* Find any preexisting label with this name.  It is an error
3201      if that label has already been defined in this function, or
3202      if there is a containing function with a declared label with
3203      the same name.  */
3204   tree label = I_LABEL_DECL (name);
3205
3206   if (label
3207       && ((DECL_CONTEXT (label) == current_function_decl
3208            && DECL_INITIAL (label) != 0)
3209           || (DECL_CONTEXT (label) != current_function_decl
3210               && C_DECLARED_LABEL_FLAG (label))))
3211     {
3212       error_at (location, "duplicate label %qD", label);
3213       locate_old_decl (label);
3214       return 0;
3215     }
3216   else if (label && DECL_CONTEXT (label) == current_function_decl)
3217     {
3218       struct c_label_vars *label_vars = I_LABEL_BINDING (name)->u.label;
3219
3220       /* The label has been used or declared already in this function,
3221          but not defined.  Update its location to point to this
3222          definition.  */
3223       DECL_SOURCE_LOCATION (label) = location;
3224       set_spot_bindings (&label_vars->label_bindings, true);
3225
3226       /* Issue warnings as required about any goto statements from
3227          earlier in the function.  */
3228       check_earlier_gotos (label, label_vars);
3229     }
3230   else
3231     {
3232       struct c_label_vars *label_vars;
3233
3234       /* No label binding for that identifier; make one.  */
3235       label = make_label (location, name, true, &label_vars);
3236
3237       /* Ordinary labels go in the current function scope.  */
3238       bind_label (name, label, current_function_scope, label_vars);
3239     }
3240
3241   if (!in_system_header && lookup_name (name))
3242     warning_at (location, OPT_Wtraditional,
3243                 "traditional C lacks a separate namespace "
3244                 "for labels, identifier %qE conflicts", name);
3245
3246   /* Mark label as having been defined.  */
3247   DECL_INITIAL (label) = error_mark_node;
3248   return label;
3249 }
3250 \f
3251 /* Get the bindings for a new switch statement.  This is used to issue
3252    warnings as appropriate for jumps from the switch to case or
3253    default labels.  */
3254
3255 struct c_spot_bindings *
3256 c_get_switch_bindings (void)
3257 {
3258   struct c_spot_bindings *switch_bindings;
3259
3260   switch_bindings = XNEW (struct c_spot_bindings);
3261   set_spot_bindings (switch_bindings, true);
3262   return switch_bindings;
3263 }
3264
3265 void
3266 c_release_switch_bindings (struct c_spot_bindings *bindings)
3267 {
3268   gcc_assert (bindings->stmt_exprs == 0 && !bindings->left_stmt_expr);
3269   XDELETE (bindings);
3270 }
3271
3272 /* This is called at the point of a case or default label to issue
3273    warnings about decls as needed.  It returns true if it found an
3274    error, not just a warning.  */
3275
3276 bool
3277 c_check_switch_jump_warnings (struct c_spot_bindings *switch_bindings,
3278                               location_t switch_loc, location_t case_loc)
3279 {
3280   bool saw_error;
3281   struct c_scope *scope;
3282
3283   saw_error = false;
3284   for (scope = current_scope;
3285        scope != switch_bindings->scope;
3286        scope = scope->outer)
3287     {
3288       struct c_binding *b;
3289
3290       gcc_assert (scope != NULL);
3291       for (b = scope->bindings; b != NULL; b = b->prev)
3292         {
3293           if (decl_jump_unsafe (b->decl))
3294             {
3295               if (variably_modified_type_p (TREE_TYPE (b->decl), NULL_TREE))
3296                 {
3297                   saw_error = true;
3298                   error_at (case_loc,
3299                             ("switch jumps into scope of identifier with "
3300                              "variably modified type"));
3301                 }
3302               else
3303                 warning_at (case_loc, OPT_Wjump_misses_init,
3304                             "switch jumps over variable initialization");
3305               inform (switch_loc, "switch starts here");
3306               inform (DECL_SOURCE_LOCATION (b->decl), "%qD declared here",
3307                       b->decl);
3308             }
3309         }
3310     }
3311
3312   if (switch_bindings->stmt_exprs > 0)
3313     {
3314       saw_error = true;
3315       error_at (case_loc, "switch jumps into statement expression");
3316       inform (switch_loc, "switch starts here");
3317     }
3318
3319   return saw_error;
3320 }
3321 \f
3322 /* Given NAME, an IDENTIFIER_NODE,
3323    return the structure (or union or enum) definition for that name.
3324    If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3325    CODE says which kind of type the caller wants;
3326    it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3327    If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3328    location where the tag was defined.
3329    If the wrong kind of type is found, an error is reported.  */
3330
3331 static tree
3332 lookup_tag (enum tree_code code, tree name, int thislevel_only,
3333             location_t *ploc)
3334 {
3335   struct c_binding *b = I_TAG_BINDING (name);
3336   int thislevel = 0;
3337
3338   if (!b || !b->decl)
3339     return 0;
3340
3341   /* We only care about whether it's in this level if
3342      thislevel_only was set or it might be a type clash.  */
3343   if (thislevel_only || TREE_CODE (b->decl) != code)
3344     {
3345       /* For our purposes, a tag in the external scope is the same as
3346          a tag in the file scope.  (Primarily relevant to Objective-C
3347          and its builtin structure tags, which get pushed before the
3348          file scope is created.)  */
3349       if (B_IN_CURRENT_SCOPE (b)
3350           || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
3351         thislevel = 1;
3352     }
3353
3354   if (thislevel_only && !thislevel)
3355     return 0;
3356
3357   if (TREE_CODE (b->decl) != code)
3358     {
3359       /* Definition isn't the kind we were looking for.  */
3360       pending_invalid_xref = name;
3361       pending_invalid_xref_location = input_location;
3362
3363       /* If in the same binding level as a declaration as a tag
3364          of a different type, this must not be allowed to
3365          shadow that tag, so give the error immediately.
3366          (For example, "struct foo; union foo;" is invalid.)  */
3367       if (thislevel)
3368         pending_xref_error ();
3369     }
3370
3371   if (ploc != NULL)
3372     *ploc = b->locus;
3373
3374   return b->decl;
3375 }
3376
3377 /* Print an error message now
3378    for a recent invalid struct, union or enum cross reference.
3379    We don't print them immediately because they are not invalid
3380    when used in the `struct foo;' construct for shadowing.  */
3381
3382 void
3383 pending_xref_error (void)
3384 {
3385   if (pending_invalid_xref != 0)
3386     error_at (pending_invalid_xref_location, "%qE defined as wrong kind of tag",
3387               pending_invalid_xref);
3388   pending_invalid_xref = 0;
3389 }
3390
3391 \f
3392 /* Look up NAME in the current scope and its superiors
3393    in the namespace of variables, functions and typedefs.
3394    Return a ..._DECL node of some kind representing its definition,
3395    or return 0 if it is undefined.  */
3396
3397 tree
3398 lookup_name (tree name)
3399 {
3400   struct c_binding *b = I_SYMBOL_BINDING (name);
3401   if (b && !b->invisible)
3402     return b->decl;
3403   return 0;
3404 }
3405
3406 /* Similar to `lookup_name' but look only at the indicated scope.  */
3407
3408 static tree
3409 lookup_name_in_scope (tree name, struct c_scope *scope)
3410 {
3411   struct c_binding *b;
3412
3413   for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
3414     if (B_IN_SCOPE (b, scope))
3415       return b->decl;
3416   return 0;
3417 }
3418 \f
3419 /* Create the predefined scalar types of C,
3420    and some nodes representing standard constants (0, 1, (void *) 0).
3421    Initialize the global scope.
3422    Make definitions for built-in primitive functions.  */
3423
3424 void
3425 c_init_decl_processing (void)
3426 {
3427   location_t save_loc = input_location;
3428
3429   /* Initialize reserved words for parser.  */
3430   c_parse_init ();
3431
3432   current_function_decl = 0;
3433
3434   gcc_obstack_init (&parser_obstack);
3435
3436   /* Make the externals scope.  */
3437   push_scope ();
3438   external_scope = current_scope;
3439
3440   /* Declarations from c_common_nodes_and_builtins must not be associated
3441      with this input file, lest we get differences between using and not
3442      using preprocessed headers.  */
3443   input_location = BUILTINS_LOCATION;
3444
3445   build_common_tree_nodes (flag_signed_char, false);
3446
3447   c_common_nodes_and_builtins ();
3448
3449   /* In C, comparisons and TRUTH_* expressions have type int.  */
3450   truthvalue_type_node = integer_type_node;
3451   truthvalue_true_node = integer_one_node;
3452   truthvalue_false_node = integer_zero_node;
3453
3454   /* Even in C99, which has a real boolean type.  */
3455   pushdecl (build_decl (UNKNOWN_LOCATION, TYPE_DECL, get_identifier ("_Bool"),
3456                         boolean_type_node));
3457
3458   input_location = save_loc;
3459
3460   pedantic_lvalues = true;
3461
3462   make_fname_decl = c_make_fname_decl;
3463   start_fname_decls ();
3464 }
3465
3466 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
3467    give the decl, NAME is the initialization string and TYPE_DEP
3468    indicates whether NAME depended on the type of the function.  As we
3469    don't yet implement delayed emission of static data, we mark the
3470    decl as emitted so it is not placed in the output.  Anything using
3471    it must therefore pull out the STRING_CST initializer directly.
3472    FIXME.  */
3473
3474 static tree
3475 c_make_fname_decl (location_t loc, tree id, int type_dep)
3476 {
3477   const char *name = fname_as_string (type_dep);
3478   tree decl, type, init;
3479   size_t length = strlen (name);
3480
3481   type = build_array_type (char_type_node,
3482                            build_index_type (size_int (length)));
3483   type = c_build_qualified_type (type, TYPE_QUAL_CONST);
3484
3485   decl = build_decl (loc, VAR_DECL, id, type);
3486
3487   TREE_STATIC (decl) = 1;
3488   TREE_READONLY (decl) = 1;
3489   DECL_ARTIFICIAL (decl) = 1;
3490
3491   init = build_string (length + 1, name);
3492   free (CONST_CAST (char *, name));
3493   TREE_TYPE (init) = type;
3494   DECL_INITIAL (decl) = init;
3495
3496   TREE_USED (decl) = 1;
3497
3498   if (current_function_decl
3499       /* For invalid programs like this:
3500
3501          void foo()
3502          const char* p = __FUNCTION__;
3503
3504          the __FUNCTION__ is believed to appear in K&R style function
3505          parameter declarator.  In that case we still don't have
3506          function_scope.  */
3507       && (!errorcount || current_function_scope))
3508     {
3509       DECL_CONTEXT (decl) = current_function_decl;
3510       bind (id, decl, current_function_scope,
3511             /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
3512     }
3513
3514   finish_decl (decl, loc, init, NULL_TREE, NULL_TREE);
3515
3516   return decl;
3517 }
3518
3519 tree
3520 c_builtin_function (tree decl)
3521 {
3522   tree type = TREE_TYPE (decl);
3523   tree   id = DECL_NAME (decl);
3524
3525   const char *name = IDENTIFIER_POINTER (id);
3526   C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
3527
3528   /* Should never be called on a symbol with a preexisting meaning.  */
3529   gcc_assert (!I_SYMBOL_BINDING (id));
3530
3531   bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false,
3532         UNKNOWN_LOCATION);
3533
3534   /* Builtins in the implementation namespace are made visible without
3535      needing to be explicitly declared.  See push_file_scope.  */
3536   if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3537     {
3538       TREE_CHAIN (decl) = visible_builtins;
3539       visible_builtins = decl;
3540     }
3541
3542   return decl;
3543 }
3544
3545 tree
3546 c_builtin_function_ext_scope (tree decl)
3547 {
3548   tree type = TREE_TYPE (decl);
3549   tree   id = DECL_NAME (decl);
3550
3551   const char *name = IDENTIFIER_POINTER (id);
3552   C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
3553
3554   /* Should never be called on a symbol with a preexisting meaning.  */
3555   gcc_assert (!I_SYMBOL_BINDING (id));
3556
3557   bind (id, decl, external_scope, /*invisible=*/false, /*nested=*/false,
3558         UNKNOWN_LOCATION);
3559
3560   /* Builtins in the implementation namespace are made visible without
3561      needing to be explicitly declared.  See push_file_scope.  */
3562   if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3563     {
3564       TREE_CHAIN (decl) = visible_builtins;
3565       visible_builtins = decl;
3566     }
3567
3568   return decl;
3569 }
3570 \f
3571 /* Called when a declaration is seen that contains no names to declare.
3572    If its type is a reference to a structure, union or enum inherited
3573    from a containing scope, shadow that tag name for the current scope
3574    with a forward reference.
3575    If its type defines a new named structure or union
3576    or defines an enum, it is valid but we need not do anything here.
3577    Otherwise, it is an error.  */
3578
3579 void
3580 shadow_tag (const struct c_declspecs *declspecs)
3581 {
3582   shadow_tag_warned (declspecs, 0);
3583 }
3584
3585 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
3586    but no pedwarn.  */
3587 void
3588 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
3589 {
3590   bool found_tag = false;
3591
3592   if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
3593     {
3594       tree value = declspecs->type;
3595       enum tree_code code = TREE_CODE (value);
3596
3597       if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3598         /* Used to test also that TYPE_SIZE (value) != 0.
3599            That caused warning for `struct foo;' at top level in the file.  */
3600         {
3601           tree name = TYPE_NAME (value);
3602           tree t;
3603
3604           found_tag = true;
3605
3606           if (declspecs->restrict_p)
3607             {
3608               error ("invalid use of %<restrict%>");
3609               warned = 1;
3610             }
3611
3612           if (name == 0)
3613             {
3614               if (warned != 1 && code != ENUMERAL_TYPE)
3615                 /* Empty unnamed enum OK */
3616                 {
3617                   pedwarn (input_location, 0,
3618                            "unnamed struct/union that defines no instances");
3619                   warned = 1;
3620                 }
3621             }
3622           else if (!declspecs->tag_defined_p
3623                    && declspecs->storage_class != csc_none)
3624             {
3625               if (warned != 1)
3626                 pedwarn (input_location, 0,
3627                          "empty declaration with storage class specifier "
3628                          "does not redeclare tag");
3629               warned = 1;
3630               pending_xref_error ();
3631             }
3632           else if (!declspecs->tag_defined_p
3633                    && (declspecs->const_p
3634                        || declspecs->volatile_p
3635                        || declspecs->restrict_p
3636                        || declspecs->address_space))
3637             {
3638               if (warned != 1)
3639                 pedwarn (input_location, 0,
3640                          "empty declaration with type qualifier "
3641                           "does not redeclare tag");
3642               warned = 1;
3643               pending_xref_error ();
3644             }
3645           else
3646             {
3647               pending_invalid_xref = 0;
3648               t = lookup_tag (code, name, 1, NULL);
3649
3650               if (t == 0)
3651                 {
3652                   t = make_node (code);
3653                   pushtag (input_location, name, t);
3654                 }
3655             }
3656         }
3657       else
3658         {
3659           if (warned != 1 && !in_system_header)
3660             {
3661               pedwarn (input_location, 0,
3662                        "useless type name in empty declaration");
3663               warned = 1;
3664             }
3665         }
3666     }
3667   else if (warned != 1 && !in_system_header && declspecs->typedef_p)
3668     {
3669       pedwarn (input_location, 0, "useless type name in empty declaration");
3670       warned = 1;
3671     }
3672
3673   pending_invalid_xref = 0;
3674
3675   if (declspecs->inline_p)
3676     {
3677       error ("%<inline%> in empty declaration");
3678       warned = 1;
3679     }
3680
3681   if (current_scope == file_scope && declspecs->storage_class == csc_auto)
3682     {
3683       error ("%<auto%> in file-scope empty declaration");
3684       warned = 1;
3685     }
3686
3687   if (current_scope == file_scope && declspecs->storage_class == csc_register)
3688     {
3689       error ("%<register%> in file-scope empty declaration");
3690       warned = 1;
3691     }
3692
3693   if (!warned && !in_system_header && declspecs->storage_class != csc_none)
3694     {
3695       warning (0, "useless storage class specifier in empty declaration");
3696       warned = 2;
3697     }
3698
3699   if (!warned && !in_system_header && declspecs->thread_p)
3700     {
3701       warning (0, "useless %<__thread%> in empty declaration");
3702       warned = 2;
3703     }
3704
3705   if (!warned && !in_system_header && (declspecs->const_p
3706                                        || declspecs->volatile_p
3707                                        || declspecs->restrict_p
3708                                        || declspecs->address_space))
3709     {
3710       warning (0, "useless type qualifier in empty declaration");
3711       warned = 2;
3712     }
3713
3714   if (warned != 1)
3715     {
3716       if (!found_tag)
3717         pedwarn (input_location, 0, "empty declaration");
3718     }
3719 }
3720 \f
3721
3722 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3723    bits.  SPECS represents declaration specifiers that the grammar
3724    only permits to contain type qualifiers and attributes.  */
3725
3726 int
3727 quals_from_declspecs (const struct c_declspecs *specs)
3728 {
3729   int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3730                | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3731                | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0)
3732                | (ENCODE_QUAL_ADDR_SPACE (specs->address_space)));
3733   gcc_assert (!specs->type
3734               && !specs->decl_attr
3735               && specs->typespec_word == cts_none
3736               && specs->storage_class == csc_none
3737               && !specs->typedef_p
3738               && !specs->explicit_signed_p
3739               && !specs->deprecated_p
3740               && !specs->long_p
3741               && !specs->long_long_p
3742               && !specs->short_p
3743               && !specs->signed_p
3744               && !specs->unsigned_p
3745               && !specs->complex_p
3746               && !specs->inline_p
3747               && !specs->thread_p);
3748   return quals;
3749 }
3750
3751 /* Construct an array declarator.  LOC is the location of the
3752    beginning of the array (usually the opening brace).  EXPR is the
3753    expression inside [], or NULL_TREE.  QUALS are the type qualifiers
3754    inside the [] (to be applied to the pointer to which a parameter
3755    array is converted).  STATIC_P is true if "static" is inside the
3756    [], false otherwise.  VLA_UNSPEC_P is true if the array is [*], a
3757    VLA of unspecified length which is nevertheless a complete type,
3758    false otherwise.  The field for the contained declarator is left to
3759    be filled in by set_array_declarator_inner.  */
3760
3761 struct c_declarator *
3762 build_array_declarator (location_t loc,
3763                         tree expr, struct c_declspecs *quals, bool static_p,
3764                         bool vla_unspec_p)
3765 {
3766   struct c_declarator *declarator = XOBNEW (&parser_obstack,
3767                                             struct c_declarator);
3768   declarator->id_loc = loc;
3769   declarator->kind = cdk_array;
3770   declarator->declarator = 0;
3771   declarator->u.array.dimen = expr;
3772   if (quals)
3773     {
3774       declarator->u.array.attrs = quals->attrs;
3775       declarator->u.array.quals = quals_from_declspecs (quals);
3776     }
3777   else
3778     {
3779       declarator->u.array.attrs = NULL_TREE;
3780       declarator->u.array.quals = 0;
3781     }
3782   declarator->u.array.static_p = static_p;
3783   declarator->u.array.vla_unspec_p = vla_unspec_p;
3784   if (!flag_isoc99)
3785     {
3786       if (static_p || quals != NULL)
3787         pedwarn (loc, OPT_pedantic,
3788                  "ISO C90 does not support %<static%> or type "
3789                  "qualifiers in parameter array declarators");
3790       if (vla_unspec_p)
3791         pedwarn (loc, OPT_pedantic,
3792                  "ISO C90 does not support %<[*]%> array declarators");
3793     }
3794   if (vla_unspec_p)
3795     {
3796       if (!current_scope->parm_flag)
3797         {
3798           /* C99 6.7.5.2p4 */
3799           error_at (loc, "%<[*]%> not allowed in other than "
3800                     "function prototype scope");
3801           declarator->u.array.vla_unspec_p = false;
3802           return NULL;
3803         }
3804       current_scope->had_vla_unspec = true;
3805     }
3806   return declarator;
3807 }
3808
3809 /* Set the contained declarator of an array declarator.  DECL is the
3810    declarator, as constructed by build_array_declarator; INNER is what
3811    appears on the left of the [].  */
3812
3813 struct c_declarator *
3814 set_array_declarator_inner (struct c_declarator *decl,
3815                             struct c_declarator *inner)
3816 {
3817   decl->declarator = inner;
3818   return decl;
3819 }
3820
3821 /* INIT is a constructor that forms DECL's initializer.  If the final
3822    element initializes a flexible array field, add the size of that
3823    initializer to DECL's size.  */
3824
3825 static void
3826 add_flexible_array_elts_to_size (tree decl, tree init)
3827 {
3828   tree elt, type;
3829
3830   if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
3831     return;
3832
3833   elt = VEC_last (constructor_elt, CONSTRUCTOR_ELTS (init))->value;
3834   type = TREE_TYPE (elt);
3835   if (TREE_CODE (type) == ARRAY_TYPE
3836       && TYPE_SIZE (type) == NULL_TREE
3837       && TYPE_DOMAIN (type) != NULL_TREE
3838       && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
3839     {
3840       complete_array_type (&type, elt, false);
3841       DECL_SIZE (decl)
3842         = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
3843       DECL_SIZE_UNIT (decl)
3844         = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
3845     }
3846 }
3847 \f
3848 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
3849    Set *EXPR, if EXPR not NULL, to any expression to be evaluated
3850    before the type name, and set *EXPR_CONST_OPERANDS, if
3851    EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
3852    appear in a constant expression.  */
3853
3854 tree
3855 groktypename (struct c_type_name *type_name, tree *expr,
3856               bool *expr_const_operands)
3857 {
3858   tree type;
3859   tree attrs = type_name->specs->attrs;
3860
3861   type_name->specs->attrs = NULL_TREE;
3862
3863   type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
3864                          false, NULL, &attrs, expr, expr_const_operands,
3865                          DEPRECATED_NORMAL);
3866
3867   /* Apply attributes.  */
3868   decl_attributes (&type, attrs, 0);
3869
3870   return type;
3871 }
3872
3873 /* Decode a declarator in an ordinary declaration or data definition.
3874    This is called as soon as the type information and variable name
3875    have been parsed, before parsing the initializer if any.
3876    Here we create the ..._DECL node, fill in its type,
3877    and put it on the list of decls for the current context.
3878    The ..._DECL node is returned as the value.
3879
3880    Exception: for arrays where the length is not specified,
3881    the type is left null, to be filled in by `finish_decl'.
3882
3883    Function definitions do not come here; they go to start_function
3884    instead.  However, external and forward declarations of functions
3885    do go through here.  Structure field declarations are done by
3886    grokfield and not through here.  */
3887
3888 tree
3889 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
3890             bool initialized, tree attributes)
3891 {
3892   tree decl;
3893   tree tem;
3894   tree expr = NULL_TREE;
3895   enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
3896
3897   /* An object declared as __attribute__((deprecated)) suppresses
3898      warnings of uses of other deprecated items.  */
3899   if (lookup_attribute ("deprecated", attributes))
3900     deprecated_state = DEPRECATED_SUPPRESS;
3901
3902   decl = grokdeclarator (declarator, declspecs,
3903                          NORMAL, initialized, NULL, &attributes, &expr, NULL,
3904                          deprecated_state);
3905   if (!decl)
3906     return 0;
3907
3908   if (expr)
3909     add_stmt (expr);
3910
3911   if (TREE_CODE (decl) != FUNCTION_DECL && MAIN_NAME_P (DECL_NAME (decl)))
3912     warning (OPT_Wmain, "%q+D is usually a function", decl);
3913
3914   if (initialized)
3915     /* Is it valid for this decl to have an initializer at all?
3916        If not, set INITIALIZED to zero, which will indirectly
3917        tell 'finish_decl' to ignore the initializer once it is parsed.  */
3918     switch (TREE_CODE (decl))
3919       {
3920       case TYPE_DECL:
3921         error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3922         initialized = 0;
3923         break;
3924
3925       case FUNCTION_DECL:
3926         error ("function %qD is initialized like a variable", decl);
3927         initialized = 0;
3928         break;
3929
3930       case PARM_DECL:
3931         /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE.  */
3932         error ("parameter %qD is initialized", decl);
3933         initialized = 0;
3934         break;
3935
3936       default:
3937         /* Don't allow initializations for incomplete types except for
3938            arrays which might be completed by the initialization.  */
3939
3940         /* This can happen if the array size is an undefined macro.
3941            We already gave a warning, so we don't need another one.  */
3942         if (TREE_TYPE (decl) == error_mark_node)
3943           initialized = 0;
3944         else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3945           {
3946             /* A complete type is ok if size is fixed.  */
3947
3948             if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3949                 || C_DECL_VARIABLE_SIZE (decl))
3950               {
3951                 error ("variable-sized object may not be initialized");
3952                 initialized = 0;
3953               }
3954           }
3955         else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3956           {
3957             error ("variable %qD has initializer but incomplete type", decl);
3958             initialized = 0;
3959           }
3960         else if (C_DECL_VARIABLE_SIZE (decl))
3961           {
3962             /* Although C99 is unclear about whether incomplete arrays
3963                of VLAs themselves count as VLAs, it does not make
3964                sense to permit them to be initialized given that
3965                ordinary VLAs may not be initialized.  */
3966             error ("variable-sized object may not be initialized");
3967             initialized = 0;
3968           }
3969       }
3970
3971   if (initialized)
3972     {
3973       if (current_scope == file_scope)
3974         TREE_STATIC (decl) = 1;
3975
3976       /* Tell 'pushdecl' this is an initialized decl
3977          even though we don't yet have the initializer expression.
3978          Also tell 'finish_decl' it may store the real initializer.  */
3979       DECL_INITIAL (decl) = error_mark_node;
3980     }
3981
3982   /* If this is a function declaration, write a record describing it to the
3983      prototypes file (if requested).  */
3984
3985   if (TREE_CODE (decl) == FUNCTION_DECL)
3986     gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3987
3988   /* ANSI specifies that a tentative definition which is not merged with
3989      a non-tentative definition behaves exactly like a definition with an
3990      initializer equal to zero.  (Section 3.7.2)
3991
3992      -fno-common gives strict ANSI behavior, though this tends to break
3993      a large body of code that grew up without this rule.
3994
3995      Thread-local variables are never common, since there's no entrenched
3996      body of code to break, and it allows more efficient variable references
3997      in the presence of dynamic linking.  */
3998
3999   if (TREE_CODE (decl) == VAR_DECL
4000       && !initialized
4001       && TREE_PUBLIC (decl)
4002       && !DECL_THREAD_LOCAL_P (decl)
4003       && !flag_no_common)
4004     DECL_COMMON (decl) = 1;
4005
4006   /* Set attributes here so if duplicate decl, will have proper attributes.  */
4007   decl_attributes (&decl, attributes, 0);
4008
4009   /* Handle gnu_inline attribute.  */
4010   if (declspecs->inline_p
4011       && !flag_gnu89_inline
4012       && TREE_CODE (decl) == FUNCTION_DECL
4013       && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl))
4014           || current_function_decl))
4015     {
4016       if (declspecs->storage_class == csc_auto && current_scope != file_scope)
4017         ;
4018       else if (declspecs->storage_class != csc_static)
4019         DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
4020     }
4021
4022   if (TREE_CODE (decl) == FUNCTION_DECL
4023       && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
4024     {
4025       struct c_declarator *ce = declarator;
4026
4027       if (ce->kind == cdk_pointer)
4028         ce = declarator->declarator;
4029       if (ce->kind == cdk_function)
4030         {
4031           tree args = ce->u.arg_info->parms;
4032           for (; args; args = TREE_CHAIN (args))
4033             {
4034               tree type = TREE_TYPE (args);
4035               if (type && INTEGRAL_TYPE_P (type)
4036                   && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
4037                 DECL_ARG_TYPE (args) = integer_type_node;
4038             }
4039         }
4040     }
4041
4042   if (TREE_CODE (decl) == FUNCTION_DECL
4043       && DECL_DECLARED_INLINE_P (decl)
4044       && DECL_UNINLINABLE (decl)
4045       && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4046     warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
4047              decl);
4048
4049   /* C99 6.7.4p3: An inline definition of a function with external
4050      linkage shall not contain a definition of a modifiable object
4051      with static storage duration...  */
4052   if (TREE_CODE (decl) == VAR_DECL
4053       && current_scope != file_scope
4054       && TREE_STATIC (decl)
4055       && !TREE_READONLY (decl)
4056       && DECL_DECLARED_INLINE_P (current_function_decl)
4057       && DECL_EXTERNAL (current_function_decl))
4058     record_inline_static (input_location, current_function_decl,
4059                           decl, csi_modifiable);
4060
4061   /* Add this decl to the current scope.
4062      TEM may equal DECL or it may be a previous decl of the same name.  */
4063   tem = pushdecl (decl);
4064
4065   if (initialized && DECL_EXTERNAL (tem))
4066     {
4067       DECL_EXTERNAL (tem) = 0;
4068       TREE_STATIC (tem) = 1;
4069     }
4070
4071   return tem;
4072 }
4073
4074 /* Finish processing of a declaration;
4075    install its initial value.
4076    If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4077    If the length of an array type is not known before,
4078    it must be determined now, from the initial value, or it is an error.
4079
4080    INIT_LOC is the location of the initial value.  */
4081
4082 void
4083 finish_decl (tree decl, location_t init_loc, tree init,
4084              tree origtype, tree asmspec_tree)
4085 {
4086   tree type;
4087   bool was_incomplete = (DECL_SIZE (decl) == 0);
4088   const char *asmspec = 0;
4089
4090   /* If a name was specified, get the string.  */
4091   if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
4092       && DECL_FILE_SCOPE_P (decl))
4093     asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
4094   if (asmspec_tree)
4095     asmspec = TREE_STRING_POINTER (asmspec_tree);
4096
4097   if (TREE_CODE (decl) == VAR_DECL
4098       && TREE_STATIC (decl)
4099       && global_bindings_p ())
4100     /* So decl is a global variable. Record the types it uses
4101        so that we can decide later to emit debug info for them.  */
4102     record_types_used_by_current_var_decl (decl);
4103
4104   /* If `start_decl' didn't like having an initialization, ignore it now.  */
4105   if (init != 0 && DECL_INITIAL (decl) == 0)
4106     init = 0;
4107
4108   /* Don't crash if parm is initialized.  */
4109   if (TREE_CODE (decl) == PARM_DECL)
4110     init = 0;
4111
4112   if (init)
4113     store_init_value (init_loc, decl, init, origtype);
4114
4115   if (c_dialect_objc () && (TREE_CODE (decl) == VAR_DECL
4116                             || TREE_CODE (decl) == FUNCTION_DECL
4117                             || TREE_CODE (decl) == FIELD_DECL))
4118     objc_check_decl (decl);
4119
4120   type = TREE_TYPE (decl);
4121
4122   /* Deduce size of array from initialization, if not already known.  */
4123   if (TREE_CODE (type) == ARRAY_TYPE
4124       && TYPE_DOMAIN (type) == 0
4125       && TREE_CODE (decl) != TYPE_DECL)
4126     {
4127       bool do_default
4128         = (TREE_STATIC (decl)
4129            /* Even if pedantic, an external linkage array
4130               may have incomplete type at first.  */
4131            ? pedantic && !TREE_PUBLIC (decl)
4132            : !DECL_EXTERNAL (decl));
4133       int failure
4134         = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
4135                                do_default);
4136
4137       /* Get the completed type made by complete_array_type.  */
4138       type = TREE_TYPE (decl);
4139
4140       switch (failure)
4141         {
4142         case 1:
4143           error ("initializer fails to determine size of %q+D", decl);
4144           break;
4145
4146         case 2:
4147           if (do_default)
4148             error ("array size missing in %q+D", decl);
4149           /* If a `static' var's size isn't known,
4150              make it extern as well as static, so it does not get
4151              allocated.
4152              If it is not `static', then do not mark extern;
4153              finish_incomplete_decl will give it a default size
4154              and it will get allocated.  */
4155           else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
4156             DECL_EXTERNAL (decl) = 1;
4157           break;
4158
4159         case 3:
4160           error ("zero or negative size array %q+D", decl);
4161           break;
4162
4163         case 0:
4164           /* For global variables, update the copy of the type that
4165              exists in the binding.  */
4166           if (TREE_PUBLIC (decl))
4167             {
4168               struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
4169               while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
4170                 b_ext = b_ext->shadowed;
4171               if (b_ext)
4172                 {
4173                   if (b_ext->u.type)
4174                     b_ext->u.type = composite_type (b_ext->u.type, type);
4175                   else
4176                     b_ext->u.type = type;
4177                 }
4178             }
4179           break;
4180
4181         default:
4182           gcc_unreachable ();
4183         }
4184
4185       if (DECL_INITIAL (decl))
4186         TREE_TYPE (DECL_INITIAL (decl)) = type;
4187
4188       layout_decl (decl, 0);
4189     }
4190
4191   if (TREE_CODE (decl) == VAR_DECL)
4192     {
4193       if (init && TREE_CODE (init) == CONSTRUCTOR)
4194         add_flexible_array_elts_to_size (decl, init);
4195
4196       if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
4197           && COMPLETE_TYPE_P (TREE_TYPE (decl)))
4198         layout_decl (decl, 0);
4199
4200       if (DECL_SIZE (decl) == 0
4201           /* Don't give an error if we already gave one earlier.  */
4202           && TREE_TYPE (decl) != error_mark_node
4203           && (TREE_STATIC (decl)
4204               /* A static variable with an incomplete type
4205                  is an error if it is initialized.
4206                  Also if it is not file scope.
4207                  Otherwise, let it through, but if it is not `extern'
4208                  then it may cause an error message later.  */
4209               ? (DECL_INITIAL (decl) != 0
4210                  || !DECL_FILE_SCOPE_P (decl))
4211               /* An automatic variable with an incomplete type
4212                  is an error.  */
4213               : !DECL_EXTERNAL (decl)))
4214          {
4215            error ("storage size of %q+D isn%'t known", decl);
4216            TREE_TYPE (decl) = error_mark_node;
4217          }
4218
4219       if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
4220           && DECL_SIZE (decl) != 0)
4221         {
4222           if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
4223             constant_expression_warning (DECL_SIZE (decl));
4224           else
4225             {
4226               error ("storage size of %q+D isn%'t constant", decl);
4227               TREE_TYPE (decl) = error_mark_node;
4228             }
4229         }
4230
4231       if (TREE_USED (type))
4232         TREE_USED (decl) = 1;
4233     }
4234
4235   /* If this is a function and an assembler name is specified, reset DECL_RTL
4236      so we can give it its new name.  Also, update built_in_decls if it
4237      was a normal built-in.  */
4238   if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
4239     {
4240       if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
4241         set_builtin_user_assembler_name (decl, asmspec);
4242       set_user_assembler_name (decl, asmspec);
4243     }
4244
4245   /* If #pragma weak was used, mark the decl weak now.  */
4246   maybe_apply_pragma_weak (decl);
4247
4248   /* Output the assembler code and/or RTL code for variables and functions,
4249      unless the type is an undefined structure or union.
4250      If not, it will get done when the type is completed.  */
4251
4252   if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
4253     {
4254       /* Determine the ELF visibility.  */
4255       if (TREE_PUBLIC (decl))
4256         c_determine_visibility (decl);
4257
4258       /* This is a no-op in c-lang.c or something real in objc-act.c.  */
4259       if (c_dialect_objc ())
4260         objc_check_decl (decl);
4261
4262       if (asmspec)
4263         {
4264           /* If this is not a static variable, issue a warning.
4265              It doesn't make any sense to give an ASMSPEC for an
4266              ordinary, non-register local variable.  Historically,
4267              GCC has accepted -- but ignored -- the ASMSPEC in
4268              this case.  */
4269           if (!DECL_FILE_SCOPE_P (decl)
4270               && TREE_CODE (decl) == VAR_DECL
4271               && !C_DECL_REGISTER (decl)
4272               && !TREE_STATIC (decl))
4273             warning (0, "ignoring asm-specifier for non-static local "
4274                      "variable %q+D", decl);
4275           else
4276             set_user_assembler_name (decl, asmspec);
4277         }
4278
4279       if (DECL_FILE_SCOPE_P (decl))
4280         {
4281           if (DECL_INITIAL (decl) == NULL_TREE
4282               || DECL_INITIAL (decl) == error_mark_node)
4283             /* Don't output anything
4284                when a tentative file-scope definition is seen.
4285                But at end of compilation, do output code for them.  */
4286             DECL_DEFER_OUTPUT (decl) = 1;
4287           rest_of_decl_compilation (decl, true, 0);
4288         }
4289       else
4290         {
4291           /* In conjunction with an ASMSPEC, the `register'
4292              keyword indicates that we should place the variable
4293              in a particular register.  */
4294           if (asmspec && C_DECL_REGISTER (decl))
4295             {
4296               DECL_HARD_REGISTER (decl) = 1;
4297               /* This cannot be done for a structure with volatile
4298                  fields, on which DECL_REGISTER will have been
4299                  reset.  */
4300               if (!DECL_REGISTER (decl))
4301                 error ("cannot put object with volatile field into register");
4302             }
4303
4304           if (TREE_CODE (decl) != FUNCTION_DECL)
4305             {
4306               /* If we're building a variable sized type, and we might be
4307                  reachable other than via the top of the current binding
4308                  level, then create a new BIND_EXPR so that we deallocate
4309                  the object at the right time.  */
4310               /* Note that DECL_SIZE can be null due to errors.  */
4311               if (DECL_SIZE (decl)
4312                   && !TREE_CONSTANT (DECL_SIZE (decl))
4313                   && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
4314                 {
4315                   tree bind;
4316                   bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
4317                   TREE_SIDE_EFFECTS (bind) = 1;
4318                   add_stmt (bind);
4319                   BIND_EXPR_BODY (bind) = push_stmt_list ();
4320                 }
4321               add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl),
4322                                     DECL_EXPR, decl));
4323             }
4324         }
4325
4326
4327       if (!DECL_FILE_SCOPE_P (decl))
4328         {
4329           /* Recompute the RTL of a local array now
4330              if it used to be an incomplete type.  */
4331           if (was_incomplete
4332               && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
4333             {
4334               /* If we used it already as memory, it must stay in memory.  */
4335               TREE_ADDRESSABLE (decl) = TREE_USED (decl);
4336               /* If it's still incomplete now, no init will save it.  */
4337               if (DECL_SIZE (decl) == 0)
4338                 DECL_INITIAL (decl) = 0;
4339             }
4340         }
4341     }
4342
4343   if (TREE_CODE (decl) == TYPE_DECL)
4344     {
4345       if (!DECL_FILE_SCOPE_P (decl)
4346           && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
4347         add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl));
4348
4349       rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
4350     }
4351
4352   /* At the end of a declaration, throw away any variable type sizes
4353      of types defined inside that declaration.  There is no use
4354      computing them in the following function definition.  */
4355   if (current_scope == file_scope)
4356     get_pending_sizes ();
4357
4358   /* Install a cleanup (aka destructor) if one was given.  */
4359   if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
4360     {
4361       tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
4362       if (attr)
4363         {
4364           tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
4365           tree cleanup_decl = lookup_name (cleanup_id);
4366           tree cleanup;
4367           VEC(tree,gc) *vec;
4368
4369           /* Build "cleanup(&decl)" for the destructor.  */
4370           cleanup = build_unary_op (input_location, ADDR_EXPR, decl, 0);
4371           vec = VEC_alloc (tree, gc, 1);
4372           VEC_quick_push (tree, vec, cleanup);
4373           cleanup = build_function_call_vec (DECL_SOURCE_LOCATION (decl),
4374                                              cleanup_decl, vec, NULL);
4375           VEC_free (tree, gc, vec);
4376
4377           /* Don't warn about decl unused; the cleanup uses it.  */
4378           TREE_USED (decl) = 1;
4379           TREE_USED (cleanup_decl) = 1;
4380
4381           push_cleanup (decl, cleanup, false);
4382         }
4383     }
4384
4385   if (warn_cxx_compat
4386       && TREE_CODE (decl) == VAR_DECL
4387       && TREE_READONLY (decl)
4388       && !DECL_EXTERNAL (decl)
4389       && DECL_INITIAL (decl) == NULL_TREE)
4390     warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4391                 "uninitialized const %qD is invalid in C++", decl);
4392 }
4393
4394 /* Given a parsed parameter declaration, decode it into a PARM_DECL.  */
4395
4396 tree
4397 grokparm (const struct c_parm *parm)
4398 {
4399   tree attrs = parm->attrs;
4400   tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
4401                               NULL, &attrs, NULL, NULL, DEPRECATED_NORMAL);
4402
4403   decl_attributes (&decl, attrs, 0);
4404
4405   return decl;
4406 }
4407
4408 /* Given a parsed parameter declaration, decode it into a PARM_DECL
4409    and push that on the current scope.  */
4410
4411 void
4412 push_parm_decl (const struct c_parm *parm)
4413 {
4414   tree attrs = parm->attrs;
4415   tree decl;
4416
4417   decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL,
4418                          &attrs, NULL, NULL, DEPRECATED_NORMAL);
4419   decl_attributes (&decl, attrs, 0);
4420
4421   decl = pushdecl (decl);
4422
4423   finish_decl (decl, input_location, NULL_TREE, NULL_TREE, NULL_TREE);
4424 }
4425
4426 /* Mark all the parameter declarations to date as forward decls.
4427    Also diagnose use of this extension.  */
4428
4429 void
4430 mark_forward_parm_decls (void)
4431 {
4432   struct c_binding *b;
4433
4434   if (pedantic && !current_scope->warned_forward_parm_decls)
4435     {
4436       pedwarn (input_location, OPT_pedantic,
4437                "ISO C forbids forward parameter declarations");
4438       current_scope->warned_forward_parm_decls = true;
4439     }
4440
4441   for (b = current_scope->bindings; b; b = b->prev)
4442     if (TREE_CODE (b->decl) == PARM_DECL)
4443       TREE_ASM_WRITTEN (b->decl) = 1;
4444 }
4445 \f
4446 /* Build a COMPOUND_LITERAL_EXPR.  TYPE is the type given in the compound
4447    literal, which may be an incomplete array type completed by the
4448    initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
4449    literal.  NON_CONST is true if the initializers contain something
4450    that cannot occur in a constant expression.  */
4451
4452 tree
4453 build_compound_literal (location_t loc, tree type, tree init, bool non_const)
4454 {
4455   /* We do not use start_decl here because we have a type, not a declarator;
4456      and do not use finish_decl because the decl should be stored inside
4457      the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR.  */
4458   tree decl;
4459   tree complit;
4460   tree stmt;
4461
4462   if (type == error_mark_node)
4463     return error_mark_node;
4464
4465   decl = build_decl (loc, VAR_DECL, NULL_TREE, type);
4466   DECL_EXTERNAL (decl) = 0;
4467   TREE_PUBLIC (decl) = 0;
4468   TREE_STATIC (decl) = (current_scope == file_scope);
4469   DECL_CONTEXT (decl) = current_function_decl;
4470   TREE_USED (decl) = 1;
4471   TREE_TYPE (decl) = type;
4472   TREE_READONLY (decl) = TYPE_READONLY (type);
4473   store_init_value (loc, decl, init, NULL_TREE);
4474
4475   if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
4476     {
4477       int failure = complete_array_type (&TREE_TYPE (decl),
4478                                          DECL_INITIAL (decl), true);
4479       gcc_assert (!failure);
4480
4481       type = TREE_TYPE (decl);
4482       TREE_TYPE (DECL_INITIAL (decl)) = type;
4483     }
4484
4485   if (type == error_mark_node || !COMPLETE_TYPE_P (type))
4486     return error_mark_node;
4487
4488   stmt = build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl);
4489   complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
4490   TREE_SIDE_EFFECTS (complit) = 1;
4491
4492   layout_decl (decl, 0);
4493
4494   if (TREE_STATIC (decl))
4495     {
4496       /* This decl needs a name for the assembler output.  */
4497       set_compound_literal_name (decl);
4498       DECL_DEFER_OUTPUT (decl) = 1;
4499       DECL_COMDAT (decl) = 1;
4500       DECL_ARTIFICIAL (decl) = 1;
4501       DECL_IGNORED_P (decl) = 1;
4502       pushdecl (decl);
4503       rest_of_decl_compilation (decl, 1, 0);
4504     }
4505
4506   if (non_const)
4507     {
4508       complit = build2 (C_MAYBE_CONST_EXPR, type, NULL, complit);
4509       C_MAYBE_CONST_EXPR_NON_CONST (complit) = 1;
4510     }
4511
4512   return complit;
4513 }
4514
4515 /* Check the type of a compound literal.  Here we just check that it
4516    is valid for C++.  */
4517
4518 void
4519 check_compound_literal_type (location_t loc, struct c_type_name *type_name)
4520 {
4521   if (warn_cxx_compat && type_name->specs->tag_defined_p)
4522     warning_at (loc, OPT_Wc___compat,
4523                 "defining a type in a compound literal is invalid in C++");
4524 }
4525 \f
4526 /* Determine whether TYPE is a structure with a flexible array member,
4527    or a union containing such a structure (possibly recursively).  */
4528
4529 static bool
4530 flexible_array_type_p (tree type)
4531 {
4532   tree x;
4533   switch (TREE_CODE (type))
4534     {
4535     case RECORD_TYPE:
4536       x = TYPE_FIELDS (type);
4537       if (x == NULL_TREE)
4538         return false;
4539       while (TREE_CHAIN (x) != NULL_TREE)
4540         x = TREE_CHAIN (x);
4541       if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
4542           && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
4543           && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
4544           && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
4545         return true;
4546       return false;
4547     case UNION_TYPE:
4548       for (x = TYPE_FIELDS (type); x != NULL_TREE; x = TREE_CHAIN (x))
4549         {
4550           if (flexible_array_type_p (TREE_TYPE (x)))
4551             return true;
4552         }
4553       return false;
4554     default:
4555     return false;
4556   }
4557 }
4558 \f
4559 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
4560    replacing with appropriate values if they are invalid.  */
4561 static void
4562 check_bitfield_type_and_width (tree *type, tree *width, tree orig_name)
4563 {
4564   tree type_mv;
4565   unsigned int max_width;
4566   unsigned HOST_WIDE_INT w;
4567   const char *name = (orig_name
4568                       ? identifier_to_locale (IDENTIFIER_POINTER (orig_name))
4569                       : _("<anonymous>"));
4570
4571   /* Detect and ignore out of range field width and process valid
4572      field widths.  */
4573   if (!INTEGRAL_TYPE_P (TREE_TYPE (*width)))
4574     {
4575       error ("bit-field %qs width not an integer constant", name);
4576       *width = integer_one_node;
4577     }
4578   else
4579     {
4580       if (TREE_CODE (*width) != INTEGER_CST)
4581         {
4582           *width = c_fully_fold (*width, false, NULL);
4583           if (TREE_CODE (*width) == INTEGER_CST)
4584             pedwarn (input_location, OPT_pedantic,
4585                      "bit-field %qs width not an integer constant expression",
4586                      name);
4587         }
4588       if (TREE_CODE (*width) != INTEGER_CST)
4589         {
4590           error ("bit-field %qs width not an integer constant", name);
4591           *width = integer_one_node;
4592         }
4593       constant_expression_warning (*width);
4594       if (tree_int_cst_sgn (*width) < 0)
4595         {
4596           error ("negative width in bit-field %qs", name);
4597           *width = integer_one_node;
4598         }
4599       else if (integer_zerop (*width) && orig_name)
4600         {
4601           error ("zero width for bit-field %qs", name);
4602           *width = integer_one_node;
4603         }
4604     }
4605
4606   /* Detect invalid bit-field type.  */
4607   if (TREE_CODE (*type) != INTEGER_TYPE
4608       && TREE_CODE (*type) != BOOLEAN_TYPE
4609       && TREE_CODE (*type) != ENUMERAL_TYPE)
4610     {
4611       error ("bit-field %qs has invalid type", name);
4612       *type = unsigned_type_node;
4613     }
4614
4615   type_mv = TYPE_MAIN_VARIANT (*type);
4616   if (!in_system_header
4617       && type_mv != integer_type_node
4618       && type_mv != unsigned_type_node
4619       && type_mv != boolean_type_node)
4620     pedwarn (input_location, OPT_pedantic,
4621              "type of bit-field %qs is a GCC extension", name);
4622
4623   max_width = TYPE_PRECISION (*type);
4624
4625   if (0 < compare_tree_int (*width, max_width))
4626     {
4627       error ("width of %qs exceeds its type", name);
4628       w = max_width;
4629       *width = build_int_cst (NULL_TREE, w);
4630     }
4631   else
4632     w = tree_low_cst (*width, 1);
4633
4634   if (TREE_CODE (*type) == ENUMERAL_TYPE)
4635     {
4636       struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
4637       if (!lt
4638           || w < tree_int_cst_min_precision (lt->enum_min, TYPE_UNSIGNED (*type))
4639           || w < tree_int_cst_min_precision (lt->enum_max, TYPE_UNSIGNED (*type)))
4640         warning (0, "%qs is narrower than values of its type", name);
4641     }
4642 }
4643
4644 \f
4645
4646 /* Print warning about variable length array if necessary.  */
4647
4648 static void
4649 warn_variable_length_array (tree name, tree size)
4650 {
4651   int const_size = TREE_CONSTANT (size);
4652
4653   if (!flag_isoc99 && pedantic && warn_vla != 0)
4654     {
4655       if (const_size)
4656         {
4657           if (name)
4658             pedwarn (input_location, OPT_Wvla,
4659                      "ISO C90 forbids array %qE whose size "
4660                      "can%'t be evaluated",
4661                      name);
4662           else
4663             pedwarn (input_location, OPT_Wvla, "ISO C90 forbids array whose size "
4664                      "can%'t be evaluated");
4665         }
4666       else
4667         {
4668           if (name)
4669             pedwarn (input_location, OPT_Wvla,
4670                      "ISO C90 forbids variable length array %qE",
4671                      name);
4672           else
4673             pedwarn (input_location, OPT_Wvla, "ISO C90 forbids variable length array");
4674         }
4675     }
4676   else if (warn_vla > 0)
4677     {
4678       if (const_size)
4679         {
4680           if (name)
4681             warning (OPT_Wvla,
4682                      "the size of array %qE can"
4683                      "%'t be evaluated", name);
4684           else
4685             warning (OPT_Wvla,
4686                      "the size of array can %'t be evaluated");
4687         }
4688       else
4689         {
4690           if (name)
4691             warning (OPT_Wvla,
4692                      "variable length array %qE is used",
4693                      name);
4694           else
4695             warning (OPT_Wvla,
4696                      "variable length array is used");
4697         }
4698     }
4699 }
4700
4701 /* Given a size SIZE that may not be a constant, return a SAVE_EXPR to
4702    serve as the actual size-expression for a type or decl.  This is
4703    like variable_size in stor-layout.c, but we make global_bindings_p
4704    return negative to avoid calls to that function from outside the
4705    front end resulting in errors at file scope, then call this version
4706    instead from front-end code.  */
4707
4708 static tree
4709 c_variable_size (tree size)
4710 {
4711   tree save;
4712
4713   if (TREE_CONSTANT (size))
4714     return size;
4715
4716   size = save_expr (size);
4717
4718   save = skip_simple_arithmetic (size);
4719
4720   if (cfun && cfun->dont_save_pending_sizes_p)
4721     return size;
4722
4723   if (!global_bindings_p ())
4724     put_pending_size (save);
4725
4726   return size;
4727 }
4728
4729 /* Given declspecs and a declarator,
4730    determine the name and type of the object declared
4731    and construct a ..._DECL node for it.
4732    (In one case we can return a ..._TYPE node instead.
4733     For invalid input we sometimes return 0.)
4734
4735    DECLSPECS is a c_declspecs structure for the declaration specifiers.
4736
4737    DECL_CONTEXT says which syntactic context this declaration is in:
4738      NORMAL for most contexts.  Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4739      FUNCDEF for a function definition.  Like NORMAL but a few different
4740       error messages in each case.  Return value may be zero meaning
4741       this definition is too screwy to try to parse.
4742      PARM for a parameter declaration (either within a function prototype
4743       or before a function body).  Make a PARM_DECL, or return void_type_node.
4744      TYPENAME if for a typename (in a cast or sizeof).
4745       Don't make a DECL node; just return the ..._TYPE node.
4746      FIELD for a struct or union field; make a FIELD_DECL.
4747    INITIALIZED is true if the decl has an initializer.
4748    WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
4749    representing the width of the bit-field.
4750    DECL_ATTRS points to the list of attributes that should be added to this
4751      decl.  Any nested attributes that belong on the decl itself will be
4752      added to this list.
4753    If EXPR is not NULL, any expressions that need to be evaluated as
4754      part of evaluating variably modified types will be stored in *EXPR.
4755    If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
4756      set to indicate whether operands in *EXPR can be used in constant
4757      expressions.
4758    DEPRECATED_STATE is a deprecated_states value indicating whether
4759    deprecation warnings should be suppressed.
4760
4761    In the TYPENAME case, DECLARATOR is really an absolute declarator.
4762    It may also be so in the PARM case, for a prototype where the
4763    argument type is specified but not the name.
4764
4765    This function is where the complicated C meanings of `static'
4766    and `extern' are interpreted.  */
4767
4768 static tree
4769 grokdeclarator (const struct c_declarator *declarator,
4770                 struct c_declspecs *declspecs,
4771                 enum decl_context decl_context, bool initialized, tree *width,
4772                 tree *decl_attrs, tree *expr, bool *expr_const_operands,
4773                 enum deprecated_states deprecated_state)
4774 {
4775   tree type = declspecs->type;
4776   bool threadp = declspecs->thread_p;
4777   enum c_storage_class storage_class = declspecs->storage_class;
4778   int constp;
4779   int restrictp;
4780   int volatilep;
4781   int type_quals = TYPE_UNQUALIFIED;
4782   tree name = NULL_TREE;
4783   bool funcdef_flag = false;
4784   bool funcdef_syntax = false;
4785   bool size_varies = false;
4786   tree decl_attr = declspecs->decl_attr;
4787   int array_ptr_quals = TYPE_UNQUALIFIED;
4788   tree array_ptr_attrs = NULL_TREE;
4789   int array_parm_static = 0;
4790   bool array_parm_vla_unspec_p = false;
4791   tree returned_attrs = NULL_TREE;
4792   bool bitfield = width != NULL;
4793   tree element_type;
4794   struct c_arg_info *arg_info = 0;
4795   addr_space_t as1, as2, address_space;
4796   location_t loc = UNKNOWN_LOCATION;
4797   const char *errmsg;
4798   tree expr_dummy;
4799   bool expr_const_operands_dummy;
4800
4801   if (expr == NULL)
4802     expr = &expr_dummy;
4803   if (expr_const_operands == NULL)
4804     expr_const_operands = &expr_const_operands_dummy;
4805
4806   *expr = declspecs->expr;
4807   *expr_const_operands = declspecs->expr_const_operands;
4808
4809   if (decl_context == FUNCDEF)
4810     funcdef_flag = true, decl_context = NORMAL;
4811
4812   /* Look inside a declarator for the name being declared
4813      and get it as an IDENTIFIER_NODE, for an error message.  */
4814   {
4815     const struct c_declarator *decl = declarator;
4816
4817     while (decl)
4818       switch (decl->kind)
4819         {
4820         case cdk_array:
4821           loc = decl->id_loc;
4822           /* FALL THRU.  */
4823
4824         case cdk_function:
4825         case cdk_pointer:
4826           funcdef_syntax = (decl->kind == cdk_function);
4827           decl = decl->declarator;
4828           break;
4829
4830         case cdk_attrs:
4831           decl = decl->declarator;
4832           break;
4833
4834         case cdk_id:
4835           loc = decl->id_loc;
4836           if (decl->u.id)
4837             name = decl->u.id;
4838           decl = 0;
4839           break;
4840
4841         default:
4842           gcc_unreachable ();
4843         }
4844     if (name == 0)
4845       {
4846         gcc_assert (decl_context == PARM
4847                     || decl_context == TYPENAME
4848                     || (decl_context == FIELD
4849                         && declarator->kind == cdk_id));
4850         gcc_assert (!initialized);
4851       }
4852   }
4853
4854   /* A function definition's declarator must have the form of
4855      a function declarator.  */
4856
4857   if (funcdef_flag && !funcdef_syntax)
4858     return 0;
4859
4860   /* If this looks like a function definition, make it one,
4861      even if it occurs where parms are expected.
4862      Then store_parm_decls will reject it and not use it as a parm.  */
4863   if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
4864     decl_context = PARM;
4865
4866   if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
4867     warn_deprecated_use (declspecs->type, declspecs->decl_attr);
4868
4869   if ((decl_context == NORMAL || decl_context == FIELD)
4870       && current_scope == file_scope
4871       && variably_modified_type_p (type, NULL_TREE))
4872     {
4873       if (name)
4874         error_at (loc, "variably modified %qE at file scope", name);
4875       else
4876         error_at (loc, "variably modified field at file scope");
4877       type = integer_type_node;
4878     }
4879
4880   size_varies = C_TYPE_VARIABLE_SIZE (type) != 0;
4881
4882   /* Diagnose defaulting to "int".  */
4883
4884   if (declspecs->default_int_p && !in_system_header)
4885     {
4886       /* Issue a warning if this is an ISO C 99 program or if
4887          -Wreturn-type and this is a function, or if -Wimplicit;
4888          prefer the former warning since it is more explicit.  */
4889       if ((warn_implicit_int || warn_return_type || flag_isoc99)
4890           && funcdef_flag)
4891         warn_about_return_type = 1;
4892       else
4893         {
4894           if (name)
4895             pedwarn_c99 (loc, flag_isoc99 ? 0 : OPT_Wimplicit_int,
4896                          "type defaults to %<int%> in declaration of %qE",
4897                          name);
4898           else
4899             pedwarn_c99 (input_location, flag_isoc99 ? 0 : OPT_Wimplicit_int,
4900                          "type defaults to %<int%> in type name");
4901         }
4902     }
4903
4904   /* Adjust the type if a bit-field is being declared,
4905      -funsigned-bitfields applied and the type is not explicitly
4906      "signed".  */
4907   if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
4908       && TREE_CODE (type) == INTEGER_TYPE)
4909     type = unsigned_type_for (type);
4910
4911   /* Figure out the type qualifiers for the declaration.  There are
4912      two ways a declaration can become qualified.  One is something
4913      like `const int i' where the `const' is explicit.  Another is
4914      something like `typedef const int CI; CI i' where the type of the
4915      declaration contains the `const'.  A third possibility is that
4916      there is a type qualifier on the element type of a typedefed
4917      array type, in which case we should extract that qualifier so
4918      that c_apply_type_quals_to_decl receives the full list of
4919      qualifiers to work with (C90 is not entirely clear about whether
4920      duplicate qualifiers should be diagnosed in this case, but it
4921      seems most appropriate to do so).  */
4922   element_type = strip_array_types (type);
4923   constp = declspecs->const_p + TYPE_READONLY (element_type);
4924   restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
4925   volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
4926   as1 = declspecs->address_space;
4927   as2 = TYPE_ADDR_SPACE (element_type);
4928   address_space = ADDR_SPACE_GENERIC_P (as1)? as2 : as1;
4929
4930   if (pedantic && !flag_isoc99)
4931     {
4932       if (constp > 1)
4933         pedwarn (loc, OPT_pedantic, "duplicate %<const%>");
4934       if (restrictp > 1)
4935         pedwarn (loc, OPT_pedantic, "duplicate %<restrict%>");
4936       if (volatilep > 1)
4937         pedwarn (loc, OPT_pedantic, "duplicate %<volatile%>");
4938     }
4939
4940   if (!ADDR_SPACE_GENERIC_P (as1) && !ADDR_SPACE_GENERIC_P (as2) && as1 != as2)
4941     error_at (loc, "conflicting named address spaces (%s vs %s)",
4942               c_addr_space_name (as1), c_addr_space_name (as2));
4943
4944   if (!flag_gen_aux_info && (TYPE_QUALS (element_type)))
4945     type = TYPE_MAIN_VARIANT (type);
4946   type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4947                 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4948                 | (volatilep ? TYPE_QUAL_VOLATILE : 0)
4949                 | ENCODE_QUAL_ADDR_SPACE (address_space));
4950
4951   /* Warn about storage classes that are invalid for certain
4952      kinds of declarations (parameters, typenames, etc.).  */
4953
4954   if (funcdef_flag
4955       && (threadp
4956           || storage_class == csc_auto
4957           || storage_class == csc_register
4958           || storage_class == csc_typedef))
4959     {
4960       if (storage_class == csc_auto)
4961         pedwarn (loc,
4962                  (current_scope == file_scope) ? 0 : OPT_pedantic,
4963                  "function definition declared %<auto%>");
4964       if (storage_class == csc_register)
4965         error_at (loc, "function definition declared %<register%>");
4966       if (storage_class == csc_typedef)
4967         error_at (loc, "function definition declared %<typedef%>");
4968       if (threadp)
4969         error_at (loc, "function definition declared %<__thread%>");
4970       threadp = false;
4971       if (storage_class == csc_auto
4972           || storage_class == csc_register
4973           || storage_class == csc_typedef)
4974         storage_class = csc_none;
4975     }
4976   else if (decl_context != NORMAL && (storage_class != csc_none || threadp))
4977     {
4978       if (decl_context == PARM && storage_class == csc_register)
4979         ;
4980       else
4981         {
4982           switch (decl_context)
4983             {
4984             case FIELD:
4985               if (name)
4986                 error_at (loc, "storage class specified for structure "
4987                           "field %qE", name);
4988               else
4989                 error_at (loc, "storage class specified for structure field");
4990               break;
4991             case PARM:
4992               if (name)
4993                 error_at (loc, "storage class specified for parameter %qE",
4994                           name);
4995               else
4996                 error_at (loc, "storage class specified for unnamed parameter");
4997               break;
4998             default:
4999               error_at (loc, "storage class specified for typename");
5000               break;
5001             }
5002           storage_class = csc_none;
5003           threadp = false;
5004         }
5005     }
5006   else if (storage_class == csc_extern
5007            && initialized
5008            && !funcdef_flag)
5009     {
5010       /* 'extern' with initialization is invalid if not at file scope.  */
5011        if (current_scope == file_scope)
5012          {
5013            /* It is fine to have 'extern const' when compiling at C
5014               and C++ intersection.  */
5015            if (!(warn_cxx_compat && constp))
5016              warning_at (loc, 0, "%qE initialized and declared %<extern%>",
5017                          name);
5018          }
5019       else
5020         error_at (loc, "%qE has both %<extern%> and initializer", name);
5021     }
5022   else if (current_scope == file_scope)
5023     {
5024       if (storage_class == csc_auto)
5025         error_at (loc, "file-scope declaration of %qE specifies %<auto%>",
5026                   name);
5027       if (pedantic && storage_class == csc_register)
5028         pedwarn (input_location, OPT_pedantic,
5029                  "file-scope declaration of %qE specifies %<register%>", name);
5030     }
5031   else
5032     {
5033       if (storage_class == csc_extern && funcdef_flag)
5034         error_at (loc, "nested function %qE declared %<extern%>", name);
5035       else if (threadp && storage_class == csc_none)
5036         {
5037           error_at (loc, "function-scope %qE implicitly auto and declared "
5038                     "%<__thread%>",
5039                     name);
5040           threadp = false;
5041         }
5042     }
5043
5044   /* Now figure out the structure of the declarator proper.
5045      Descend through it, creating more complex types, until we reach
5046      the declared identifier (or NULL_TREE, in an absolute declarator).
5047      At each stage we maintain an unqualified version of the type
5048      together with any qualifiers that should be applied to it with
5049      c_build_qualified_type; this way, array types including
5050      multidimensional array types are first built up in unqualified
5051      form and then the qualified form is created with
5052      TYPE_MAIN_VARIANT pointing to the unqualified form.  */
5053
5054   while (declarator && declarator->kind != cdk_id)
5055     {
5056       if (type == error_mark_node)
5057         {
5058           declarator = declarator->declarator;
5059           continue;
5060         }
5061
5062       /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5063          a cdk_pointer (for *...),
5064          a cdk_function (for ...(...)),
5065          a cdk_attrs (for nested attributes),
5066          or a cdk_id (for the name being declared
5067          or the place in an absolute declarator
5068          where the name was omitted).
5069          For the last case, we have just exited the loop.
5070
5071          At this point, TYPE is the type of elements of an array,
5072          or for a function to return, or for a pointer to point to.
5073          After this sequence of ifs, TYPE is the type of the
5074          array or function or pointer, and DECLARATOR has had its
5075          outermost layer removed.  */
5076
5077       if (array_ptr_quals != TYPE_UNQUALIFIED
5078           || array_ptr_attrs != NULL_TREE
5079           || array_parm_static)
5080         {
5081           /* Only the innermost declarator (making a parameter be of
5082              array type which is converted to pointer type)
5083              may have static or type qualifiers.  */
5084           error_at (loc, "static or type qualifiers in non-parameter array declarator");
5085           array_ptr_quals = TYPE_UNQUALIFIED;
5086           array_ptr_attrs = NULL_TREE;
5087           array_parm_static = 0;
5088         }
5089
5090       switch (declarator->kind)
5091         {
5092         case cdk_attrs:
5093           {
5094             /* A declarator with embedded attributes.  */
5095             tree attrs = declarator->u.attrs;
5096             const struct c_declarator *inner_decl;
5097             int attr_flags = 0;
5098             declarator = declarator->declarator;
5099             inner_decl = declarator;
5100             while (inner_decl->kind == cdk_attrs)
5101               inner_decl = inner_decl->declarator;
5102             if (inner_decl->kind == cdk_id)
5103               attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
5104             else if (inner_decl->kind == cdk_function)
5105               attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
5106             else if (inner_decl->kind == cdk_array)
5107               attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
5108             returned_attrs = decl_attributes (&type,
5109                                               chainon (returned_attrs, attrs),
5110                                               attr_flags);
5111             break;
5112           }
5113         case cdk_array:
5114           {
5115             tree itype = NULL_TREE;
5116             tree size = declarator->u.array.dimen;
5117             /* The index is a signed object `sizetype' bits wide.  */
5118             tree index_type = c_common_signed_type (sizetype);
5119
5120             array_ptr_quals = declarator->u.array.quals;
5121             array_ptr_attrs = declarator->u.array.attrs;
5122             array_parm_static = declarator->u.array.static_p;
5123             array_parm_vla_unspec_p = declarator->u.array.vla_unspec_p;
5124
5125             declarator = declarator->declarator;
5126
5127             /* Check for some types that there cannot be arrays of.  */
5128
5129             if (VOID_TYPE_P (type))
5130               {
5131                 if (name)
5132                   error_at (loc, "declaration of %qE as array of voids", name);
5133                 else
5134                   error_at (loc, "declaration of type name as array of voids");
5135                 type = error_mark_node;
5136               }
5137
5138             if (TREE_CODE (type) == FUNCTION_TYPE)
5139               {
5140                 if (name)
5141                   error_at (loc, "declaration of %qE as array of functions",
5142                             name);
5143                 else
5144                   error_at (loc, "declaration of type name as array of "
5145                             "functions");
5146                 type = error_mark_node;
5147               }
5148
5149             if (pedantic && !in_system_header && flexible_array_type_p (type))
5150               pedwarn (loc, OPT_pedantic,
5151                        "invalid use of structure with flexible array member");
5152
5153             if (size == error_mark_node)
5154               type = error_mark_node;
5155
5156             if (type == error_mark_node)
5157               continue;
5158
5159             /* If size was specified, set ITYPE to a range-type for
5160                that size.  Otherwise, ITYPE remains null.  finish_decl
5161                may figure it out from an initial value.  */
5162
5163             if (size)
5164               {
5165                 bool size_maybe_const = true;
5166                 bool size_int_const = (TREE_CODE (size) == INTEGER_CST
5167                                        && !TREE_OVERFLOW (size));
5168                 bool this_size_varies = false;
5169
5170                 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5171                    lvalue.  */
5172                 STRIP_TYPE_NOPS (size);
5173
5174                 if (!INTEGRAL_TYPE_P (TREE_TYPE (size)))
5175                   {
5176                     if (name)
5177                       error_at (loc, "size of array %qE has non-integer type",
5178                                 name);
5179                     else
5180                       error_at (loc,
5181                                 "size of unnamed array has non-integer type");
5182                     size = integer_one_node;
5183                   }
5184
5185                 size = c_fully_fold (size, false, &size_maybe_const);
5186
5187                 if (pedantic && size_maybe_const && integer_zerop (size))
5188                   {
5189                     if (name)
5190                       pedwarn (loc, OPT_pedantic,
5191                                "ISO C forbids zero-size array %qE", name);
5192                     else
5193                       pedwarn (loc, OPT_pedantic,
5194                                "ISO C forbids zero-size array");
5195                   }
5196
5197                 if (TREE_CODE (size) == INTEGER_CST && size_maybe_const)
5198                   {
5199                     constant_expression_warning (size);
5200                     if (tree_int_cst_sgn (size) < 0)
5201                       {
5202                         if (name)
5203                           error_at (loc, "size of array %qE is negative", name);
5204                         else
5205                           error_at (loc, "size of unnamed array is negative");
5206                         size = integer_one_node;
5207                       }
5208                     /* Handle a size folded to an integer constant but
5209                        not an integer constant expression.  */
5210                     if (!size_int_const)
5211                       {
5212                         /* If this is a file scope declaration of an
5213                            ordinary identifier, this is invalid code;
5214                            diagnosing it here and not subsequently
5215                            treating the type as variable-length avoids
5216                            more confusing diagnostics later.  */
5217                         if ((decl_context == NORMAL || decl_context == FIELD)
5218                             && current_scope == file_scope)
5219                           pedwarn (input_location, 0,
5220                                    "variably modified %qE at file scope",
5221                                    name);
5222                         else
5223                           this_size_varies = size_varies = true;
5224                         warn_variable_length_array (name, size);
5225                       }
5226                   }
5227                 else if ((decl_context == NORMAL || decl_context == FIELD)
5228                          && current_scope == file_scope)
5229                   {
5230                     error_at (loc, "variably modified %qE at file scope", name);
5231                     size = integer_one_node;
5232                   }
5233                 else
5234                   {
5235                     /* Make sure the array size remains visibly
5236                        nonconstant even if it is (eg) a const variable
5237                        with known value.  */
5238                     this_size_varies = size_varies = true;
5239                     warn_variable_length_array (name, size);
5240                   }
5241
5242                 if (integer_zerop (size) && !this_size_varies)
5243                   {
5244                     /* A zero-length array cannot be represented with
5245                        an unsigned index type, which is what we'll
5246                        get with build_index_type.  Create an
5247                        open-ended range instead.  */
5248                     itype = build_range_type (sizetype, size, NULL_TREE);
5249                   }
5250                 else
5251                   {
5252                     /* Arrange for the SAVE_EXPR on the inside of the
5253                        MINUS_EXPR, which allows the -1 to get folded
5254                        with the +1 that happens when building TYPE_SIZE.  */
5255                     if (size_varies)
5256                       size = c_variable_size (size);
5257                     if (this_size_varies && TREE_CODE (size) == INTEGER_CST)
5258                       size = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5259                                      integer_zero_node, size);
5260
5261                     /* Compute the maximum valid index, that is, size
5262                        - 1.  Do the calculation in index_type, so that
5263                        if it is a variable the computations will be
5264                        done in the proper mode.  */
5265                     itype = fold_build2_loc (loc, MINUS_EXPR, index_type,
5266                                              convert (index_type, size),
5267                                              convert (index_type,
5268                                                       size_one_node));
5269
5270                     /* If that overflowed, the array is too big.  ???
5271                        While a size of INT_MAX+1 technically shouldn't
5272                        cause an overflow (because we subtract 1), the
5273                        overflow is recorded during the conversion to
5274                        index_type, before the subtraction.  Handling
5275                        this case seems like an unnecessary
5276                        complication.  */
5277                     if (TREE_CODE (itype) == INTEGER_CST
5278                         && TREE_OVERFLOW (itype))
5279                       {
5280                         if (name)
5281                           error_at (loc, "size of array %qE is too large",
5282                                     name);
5283                         else
5284                           error_at (loc, "size of unnamed array is too large");
5285                         type = error_mark_node;
5286                         continue;
5287                       }
5288
5289                     itype = build_index_type (itype);
5290                   }
5291                 if (this_size_varies)
5292                   {
5293                     if (*expr)
5294                       *expr = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5295                                       *expr, size);
5296                     else
5297                       *expr = size;
5298                     *expr_const_operands &= size_maybe_const;
5299                   }
5300               }
5301             else if (decl_context == FIELD)
5302               {
5303                 bool flexible_array_member = false;
5304                 if (array_parm_vla_unspec_p)
5305                   /* Field names can in fact have function prototype
5306                      scope so [*] is disallowed here through making
5307                      the field variably modified, not through being
5308                      something other than a declaration with function
5309                      prototype scope.  */
5310                   size_varies = true;
5311                 else
5312                   {
5313                     const struct c_declarator *t = declarator;
5314                     while (t->kind == cdk_attrs)
5315                       t = t->declarator;
5316                     flexible_array_member = (t->kind == cdk_id);
5317                   }
5318                 if (flexible_array_member
5319                     && pedantic && !flag_isoc99 && !in_system_header)
5320                   pedwarn (loc, OPT_pedantic,
5321                            "ISO C90 does not support flexible array members");
5322
5323                 /* ISO C99 Flexible array members are effectively
5324                    identical to GCC's zero-length array extension.  */
5325                 if (flexible_array_member || array_parm_vla_unspec_p)
5326                   itype = build_range_type (sizetype, size_zero_node,
5327                                             NULL_TREE);
5328               }
5329             else if (decl_context == PARM)
5330               {
5331                 if (array_parm_vla_unspec_p)
5332                   {
5333                     itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
5334                     size_varies = true;
5335                   }
5336               }
5337             else if (decl_context == TYPENAME)
5338               {
5339                 if (array_parm_vla_unspec_p)
5340                   {
5341                     /* C99 6.7.5.2p4 */
5342                     warning (0, "%<[*]%> not in a declaration");
5343                     /* We use this to avoid messing up with incomplete
5344                        array types of the same type, that would
5345                        otherwise be modified below.  */
5346                     itype = build_range_type (sizetype, size_zero_node,
5347                                               NULL_TREE);
5348                     size_varies = true;
5349                   }
5350               }
5351
5352              /* Complain about arrays of incomplete types.  */
5353             if (!COMPLETE_TYPE_P (type))
5354               {
5355                 error_at (loc, "array type has incomplete element type");
5356                 type = error_mark_node;
5357               }
5358             else
5359             /* When itype is NULL, a shared incomplete array type is
5360                returned for all array of a given type.  Elsewhere we
5361                make sure we don't complete that type before copying
5362                it, but here we want to make sure we don't ever
5363                modify the shared type, so we gcc_assert (itype)
5364                below.  */
5365               {
5366                 addr_space_t as = DECODE_QUAL_ADDR_SPACE (type_quals);
5367                 if (!ADDR_SPACE_GENERIC_P (as) && as != TYPE_ADDR_SPACE (type))
5368                   type = build_qualified_type (type,
5369                                                ENCODE_QUAL_ADDR_SPACE (as));
5370
5371                 type = build_array_type (type, itype);
5372               }
5373
5374             if (type != error_mark_node)
5375               {
5376                 if (size_varies)
5377                   {
5378                     /* It is ok to modify type here even if itype is
5379                        NULL: if size_varies, we're in a
5380                        multi-dimensional array and the inner type has
5381                        variable size, so the enclosing shared array type
5382                        must too.  */
5383                     if (size && TREE_CODE (size) == INTEGER_CST)
5384                       type
5385                         = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5386                     C_TYPE_VARIABLE_SIZE (type) = 1;
5387                   }
5388
5389                 /* The GCC extension for zero-length arrays differs from
5390                    ISO flexible array members in that sizeof yields
5391                    zero.  */
5392                 if (size && integer_zerop (size))
5393                   {
5394                     gcc_assert (itype);
5395                     TYPE_SIZE (type) = bitsize_zero_node;
5396                     TYPE_SIZE_UNIT (type) = size_zero_node;
5397                   }
5398                 if (array_parm_vla_unspec_p)
5399                   {
5400                     gcc_assert (itype);
5401                     /* The type is complete.  C99 6.7.5.2p4  */
5402                     TYPE_SIZE (type) = bitsize_zero_node;
5403                     TYPE_SIZE_UNIT (type) = size_zero_node;
5404                   }
5405               }
5406
5407             if (decl_context != PARM
5408                 && (array_ptr_quals != TYPE_UNQUALIFIED
5409                     || array_ptr_attrs != NULL_TREE
5410                     || array_parm_static))
5411               {
5412                 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5413                 array_ptr_quals = TYPE_UNQUALIFIED;
5414                 array_ptr_attrs = NULL_TREE;
5415                 array_parm_static = 0;
5416               }
5417             break;
5418           }
5419         case cdk_function:
5420           {
5421             /* Say it's a definition only for the declarator closest
5422                to the identifier, apart possibly from some
5423                attributes.  */
5424             bool really_funcdef = false;
5425             tree arg_types;
5426             if (funcdef_flag)
5427               {
5428                 const struct c_declarator *t = declarator->declarator;
5429                 while (t->kind == cdk_attrs)
5430                   t = t->declarator;
5431                 really_funcdef = (t->kind == cdk_id);
5432               }
5433
5434             /* Declaring a function type.  Make sure we have a valid
5435                type for the function to return.  */
5436             if (type == error_mark_node)
5437               continue;
5438
5439             size_varies = false;
5440
5441             /* Warn about some types functions can't return.  */
5442             if (TREE_CODE (type) == FUNCTION_TYPE)
5443               {
5444                 if (name)
5445                   error_at (loc, "%qE declared as function returning a "
5446                                  "function", name);
5447                 else
5448                   error_at (loc, "type name declared as function "
5449                             "returning a function");
5450                 type = integer_type_node;
5451               }
5452             if (TREE_CODE (type) == ARRAY_TYPE)
5453               {
5454                 if (name)
5455                   error_at (loc, "%qE declared as function returning an array",
5456                             name);
5457                 else
5458                   error_at (loc, "type name declared as function returning "
5459                             "an array");
5460                 type = integer_type_node;
5461               }
5462             errmsg = targetm.invalid_return_type (type);
5463             if (errmsg)
5464               {
5465                 error (errmsg);
5466                 type = integer_type_node;
5467               }
5468
5469             /* Construct the function type and go to the next
5470                inner layer of declarator.  */
5471             arg_info = declarator->u.arg_info;
5472             arg_types = grokparms (arg_info, really_funcdef);
5473             if (really_funcdef)
5474               put_pending_sizes (arg_info->pending_sizes);
5475
5476             /* Type qualifiers before the return type of the function
5477                qualify the return type, not the function type.  */
5478             if (type_quals)
5479               {
5480                 /* Type qualifiers on a function return type are
5481                    normally permitted by the standard but have no
5482                    effect, so give a warning at -Wreturn-type.
5483                    Qualifiers on a void return type are banned on
5484                    function definitions in ISO C; GCC used to used
5485                    them for noreturn functions.  */
5486                 if (VOID_TYPE_P (type) && really_funcdef)
5487                   pedwarn (loc, 0,
5488                            "function definition has qualified void return type");
5489                 else
5490                   warning_at (loc, OPT_Wignored_qualifiers,
5491                            "type qualifiers ignored on function return type");
5492
5493                 type = c_build_qualified_type (type, type_quals);
5494               }
5495             type_quals = TYPE_UNQUALIFIED;
5496
5497             type = build_function_type (type, arg_types);
5498             declarator = declarator->declarator;
5499
5500             /* Set the TYPE_CONTEXTs for each tagged type which is local to
5501                the formal parameter list of this FUNCTION_TYPE to point to
5502                the FUNCTION_TYPE node itself.  */
5503             {
5504               tree link;
5505
5506               for (link = arg_info->tags;
5507                    link;
5508                    link = TREE_CHAIN (link))
5509                 TYPE_CONTEXT (TREE_VALUE (link)) = type;
5510             }
5511             break;
5512           }
5513         case cdk_pointer:
5514           {
5515             /* Merge any constancy or volatility into the target type
5516                for the pointer.  */
5517
5518             if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5519                 && type_quals)
5520               pedwarn (loc, OPT_pedantic,
5521                        "ISO C forbids qualified function types");
5522             if (type_quals)
5523               type = c_build_qualified_type (type, type_quals);
5524             size_varies = false;
5525
5526             /* When the pointed-to type involves components of variable size,
5527                care must be taken to ensure that the size evaluation code is
5528                emitted early enough to dominate all the possible later uses
5529                and late enough for the variables on which it depends to have
5530                been assigned.
5531
5532                This is expected to happen automatically when the pointed-to
5533                type has a name/declaration of it's own, but special attention
5534                is required if the type is anonymous.
5535
5536                We handle the NORMAL and FIELD contexts here by attaching an
5537                artificial TYPE_DECL to such pointed-to type.  This forces the
5538                sizes evaluation at a safe point and ensures it is not deferred
5539                until e.g. within a deeper conditional context.
5540
5541                We expect nothing to be needed here for PARM or TYPENAME.
5542                Pushing a TYPE_DECL at this point for TYPENAME would actually
5543                be incorrect, as we might be in the middle of an expression
5544                with side effects on the pointed-to type size "arguments" prior
5545                to the pointer declaration point and the fake TYPE_DECL in the
5546                enclosing context would force the size evaluation prior to the
5547                side effects.  */
5548
5549             if (!TYPE_NAME (type)
5550                 && (decl_context == NORMAL || decl_context == FIELD)
5551                 && variably_modified_type_p (type, NULL_TREE))
5552               {
5553                 tree decl = build_decl (loc, TYPE_DECL, NULL_TREE, type);
5554                 DECL_ARTIFICIAL (decl) = 1;
5555                 pushdecl (decl);
5556                 finish_decl (decl, loc, NULL_TREE, NULL_TREE, NULL_TREE);
5557                 TYPE_NAME (type) = decl;
5558               }
5559
5560             type = build_pointer_type (type);
5561
5562             /* Process type qualifiers (such as const or volatile)
5563                that were given inside the `*'.  */
5564             type_quals = declarator->u.pointer_quals;
5565
5566             declarator = declarator->declarator;
5567             break;
5568           }
5569         default:
5570           gcc_unreachable ();
5571         }
5572     }
5573   *decl_attrs = chainon (returned_attrs, *decl_attrs);
5574
5575   /* Now TYPE has the actual type, apart from any qualifiers in
5576      TYPE_QUALS.  */
5577
5578   /* Warn about address space used for things other than static memory or
5579      pointers.  */
5580   address_space = DECODE_QUAL_ADDR_SPACE (type_quals);
5581   if (!ADDR_SPACE_GENERIC_P (address_space))
5582     {
5583       if (decl_context == NORMAL)
5584         {
5585           switch (storage_class)
5586             {
5587             case csc_auto:
5588               error ("%qs combined with %<auto%> qualifier for %qE",
5589                      c_addr_space_name (address_space), name);
5590               break;
5591             case csc_register:
5592               error ("%qs combined with %<register%> qualifier for %qE",
5593                      c_addr_space_name (address_space), name);
5594               break;
5595             case csc_none:
5596               if (current_function_scope)
5597                 {
5598                   error ("%qs specified for auto variable %qE",
5599                          c_addr_space_name (address_space), name);
5600                   break;
5601                 }
5602               break;
5603             case csc_static:
5604             case csc_extern:
5605             case csc_typedef:
5606               break;
5607             default:
5608               gcc_unreachable ();
5609             }
5610         }
5611       else if (decl_context == PARM && TREE_CODE (type) != ARRAY_TYPE)
5612         {
5613           if (name)
5614             error ("%qs specified for parameter %qE",
5615                    c_addr_space_name (address_space), name);
5616           else
5617             error ("%qs specified for unnamed parameter",
5618                    c_addr_space_name (address_space));
5619         }
5620       else if (decl_context == FIELD)
5621         {
5622           if (name)
5623             error ("%qs specified for structure field %qE",
5624                    c_addr_space_name (address_space), name);
5625           else
5626             error ("%qs specified for structure field",
5627                    c_addr_space_name (address_space));
5628         }
5629     }
5630
5631   /* Check the type and width of a bit-field.  */
5632   if (bitfield)
5633     check_bitfield_type_and_width (&type, width, name);
5634
5635   /* Did array size calculations overflow?  */
5636
5637   if (TREE_CODE (type) == ARRAY_TYPE
5638       && COMPLETE_TYPE_P (type)
5639       && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
5640       && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
5641     {
5642       if (name)
5643         error_at (loc, "size of array %qE is too large", name);
5644       else
5645         error_at (loc, "size of unnamed array is too large");
5646       /* If we proceed with the array type as it is, we'll eventually
5647          crash in tree_low_cst().  */
5648       type = error_mark_node;
5649     }
5650
5651   /* If this is declaring a typedef name, return a TYPE_DECL.  */
5652
5653   if (storage_class == csc_typedef)
5654     {
5655       tree decl;
5656       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5657           && type_quals)
5658         pedwarn (loc, OPT_pedantic,
5659                  "ISO C forbids qualified function types");
5660       if (type_quals)
5661         type = c_build_qualified_type (type, type_quals);
5662       decl = build_decl (declarator->id_loc,
5663                          TYPE_DECL, declarator->u.id, type);
5664       if (declspecs->explicit_signed_p)
5665         C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
5666       if (declspecs->inline_p)
5667         pedwarn (loc, 0,"typedef %q+D declared %<inline%>", decl);
5668
5669       if (warn_cxx_compat && declarator->u.id != NULL_TREE)
5670         {
5671           struct c_binding *b = I_TAG_BINDING (declarator->u.id);
5672
5673           if (b != NULL
5674               && b->decl != NULL_TREE
5675               && (B_IN_CURRENT_SCOPE (b)
5676                   || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
5677               && TYPE_MAIN_VARIANT (b->decl) != TYPE_MAIN_VARIANT (type))
5678             {
5679               warning_at (declarator->id_loc, OPT_Wc___compat,
5680                           ("using %qD as both a typedef and a tag is "
5681                            "invalid in C++"),
5682                           decl);
5683               if (b->locus != UNKNOWN_LOCATION)
5684                 inform (b->locus, "originally defined here");
5685             }
5686         }
5687
5688       return decl;
5689     }
5690
5691   /* If this is a type name (such as, in a cast or sizeof),
5692      compute the type and return it now.  */
5693
5694   if (decl_context == TYPENAME)
5695     {
5696       /* Note that the grammar rejects storage classes in typenames
5697          and fields.  */
5698       gcc_assert (storage_class == csc_none && !threadp
5699                   && !declspecs->inline_p);
5700       if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5701           && type_quals)
5702         pedwarn (loc, OPT_pedantic,
5703                  "ISO C forbids const or volatile function types");
5704       if (type_quals)
5705         type = c_build_qualified_type (type, type_quals);
5706       return type;
5707     }
5708
5709   if (pedantic && decl_context == FIELD
5710       && variably_modified_type_p (type, NULL_TREE))
5711     {
5712       /* C99 6.7.2.1p8 */
5713       pedwarn (loc, OPT_pedantic, "a member of a structure or union cannot "
5714                "have a variably modified type");
5715     }
5716
5717   /* Aside from typedefs and type names (handle above),
5718      `void' at top level (not within pointer)
5719      is allowed only in public variables.
5720      We don't complain about parms either, but that is because
5721      a better error message can be made later.  */
5722
5723   if (VOID_TYPE_P (type) && decl_context != PARM
5724       && !((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
5725             && (storage_class == csc_extern
5726                 || (current_scope == file_scope
5727                     && !(storage_class == csc_static
5728                          || storage_class == csc_register)))))
5729     {
5730       error_at (loc, "variable or field %qE declared void", name);
5731       type = integer_type_node;
5732     }
5733
5734   /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
5735      or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE.  */
5736
5737   {
5738     tree decl;
5739
5740     if (decl_context == PARM)
5741       {
5742         tree promoted_type;
5743
5744         /* A parameter declared as an array of T is really a pointer to T.
5745            One declared as a function is really a pointer to a function.  */
5746
5747         if (TREE_CODE (type) == ARRAY_TYPE)
5748           {
5749             /* Transfer const-ness of array into that of type pointed to.  */
5750             type = TREE_TYPE (type);
5751             if (type_quals)
5752               type = c_build_qualified_type (type, type_quals);
5753             type = build_pointer_type (type);
5754             type_quals = array_ptr_quals;
5755             if (type_quals)
5756               type = c_build_qualified_type (type, type_quals);
5757
5758             /* We don't yet implement attributes in this context.  */
5759             if (array_ptr_attrs != NULL_TREE)
5760               warning_at (loc, OPT_Wattributes,
5761                           "attributes in parameter array declarator ignored");
5762
5763             size_varies = false;
5764           }
5765         else if (TREE_CODE (type) == FUNCTION_TYPE)
5766           {
5767             if (type_quals)
5768               pedwarn (loc, OPT_pedantic,
5769                        "ISO C forbids qualified function types");
5770             if (type_quals)
5771               type = c_build_qualified_type (type, type_quals);
5772             type = build_pointer_type (type);
5773             type_quals = TYPE_UNQUALIFIED;
5774           }
5775         else if (type_quals)
5776           type = c_build_qualified_type (type, type_quals);
5777
5778         decl = build_decl (declarator->id_loc,
5779                            PARM_DECL, declarator->u.id, type);
5780         if (size_varies)
5781           C_DECL_VARIABLE_SIZE (decl) = 1;
5782
5783         /* Compute the type actually passed in the parmlist,
5784            for the case where there is no prototype.
5785            (For example, shorts and chars are passed as ints.)
5786            When there is a prototype, this is overridden later.  */
5787
5788         if (type == error_mark_node)
5789           promoted_type = type;
5790         else
5791           promoted_type = c_type_promotes_to (type);
5792
5793         DECL_ARG_TYPE (decl) = promoted_type;
5794         if (declspecs->inline_p)
5795           pedwarn (loc, 0, "parameter %q+D declared %<inline%>", decl);
5796       }
5797     else if (decl_context == FIELD)
5798       {
5799         /* Note that the grammar rejects storage classes in typenames
5800            and fields.  */
5801         gcc_assert (storage_class == csc_none && !threadp
5802                     && !declspecs->inline_p);
5803
5804         /* Structure field.  It may not be a function.  */
5805
5806         if (TREE_CODE (type) == FUNCTION_TYPE)
5807           {
5808             error_at (loc, "field %qE declared as a function", name);
5809             type = build_pointer_type (type);
5810           }
5811         else if (TREE_CODE (type) != ERROR_MARK
5812                  && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
5813           {
5814             if (name)
5815               error_at (loc, "field %qE has incomplete type", name);
5816             else
5817               error_at (loc, "unnamed field has incomplete type");
5818             type = error_mark_node;
5819           }
5820         type = c_build_qualified_type (type, type_quals);
5821         decl = build_decl (declarator->id_loc,
5822                            FIELD_DECL, declarator->u.id, type);
5823         DECL_NONADDRESSABLE_P (decl) = bitfield;
5824         if (bitfield && !declarator->u.id)
5825           TREE_NO_WARNING (decl) = 1;
5826
5827         if (size_varies)
5828           C_DECL_VARIABLE_SIZE (decl) = 1;
5829       }
5830     else if (TREE_CODE (type) == FUNCTION_TYPE)
5831       {
5832         if (storage_class == csc_register || threadp)
5833           {
5834             error_at (loc, "invalid storage class for function %qE", name);
5835            }
5836         else if (current_scope != file_scope)
5837           {
5838             /* Function declaration not at file scope.  Storage
5839                classes other than `extern' are not allowed, C99
5840                6.7.1p5, and `extern' makes no difference.  However,
5841                GCC allows 'auto', perhaps with 'inline', to support
5842                nested functions.  */
5843             if (storage_class == csc_auto)
5844                 pedwarn (loc, OPT_pedantic,
5845                          "invalid storage class for function %qE", name);
5846             else if (storage_class == csc_static)
5847               {
5848                 error_at (loc, "invalid storage class for function %qE", name);
5849                 if (funcdef_flag)
5850                   storage_class = declspecs->storage_class = csc_none;
5851                 else
5852                   return 0;
5853               }
5854           }
5855
5856         decl = build_decl (declarator->id_loc,
5857                            FUNCTION_DECL, declarator->u.id, type);
5858         decl = build_decl_attribute_variant (decl, decl_attr);
5859
5860         if (pedantic && type_quals && !DECL_IN_SYSTEM_HEADER (decl))
5861           pedwarn (loc, OPT_pedantic,
5862                    "ISO C forbids qualified function types");
5863
5864         /* GNU C interprets a volatile-qualified function type to indicate
5865            that the function does not return.  */
5866         if ((type_quals & TYPE_QUAL_VOLATILE)
5867             && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
5868           warning_at (loc, 0, "%<noreturn%> function returns non-void value");
5869
5870         /* Every function declaration is an external reference
5871            (DECL_EXTERNAL) except for those which are not at file
5872            scope and are explicitly declared "auto".  This is
5873            forbidden by standard C (C99 6.7.1p5) and is interpreted by
5874            GCC to signify a forward declaration of a nested function.  */
5875         if (storage_class == csc_auto && current_scope != file_scope)
5876           DECL_EXTERNAL (decl) = 0;
5877         /* In C99, a function which is declared 'inline' with 'extern'
5878            is not an external reference (which is confusing).  It
5879            means that the later definition of the function must be output
5880            in this file, C99 6.7.4p6.  In GNU C89, a function declared
5881            'extern inline' is an external reference.  */
5882         else if (declspecs->inline_p && storage_class != csc_static)
5883           DECL_EXTERNAL (decl) = ((storage_class == csc_extern)
5884                                   == flag_gnu89_inline);
5885         else
5886           DECL_EXTERNAL (decl) = !initialized;
5887
5888         /* Record absence of global scope for `static' or `auto'.  */
5889         TREE_PUBLIC (decl)
5890           = !(storage_class == csc_static || storage_class == csc_auto);
5891
5892         /* For a function definition, record the argument information
5893            block where store_parm_decls will look for it.  */
5894         if (funcdef_flag)
5895           current_function_arg_info = arg_info;
5896
5897         if (declspecs->default_int_p)
5898           C_FUNCTION_IMPLICIT_INT (decl) = 1;
5899
5900         /* Record presence of `inline', if it is reasonable.  */
5901         if (flag_hosted && MAIN_NAME_P (declarator->u.id))
5902           {
5903             if (declspecs->inline_p)
5904               pedwarn (loc, 0, "cannot inline function %<main%>");
5905           }
5906         else if (declspecs->inline_p)
5907           /* Record that the function is declared `inline'.  */
5908           DECL_DECLARED_INLINE_P (decl) = 1;
5909       }
5910     else
5911       {
5912         /* It's a variable.  */
5913         /* An uninitialized decl with `extern' is a reference.  */
5914         int extern_ref = !initialized && storage_class == csc_extern;
5915
5916         type = c_build_qualified_type (type, type_quals);
5917
5918         /* C99 6.2.2p7: It is invalid (compile-time undefined
5919            behavior) to create an 'extern' declaration for a
5920            variable if there is a global declaration that is
5921            'static' and the global declaration is not visible.
5922            (If the static declaration _is_ currently visible,
5923            the 'extern' declaration is taken to refer to that decl.) */
5924         if (extern_ref && current_scope != file_scope)
5925           {
5926             tree global_decl  = identifier_global_value (declarator->u.id);
5927             tree visible_decl = lookup_name (declarator->u.id);
5928
5929             if (global_decl
5930                 && global_decl != visible_decl
5931                 && TREE_CODE (global_decl) == VAR_DECL
5932                 && !TREE_PUBLIC (global_decl))
5933               error_at (loc, "variable previously declared %<static%> "
5934                         "redeclared %<extern%>");
5935           }
5936
5937         decl = build_decl (declarator->id_loc,
5938                            VAR_DECL, declarator->u.id, type);
5939         if (size_varies)
5940           C_DECL_VARIABLE_SIZE (decl) = 1;
5941
5942         if (declspecs->inline_p)
5943           pedwarn (loc, 0, "variable %q+D declared %<inline%>", decl);
5944
5945         /* At file scope, an initialized extern declaration may follow
5946            a static declaration.  In that case, DECL_EXTERNAL will be
5947            reset later in start_decl.  */
5948         DECL_EXTERNAL (decl) = (storage_class == csc_extern);
5949
5950         /* At file scope, the presence of a `static' or `register' storage
5951            class specifier, or the absence of all storage class specifiers
5952            makes this declaration a definition (perhaps tentative).  Also,
5953            the absence of `static' makes it public.  */
5954         if (current_scope == file_scope)
5955           {
5956             TREE_PUBLIC (decl) = storage_class != csc_static;
5957             TREE_STATIC (decl) = !extern_ref;
5958           }
5959         /* Not at file scope, only `static' makes a static definition.  */
5960         else
5961           {
5962             TREE_STATIC (decl) = (storage_class == csc_static);
5963             TREE_PUBLIC (decl) = extern_ref;
5964           }
5965
5966         if (threadp)
5967           DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
5968       }
5969
5970     if ((storage_class == csc_extern
5971          || (storage_class == csc_none
5972              && TREE_CODE (type) == FUNCTION_TYPE
5973              && !funcdef_flag))
5974         && variably_modified_type_p (type, NULL_TREE))
5975       {
5976         /* C99 6.7.5.2p2 */
5977         if (TREE_CODE (type) == FUNCTION_TYPE)
5978           error_at (loc, "non-nested function with variably modified type");
5979         else
5980           error_at (loc, "object with variably modified type must have "
5981                     "no linkage");
5982       }
5983
5984     /* Record `register' declaration for warnings on &
5985        and in case doing stupid register allocation.  */
5986
5987     if (storage_class == csc_register)
5988       {
5989         C_DECL_REGISTER (decl) = 1;
5990         DECL_REGISTER (decl) = 1;
5991       }
5992
5993     /* Record constancy and volatility.  */
5994     c_apply_type_quals_to_decl (type_quals, decl);
5995
5996     /* If a type has volatile components, it should be stored in memory.
5997        Otherwise, the fact that those components are volatile
5998        will be ignored, and would even crash the compiler.
5999        Of course, this only makes sense on  VAR,PARM, and RESULT decl's.   */
6000     if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl))
6001         && (TREE_CODE (decl) == VAR_DECL ||  TREE_CODE (decl) == PARM_DECL
6002           || TREE_CODE (decl) == RESULT_DECL))
6003       {
6004         /* It is not an error for a structure with volatile fields to
6005            be declared register, but reset DECL_REGISTER since it
6006            cannot actually go in a register.  */
6007         int was_reg = C_DECL_REGISTER (decl);
6008         C_DECL_REGISTER (decl) = 0;
6009         DECL_REGISTER (decl) = 0;
6010         c_mark_addressable (decl);
6011         C_DECL_REGISTER (decl) = was_reg;
6012       }
6013
6014   /* This is the earliest point at which we might know the assembler
6015      name of a variable.  Thus, if it's known before this, die horribly.  */
6016     gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl));
6017
6018     if (warn_cxx_compat
6019         && TREE_CODE (decl) == VAR_DECL
6020         && TREE_PUBLIC (decl)
6021         && TREE_STATIC (decl)
6022         && (TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
6023             || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
6024             || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
6025         && TYPE_NAME (TREE_TYPE (decl)) == NULL_TREE)
6026       warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
6027                   ("non-local variable %qD with anonymous type is "
6028                    "questionable in C++"),
6029                   decl);
6030
6031     return decl;
6032   }
6033 }
6034 \f
6035 /* Decode the parameter-list info for a function type or function definition.
6036    The argument is the value returned by `get_parm_info' (or made in c-parse.c
6037    if there is an identifier list instead of a parameter decl list).
6038    These two functions are separate because when a function returns
6039    or receives functions then each is called multiple times but the order
6040    of calls is different.  The last call to `grokparms' is always the one
6041    that contains the formal parameter names of a function definition.
6042
6043    Return a list of arg types to use in the FUNCTION_TYPE for this function.
6044
6045    FUNCDEF_FLAG is true for a function definition, false for
6046    a mere declaration.  A nonempty identifier-list gets an error message
6047    when FUNCDEF_FLAG is false.  */
6048
6049 static tree
6050 grokparms (struct c_arg_info *arg_info, bool funcdef_flag)
6051 {
6052   tree arg_types = arg_info->types;
6053
6054   if (funcdef_flag && arg_info->had_vla_unspec)
6055     {
6056       /* A function definition isn't function prototype scope C99 6.2.1p4.  */
6057       /* C99 6.7.5.2p4 */
6058       error ("%<[*]%> not allowed in other than function prototype scope");
6059     }
6060
6061   if (arg_types == 0 && !funcdef_flag && !in_system_header)
6062     warning (OPT_Wstrict_prototypes,
6063              "function declaration isn%'t a prototype");
6064
6065   if (arg_types == error_mark_node)
6066     return 0;  /* don't set TYPE_ARG_TYPES in this case */
6067
6068   else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE)
6069     {
6070       if (!funcdef_flag)
6071         pedwarn (input_location, 0, "parameter names (without types) in function declaration");
6072
6073       arg_info->parms = arg_info->types;
6074       arg_info->types = 0;
6075       return 0;
6076     }
6077   else
6078     {
6079       tree parm, type, typelt;
6080       unsigned int parmno;
6081       const char *errmsg;
6082
6083       /* If there is a parameter of incomplete type in a definition,
6084          this is an error.  In a declaration this is valid, and a
6085          struct or union type may be completed later, before any calls
6086          or definition of the function.  In the case where the tag was
6087          first declared within the parameter list, a warning has
6088          already been given.  If a parameter has void type, then
6089          however the function cannot be defined or called, so
6090          warn.  */
6091
6092       for (parm = arg_info->parms, typelt = arg_types, parmno = 1;
6093            parm;
6094            parm = TREE_CHAIN (parm), typelt = TREE_CHAIN (typelt), parmno++)
6095         {
6096           type = TREE_VALUE (typelt);
6097           if (type == error_mark_node)
6098             continue;
6099
6100           if (!COMPLETE_TYPE_P (type))
6101             {
6102               if (funcdef_flag)
6103                 {
6104                   if (DECL_NAME (parm))
6105                     error_at (input_location,
6106                               "parameter %u (%q+D) has incomplete type",
6107                               parmno, parm);
6108                   else
6109                     error_at (DECL_SOURCE_LOCATION (parm),
6110                               "parameter %u has incomplete type",
6111                               parmno);
6112
6113                   TREE_VALUE (typelt) = error_mark_node;
6114                   TREE_TYPE (parm) = error_mark_node;
6115                 }
6116               else if (VOID_TYPE_P (type))
6117                 {
6118                   if (DECL_NAME (parm))
6119                     warning_at (input_location, 0,
6120                                 "parameter %u (%q+D) has void type",
6121                                 parmno, parm);
6122                   else
6123                     warning_at (DECL_SOURCE_LOCATION (parm), 0,
6124                                 "parameter %u has void type",
6125                                 parmno);
6126                 }
6127             }
6128
6129           errmsg = targetm.invalid_parameter_type (type);
6130           if (errmsg)
6131             {
6132               error (errmsg);
6133               TREE_VALUE (typelt) = error_mark_node;
6134               TREE_TYPE (parm) = error_mark_node;
6135             }
6136
6137           if (DECL_NAME (parm) && TREE_USED (parm))
6138             warn_if_shadowing (parm);
6139         }
6140       return arg_types;
6141     }
6142 }
6143
6144 /* Take apart the current scope and return a c_arg_info structure with
6145    info on a parameter list just parsed.
6146
6147    This structure is later fed to 'grokparms' and 'store_parm_decls'.
6148
6149    ELLIPSIS being true means the argument list ended in '...' so don't
6150    append a sentinel (void_list_node) to the end of the type-list.  */
6151
6152 struct c_arg_info *
6153 get_parm_info (bool ellipsis)
6154 {
6155   struct c_binding *b = current_scope->bindings;
6156   struct c_arg_info *arg_info = XOBNEW (&parser_obstack,
6157                                         struct c_arg_info);
6158   tree parms    = 0;
6159   tree tags     = 0;
6160   tree types    = 0;
6161   tree others   = 0;
6162
6163   static bool explained_incomplete_types = false;
6164   bool gave_void_only_once_err = false;
6165
6166   arg_info->parms = 0;
6167   arg_info->tags = 0;
6168   arg_info->types = 0;
6169   arg_info->others = 0;
6170   arg_info->pending_sizes = 0;
6171   arg_info->had_vla_unspec = current_scope->had_vla_unspec;
6172
6173   /* The bindings in this scope must not get put into a block.
6174      We will take care of deleting the binding nodes.  */
6175   current_scope->bindings = 0;
6176
6177   /* This function is only called if there was *something* on the
6178      parameter list.  */
6179   gcc_assert (b);
6180
6181   /* A parameter list consisting solely of 'void' indicates that the
6182      function takes no arguments.  But if the 'void' is qualified
6183      (by 'const' or 'volatile'), or has a storage class specifier
6184      ('register'), then the behavior is undefined; issue an error.
6185      Typedefs for 'void' are OK (see DR#157).  */
6186   if (b->prev == 0                          /* one binding */
6187       && TREE_CODE (b->decl) == PARM_DECL   /* which is a parameter */
6188       && !DECL_NAME (b->decl)               /* anonymous */
6189       && VOID_TYPE_P (TREE_TYPE (b->decl))) /* of void type */
6190     {
6191       if (TREE_THIS_VOLATILE (b->decl)
6192           || TREE_READONLY (b->decl)
6193           || C_DECL_REGISTER (b->decl))
6194         error ("%<void%> as only parameter may not be qualified");
6195
6196       /* There cannot be an ellipsis.  */
6197       if (ellipsis)
6198         error ("%<void%> must be the only parameter");
6199
6200       arg_info->types = void_list_node;
6201       return arg_info;
6202     }
6203
6204   if (!ellipsis)
6205     types = void_list_node;
6206
6207   /* Break up the bindings list into parms, tags, types, and others;
6208      apply sanity checks; purge the name-to-decl bindings.  */
6209   while (b)
6210     {
6211       tree decl = b->decl;
6212       tree type = TREE_TYPE (decl);
6213       const char *keyword;
6214
6215       switch (TREE_CODE (decl))
6216         {
6217         case PARM_DECL:
6218           if (b->id)
6219             {
6220               gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6221               I_SYMBOL_BINDING (b->id) = b->shadowed;
6222             }
6223
6224           /* Check for forward decls that never got their actual decl.  */
6225           if (TREE_ASM_WRITTEN (decl))
6226             error ("parameter %q+D has just a forward declaration", decl);
6227           /* Check for (..., void, ...) and issue an error.  */
6228           else if (VOID_TYPE_P (type) && !DECL_NAME (decl))
6229             {
6230               if (!gave_void_only_once_err)
6231                 {
6232                   error ("%<void%> must be the only parameter");
6233                   gave_void_only_once_err = true;
6234                 }
6235             }
6236           else
6237             {
6238               /* Valid parameter, add it to the list.  */
6239               TREE_CHAIN (decl) = parms;
6240               parms = decl;
6241
6242               /* Since there is a prototype, args are passed in their
6243                  declared types.  The back end may override this later.  */
6244               DECL_ARG_TYPE (decl) = type;
6245               types = tree_cons (0, type, types);
6246             }
6247           break;
6248
6249         case ENUMERAL_TYPE: keyword = "enum"; goto tag;
6250         case UNION_TYPE:    keyword = "union"; goto tag;
6251         case RECORD_TYPE:   keyword = "struct"; goto tag;
6252         tag:
6253           /* Types may not have tag-names, in which case the type
6254              appears in the bindings list with b->id NULL.  */
6255           if (b->id)
6256             {
6257               gcc_assert (I_TAG_BINDING (b->id) == b);
6258               I_TAG_BINDING (b->id) = b->shadowed;
6259             }
6260
6261           /* Warn about any struct, union or enum tags defined in a
6262              parameter list.  The scope of such types is limited to
6263              the parameter list, which is rarely if ever desirable
6264              (it's impossible to call such a function with type-
6265              correct arguments).  An anonymous union parm type is
6266              meaningful as a GNU extension, so don't warn for that.  */
6267           if (TREE_CODE (decl) != UNION_TYPE || b->id != 0)
6268             {
6269               if (b->id)
6270                 /* The %s will be one of 'struct', 'union', or 'enum'.  */
6271                 warning (0, "%<%s %E%> declared inside parameter list",
6272                          keyword, b->id);
6273               else
6274                 /* The %s will be one of 'struct', 'union', or 'enum'.  */
6275                 warning (0, "anonymous %s declared inside parameter list",
6276                          keyword);
6277
6278               if (!explained_incomplete_types)
6279                 {
6280                   warning (0, "its scope is only this definition or declaration,"
6281                            " which is probably not what you want");
6282                   explained_incomplete_types = true;
6283                 }
6284             }
6285
6286           tags = tree_cons (b->id, decl, tags);
6287           break;
6288
6289         case CONST_DECL:
6290         case TYPE_DECL:
6291         case FUNCTION_DECL:
6292           /* CONST_DECLs appear here when we have an embedded enum,
6293              and TYPE_DECLs appear here when we have an embedded struct
6294              or union.  No warnings for this - we already warned about the
6295              type itself.  FUNCTION_DECLs appear when there is an implicit
6296              function declaration in the parameter list.  */
6297
6298           TREE_CHAIN (decl) = others;
6299           others = decl;
6300           /* fall through */
6301
6302         case ERROR_MARK:
6303           /* error_mark_node appears here when we have an undeclared
6304              variable.  Just throw it away.  */
6305           if (b->id)
6306             {
6307               gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6308               I_SYMBOL_BINDING (b->id) = b->shadowed;
6309             }
6310           break;
6311
6312           /* Other things that might be encountered.  */
6313         case LABEL_DECL:
6314         case VAR_DECL:
6315         default:
6316           gcc_unreachable ();
6317         }
6318
6319       b = free_binding_and_advance (b);
6320     }
6321
6322   arg_info->parms = parms;
6323   arg_info->tags = tags;
6324   arg_info->types = types;
6325   arg_info->others = others;
6326   arg_info->pending_sizes = get_pending_sizes ();
6327   return arg_info;
6328 }
6329 \f
6330 /* Get the struct, enum or union (CODE says which) with tag NAME.
6331    Define the tag as a forward-reference with location LOC if it is
6332    not defined.  Return a c_typespec structure for the type
6333    specifier.  */
6334
6335 struct c_typespec
6336 parser_xref_tag (location_t loc, enum tree_code code, tree name)
6337 {
6338   struct c_typespec ret;
6339   tree ref;
6340   location_t refloc;
6341
6342   ret.expr = NULL_TREE;
6343   ret.expr_const_operands = true;
6344
6345   /* If a cross reference is requested, look up the type
6346      already defined for this tag and return it.  */
6347
6348   ref = lookup_tag (code, name, 0, &refloc);
6349   /* If this is the right type of tag, return what we found.
6350      (This reference will be shadowed by shadow_tag later if appropriate.)
6351      If this is the wrong type of tag, do not return it.  If it was the
6352      wrong type in the same scope, we will have had an error
6353      message already; if in a different scope and declaring
6354      a name, pending_xref_error will give an error message; but if in a
6355      different scope and not declaring a name, this tag should
6356      shadow the previous declaration of a different type of tag, and
6357      this would not work properly if we return the reference found.
6358      (For example, with "struct foo" in an outer scope, "union foo;"
6359      must shadow that tag with a new one of union type.)  */
6360   ret.kind = (ref ? ctsk_tagref : ctsk_tagfirstref);
6361   if (ref && TREE_CODE (ref) == code)
6362     {
6363       if (C_TYPE_DEFINED_IN_STRUCT (ref)
6364           && loc != UNKNOWN_LOCATION
6365           && warn_cxx_compat)
6366         {
6367           switch (code)
6368             {
6369             case ENUMERAL_TYPE:
6370               warning_at (loc, OPT_Wc___compat,
6371                           ("enum type defined in struct or union "
6372                            "is not visible in C++"));
6373               inform (refloc, "enum type defined here");
6374               break;
6375             case RECORD_TYPE:
6376               warning_at (loc, OPT_Wc___compat,
6377                           ("struct defined in struct or union "
6378                            "is not visible in C++"));
6379               inform (refloc, "struct defined here");
6380               break;
6381             case UNION_TYPE:
6382               warning_at (loc, OPT_Wc___compat,
6383                           ("union defined in struct or union "
6384                            "is not visible in C++"));
6385               inform (refloc, "union defined here");
6386               break;
6387             default:
6388               gcc_unreachable();
6389             }
6390         }
6391
6392       ret.spec = ref;
6393       return ret;
6394     }
6395
6396   /* If no such tag is yet defined, create a forward-reference node
6397      and record it as the "definition".
6398      When a real declaration of this type is found,
6399      the forward-reference will be altered into a real type.  */
6400
6401   ref = make_node (code);
6402   if (code == ENUMERAL_TYPE)
6403     {
6404       /* Give the type a default layout like unsigned int
6405          to avoid crashing if it does not get defined.  */
6406       SET_TYPE_MODE (ref, TYPE_MODE (unsigned_type_node));
6407       TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
6408       TYPE_USER_ALIGN (ref) = 0;
6409       TYPE_UNSIGNED (ref) = 1;
6410       TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
6411       TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
6412       TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
6413     }
6414
6415   pushtag (loc, name, ref);
6416
6417   ret.spec = ref;
6418   return ret;
6419 }
6420
6421 /* Get the struct, enum or union (CODE says which) with tag NAME.
6422    Define the tag as a forward-reference if it is not defined.
6423    Return a tree for the type.  */
6424
6425 tree
6426 xref_tag (enum tree_code code, tree name)
6427 {
6428   return parser_xref_tag (input_location, code, name).spec;
6429 }
6430 \f
6431 /* Make sure that the tag NAME is defined *in the current scope*
6432    at least as a forward reference.
6433    LOC is the location of the struct's definition.
6434    CODE says which kind of tag NAME ought to be.
6435
6436    This stores the current value of the file static STRUCT_PARSE_INFO
6437    in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
6438    new c_struct_parse_info structure.  The old value of
6439    STRUCT_PARSE_INFO is restored in finish_struct.  */
6440
6441 tree
6442 start_struct (location_t loc, enum tree_code code, tree name,
6443               struct c_struct_parse_info **enclosing_struct_parse_info)
6444 {
6445   /* If there is already a tag defined at this scope
6446      (as a forward reference), just return it.  */
6447
6448   tree ref = NULL_TREE;
6449   location_t refloc = UNKNOWN_LOCATION;
6450
6451   if (name != NULL_TREE)
6452     ref = lookup_tag (code, name, 1, &refloc);
6453   if (ref && TREE_CODE (ref) == code)
6454     {
6455       if (TYPE_SIZE (ref))
6456         {
6457           if (code == UNION_TYPE)
6458             error_at (loc, "redefinition of %<union %E%>", name);
6459           else
6460             error_at (loc, "redefinition of %<struct %E%>", name);
6461           if (refloc != UNKNOWN_LOCATION)
6462             inform (refloc, "originally defined here");
6463           /* Don't create structures using a name already in use.  */
6464           ref = NULL_TREE;
6465         }
6466       else if (C_TYPE_BEING_DEFINED (ref))
6467         {
6468           if (code == UNION_TYPE)
6469             error_at (loc, "nested redefinition of %<union %E%>", name);
6470           else
6471             error_at (loc, "nested redefinition of %<struct %E%>", name);
6472           /* Don't bother to report "originally defined here" for a
6473              nested redefinition; the original definition should be
6474              obvious.  */
6475           /* Don't create structures that contain themselves.  */
6476           ref = NULL_TREE;
6477         }
6478     }
6479
6480   /* Otherwise create a forward-reference just so the tag is in scope.  */
6481
6482   if (ref == NULL_TREE || TREE_CODE (ref) != code)
6483     {
6484       ref = make_node (code);
6485       pushtag (loc, name, ref);
6486     }
6487
6488   C_TYPE_BEING_DEFINED (ref) = 1;
6489   TYPE_PACKED (ref) = flag_pack_struct;
6490
6491   *enclosing_struct_parse_info = struct_parse_info;
6492   struct_parse_info = XNEW (struct c_struct_parse_info);
6493   struct_parse_info->struct_types = VEC_alloc (tree, heap, 0);
6494   struct_parse_info->fields = VEC_alloc (c_binding_ptr, heap, 0);
6495   struct_parse_info->typedefs_seen = VEC_alloc (tree, heap, 0);
6496
6497   /* FIXME: This will issue a warning for a use of a type defined
6498      within a statement expr used within sizeof, et. al.  This is not
6499      terribly serious as C++ doesn't permit statement exprs within
6500      sizeof anyhow.  */
6501   if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
6502     warning_at (loc, OPT_Wc___compat,
6503                 "defining type in %qs expression is invalid in C++",
6504                 (in_sizeof
6505                  ? "sizeof"
6506                  : (in_typeof ? "typeof" : "alignof")));
6507
6508   return ref;
6509 }
6510
6511 /* Process the specs, declarator and width (NULL if omitted)
6512    of a structure component, returning a FIELD_DECL node.
6513    WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
6514    DECL_ATTRS is as for grokdeclarator.
6515
6516    LOC is the location of the structure component.
6517
6518    This is done during the parsing of the struct declaration.
6519    The FIELD_DECL nodes are chained together and the lot of them
6520    are ultimately passed to `build_struct' to make the RECORD_TYPE node.  */
6521
6522 tree
6523 grokfield (location_t loc,
6524            struct c_declarator *declarator, struct c_declspecs *declspecs,
6525            tree width, tree *decl_attrs)
6526 {
6527   tree value;
6528
6529   if (declarator->kind == cdk_id && declarator->u.id == NULL_TREE
6530       && width == NULL_TREE)
6531     {
6532       /* This is an unnamed decl.
6533
6534          If we have something of the form "union { list } ;" then this
6535          is the anonymous union extension.  Similarly for struct.
6536
6537          If this is something of the form "struct foo;", then
6538            If MS extensions are enabled, this is handled as an
6539              anonymous struct.
6540            Otherwise this is a forward declaration of a structure tag.
6541
6542          If this is something of the form "foo;" and foo is a TYPE_DECL, then
6543            If MS extensions are enabled and foo names a structure, then
6544              again this is an anonymous struct.
6545            Otherwise this is an error.
6546
6547          Oh what a horrid tangled web we weave.  I wonder if MS consciously
6548          took this from Plan 9 or if it was an accident of implementation
6549          that took root before someone noticed the bug...  */
6550
6551       tree type = declspecs->type;
6552       bool type_ok = (TREE_CODE (type) == RECORD_TYPE
6553                       || TREE_CODE (type) == UNION_TYPE);
6554       bool ok = false;
6555
6556       if (type_ok
6557           && (flag_ms_extensions || !declspecs->typedef_p))
6558         {
6559           if (flag_ms_extensions)
6560             ok = true;
6561           else if (flag_iso)
6562             ok = false;
6563           else if (TYPE_NAME (type) == NULL)
6564             ok = true;
6565           else
6566             ok = false;
6567         }
6568       if (!ok)
6569         {
6570           pedwarn (loc, 0, "declaration does not declare anything");
6571           return NULL_TREE;
6572         }
6573       pedwarn (loc, OPT_pedantic, "ISO C doesn%'t support unnamed structs/unions");
6574     }
6575
6576   value = grokdeclarator (declarator, declspecs, FIELD, false,
6577                           width ? &width : NULL, decl_attrs, NULL, NULL,
6578                           DEPRECATED_NORMAL);
6579
6580   finish_decl (value, loc, NULL_TREE, NULL_TREE, NULL_TREE);
6581   DECL_INITIAL (value) = width;
6582
6583   if (warn_cxx_compat && DECL_NAME (value) != NULL_TREE)
6584     {
6585       /* If we currently have a binding for this field, set the
6586          in_struct field in the binding, so that we warn about lookups
6587          which find it.  */
6588       struct c_binding *b = I_SYMBOL_BINDING (DECL_NAME (value));
6589       if (b != NULL)
6590         {
6591           /* If the in_struct field is not yet set, push it on a list
6592              to be cleared when this struct is finished.  */
6593           if (!b->in_struct)
6594             {
6595               VEC_safe_push (c_binding_ptr, heap,
6596                              struct_parse_info->fields, b);
6597               b->in_struct = 1;
6598             }
6599         }
6600     }
6601
6602   return value;
6603 }
6604 \f
6605 /* Generate an error for any duplicate field names in FIELDLIST.  Munge
6606    the list such that this does not present a problem later.  */
6607
6608 static void
6609 detect_field_duplicates (tree fieldlist)
6610 {
6611   tree x, y;
6612   int timeout = 10;
6613
6614   /* First, see if there are more than "a few" fields.
6615      This is trivially true if there are zero or one fields.  */
6616   if (!fieldlist)
6617     return;
6618   x = TREE_CHAIN (fieldlist);
6619   if (!x)
6620     return;
6621   do {
6622     timeout--;
6623     x = TREE_CHAIN (x);
6624   } while (timeout > 0 && x);
6625
6626   /* If there were "few" fields, avoid the overhead of allocating
6627      a hash table.  Instead just do the nested traversal thing.  */
6628   if (timeout > 0)
6629     {
6630       for (x = TREE_CHAIN (fieldlist); x ; x = TREE_CHAIN (x))
6631         if (DECL_NAME (x))
6632           {
6633             for (y = fieldlist; y != x; y = TREE_CHAIN (y))
6634               if (DECL_NAME (y) == DECL_NAME (x))
6635                 {
6636                   error ("duplicate member %q+D", x);
6637                   DECL_NAME (x) = NULL_TREE;
6638                 }
6639           }
6640     }
6641   else
6642     {
6643       htab_t htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
6644       void **slot;
6645
6646       for (x = fieldlist; x ; x = TREE_CHAIN (x))
6647         if ((y = DECL_NAME (x)) != 0)
6648           {
6649             slot = htab_find_slot (htab, y, INSERT);
6650             if (*slot)
6651               {
6652                 error ("duplicate member %q+D", x);
6653                 DECL_NAME (x) = NULL_TREE;
6654               }
6655             *slot = y;
6656           }
6657
6658       htab_delete (htab);
6659     }
6660 }
6661
6662 /* Finish up struct info used by -Wc++-compat.  */
6663
6664 static void
6665 warn_cxx_compat_finish_struct (tree fieldlist)
6666 {
6667   unsigned int ix;
6668   tree x;
6669   struct c_binding *b;
6670
6671   /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
6672      the current struct.  We do this now at the end of the struct
6673      because the flag is used to issue visibility warnings, and we
6674      only want to issue those warnings if the type is referenced
6675      outside of the struct declaration.  */
6676   for (ix = 0; VEC_iterate (tree, struct_parse_info->struct_types, ix, x); ++ix)
6677     C_TYPE_DEFINED_IN_STRUCT (x) = 1;
6678
6679   /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
6680      typedefs used when declaring fields in this struct.  If the name
6681      of any of the fields is also a typedef name then the struct would
6682      not parse in C++, because the C++ lookup rules say that the
6683      typedef name would be looked up in the context of the struct, and
6684      would thus be the field rather than the typedef.  */
6685   if (!VEC_empty (tree, struct_parse_info->typedefs_seen)
6686       && fieldlist != NULL_TREE)
6687     {
6688       /* Use a pointer_set using the name of the typedef.  We can use
6689          a pointer_set because identifiers are interned.  */
6690       struct pointer_set_t *tset = pointer_set_create ();
6691
6692       for (ix = 0;
6693            VEC_iterate (tree, struct_parse_info->typedefs_seen, ix, x);
6694            ++ix)
6695         pointer_set_insert (tset, DECL_NAME (x));
6696
6697       for (x = fieldlist; x != NULL_TREE; x = TREE_CHAIN (x))
6698         {
6699           if (pointer_set_contains (tset, DECL_NAME (x)))
6700             {
6701               warning_at (DECL_SOURCE_LOCATION (x), OPT_Wc___compat,
6702                           ("using %qD as both field and typedef name is "
6703                            "invalid in C++"),
6704                           x);
6705               /* FIXME: It would be nice to report the location where
6706                  the typedef name is used.  */
6707             }
6708         }
6709
6710       pointer_set_destroy (tset);
6711     }
6712
6713   /* For each field which has a binding and which was not defined in
6714      an enclosing struct, clear the in_struct field.  */
6715   for (ix = 0;
6716        VEC_iterate (c_binding_ptr, struct_parse_info->fields, ix, b);
6717        ++ix)
6718     b->in_struct = 0;
6719 }
6720
6721 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
6722    LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
6723    FIELDLIST is a chain of FIELD_DECL nodes for the fields.
6724    ATTRIBUTES are attributes to be applied to the structure.
6725
6726    ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
6727    the struct was started.  */
6728
6729 tree
6730 finish_struct (location_t loc, tree t, tree fieldlist, tree attributes,
6731                struct c_struct_parse_info *enclosing_struct_parse_info)
6732 {
6733   tree x;
6734   bool toplevel = file_scope == current_scope;
6735   int saw_named_field;
6736
6737   /* If this type was previously laid out as a forward reference,
6738      make sure we lay it out again.  */
6739
6740   TYPE_SIZE (t) = 0;
6741
6742   decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
6743
6744   if (pedantic)
6745     {
6746       for (x = fieldlist; x; x = TREE_CHAIN (x))
6747         if (DECL_NAME (x) != 0)
6748           break;
6749
6750       if (x == 0)
6751         {
6752           if (TREE_CODE (t) == UNION_TYPE)
6753             {
6754               if (fieldlist)
6755                 pedwarn (loc, OPT_pedantic, "union has no named members");
6756               else
6757                 pedwarn (loc, OPT_pedantic, "union has no members");
6758             }
6759           else
6760             {
6761               if (fieldlist)
6762                 pedwarn (loc, OPT_pedantic, "struct has no named members");
6763               else
6764                 pedwarn (loc, OPT_pedantic, "struct has no members");
6765             }
6766         }
6767     }
6768
6769   /* Install struct as DECL_CONTEXT of each field decl.
6770      Also process specified field sizes, found in the DECL_INITIAL,
6771      storing 0 there after the type has been changed to precision equal
6772      to its width, rather than the precision of the specified standard
6773      type.  (Correct layout requires the original type to have been preserved
6774      until now.)  */
6775
6776   saw_named_field = 0;
6777   for (x = fieldlist; x; x = TREE_CHAIN (x))
6778     {
6779       if (TREE_TYPE (x) == error_mark_node)
6780         continue;
6781
6782       DECL_CONTEXT (x) = t;
6783
6784       /* If any field is const, the structure type is pseudo-const.  */
6785       if (TREE_READONLY (x))
6786         C_TYPE_FIELDS_READONLY (t) = 1;
6787       else
6788         {
6789           /* A field that is pseudo-const makes the structure likewise.  */
6790           tree t1 = TREE_TYPE (x);
6791           while (TREE_CODE (t1) == ARRAY_TYPE)
6792             t1 = TREE_TYPE (t1);
6793           if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
6794               && C_TYPE_FIELDS_READONLY (t1))
6795             C_TYPE_FIELDS_READONLY (t) = 1;
6796         }
6797
6798       /* Any field that is volatile means variables of this type must be
6799          treated in some ways as volatile.  */
6800       if (TREE_THIS_VOLATILE (x))
6801         C_TYPE_FIELDS_VOLATILE (t) = 1;
6802
6803       /* Any field of nominal variable size implies structure is too.  */
6804       if (C_DECL_VARIABLE_SIZE (x))
6805         C_TYPE_VARIABLE_SIZE (t) = 1;
6806
6807       if (DECL_INITIAL (x))
6808         {
6809           unsigned HOST_WIDE_INT width = tree_low_cst (DECL_INITIAL (x), 1);
6810           DECL_SIZE (x) = bitsize_int (width);
6811           DECL_BIT_FIELD (x) = 1;
6812           SET_DECL_C_BIT_FIELD (x);
6813         }
6814
6815       if (TYPE_PACKED (t)
6816           && (DECL_BIT_FIELD (x)
6817               || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT))
6818         DECL_PACKED (x) = 1;
6819
6820       /* Detect flexible array member in an invalid context.  */
6821       if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
6822           && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
6823           && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
6824           && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
6825         {
6826           if (TREE_CODE (t) == UNION_TYPE)
6827             {
6828               error_at (DECL_SOURCE_LOCATION (x),
6829                         "flexible array member in union");
6830               TREE_TYPE (x) = error_mark_node;
6831             }
6832           else if (TREE_CHAIN (x) != NULL_TREE)
6833             {
6834               error_at (DECL_SOURCE_LOCATION (x),
6835                         "flexible array member not at end of struct");
6836               TREE_TYPE (x) = error_mark_node;
6837             }
6838           else if (!saw_named_field)
6839             {
6840               error_at (DECL_SOURCE_LOCATION (x),
6841                         "flexible array member in otherwise empty struct");
6842               TREE_TYPE (x) = error_mark_node;
6843             }
6844         }
6845
6846       if (pedantic && TREE_CODE (t) == RECORD_TYPE
6847           && flexible_array_type_p (TREE_TYPE (x)))
6848         pedwarn (DECL_SOURCE_LOCATION (x), OPT_pedantic,
6849                  "invalid use of structure with flexible array member");
6850
6851       if (DECL_NAME (x))
6852         saw_named_field = 1;
6853     }
6854
6855   detect_field_duplicates (fieldlist);
6856
6857   /* Now we have the nearly final fieldlist.  Record it,
6858      then lay out the structure or union (including the fields).  */
6859
6860   TYPE_FIELDS (t) = fieldlist;
6861
6862   layout_type (t);
6863
6864   /* Give bit-fields their proper types.  */
6865   {
6866     tree *fieldlistp = &fieldlist;
6867     while (*fieldlistp)
6868       if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp)
6869           && TREE_TYPE (*fieldlistp) != error_mark_node)
6870         {
6871           unsigned HOST_WIDE_INT width
6872             = tree_low_cst (DECL_INITIAL (*fieldlistp), 1);
6873           tree type = TREE_TYPE (*fieldlistp);
6874           if (width != TYPE_PRECISION (type))
6875             {
6876               TREE_TYPE (*fieldlistp)
6877                 = c_build_bitfield_integer_type (width, TYPE_UNSIGNED (type));
6878               DECL_MODE (*fieldlistp) = TYPE_MODE (TREE_TYPE (*fieldlistp));
6879             }
6880           DECL_INITIAL (*fieldlistp) = 0;
6881         }
6882       else
6883         fieldlistp = &TREE_CHAIN (*fieldlistp);
6884   }
6885
6886   /* Now we have the truly final field list.
6887      Store it in this type and in the variants.  */
6888
6889   TYPE_FIELDS (t) = fieldlist;
6890
6891   /* If there are lots of fields, sort so we can look through them fast.
6892      We arbitrarily consider 16 or more elts to be "a lot".  */
6893
6894   {
6895     int len = 0;
6896
6897     for (x = fieldlist; x; x = TREE_CHAIN (x))
6898       {
6899         if (len > 15 || DECL_NAME (x) == NULL)
6900           break;
6901         len += 1;
6902       }
6903
6904     if (len > 15)
6905       {
6906         tree *field_array;
6907         struct lang_type *space;
6908         struct sorted_fields_type *space2;
6909
6910         len += list_length (x);
6911
6912         /* Use the same allocation policy here that make_node uses, to
6913           ensure that this lives as long as the rest of the struct decl.
6914           All decls in an inline function need to be saved.  */
6915
6916         space = GGC_CNEW (struct lang_type);
6917         space2 = GGC_NEWVAR (struct sorted_fields_type,
6918                              sizeof (struct sorted_fields_type) + len * sizeof (tree));
6919
6920         len = 0;
6921         space->s = space2;
6922         field_array = &space2->elts[0];
6923         for (x = fieldlist; x; x = TREE_CHAIN (x))
6924           {
6925             field_array[len++] = x;
6926
6927             /* If there is anonymous struct or union, break out of the loop.  */
6928             if (DECL_NAME (x) == NULL)
6929               break;
6930           }
6931         /* Found no anonymous struct/union.  Add the TYPE_LANG_SPECIFIC.  */
6932         if (x == NULL)
6933           {
6934             TYPE_LANG_SPECIFIC (t) = space;
6935             TYPE_LANG_SPECIFIC (t)->s->len = len;
6936             field_array = TYPE_LANG_SPECIFIC (t)->s->elts;
6937             qsort (field_array, len, sizeof (tree), field_decl_cmp);
6938           }
6939       }
6940   }
6941
6942   for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
6943     {
6944       TYPE_FIELDS (x) = TYPE_FIELDS (t);
6945       TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
6946       C_TYPE_FIELDS_READONLY (x) = C_TYPE_FIELDS_READONLY (t);
6947       C_TYPE_FIELDS_VOLATILE (x) = C_TYPE_FIELDS_VOLATILE (t);
6948       C_TYPE_VARIABLE_SIZE (x) = C_TYPE_VARIABLE_SIZE (t);
6949     }
6950
6951   /* If this was supposed to be a transparent union, but we can't
6952      make it one, warn and turn off the flag.  */
6953   if (TREE_CODE (t) == UNION_TYPE
6954       && TYPE_TRANSPARENT_UNION (t)
6955       && (!TYPE_FIELDS (t) || TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t))))
6956     {
6957       TYPE_TRANSPARENT_UNION (t) = 0;
6958       warning_at (loc, 0, "union cannot be made transparent");
6959     }
6960
6961   /* If this structure or union completes the type of any previous
6962      variable declaration, lay it out and output its rtl.  */
6963   for (x = C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t));
6964        x;
6965        x = TREE_CHAIN (x))
6966     {
6967       tree decl = TREE_VALUE (x);
6968       if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
6969         layout_array_type (TREE_TYPE (decl));
6970       if (TREE_CODE (decl) != TYPE_DECL)
6971         {
6972           layout_decl (decl, 0);
6973           if (c_dialect_objc ())
6974             objc_check_decl (decl);
6975           rest_of_decl_compilation (decl, toplevel, 0);
6976           if (!toplevel)
6977             expand_decl (decl);
6978         }
6979     }
6980   C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t)) = 0;
6981
6982   /* Update type location to the one of the definition, instead of e.g.
6983      a forward declaration.  */
6984   if (TYPE_STUB_DECL (t))
6985     DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t)) = loc;
6986
6987   /* Finish debugging output for this type.  */
6988   rest_of_type_compilation (t, toplevel);
6989
6990   /* If we're inside a function proper, i.e. not file-scope and not still
6991      parsing parameters, then arrange for the size of a variable sized type
6992      to be bound now.  */
6993   if (cur_stmt_list && variably_modified_type_p (t, NULL_TREE))
6994     add_stmt (build_stmt (loc,
6995                           DECL_EXPR, build_decl (loc, TYPE_DECL, NULL, t)));
6996
6997   if (warn_cxx_compat)
6998     warn_cxx_compat_finish_struct (fieldlist);
6999
7000   VEC_free (tree, heap, struct_parse_info->struct_types);
7001   VEC_free (c_binding_ptr, heap, struct_parse_info->fields);
7002   VEC_free (tree, heap, struct_parse_info->typedefs_seen);
7003   XDELETE (struct_parse_info);
7004
7005   struct_parse_info = enclosing_struct_parse_info;
7006
7007   /* If this struct is defined inside a struct, add it to
7008      struct_types.  */
7009   if (warn_cxx_compat
7010       && struct_parse_info != NULL
7011       && !in_sizeof && !in_typeof && !in_alignof)
7012     VEC_safe_push (tree, heap, struct_parse_info->struct_types, t);
7013
7014   return t;
7015 }
7016
7017 /* Lay out the type T, and its element type, and so on.  */
7018
7019 static void
7020 layout_array_type (tree t)
7021 {
7022   if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
7023     layout_array_type (TREE_TYPE (t));
7024   layout_type (t);
7025 }
7026 \f
7027 /* Begin compiling the definition of an enumeration type.
7028    NAME is its name (or null if anonymous).
7029    LOC is the enum's location.
7030    Returns the type object, as yet incomplete.
7031    Also records info about it so that build_enumerator
7032    may be used to declare the individual values as they are read.  */
7033
7034 tree
7035 start_enum (location_t loc, struct c_enum_contents *the_enum, tree name)
7036 {
7037   tree enumtype = NULL_TREE;
7038   location_t enumloc = UNKNOWN_LOCATION;
7039
7040   /* If this is the real definition for a previous forward reference,
7041      fill in the contents in the same object that used to be the
7042      forward reference.  */
7043
7044   if (name != NULL_TREE)
7045     enumtype = lookup_tag (ENUMERAL_TYPE, name, 1, &enumloc);
7046
7047   if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
7048     {
7049       enumtype = make_node (ENUMERAL_TYPE);
7050       pushtag (loc, name, enumtype);
7051     }
7052
7053   if (C_TYPE_BEING_DEFINED (enumtype))
7054     error_at (loc, "nested redefinition of %<enum %E%>", name);
7055
7056   C_TYPE_BEING_DEFINED (enumtype) = 1;
7057
7058   if (TYPE_VALUES (enumtype) != 0)
7059     {
7060       /* This enum is a named one that has been declared already.  */
7061       error_at (loc, "redeclaration of %<enum %E%>", name);
7062       if (enumloc != UNKNOWN_LOCATION)
7063         inform (enumloc, "originally defined here");
7064
7065       /* Completely replace its old definition.
7066          The old enumerators remain defined, however.  */
7067       TYPE_VALUES (enumtype) = 0;
7068     }
7069
7070   the_enum->enum_next_value = integer_zero_node;
7071   the_enum->enum_overflow = 0;
7072
7073   if (flag_short_enums)
7074     TYPE_PACKED (enumtype) = 1;
7075
7076   /* FIXME: This will issue a warning for a use of a type defined
7077      within sizeof in a statement expr.  This is not terribly serious
7078      as C++ doesn't permit statement exprs within sizeof anyhow.  */
7079   if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
7080     warning_at (loc, OPT_Wc___compat,
7081                 "defining type in %qs expression is invalid in C++",
7082                 (in_sizeof
7083                  ? "sizeof"
7084                  : (in_typeof ? "typeof" : "alignof")));
7085
7086   return enumtype;
7087 }
7088
7089 /* After processing and defining all the values of an enumeration type,
7090    install their decls in the enumeration type and finish it off.
7091    ENUMTYPE is the type object, VALUES a list of decl-value pairs,
7092    and ATTRIBUTES are the specified attributes.
7093    Returns ENUMTYPE.  */
7094
7095 tree
7096 finish_enum (tree enumtype, tree values, tree attributes)
7097 {
7098   tree pair, tem;
7099   tree minnode = 0, maxnode = 0;
7100   int precision, unsign;
7101   bool toplevel = (file_scope == current_scope);
7102   struct lang_type *lt;
7103
7104   decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
7105
7106   /* Calculate the maximum value of any enumerator in this type.  */
7107
7108   if (values == error_mark_node)
7109     minnode = maxnode = integer_zero_node;
7110   else
7111     {
7112       minnode = maxnode = TREE_VALUE (values);
7113       for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
7114         {
7115           tree value = TREE_VALUE (pair);
7116           if (tree_int_cst_lt (maxnode, value))
7117             maxnode = value;
7118           if (tree_int_cst_lt (value, minnode))
7119             minnode = value;
7120         }
7121     }
7122
7123   /* Construct the final type of this enumeration.  It is the same
7124      as one of the integral types - the narrowest one that fits, except
7125      that normally we only go as narrow as int - and signed iff any of
7126      the values are negative.  */
7127   unsign = (tree_int_cst_sgn (minnode) >= 0);
7128   precision = MAX (tree_int_cst_min_precision (minnode, unsign),
7129                    tree_int_cst_min_precision (maxnode, unsign));
7130
7131   if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
7132     {
7133       tem = c_common_type_for_size (precision, unsign);
7134       if (tem == NULL)
7135         {
7136           warning (0, "enumeration values exceed range of largest integer");
7137           tem = long_long_integer_type_node;
7138         }
7139     }
7140   else
7141     tem = unsign ? unsigned_type_node : integer_type_node;
7142
7143   TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (tem);
7144   TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (tem);
7145   TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (tem);
7146   TYPE_SIZE (enumtype) = 0;
7147
7148   /* If the precision of the type was specific with an attribute and it
7149      was too small, give an error.  Otherwise, use it.  */
7150   if (TYPE_PRECISION (enumtype))
7151     {
7152       if (precision > TYPE_PRECISION (enumtype))
7153         error ("specified mode too small for enumeral values");
7154     }
7155   else
7156     TYPE_PRECISION (enumtype) = TYPE_PRECISION (tem);
7157
7158   layout_type (enumtype);
7159
7160   if (values != error_mark_node)
7161     {
7162       /* Change the type of the enumerators to be the enum type.  We
7163          need to do this irrespective of the size of the enum, for
7164          proper type checking.  Replace the DECL_INITIALs of the
7165          enumerators, and the value slots of the list, with copies
7166          that have the enum type; they cannot be modified in place
7167          because they may be shared (e.g.  integer_zero_node) Finally,
7168          change the purpose slots to point to the names of the decls.  */
7169       for (pair = values; pair; pair = TREE_CHAIN (pair))
7170         {
7171           tree enu = TREE_PURPOSE (pair);
7172           tree ini = DECL_INITIAL (enu);
7173
7174           TREE_TYPE (enu) = enumtype;
7175
7176           /* The ISO C Standard mandates enumerators to have type int,
7177              even though the underlying type of an enum type is
7178              unspecified.  However, GCC allows enumerators of any
7179              integer type as an extensions.  build_enumerator()
7180              converts any enumerators that fit in an int to type int,
7181              to avoid promotions to unsigned types when comparing
7182              integers with enumerators that fit in the int range.
7183              When -pedantic is given, build_enumerator() would have
7184              already warned about those that don't fit. Here we
7185              convert the rest to the enumerator type. */
7186           if (TREE_TYPE (ini) != integer_type_node)
7187             ini = convert (enumtype, ini);
7188
7189           DECL_INITIAL (enu) = ini;
7190           TREE_PURPOSE (pair) = DECL_NAME (enu);
7191           TREE_VALUE (pair) = ini;
7192         }
7193
7194       TYPE_VALUES (enumtype) = values;
7195     }
7196
7197   /* Record the min/max values so that we can warn about bit-field
7198      enumerations that are too small for the values.  */
7199   lt = GGC_CNEW (struct lang_type);
7200   lt->enum_min = minnode;
7201   lt->enum_max = maxnode;
7202   TYPE_LANG_SPECIFIC (enumtype) = lt;
7203
7204   /* Fix up all variant types of this enum type.  */
7205   for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
7206     {
7207       if (tem == enumtype)
7208         continue;
7209       TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
7210       TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
7211       TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
7212       TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
7213       TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
7214       SET_TYPE_MODE (tem, TYPE_MODE (enumtype));
7215       TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
7216       TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
7217       TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
7218       TYPE_UNSIGNED (tem) = TYPE_UNSIGNED (enumtype);
7219       TYPE_LANG_SPECIFIC (tem) = TYPE_LANG_SPECIFIC (enumtype);
7220     }
7221
7222   /* Finish debugging output for this type.  */
7223   rest_of_type_compilation (enumtype, toplevel);
7224
7225   /* If this enum is defined inside a struct, add it to
7226      struct_types.  */
7227   if (warn_cxx_compat
7228       && struct_parse_info != NULL
7229       && !in_sizeof && !in_typeof && !in_alignof)
7230     VEC_safe_push (tree, heap, struct_parse_info->struct_types, enumtype);
7231
7232   return enumtype;
7233 }
7234
7235 /* Build and install a CONST_DECL for one value of the
7236    current enumeration type (one that was begun with start_enum).
7237    LOC is the location of the enumerator.
7238    Return a tree-list containing the CONST_DECL and its value.
7239    Assignment of sequential values by default is handled here.  */
7240
7241 tree
7242 build_enumerator (location_t loc,
7243                   struct c_enum_contents *the_enum, tree name, tree value)
7244 {
7245   tree decl, type;
7246
7247   /* Validate and default VALUE.  */
7248
7249   if (value != 0)
7250     {
7251       /* Don't issue more errors for error_mark_node (i.e. an
7252          undeclared identifier) - just ignore the value expression.  */
7253       if (value == error_mark_node)
7254         value = 0;
7255       else if (!INTEGRAL_TYPE_P (TREE_TYPE (value)))
7256         {
7257           error_at (loc, "enumerator value for %qE is not an integer constant",
7258                     name);
7259           value = 0;
7260         }
7261       else
7262         {
7263           if (TREE_CODE (value) != INTEGER_CST)
7264             {
7265               value = c_fully_fold (value, false, NULL);
7266               if (TREE_CODE (value) == INTEGER_CST)
7267                 pedwarn (loc, OPT_pedantic,
7268                          "enumerator value for %qE is not an integer "
7269                          "constant expression", name);
7270             }
7271           if (TREE_CODE (value) != INTEGER_CST)
7272             {
7273               error ("enumerator value for %qE is not an integer constant",
7274                      name);
7275               value = 0;
7276             }
7277           else
7278             {
7279               value = default_conversion (value);
7280               constant_expression_warning (value);
7281             }
7282         }
7283     }
7284
7285   /* Default based on previous value.  */
7286   /* It should no longer be possible to have NON_LVALUE_EXPR
7287      in the default.  */
7288   if (value == 0)
7289     {
7290       value = the_enum->enum_next_value;
7291       if (the_enum->enum_overflow)
7292         error_at (loc, "overflow in enumeration values");
7293     }
7294   /* Even though the underlying type of an enum is unspecified, the
7295      type of enumeration constants is explicitly defined as int
7296      (6.4.4.3/2 in the C99 Standard).  GCC allows any integer type as
7297      an extension.  */
7298   else if (!int_fits_type_p (value, integer_type_node))
7299     pedwarn (loc, OPT_pedantic,
7300              "ISO C restricts enumerator values to range of %<int%>");
7301
7302   /* The ISO C Standard mandates enumerators to have type int, even
7303      though the underlying type of an enum type is unspecified.
7304      However, GCC allows enumerators of any integer type as an
7305      extensions.  Here we convert any enumerators that fit in an int
7306      to type int, to avoid promotions to unsigned types when comparing
7307      integers with enumerators that fit in the int range.  When
7308      -pedantic is given, we would have already warned about those that
7309      don't fit. We have to do this here rather than in finish_enum
7310      because this value may be used to define more enumerators.  */
7311   if (int_fits_type_p (value, integer_type_node))
7312     value = convert (integer_type_node, value);
7313
7314   /* Set basis for default for next value.  */
7315   the_enum->enum_next_value
7316     = build_binary_op
7317          (EXPR_HAS_LOCATION (value) ? EXPR_LOCATION (value) : input_location,
7318          PLUS_EXPR, value, integer_one_node, 0);
7319   the_enum->enum_overflow = tree_int_cst_lt (the_enum->enum_next_value, value);
7320
7321   /* Now create a declaration for the enum value name.  */
7322
7323   type = TREE_TYPE (value);
7324   type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
7325                                       TYPE_PRECISION (integer_type_node)),
7326                                  (TYPE_PRECISION (type)
7327                                   >= TYPE_PRECISION (integer_type_node)
7328                                   && TYPE_UNSIGNED (type)));
7329
7330   decl = build_decl (loc, CONST_DECL, name, type);
7331   DECL_INITIAL (decl) = convert (type, value);
7332   pushdecl (decl);
7333
7334   return tree_cons (decl, value, NULL_TREE);
7335 }
7336
7337 \f
7338 /* Create the FUNCTION_DECL for a function definition.
7339    DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
7340    the declaration; they describe the function's name and the type it returns,
7341    but twisted together in a fashion that parallels the syntax of C.
7342
7343    This function creates a binding context for the function body
7344    as well as setting up the FUNCTION_DECL in current_function_decl.
7345
7346    Returns 1 on success.  If the DECLARATOR is not suitable for a function
7347    (it defines a datum instead), we return 0, which tells
7348    yyparse to report a parse error.  */
7349
7350 int
7351 start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
7352                 tree attributes)
7353 {
7354   tree decl1, old_decl;
7355   tree restype, resdecl;
7356   location_t loc;
7357
7358   current_function_returns_value = 0;  /* Assume, until we see it does.  */
7359   current_function_returns_null = 0;
7360   current_function_returns_abnormally = 0;
7361   warn_about_return_type = 0;
7362   c_switch_stack = NULL;
7363
7364   /* Indicate no valid break/continue context by setting these variables
7365      to some non-null, non-label value.  We'll notice and emit the proper
7366      error message in c_finish_bc_stmt.  */
7367   c_break_label = c_cont_label = size_zero_node;
7368
7369   decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
7370                           &attributes, NULL, NULL, DEPRECATED_NORMAL);
7371
7372   /* If the declarator is not suitable for a function definition,
7373      cause a syntax error.  */
7374   if (decl1 == 0)
7375     return 0;
7376
7377   loc = DECL_SOURCE_LOCATION (decl1);
7378
7379   decl_attributes (&decl1, attributes, 0);
7380
7381   if (DECL_DECLARED_INLINE_P (decl1)
7382       && DECL_UNINLINABLE (decl1)
7383       && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
7384     warning_at (loc, OPT_Wattributes,
7385                 "inline function %qD given attribute noinline",
7386                 decl1);
7387
7388   /* Handle gnu_inline attribute.  */
7389   if (declspecs->inline_p
7390       && !flag_gnu89_inline
7391       && TREE_CODE (decl1) == FUNCTION_DECL
7392       && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1))
7393           || current_function_decl))
7394     {
7395       if (declspecs->storage_class != csc_static)
7396         DECL_EXTERNAL (decl1) = !DECL_EXTERNAL (decl1);
7397     }
7398
7399   announce_function (decl1);
7400
7401   if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
7402     {
7403       error_at (loc, "return type is an incomplete type");
7404       /* Make it return void instead.  */
7405       TREE_TYPE (decl1)
7406         = build_function_type (void_type_node,
7407                                TYPE_ARG_TYPES (TREE_TYPE (decl1)));
7408     }
7409
7410   if (warn_about_return_type)
7411     pedwarn_c99 (loc, flag_isoc99 ? 0
7412                  : (warn_return_type ? OPT_Wreturn_type : OPT_Wimplicit_int),
7413                  "return type defaults to %<int%>");
7414
7415   /* Make the init_value nonzero so pushdecl knows this is not tentative.
7416      error_mark_node is replaced below (in pop_scope) with the BLOCK.  */
7417   DECL_INITIAL (decl1) = error_mark_node;
7418
7419   /* If this definition isn't a prototype and we had a prototype declaration
7420      before, copy the arg type info from that prototype.  */
7421   old_decl = lookup_name_in_scope (DECL_NAME (decl1), current_scope);
7422   if (old_decl && TREE_CODE (old_decl) != FUNCTION_DECL)
7423     old_decl = 0;
7424   current_function_prototype_locus = UNKNOWN_LOCATION;
7425   current_function_prototype_built_in = false;
7426   current_function_prototype_arg_types = NULL_TREE;
7427   if (TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
7428     {
7429       if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
7430           && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7431                         TREE_TYPE (TREE_TYPE (old_decl))))
7432         {
7433           TREE_TYPE (decl1) = composite_type (TREE_TYPE (old_decl),
7434                                               TREE_TYPE (decl1));
7435           current_function_prototype_locus = DECL_SOURCE_LOCATION (old_decl);
7436           current_function_prototype_built_in
7437             = C_DECL_BUILTIN_PROTOTYPE (old_decl);
7438           current_function_prototype_arg_types
7439             = TYPE_ARG_TYPES (TREE_TYPE (decl1));
7440         }
7441       if (TREE_PUBLIC (decl1))
7442         {
7443           /* If there is an external prototype declaration of this
7444              function, record its location but do not copy information
7445              to this decl.  This may be an invisible declaration
7446              (built-in or in a scope which has finished) or simply
7447              have more refined argument types than any declaration
7448              found above.  */
7449           struct c_binding *b;
7450           for (b = I_SYMBOL_BINDING (DECL_NAME (decl1)); b; b = b->shadowed)
7451             if (B_IN_SCOPE (b, external_scope))
7452               break;
7453           if (b)
7454             {
7455               tree ext_decl, ext_type;
7456               ext_decl = b->decl;
7457               ext_type = b->u.type ? b->u.type : TREE_TYPE (ext_decl);
7458               if (TREE_CODE (ext_type) == FUNCTION_TYPE
7459                   && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7460                                 TREE_TYPE (ext_type)))
7461                 {
7462                   current_function_prototype_locus
7463                     = DECL_SOURCE_LOCATION (ext_decl);
7464                   current_function_prototype_built_in
7465                     = C_DECL_BUILTIN_PROTOTYPE (ext_decl);
7466                   current_function_prototype_arg_types
7467                     = TYPE_ARG_TYPES (ext_type);
7468                 }
7469             }
7470         }
7471     }
7472
7473   /* Optionally warn of old-fashioned def with no previous prototype.  */
7474   if (warn_strict_prototypes
7475       && old_decl != error_mark_node
7476       && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
7477       && C_DECL_ISNT_PROTOTYPE (old_decl))
7478     warning_at (loc, OPT_Wstrict_prototypes,
7479                 "function declaration isn%'t a prototype");
7480   /* Optionally warn of any global def with no previous prototype.  */
7481   else if (warn_missing_prototypes
7482            && old_decl != error_mark_node
7483            && TREE_PUBLIC (decl1)
7484            && !MAIN_NAME_P (DECL_NAME (decl1))
7485            && C_DECL_ISNT_PROTOTYPE (old_decl))
7486     warning_at (loc, OPT_Wmissing_prototypes,
7487                 "no previous prototype for %qD", decl1);
7488   /* Optionally warn of any def with no previous prototype
7489      if the function has already been used.  */
7490   else if (warn_missing_prototypes
7491            && old_decl != 0
7492            && old_decl != error_mark_node
7493            && TREE_USED (old_decl)
7494            && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
7495     warning_at (loc, OPT_Wmissing_prototypes,
7496                 "%qD was used with no prototype before its definition", decl1);
7497   /* Optionally warn of any global def with no previous declaration.  */
7498   else if (warn_missing_declarations
7499            && TREE_PUBLIC (decl1)
7500            && old_decl == 0
7501            && !MAIN_NAME_P (DECL_NAME (decl1)))
7502     warning_at (loc, OPT_Wmissing_declarations,
7503                 "no previous declaration for %qD",
7504                 decl1);
7505   /* Optionally warn of any def with no previous declaration
7506      if the function has already been used.  */
7507   else if (warn_missing_declarations
7508            && old_decl != 0
7509            && old_decl != error_mark_node
7510            && TREE_USED (old_decl)
7511            && C_DECL_IMPLICIT (old_decl))
7512     warning_at (loc, OPT_Wmissing_declarations,
7513                 "%qD was used with no declaration before its definition", decl1);
7514
7515   /* This function exists in static storage.
7516      (This does not mean `static' in the C sense!)  */
7517   TREE_STATIC (decl1) = 1;
7518
7519   /* A nested function is not global.  */
7520   if (current_function_decl != 0)
7521     TREE_PUBLIC (decl1) = 0;
7522
7523   /* This is the earliest point at which we might know the assembler
7524      name of the function.  Thus, if it's set before this, die horribly.  */
7525   gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1));
7526
7527   /* If #pragma weak was used, mark the decl weak now.  */
7528   if (current_scope == file_scope)
7529     maybe_apply_pragma_weak (decl1);
7530
7531   /* Warn for unlikely, improbable, or stupid declarations of `main'.  */
7532   if (warn_main && MAIN_NAME_P (DECL_NAME (decl1)))
7533     {
7534       if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
7535           != integer_type_node)
7536         pedwarn (loc, OPT_Wmain, "return type of %qD is not %<int%>", decl1);
7537
7538       check_main_parameter_types (decl1);
7539
7540       if (!TREE_PUBLIC (decl1))
7541         pedwarn (loc, OPT_Wmain,
7542                  "%qD is normally a non-static function", decl1);
7543     }
7544
7545   /* Record the decl so that the function name is defined.
7546      If we already have a decl for this name, and it is a FUNCTION_DECL,
7547      use the old decl.  */
7548
7549   current_function_decl = pushdecl (decl1);
7550
7551   push_scope ();
7552   declare_parm_level ();
7553
7554   restype = TREE_TYPE (TREE_TYPE (current_function_decl));
7555   resdecl = build_decl (loc, RESULT_DECL, NULL_TREE, restype);
7556   DECL_ARTIFICIAL (resdecl) = 1;
7557   DECL_IGNORED_P (resdecl) = 1;
7558   DECL_RESULT (current_function_decl) = resdecl;
7559
7560   start_fname_decls ();
7561
7562   return 1;
7563 }
7564 \f
7565 /* Subroutine of store_parm_decls which handles new-style function
7566    definitions (prototype format). The parms already have decls, so we
7567    need only record them as in effect and complain if any redundant
7568    old-style parm decls were written.  */
7569 static void
7570 store_parm_decls_newstyle (tree fndecl, const struct c_arg_info *arg_info)
7571 {
7572   tree decl;
7573
7574   if (current_scope->bindings)
7575     {
7576       error_at (DECL_SOURCE_LOCATION (fndecl),
7577                 "old-style parameter declarations in prototyped "
7578                 "function definition");
7579
7580       /* Get rid of the old-style declarations.  */
7581       pop_scope ();
7582       push_scope ();
7583     }
7584   /* Don't issue this warning for nested functions, and don't issue this
7585      warning if we got here because ARG_INFO_TYPES was error_mark_node
7586      (this happens when a function definition has just an ellipsis in
7587      its parameter list).  */
7588   else if (!in_system_header && !current_function_scope
7589            && arg_info->types != error_mark_node)
7590     warning_at (DECL_SOURCE_LOCATION (fndecl), OPT_Wtraditional,
7591                 "traditional C rejects ISO C style function definitions");
7592
7593   /* Now make all the parameter declarations visible in the function body.
7594      We can bypass most of the grunt work of pushdecl.  */
7595   for (decl = arg_info->parms; decl; decl = TREE_CHAIN (decl))
7596     {
7597       DECL_CONTEXT (decl) = current_function_decl;
7598       if (DECL_NAME (decl))
7599         {
7600           bind (DECL_NAME (decl), decl, current_scope,
7601                 /*invisible=*/false, /*nested=*/false,
7602                 UNKNOWN_LOCATION);
7603           if (!TREE_USED (decl))
7604             warn_if_shadowing (decl);
7605         }
7606       else
7607         error_at (DECL_SOURCE_LOCATION (decl), "parameter name omitted");
7608     }
7609
7610   /* Record the parameter list in the function declaration.  */
7611   DECL_ARGUMENTS (fndecl) = arg_info->parms;
7612
7613   /* Now make all the ancillary declarations visible, likewise.  */
7614   for (decl = arg_info->others; decl; decl = TREE_CHAIN (decl))
7615     {
7616       DECL_CONTEXT (decl) = current_function_decl;
7617       if (DECL_NAME (decl))
7618         bind (DECL_NAME (decl), decl, current_scope,
7619               /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
7620     }
7621
7622   /* And all the tag declarations.  */
7623   for (decl = arg_info->tags; decl; decl = TREE_CHAIN (decl))
7624     if (TREE_PURPOSE (decl))
7625       bind (TREE_PURPOSE (decl), TREE_VALUE (decl), current_scope,
7626             /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
7627 }
7628
7629 /* Subroutine of store_parm_decls which handles old-style function
7630    definitions (separate parameter list and declarations).  */
7631
7632 static void
7633 store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
7634 {
7635   struct c_binding *b;
7636   tree parm, decl, last;
7637   tree parmids = arg_info->parms;
7638   struct pointer_set_t *seen_args = pointer_set_create ();
7639
7640   if (!in_system_header)
7641     warning_at (DECL_SOURCE_LOCATION (fndecl),
7642                 OPT_Wold_style_definition, "old-style function definition");
7643
7644   /* Match each formal parameter name with its declaration.  Save each
7645      decl in the appropriate TREE_PURPOSE slot of the parmids chain.  */
7646   for (parm = parmids; parm; parm = TREE_CHAIN (parm))
7647     {
7648       if (TREE_VALUE (parm) == 0)
7649         {
7650           error_at (DECL_SOURCE_LOCATION (fndecl),
7651                     "parameter name missing from parameter list");
7652           TREE_PURPOSE (parm) = 0;
7653           continue;
7654         }
7655
7656       b = I_SYMBOL_BINDING (TREE_VALUE (parm));
7657       if (b && B_IN_CURRENT_SCOPE (b))
7658         {
7659           decl = b->decl;
7660           /* If we got something other than a PARM_DECL it is an error.  */
7661           if (TREE_CODE (decl) != PARM_DECL)
7662             error_at (DECL_SOURCE_LOCATION (decl),
7663                       "%qD declared as a non-parameter", decl);
7664           /* If the declaration is already marked, we have a duplicate
7665              name.  Complain and ignore the duplicate.  */
7666           else if (pointer_set_contains (seen_args, decl))
7667             {
7668               error_at (DECL_SOURCE_LOCATION (decl),
7669                         "multiple parameters named %qD", decl);
7670               TREE_PURPOSE (parm) = 0;
7671               continue;
7672             }
7673           /* If the declaration says "void", complain and turn it into
7674              an int.  */
7675           else if (VOID_TYPE_P (TREE_TYPE (decl)))
7676             {
7677               error_at (DECL_SOURCE_LOCATION (decl),
7678                         "parameter %qD declared with void type", decl);
7679               TREE_TYPE (decl) = integer_type_node;
7680               DECL_ARG_TYPE (decl) = integer_type_node;
7681               layout_decl (decl, 0);
7682             }
7683           warn_if_shadowing (decl);
7684         }
7685       /* If no declaration found, default to int.  */
7686       else
7687         {
7688           /* FIXME diagnostics: This should be the location of the argument,
7689              not the FNDECL.  E.g., for an old-style declaration
7690
7691                int f10(v) { blah; }
7692
7693              We should use the location of the V, not the F10.
7694              Unfortunately, the V is an IDENTIFIER_NODE which has no
7695              location.  In the future we need locations for c_arg_info
7696              entries.
7697
7698              See gcc.dg/Wshadow-3.c for an example of this problem. */
7699           decl = build_decl (DECL_SOURCE_LOCATION (fndecl),
7700                              PARM_DECL, TREE_VALUE (parm), integer_type_node);
7701           DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
7702           pushdecl (decl);
7703           warn_if_shadowing (decl);
7704
7705           if (flag_isoc99)
7706             pedwarn (DECL_SOURCE_LOCATION (decl),
7707                      0, "type of %qD defaults to %<int%>", decl);
7708           else
7709             warning_at (DECL_SOURCE_LOCATION (decl),
7710                         OPT_Wmissing_parameter_type,
7711                         "type of %qD defaults to %<int%>", decl);
7712         }
7713
7714       TREE_PURPOSE (parm) = decl;
7715       pointer_set_insert (seen_args, decl);
7716     }
7717
7718   /* Now examine the parms chain for incomplete declarations
7719      and declarations with no corresponding names.  */
7720
7721   for (b = current_scope->bindings; b; b = b->prev)
7722     {
7723       parm = b->decl;
7724       if (TREE_CODE (parm) != PARM_DECL)
7725         continue;
7726
7727       if (TREE_TYPE (parm) != error_mark_node
7728           && !COMPLETE_TYPE_P (TREE_TYPE (parm)))
7729         {
7730           error_at (DECL_SOURCE_LOCATION (parm),
7731                     "parameter %qD has incomplete type", parm);
7732           TREE_TYPE (parm) = error_mark_node;
7733         }
7734
7735       if (!pointer_set_contains (seen_args, parm))
7736         {
7737           error_at (DECL_SOURCE_LOCATION (parm),
7738                     "declaration for parameter %qD but no such parameter",
7739                     parm);
7740
7741           /* Pretend the parameter was not missing.
7742              This gets us to a standard state and minimizes
7743              further error messages.  */
7744           parmids = chainon (parmids, tree_cons (parm, 0, 0));
7745         }
7746     }
7747
7748   /* Chain the declarations together in the order of the list of
7749      names.  Store that chain in the function decl, replacing the
7750      list of names.  Update the current scope to match.  */
7751   DECL_ARGUMENTS (fndecl) = 0;
7752
7753   for (parm = parmids; parm; parm = TREE_CHAIN (parm))
7754     if (TREE_PURPOSE (parm))
7755       break;
7756   if (parm && TREE_PURPOSE (parm))
7757     {
7758       last = TREE_PURPOSE (parm);
7759       DECL_ARGUMENTS (fndecl) = last;
7760
7761       for (parm = TREE_CHAIN (parm); parm; parm = TREE_CHAIN (parm))
7762         if (TREE_PURPOSE (parm))
7763           {
7764             TREE_CHAIN (last) = TREE_PURPOSE (parm);
7765             last = TREE_PURPOSE (parm);
7766           }
7767       TREE_CHAIN (last) = 0;
7768     }
7769
7770   pointer_set_destroy (seen_args);
7771
7772   /* If there was a previous prototype,
7773      set the DECL_ARG_TYPE of each argument according to
7774      the type previously specified, and report any mismatches.  */
7775
7776   if (current_function_prototype_arg_types)
7777     {
7778       tree type;
7779       for (parm = DECL_ARGUMENTS (fndecl),
7780              type = current_function_prototype_arg_types;
7781            parm || (type && TREE_VALUE (type) != error_mark_node
7782                    && (TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node));
7783            parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
7784         {
7785           if (parm == 0 || type == 0
7786               || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
7787             {
7788               if (current_function_prototype_built_in)
7789                 warning_at (DECL_SOURCE_LOCATION (fndecl),
7790                             0, "number of arguments doesn%'t match "
7791                             "built-in prototype");
7792               else
7793                 {
7794                   /* FIXME diagnostics: This should be the location of
7795                      FNDECL, but there is bug when a prototype is
7796                      declared inside function context, but defined
7797                      outside of it (e.g., gcc.dg/pr15698-2.c).  In
7798                      which case FNDECL gets the location of the
7799                      prototype, not the definition.  */
7800                   error_at (input_location,
7801                             "number of arguments doesn%'t match prototype");
7802
7803                   error_at (current_function_prototype_locus,
7804                             "prototype declaration");
7805                 }
7806               break;
7807             }
7808           /* Type for passing arg must be consistent with that
7809              declared for the arg.  ISO C says we take the unqualified
7810              type for parameters declared with qualified type.  */
7811           if (TREE_TYPE (parm) != error_mark_node
7812               && TREE_TYPE (type) != error_mark_node
7813               && !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
7814                              TYPE_MAIN_VARIANT (TREE_VALUE (type))))
7815             {
7816               if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
7817                   == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
7818                 {
7819                   /* Adjust argument to match prototype.  E.g. a previous
7820                      `int foo(float);' prototype causes
7821                      `int foo(x) float x; {...}' to be treated like
7822                      `int foo(float x) {...}'.  This is particularly
7823                      useful for argument types like uid_t.  */
7824                   DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
7825
7826                   if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
7827                       && INTEGRAL_TYPE_P (TREE_TYPE (parm))
7828                       && TYPE_PRECISION (TREE_TYPE (parm))
7829                       < TYPE_PRECISION (integer_type_node))
7830                     DECL_ARG_TYPE (parm) = integer_type_node;
7831
7832                   /* ??? Is it possible to get here with a
7833                      built-in prototype or will it always have
7834                      been diagnosed as conflicting with an
7835                      old-style definition and discarded?  */
7836                   if (current_function_prototype_built_in)
7837                     warning_at (DECL_SOURCE_LOCATION (parm),
7838                                 OPT_pedantic, "promoted argument %qD "
7839                                 "doesn%'t match built-in prototype", parm);
7840                   else
7841                     {
7842                       pedwarn (DECL_SOURCE_LOCATION (parm),
7843                                OPT_pedantic, "promoted argument %qD "
7844                                "doesn%'t match prototype", parm);
7845                       pedwarn (current_function_prototype_locus, OPT_pedantic,
7846                                "prototype declaration");
7847                     }
7848                 }
7849               else
7850                 {
7851                   if (current_function_prototype_built_in)
7852                     warning_at (DECL_SOURCE_LOCATION (parm),
7853                                 0, "argument %qD doesn%'t match "
7854                                 "built-in prototype", parm);
7855                   else
7856                     {
7857                       error_at (DECL_SOURCE_LOCATION (parm),
7858                                 "argument %qD doesn%'t match prototype", parm);
7859                       error_at (current_function_prototype_locus,
7860                                 "prototype declaration");
7861                     }
7862                 }
7863             }
7864         }
7865       TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
7866     }
7867
7868   /* Otherwise, create a prototype that would match.  */
7869
7870   else
7871     {
7872       tree actual = 0, last = 0, type;
7873
7874       for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
7875         {
7876           type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
7877           if (last)
7878             TREE_CHAIN (last) = type;
7879           else
7880             actual = type;
7881           last = type;
7882         }
7883       type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
7884       if (last)
7885         TREE_CHAIN (last) = type;
7886       else
7887         actual = type;
7888
7889       /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
7890          of the type of this function, but we need to avoid having this
7891          affect the types of other similarly-typed functions, so we must
7892          first force the generation of an identical (but separate) type
7893          node for the relevant function type.  The new node we create
7894          will be a variant of the main variant of the original function
7895          type.  */
7896
7897       TREE_TYPE (fndecl) = build_variant_type_copy (TREE_TYPE (fndecl));
7898
7899       TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
7900     }
7901 }
7902
7903 /* Store parameter declarations passed in ARG_INFO into the current
7904    function declaration.  */
7905
7906 void
7907 store_parm_decls_from (struct c_arg_info *arg_info)
7908 {
7909   current_function_arg_info = arg_info;
7910   store_parm_decls ();
7911 }
7912
7913 /* Store the parameter declarations into the current function declaration.
7914    This is called after parsing the parameter declarations, before
7915    digesting the body of the function.
7916
7917    For an old-style definition, construct a prototype out of the old-style
7918    parameter declarations and inject it into the function's type.  */
7919
7920 void
7921 store_parm_decls (void)
7922 {
7923   tree fndecl = current_function_decl;
7924   bool proto;
7925
7926   /* The argument information block for FNDECL.  */
7927   struct c_arg_info *arg_info = current_function_arg_info;
7928   current_function_arg_info = 0;
7929
7930   /* True if this definition is written with a prototype.  Note:
7931      despite C99 6.7.5.3p14, we can *not* treat an empty argument
7932      list in a function definition as equivalent to (void) -- an
7933      empty argument list specifies the function has no parameters,
7934      but only (void) sets up a prototype for future calls.  */
7935   proto = arg_info->types != 0;
7936
7937   if (proto)
7938     store_parm_decls_newstyle (fndecl, arg_info);
7939   else
7940     store_parm_decls_oldstyle (fndecl, arg_info);
7941
7942   /* The next call to push_scope will be a function body.  */
7943
7944   next_is_function_body = true;
7945
7946   /* Write a record describing this function definition to the prototypes
7947      file (if requested).  */
7948
7949   gen_aux_info_record (fndecl, 1, 0, proto);
7950
7951   /* Initialize the RTL code for the function.  */
7952   allocate_struct_function (fndecl, false);
7953
7954   /* Begin the statement tree for this function.  */
7955   DECL_SAVED_TREE (fndecl) = push_stmt_list ();
7956
7957   /* ??? Insert the contents of the pending sizes list into the function
7958      to be evaluated.  The only reason left to have this is
7959         void foo(int n, int array[n++])
7960      because we throw away the array type in favor of a pointer type, and
7961      thus won't naturally see the SAVE_EXPR containing the increment.  All
7962      other pending sizes would be handled by gimplify_parameters.  */
7963   {
7964     tree t;
7965     for (t = nreverse (get_pending_sizes ()); t ; t = TREE_CHAIN (t))
7966       add_stmt (TREE_VALUE (t));
7967   }
7968
7969   /* Even though we're inside a function body, we still don't want to
7970      call expand_expr to calculate the size of a variable-sized array.
7971      We haven't necessarily assigned RTL to all variables yet, so it's
7972      not safe to try to expand expressions involving them.  */
7973   cfun->dont_save_pending_sizes_p = 1;
7974 }
7975 \f
7976
7977 /* Finish up a function declaration and compile that function
7978    all the way to assembler language output.  The free the storage
7979    for the function definition.
7980
7981    This is called after parsing the body of the function definition.  */
7982
7983 void
7984 finish_function (void)
7985 {
7986   tree fndecl = current_function_decl;
7987
7988   if (TREE_CODE (fndecl) == FUNCTION_DECL
7989       && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
7990     {
7991       tree args = DECL_ARGUMENTS (fndecl);
7992       for (; args; args = TREE_CHAIN (args))
7993         {
7994           tree type = TREE_TYPE (args);
7995           if (INTEGRAL_TYPE_P (type)
7996               && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
7997             DECL_ARG_TYPE (args) = integer_type_node;
7998         }
7999     }
8000
8001   if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
8002     BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
8003
8004   /* Must mark the RESULT_DECL as being in this function.  */
8005
8006   if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
8007     DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
8008
8009   if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted
8010       && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
8011       == integer_type_node && flag_isoc99)
8012     {
8013       /* Hack.  We don't want the middle-end to warn that this return
8014          is unreachable, so we mark its location as special.  Using
8015          UNKNOWN_LOCATION has the problem that it gets clobbered in
8016          annotate_one_with_locus.  A cleaner solution might be to
8017          ensure ! should_carry_locus_p (stmt), but that needs a flag.
8018       */
8019       c_finish_return (BUILTINS_LOCATION, integer_zero_node, NULL_TREE);
8020     }
8021
8022   /* Tie off the statement tree for this function.  */
8023   DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
8024
8025   finish_fname_decls ();
8026
8027   /* Complain if there's just no return statement.  */
8028   if (warn_return_type
8029       && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
8030       && !current_function_returns_value && !current_function_returns_null
8031       /* Don't complain if we are no-return.  */
8032       && !current_function_returns_abnormally
8033       /* Don't warn for main().  */
8034       && !MAIN_NAME_P (DECL_NAME (fndecl))
8035       /* Or if they didn't actually specify a return type.  */
8036       && !C_FUNCTION_IMPLICIT_INT (fndecl)
8037       /* Normally, with -Wreturn-type, flow will complain, but we might
8038          optimize out static functions.  */
8039       && !TREE_PUBLIC (fndecl))
8040     {
8041       warning (OPT_Wreturn_type,
8042                "no return statement in function returning non-void");
8043       TREE_NO_WARNING (fndecl) = 1;
8044     }
8045
8046   /* Store the end of the function, so that we get good line number
8047      info for the epilogue.  */
8048   cfun->function_end_locus = input_location;
8049
8050   /* Finalize the ELF visibility for the function.  */
8051   c_determine_visibility (fndecl);
8052
8053   /* For GNU C extern inline functions disregard inline limits.  */
8054   if (DECL_EXTERNAL (fndecl)
8055       && DECL_DECLARED_INLINE_P (fndecl))
8056     DECL_DISREGARD_INLINE_LIMITS (fndecl) = 1;
8057
8058   /* Genericize before inlining.  Delay genericizing nested functions
8059      until their parent function is genericized.  Since finalizing
8060      requires GENERIC, delay that as well.  */
8061
8062   if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node
8063       && !undef_nested_function)
8064     {
8065       if (!decl_function_context (fndecl))
8066         {
8067           invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
8068           c_genericize (fndecl);
8069
8070           /* ??? Objc emits functions after finalizing the compilation unit.
8071              This should be cleaned up later and this conditional removed.  */
8072           if (cgraph_global_info_ready)
8073             {
8074               cgraph_add_new_function (fndecl, false);
8075               return;
8076             }
8077           cgraph_finalize_function (fndecl, false);
8078         }
8079       else
8080         {
8081           /* Register this function with cgraph just far enough to get it
8082             added to our parent's nested function list.  Handy, since the
8083             C front end doesn't have such a list.  */
8084           (void) cgraph_node (fndecl);
8085         }
8086     }
8087
8088   if (!decl_function_context (fndecl))
8089     undef_nested_function = false;
8090
8091   /* We're leaving the context of this function, so zap cfun.
8092      It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
8093      tree_rest_of_compilation.  */
8094   set_cfun (NULL);
8095   current_function_decl = NULL;
8096 }
8097 \f
8098 /* Check the declarations given in a for-loop for satisfying the C99
8099    constraints.  If exactly one such decl is found, return it.  LOC is
8100    the location of the opening parenthesis of the for loop.  */
8101
8102 tree
8103 check_for_loop_decls (location_t loc)
8104 {
8105   struct c_binding *b;
8106   tree one_decl = NULL_TREE;
8107   int n_decls = 0;
8108
8109   if (!flag_isoc99)
8110     {
8111       static bool hint = true;
8112       /* If we get here, declarations have been used in a for loop without
8113          the C99 for loop scope.  This doesn't make much sense, so don't
8114          allow it.  */
8115       error_at (loc, "%<for%> loop initial declarations "
8116                 "are only allowed in C99 mode");
8117       if (hint)
8118         {
8119           inform (loc,
8120                   "use option -std=c99 or -std=gnu99 to compile your code");
8121           hint = false;
8122         }
8123       return NULL_TREE;
8124     }
8125   /* C99 subclause 6.8.5 paragraph 3:
8126
8127        [#3]  The  declaration  part  of  a for statement shall only
8128        declare identifiers for objects having storage class auto or
8129        register.
8130
8131      It isn't clear whether, in this sentence, "identifiers" binds to
8132      "shall only declare" or to "objects" - that is, whether all identifiers
8133      declared must be identifiers for objects, or whether the restriction
8134      only applies to those that are.  (A question on this in comp.std.c
8135      in November 2000 received no answer.)  We implement the strictest
8136      interpretation, to avoid creating an extension which later causes
8137      problems.  */
8138
8139   for (b = current_scope->bindings; b; b = b->prev)
8140     {
8141       tree id = b->id;
8142       tree decl = b->decl;
8143
8144       if (!id)
8145         continue;
8146
8147       switch (TREE_CODE (decl))
8148         {
8149         case VAR_DECL:
8150           {
8151             location_t decl_loc = DECL_SOURCE_LOCATION (decl);
8152             if (TREE_STATIC (decl))
8153               error_at (decl_loc,
8154                         "declaration of static variable %qD in %<for%> loop "
8155                         "initial declaration", decl);
8156             else if (DECL_EXTERNAL (decl))
8157               error_at (decl_loc,
8158                         "declaration of %<extern%> variable %qD in %<for%> loop "
8159                         "initial declaration", decl);
8160           }
8161           break;
8162
8163         case RECORD_TYPE:
8164           error_at (loc,
8165                     "%<struct %E%> declared in %<for%> loop initial "
8166                     "declaration", id);
8167           break;
8168         case UNION_TYPE:
8169           error_at (loc,
8170                     "%<union %E%> declared in %<for%> loop initial declaration",
8171                     id);
8172           break;
8173         case ENUMERAL_TYPE:
8174           error_at (loc, "%<enum %E%> declared in %<for%> loop "
8175                     "initial declaration", id);
8176           break;
8177         default:
8178           error_at (loc, "declaration of non-variable "
8179                     "%qD in %<for%> loop initial declaration", decl);
8180         }
8181
8182       n_decls++;
8183       one_decl = decl;
8184     }
8185
8186   return n_decls == 1 ? one_decl : NULL_TREE;
8187 }
8188 \f
8189 /* Save and reinitialize the variables
8190    used during compilation of a C function.  */
8191
8192 void
8193 c_push_function_context (void)
8194 {
8195   struct language_function *p;
8196   p = GGC_NEW (struct language_function);
8197   cfun->language = p;
8198
8199   p->base.x_stmt_tree = c_stmt_tree;
8200   p->x_break_label = c_break_label;
8201   p->x_cont_label = c_cont_label;
8202   p->x_switch_stack = c_switch_stack;
8203   p->arg_info = current_function_arg_info;
8204   p->returns_value = current_function_returns_value;
8205   p->returns_null = current_function_returns_null;
8206   p->returns_abnormally = current_function_returns_abnormally;
8207   p->warn_about_return_type = warn_about_return_type;
8208
8209   push_function_context ();
8210 }
8211
8212 /* Restore the variables used during compilation of a C function.  */
8213
8214 void
8215 c_pop_function_context (void)
8216 {
8217   struct language_function *p;
8218
8219   pop_function_context ();
8220   p = cfun->language;
8221   cfun->language = NULL;
8222
8223   if (DECL_STRUCT_FUNCTION (current_function_decl) == 0
8224       && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
8225     {
8226       /* Stop pointing to the local nodes about to be freed.  */
8227       /* But DECL_INITIAL must remain nonzero so we know this
8228          was an actual function definition.  */
8229       DECL_INITIAL (current_function_decl) = error_mark_node;
8230       DECL_ARGUMENTS (current_function_decl) = 0;
8231     }
8232
8233   c_stmt_tree = p->base.x_stmt_tree;
8234   c_break_label = p->x_break_label;
8235   c_cont_label = p->x_cont_label;
8236   c_switch_stack = p->x_switch_stack;
8237   current_function_arg_info = p->arg_info;
8238   current_function_returns_value = p->returns_value;
8239   current_function_returns_null = p->returns_null;
8240   current_function_returns_abnormally = p->returns_abnormally;
8241   warn_about_return_type = p->warn_about_return_type;
8242 }
8243
8244 /* The functions below are required for functionality of doing
8245    function at once processing in the C front end. Currently these
8246    functions are not called from anywhere in the C front end, but as
8247    these changes continue, that will change.  */
8248
8249 /* Returns the stmt_tree (if any) to which statements are currently
8250    being added.  If there is no active statement-tree, NULL is
8251    returned.  */
8252
8253 stmt_tree
8254 current_stmt_tree (void)
8255 {
8256   return &c_stmt_tree;
8257 }
8258
8259 /* Return the global value of T as a symbol.  */
8260
8261 tree
8262 identifier_global_value (tree t)
8263 {
8264   struct c_binding *b;
8265
8266   for (b = I_SYMBOL_BINDING (t); b; b = b->shadowed)
8267     if (B_IN_FILE_SCOPE (b) || B_IN_EXTERNAL_SCOPE (b))
8268       return b->decl;
8269
8270   return 0;
8271 }
8272
8273 /* Record a builtin type for C.  If NAME is non-NULL, it is the name used;
8274    otherwise the name is found in ridpointers from RID_INDEX.  */
8275
8276 void
8277 record_builtin_type (enum rid rid_index, const char *name, tree type)
8278 {
8279   tree id, decl;
8280   if (name == 0)
8281     id = ridpointers[(int) rid_index];
8282   else
8283     id = get_identifier (name);
8284   decl = build_decl (UNKNOWN_LOCATION, TYPE_DECL, id, type);
8285   pushdecl (decl);
8286   if (debug_hooks->type_decl)
8287     debug_hooks->type_decl (decl, false);
8288 }
8289
8290 /* Build the void_list_node (void_type_node having been created).  */
8291 tree
8292 build_void_list_node (void)
8293 {
8294   tree t = build_tree_list (NULL_TREE, void_type_node);
8295   return t;
8296 }
8297
8298 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR.  */
8299
8300 struct c_parm *
8301 build_c_parm (struct c_declspecs *specs, tree attrs,
8302               struct c_declarator *declarator)
8303 {
8304   struct c_parm *ret = XOBNEW (&parser_obstack, struct c_parm);
8305   ret->specs = specs;
8306   ret->attrs = attrs;
8307   ret->declarator = declarator;
8308   return ret;
8309 }
8310
8311 /* Return a declarator with nested attributes.  TARGET is the inner
8312    declarator to which these attributes apply.  ATTRS are the
8313    attributes.  */
8314
8315 struct c_declarator *
8316 build_attrs_declarator (tree attrs, struct c_declarator *target)
8317 {
8318   struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8319   ret->kind = cdk_attrs;
8320   ret->declarator = target;
8321   ret->u.attrs = attrs;
8322   return ret;
8323 }
8324
8325 /* Return a declarator for a function with arguments specified by ARGS
8326    and return type specified by TARGET.  */
8327
8328 struct c_declarator *
8329 build_function_declarator (struct c_arg_info *args,
8330                            struct c_declarator *target)
8331 {
8332   struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8333   ret->kind = cdk_function;
8334   ret->declarator = target;
8335   ret->u.arg_info = args;
8336   return ret;
8337 }
8338
8339 /* Return a declarator for the identifier IDENT (which may be
8340    NULL_TREE for an abstract declarator).  */
8341
8342 struct c_declarator *
8343 build_id_declarator (tree ident)
8344 {
8345   struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8346   ret->kind = cdk_id;
8347   ret->declarator = 0;
8348   ret->u.id = ident;
8349   /* Default value - may get reset to a more precise location. */
8350   ret->id_loc = input_location;
8351   return ret;
8352 }
8353
8354 /* Return something to represent absolute declarators containing a *.
8355    TARGET is the absolute declarator that the * contains.
8356    TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
8357    to apply to the pointer type.  */
8358
8359 struct c_declarator *
8360 make_pointer_declarator (struct c_declspecs *type_quals_attrs,
8361                          struct c_declarator *target)
8362 {
8363   tree attrs;
8364   int quals = 0;
8365   struct c_declarator *itarget = target;
8366   struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8367   if (type_quals_attrs)
8368     {
8369       attrs = type_quals_attrs->attrs;
8370       quals = quals_from_declspecs (type_quals_attrs);
8371       if (attrs != NULL_TREE)
8372         itarget = build_attrs_declarator (attrs, target);
8373     }
8374   ret->kind = cdk_pointer;
8375   ret->declarator = itarget;
8376   ret->u.pointer_quals = quals;
8377   return ret;
8378 }
8379
8380 /* Return a pointer to a structure for an empty list of declaration
8381    specifiers.  */
8382
8383 struct c_declspecs *
8384 build_null_declspecs (void)
8385 {
8386   struct c_declspecs *ret = XOBNEW (&parser_obstack, struct c_declspecs);
8387   ret->type = 0;
8388   ret->expr = 0;
8389   ret->decl_attr = 0;
8390   ret->attrs = 0;
8391   ret->typespec_word = cts_none;
8392   ret->storage_class = csc_none;
8393   ret->expr_const_operands = true;
8394   ret->declspecs_seen_p = false;
8395   ret->type_seen_p = false;
8396   ret->non_sc_seen_p = false;
8397   ret->typedef_p = false;
8398   ret->tag_defined_p = false;
8399   ret->explicit_signed_p = false;
8400   ret->deprecated_p = false;
8401   ret->default_int_p = false;
8402   ret->long_p = false;
8403   ret->long_long_p = false;
8404   ret->short_p = false;
8405   ret->signed_p = false;
8406   ret->unsigned_p = false;
8407   ret->complex_p = false;
8408   ret->inline_p = false;
8409   ret->thread_p = false;
8410   ret->const_p = false;
8411   ret->volatile_p = false;
8412   ret->restrict_p = false;
8413   ret->saturating_p = false;
8414   ret->address_space = ADDR_SPACE_GENERIC;
8415   return ret;
8416 }
8417
8418 /* Add the address space ADDRSPACE to the declaration specifiers
8419    SPECS, returning SPECS.  */
8420
8421 struct c_declspecs *
8422 declspecs_add_addrspace (struct c_declspecs *specs, addr_space_t as)
8423 {
8424   specs->non_sc_seen_p = true;
8425   specs->declspecs_seen_p = true;
8426
8427   if (!ADDR_SPACE_GENERIC_P (specs->address_space)
8428       && specs->address_space != as)
8429     error ("incompatible address space qualifiers %qs and %qs",
8430            c_addr_space_name (as),
8431            c_addr_space_name (specs->address_space));
8432   else
8433     specs->address_space = as;
8434   return specs;
8435 }
8436
8437 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
8438    returning SPECS.  */
8439
8440 struct c_declspecs *
8441 declspecs_add_qual (struct c_declspecs *specs, tree qual)
8442 {
8443   enum rid i;
8444   bool dupe = false;
8445   specs->non_sc_seen_p = true;
8446   specs->declspecs_seen_p = true;
8447   gcc_assert (TREE_CODE (qual) == IDENTIFIER_NODE
8448               && C_IS_RESERVED_WORD (qual));
8449   i = C_RID_CODE (qual);
8450   switch (i)
8451     {
8452     case RID_CONST:
8453       dupe = specs->const_p;
8454       specs->const_p = true;
8455       break;
8456     case RID_VOLATILE:
8457       dupe = specs->volatile_p;
8458       specs->volatile_p = true;
8459       break;
8460     case RID_RESTRICT:
8461       dupe = specs->restrict_p;
8462       specs->restrict_p = true;
8463       break;
8464     default:
8465       gcc_unreachable ();
8466     }
8467   if (dupe && !flag_isoc99)
8468     pedwarn (input_location, OPT_pedantic, "duplicate %qE", qual);
8469   return specs;
8470 }
8471
8472 /* Add the type specifier TYPE to the declaration specifiers SPECS,
8473    returning SPECS.  */
8474
8475 struct c_declspecs *
8476 declspecs_add_type (location_t loc, struct c_declspecs *specs,
8477                     struct c_typespec spec)
8478 {
8479   tree type = spec.spec;
8480   specs->non_sc_seen_p = true;
8481   specs->declspecs_seen_p = true;
8482   specs->type_seen_p = true;
8483   if (TREE_DEPRECATED (type))
8484     specs->deprecated_p = true;
8485
8486   /* Handle type specifier keywords.  */
8487   if (TREE_CODE (type) == IDENTIFIER_NODE
8488       && C_IS_RESERVED_WORD (type)
8489       && C_RID_CODE (type) != RID_CXX_COMPAT_WARN)
8490     {
8491       enum rid i = C_RID_CODE (type);
8492       if (specs->type)
8493         {
8494           error_at (loc, "two or more data types in declaration specifiers");
8495           return specs;
8496         }
8497       if ((int) i <= (int) RID_LAST_MODIFIER)
8498         {
8499           /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat".  */
8500           bool dupe = false;
8501           switch (i)
8502             {
8503             case RID_LONG:
8504               if (specs->long_long_p)
8505                 {
8506                   error_at (loc, "%<long long long%> is too long for GCC");
8507                   break;
8508                 }
8509               if (specs->long_p)
8510                 {
8511                   if (specs->typespec_word == cts_double)
8512                     {
8513                       error_at (loc,
8514                                 ("both %<long long%> and %<double%> in "
8515                                  "declaration specifiers"));
8516                       break;
8517                     }
8518                   pedwarn_c90 (loc, OPT_Wlong_long,
8519                                "ISO C90 does not support %<long long%>");
8520                   specs->long_long_p = 1;
8521                   break;
8522                 }
8523               if (specs->short_p)
8524                 error_at (loc,
8525                           ("both %<long%> and %<short%> in "
8526                            "declaration specifiers"));
8527               else if (specs->typespec_word == cts_void)
8528                 error_at (loc,
8529                           ("both %<long%> and %<void%> in "
8530                            "declaration specifiers"));
8531               else if (specs->typespec_word == cts_bool)
8532                 error_at (loc,
8533                           ("both %<long%> and %<_Bool%> in "
8534                            "declaration specifiers"));
8535               else if (specs->typespec_word == cts_char)
8536                 error_at (loc,
8537                           ("both %<long%> and %<char%> in "
8538                            "declaration specifiers"));
8539               else if (specs->typespec_word == cts_float)
8540                 error_at (loc,
8541                           ("both %<long%> and %<float%> in "
8542                            "declaration specifiers"));
8543               else if (specs->typespec_word == cts_dfloat32)
8544                 error_at (loc,
8545                           ("both %<long%> and %<_Decimal32%> in "
8546                            "declaration specifiers"));
8547               else if (specs->typespec_word == cts_dfloat64)
8548                 error_at (loc,
8549                           ("both %<long%> and %<_Decimal64%> in "
8550                            "declaration specifiers"));
8551               else if (specs->typespec_word == cts_dfloat128)
8552                 error_at (loc,
8553                           ("both %<long%> and %<_Decimal128%> in "
8554                            "declaration specifiers"));
8555               else
8556                 specs->long_p = true;
8557               break;
8558             case RID_SHORT:
8559               dupe = specs->short_p;
8560               if (specs->long_p)
8561                 error_at (loc,
8562                           ("both %<long%> and %<short%> in "
8563                            "declaration specifiers"));
8564               else if (specs->typespec_word == cts_void)
8565                 error_at (loc,
8566                           ("both %<short%> and %<void%> in "
8567                            "declaration specifiers"));
8568               else if (specs->typespec_word == cts_bool)
8569                 error_at (loc,
8570                           ("both %<short%> and %<_Bool%> in "
8571                            "declaration specifiers"));
8572               else if (specs->typespec_word == cts_char)
8573                 error_at (loc,
8574                           ("both %<short%> and %<char%> in "
8575                            "declaration specifiers"));
8576               else if (specs->typespec_word == cts_float)
8577                 error_at (loc,
8578                           ("both %<short%> and %<float%> in "
8579                            "declaration specifiers"));
8580               else if (specs->typespec_word == cts_double)
8581                 error_at (loc,
8582                           ("both %<short%> and %<double%> in "
8583                            "declaration specifiers"));
8584               else if (specs->typespec_word == cts_dfloat32)
8585                 error_at (loc,
8586                           ("both %<short%> and %<_Decimal32%> in "
8587                            "declaration specifiers"));
8588               else if (specs->typespec_word == cts_dfloat64)
8589                 error_at (loc,
8590                           ("both %<short%> and %<_Decimal64%> in "
8591                            "declaration specifiers"));
8592               else if (specs->typespec_word == cts_dfloat128)
8593                 error_at (loc,
8594                           ("both %<short%> and %<_Decimal128%> in "
8595                            "declaration specifiers"));
8596               else
8597                 specs->short_p = true;
8598               break;
8599             case RID_SIGNED:
8600               dupe = specs->signed_p;
8601               if (specs->unsigned_p)
8602                 error_at (loc,
8603                           ("both %<signed%> and %<unsigned%> in "
8604                            "declaration specifiers"));
8605               else if (specs->typespec_word == cts_void)
8606                 error_at (loc,
8607                           ("both %<signed%> and %<void%> in "
8608                            "declaration specifiers"));
8609               else if (specs->typespec_word == cts_bool)
8610                 error_at (loc,
8611                           ("both %<signed%> and %<_Bool%> in "
8612                            "declaration specifiers"));
8613               else if (specs->typespec_word == cts_float)
8614                 error_at (loc,
8615                           ("both %<signed%> and %<float%> in "
8616                            "declaration specifiers"));
8617               else if (specs->typespec_word == cts_double)
8618                 error_at (loc,
8619                           ("both %<signed%> and %<double%> in "
8620                            "declaration specifiers"));
8621               else if (specs->typespec_word == cts_dfloat32)
8622                 error_at (loc,
8623                           ("both %<signed%> and %<_Decimal32%> in "
8624                            "declaration specifiers"));
8625               else if (specs->typespec_word == cts_dfloat64)
8626                 error_at (loc,
8627                           ("both %<signed%> and %<_Decimal64%> in "
8628                            "declaration specifiers"));
8629               else if (specs->typespec_word == cts_dfloat128)
8630                 error_at (loc,
8631                           ("both %<signed%> and %<_Decimal128%> in "
8632                            "declaration specifiers"));
8633               else
8634                 specs->signed_p = true;
8635               break;
8636             case RID_UNSIGNED:
8637               dupe = specs->unsigned_p;
8638               if (specs->signed_p)
8639                 error_at (loc,
8640                           ("both %<signed%> and %<unsigned%> in "
8641                            "declaration specifiers"));
8642               else if (specs->typespec_word == cts_void)
8643                 error_at (loc,
8644                           ("both %<unsigned%> and %<void%> in "
8645                            "declaration specifiers"));
8646               else if (specs->typespec_word == cts_bool)
8647                 error_at (loc,
8648                           ("both %<unsigned%> and %<_Bool%> in "
8649                            "declaration specifiers"));
8650               else if (specs->typespec_word == cts_float)
8651                 error_at (loc,
8652                           ("both %<unsigned%> and %<float%> in "
8653                            "declaration specifiers"));
8654               else if (specs->typespec_word == cts_double)
8655                 error_at (loc,
8656                           ("both %<unsigned%> and %<double%> in "
8657                            "declaration specifiers"));
8658               else if (specs->typespec_word == cts_dfloat32)
8659                 error_at (loc,
8660                           ("both %<unsigned%> and %<_Decimal32%> in "
8661                            "declaration specifiers"));
8662               else if (specs->typespec_word == cts_dfloat64)
8663                 error_at (loc,
8664                           ("both %<unsigned%> and %<_Decimal64%> in "
8665                            "declaration specifiers"));
8666               else if (specs->typespec_word == cts_dfloat128)
8667                 error_at (loc,
8668                           ("both %<unsigned%> and %<_Decimal128%> in "
8669                            "declaration specifiers"));
8670               else
8671                 specs->unsigned_p = true;
8672               break;
8673             case RID_COMPLEX:
8674               dupe = specs->complex_p;
8675               if (!flag_isoc99 && !in_system_header)
8676                 pedwarn (loc, OPT_pedantic,
8677                          "ISO C90 does not support complex types");
8678               if (specs->typespec_word == cts_void)
8679                 error_at (loc,
8680                           ("both %<complex%> and %<void%> in "
8681                            "declaration specifiers"));
8682               else if (specs->typespec_word == cts_bool)
8683                 error_at (loc,
8684                           ("both %<complex%> and %<_Bool%> in "
8685                            "declaration specifiers"));
8686               else if (specs->typespec_word == cts_dfloat32)
8687                 error_at (loc,
8688                           ("both %<complex%> and %<_Decimal32%> in "
8689                            "declaration specifiers"));
8690               else if (specs->typespec_word == cts_dfloat64)
8691                 error_at (loc,
8692                           ("both %<complex%> and %<_Decimal64%> in "
8693                            "declaration specifiers"));
8694               else if (specs->typespec_word == cts_dfloat128)
8695                 error_at (loc,
8696                           ("both %<complex%> and %<_Decimal128%> in "
8697                            "declaration specifiers"));
8698               else if (specs->typespec_word == cts_fract)
8699                 error_at (loc,
8700                           ("both %<complex%> and %<_Fract%> in "
8701                            "declaration specifiers"));
8702               else if (specs->typespec_word == cts_accum)
8703                 error_at (loc,
8704                           ("both %<complex%> and %<_Accum%> in "
8705                            "declaration specifiers"));
8706               else if (specs->saturating_p)
8707                 error_at (loc,
8708                           ("both %<complex%> and %<_Sat%> in "
8709                            "declaration specifiers"));
8710               else
8711                 specs->complex_p = true;
8712               break;
8713             case RID_SAT:
8714               dupe = specs->saturating_p;
8715               pedwarn (loc, OPT_pedantic,
8716                        "ISO C does not support saturating types");
8717               if (specs->typespec_word == cts_void)
8718                 error_at (loc,
8719                           ("both %<_Sat%> and %<void%> in "
8720                            "declaration specifiers"));
8721               else if (specs->typespec_word == cts_bool)
8722                 error_at (loc,
8723                           ("both %<_Sat%> and %<_Bool%> in "
8724                            "declaration specifiers"));
8725               else if (specs->typespec_word == cts_char)
8726                 error_at (loc,
8727                           ("both %<_Sat%> and %<char%> in "
8728                            "declaration specifiers"));
8729               else if (specs->typespec_word == cts_int)
8730                 error_at (loc,
8731                           ("both %<_Sat%> and %<int%> in "
8732                            "declaration specifiers"));
8733               else if (specs->typespec_word == cts_float)
8734                 error_at (loc,
8735                           ("both %<_Sat%> and %<float%> in "
8736                            "declaration specifiers"));
8737               else if (specs->typespec_word == cts_double)
8738                 error_at (loc,
8739                           ("both %<_Sat%> and %<double%> in "
8740                            "declaration specifiers"));
8741               else if (specs->typespec_word == cts_dfloat32)
8742                 error_at (loc,
8743                           ("both %<_Sat%> and %<_Decimal32%> in "
8744                            "declaration specifiers"));
8745               else if (specs->typespec_word == cts_dfloat64)
8746                 error_at (loc,
8747                           ("both %<_Sat%> and %<_Decimal64%> in "
8748                            "declaration specifiers"));
8749               else if (specs->typespec_word == cts_dfloat128)
8750                 error_at (loc,
8751                           ("both %<_Sat%> and %<_Decimal128%> in "
8752                            "declaration specifiers"));
8753               else if (specs->complex_p)
8754                 error_at (loc,
8755                           ("both %<_Sat%> and %<complex%> in "
8756                            "declaration specifiers"));
8757               else
8758                 specs->saturating_p = true;
8759               break;
8760             default:
8761               gcc_unreachable ();
8762             }
8763
8764           if (dupe)
8765             error_at (loc, "duplicate %qE", type);
8766
8767           return specs;
8768         }
8769       else
8770         {
8771           /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
8772              "_Decimal64", "_Decimal128", "_Fract" or "_Accum".  */
8773           if (specs->typespec_word != cts_none)
8774             {
8775               error_at (loc,
8776                         "two or more data types in declaration specifiers");
8777               return specs;
8778             }
8779           switch (i)
8780             {
8781             case RID_VOID:
8782               if (specs->long_p)
8783                 error_at (loc,
8784                           ("both %<long%> and %<void%> in "
8785                            "declaration specifiers"));
8786               else if (specs->short_p)
8787                 error_at (loc,
8788                           ("both %<short%> and %<void%> in "
8789                            "declaration specifiers"));
8790               else if (specs->signed_p)
8791                 error_at (loc,
8792                           ("both %<signed%> and %<void%> in "
8793                            "declaration specifiers"));
8794               else if (specs->unsigned_p)
8795                 error_at (loc,
8796                           ("both %<unsigned%> and %<void%> in "
8797                            "declaration specifiers"));
8798               else if (specs->complex_p)
8799                 error_at (loc,
8800                           ("both %<complex%> and %<void%> in "
8801                            "declaration specifiers"));
8802               else if (specs->saturating_p)
8803                 error_at (loc,
8804                           ("both %<_Sat%> and %<void%> in "
8805                            "declaration specifiers"));
8806               else
8807                 specs->typespec_word = cts_void;
8808               return specs;
8809             case RID_BOOL:
8810               if (specs->long_p)
8811                 error_at (loc,
8812                           ("both %<long%> and %<_Bool%> in "
8813                            "declaration specifiers"));
8814               else if (specs->short_p)
8815                 error_at (loc,
8816                           ("both %<short%> and %<_Bool%> in "
8817                            "declaration specifiers"));
8818               else if (specs->signed_p)
8819                 error_at (loc,
8820                           ("both %<signed%> and %<_Bool%> in "
8821                            "declaration specifiers"));
8822               else if (specs->unsigned_p)
8823                 error_at (loc,
8824                           ("both %<unsigned%> and %<_Bool%> in "
8825                            "declaration specifiers"));
8826               else if (specs->complex_p)
8827                 error_at (loc,
8828                           ("both %<complex%> and %<_Bool%> in "
8829                            "declaration specifiers"));
8830               else if (specs->saturating_p)
8831                 error_at (loc,
8832                           ("both %<_Sat%> and %<_Bool%> in "
8833                            "declaration specifiers"));
8834               else
8835                 specs->typespec_word = cts_bool;
8836               return specs;
8837             case RID_CHAR:
8838               if (specs->long_p)
8839                 error_at (loc,
8840                           ("both %<long%> and %<char%> in "
8841                            "declaration specifiers"));
8842               else if (specs->short_p)
8843                 error_at (loc,
8844                           ("both %<short%> and %<char%> in "
8845                            "declaration specifiers"));
8846               else if (specs->saturating_p)
8847                 error_at (loc,
8848                           ("both %<_Sat%> and %<char%> in "
8849                            "declaration specifiers"));
8850               else
8851                 specs->typespec_word = cts_char;
8852               return specs;
8853             case RID_INT:
8854               if (specs->saturating_p)
8855                 error_at (loc,
8856                           ("both %<_Sat%> and %<int%> in "
8857                            "declaration specifiers"));
8858               else
8859                 specs->typespec_word = cts_int;
8860               return specs;
8861             case RID_FLOAT:
8862               if (specs->long_p)
8863                 error_at (loc,
8864                           ("both %<long%> and %<float%> in "
8865                            "declaration specifiers"));
8866               else if (specs->short_p)
8867                 error_at (loc,
8868                           ("both %<short%> and %<float%> in "
8869                            "declaration specifiers"));
8870               else if (specs->signed_p)
8871                 error_at (loc,
8872                           ("both %<signed%> and %<float%> in "
8873                            "declaration specifiers"));
8874               else if (specs->unsigned_p)
8875                 error_at (loc,
8876                           ("both %<unsigned%> and %<float%> in "
8877                            "declaration specifiers"));
8878               else if (specs->saturating_p)
8879                 error_at (loc,
8880                           ("both %<_Sat%> and %<float%> in "
8881                            "declaration specifiers"));
8882               else
8883                 specs->typespec_word = cts_float;
8884               return specs;
8885             case RID_DOUBLE:
8886               if (specs->long_long_p)
8887                 error_at (loc,
8888                           ("both %<long long%> and %<double%> in "
8889                            "declaration specifiers"));
8890               else if (specs->short_p)
8891                 error_at (loc,
8892                           ("both %<short%> and %<double%> in "
8893                            "declaration specifiers"));
8894               else if (specs->signed_p)
8895                 error_at (loc,
8896                           ("both %<signed%> and %<double%> in "
8897                            "declaration specifiers"));
8898               else if (specs->unsigned_p)
8899                 error_at (loc,
8900                           ("both %<unsigned%> and %<double%> in "
8901                            "declaration specifiers"));
8902               else if (specs->saturating_p)
8903                 error_at (loc,
8904                           ("both %<_Sat%> and %<double%> in "
8905                            "declaration specifiers"));
8906               else
8907                 specs->typespec_word = cts_double;
8908               return specs;
8909             case RID_DFLOAT32:
8910             case RID_DFLOAT64:
8911             case RID_DFLOAT128:
8912               {
8913                 const char *str;
8914                 if (i == RID_DFLOAT32)
8915                   str = "_Decimal32";
8916                 else if (i == RID_DFLOAT64)
8917                   str = "_Decimal64";
8918                 else
8919                   str = "_Decimal128";
8920                 if (specs->long_long_p)
8921                   error_at (loc,
8922                             ("both %<long long%> and %<%s%> in "
8923                              "declaration specifiers"),
8924                             str);
8925                 if (specs->long_p)
8926                   error_at (loc,
8927                             ("both %<long%> and %<%s%> in "
8928                              "declaration specifiers"),
8929                             str);
8930                 else if (specs->short_p)
8931                   error_at (loc,
8932                             ("both %<short%> and %<%s%> in "
8933                              "declaration specifiers"),
8934                             str);
8935                 else if (specs->signed_p)
8936                   error_at (loc,
8937                             ("both %<signed%> and %<%s%> in "
8938                              "declaration specifiers"),
8939                             str);
8940                 else if (specs->unsigned_p)
8941                   error_at (loc,
8942                             ("both %<unsigned%> and %<%s%> in "
8943                              "declaration specifiers"),
8944                             str);
8945                 else if (specs->complex_p)
8946                   error_at (loc,
8947                             ("both %<complex%> and %<%s%> in "
8948                              "declaration specifiers"),
8949                             str);
8950                 else if (specs->saturating_p)
8951                   error_at (loc,
8952                             ("both %<_Sat%> and %<%s%> in "
8953                              "declaration specifiers"),
8954                             str);
8955                 else if (i == RID_DFLOAT32)
8956                   specs->typespec_word = cts_dfloat32;
8957                 else if (i == RID_DFLOAT64)
8958                   specs->typespec_word = cts_dfloat64;
8959                 else
8960                   specs->typespec_word = cts_dfloat128;
8961               }
8962               if (!targetm.decimal_float_supported_p ())
8963                 error_at (loc,
8964                           ("decimal floating point not supported "
8965                            "for this target"));
8966               pedwarn (loc, OPT_pedantic,
8967                        "ISO C does not support decimal floating point");
8968               return specs;
8969             case RID_FRACT:
8970             case RID_ACCUM:
8971               {
8972                 const char *str;
8973                 if (i == RID_FRACT)
8974                   str = "_Fract";
8975                 else
8976                   str = "_Accum";
8977                 if (specs->complex_p)
8978                   error_at (loc,
8979                             ("both %<complex%> and %<%s%> in "
8980                              "declaration specifiers"),
8981                             str);
8982                 else if (i == RID_FRACT)
8983                     specs->typespec_word = cts_fract;
8984                 else
8985                     specs->typespec_word = cts_accum;
8986               }
8987               if (!targetm.fixed_point_supported_p ())
8988                 error_at (loc,
8989                           "fixed-point types not supported for this target");
8990               pedwarn (loc, OPT_pedantic,
8991                        "ISO C does not support fixed-point types");
8992               return specs;
8993             default:
8994               /* ObjC reserved word "id", handled below.  */
8995               break;
8996             }
8997         }
8998     }
8999
9000   /* Now we have a typedef (a TYPE_DECL node), an identifier (some
9001      form of ObjC type, cases such as "int" and "long" being handled
9002      above), a TYPE (struct, union, enum and typeof specifiers) or an
9003      ERROR_MARK.  In none of these cases may there have previously
9004      been any type specifiers.  */
9005   if (specs->type || specs->typespec_word != cts_none
9006       || specs->long_p || specs->short_p || specs->signed_p
9007       || specs->unsigned_p || specs->complex_p)
9008     error_at (loc, "two or more data types in declaration specifiers");
9009   else if (TREE_CODE (type) == TYPE_DECL)
9010     {
9011       if (TREE_TYPE (type) == error_mark_node)
9012         ; /* Allow the type to default to int to avoid cascading errors.  */
9013       else
9014         {
9015           specs->type = TREE_TYPE (type);
9016           specs->decl_attr = DECL_ATTRIBUTES (type);
9017           specs->typedef_p = true;
9018           specs->explicit_signed_p = C_TYPEDEF_EXPLICITLY_SIGNED (type);
9019
9020           /* If this typedef name is defined in a struct, then a C++
9021              lookup would return a different value.  */
9022           if (warn_cxx_compat
9023               && I_SYMBOL_BINDING (DECL_NAME (type))->in_struct)
9024             warning_at (loc, OPT_Wc___compat,
9025                         "C++ lookup of %qD would return a field, not a type",
9026                         type);
9027
9028           /* If we are parsing a struct, record that a struct field
9029              used a typedef.  */
9030           if (warn_cxx_compat && struct_parse_info != NULL)
9031             VEC_safe_push (tree, heap, struct_parse_info->typedefs_seen, type);
9032         }
9033     }
9034   else if (TREE_CODE (type) == IDENTIFIER_NODE)
9035     {
9036       tree t = lookup_name (type);
9037       if (!t || TREE_CODE (t) != TYPE_DECL)
9038         error_at (loc, "%qE fails to be a typedef or built in type", type);
9039       else if (TREE_TYPE (t) == error_mark_node)
9040         ;
9041       else
9042         specs->type = TREE_TYPE (t);
9043     }
9044   else if (TREE_CODE (type) != ERROR_MARK)
9045     {
9046       if (spec.kind == ctsk_tagdef || spec.kind == ctsk_tagfirstref)
9047         specs->tag_defined_p = true;
9048       if (spec.kind == ctsk_typeof)
9049         {
9050           specs->typedef_p = true;
9051           if (spec.expr)
9052             {
9053               if (specs->expr)
9054                 specs->expr = build2 (COMPOUND_EXPR, TREE_TYPE (spec.expr),
9055                                       specs->expr, spec.expr);
9056               else
9057                 specs->expr = spec.expr;
9058               specs->expr_const_operands &= spec.expr_const_operands;
9059             }
9060         }
9061       specs->type = type;
9062     }
9063
9064   return specs;
9065 }
9066
9067 /* Add the storage class specifier or function specifier SCSPEC to the
9068    declaration specifiers SPECS, returning SPECS.  */
9069
9070 struct c_declspecs *
9071 declspecs_add_scspec (struct c_declspecs *specs, tree scspec)
9072 {
9073   enum rid i;
9074   enum c_storage_class n = csc_none;
9075   bool dupe = false;
9076   specs->declspecs_seen_p = true;
9077   gcc_assert (TREE_CODE (scspec) == IDENTIFIER_NODE
9078               && C_IS_RESERVED_WORD (scspec));
9079   i = C_RID_CODE (scspec);
9080   if (specs->non_sc_seen_p)
9081     warning (OPT_Wold_style_declaration,
9082              "%qE is not at beginning of declaration", scspec);
9083   switch (i)
9084     {
9085     case RID_INLINE:
9086       /* C99 permits duplicate inline.  Although of doubtful utility,
9087          it seems simplest to permit it in gnu89 mode as well, as
9088          there is also little utility in maintaining this as a
9089          difference between gnu89 and C99 inline.  */
9090       dupe = false;
9091       specs->inline_p = true;
9092       break;
9093     case RID_THREAD:
9094       dupe = specs->thread_p;
9095       if (specs->storage_class == csc_auto)
9096         error ("%<__thread%> used with %<auto%>");
9097       else if (specs->storage_class == csc_register)
9098         error ("%<__thread%> used with %<register%>");
9099       else if (specs->storage_class == csc_typedef)
9100         error ("%<__thread%> used with %<typedef%>");
9101       else
9102         specs->thread_p = true;
9103       break;
9104     case RID_AUTO:
9105       n = csc_auto;
9106       break;
9107     case RID_EXTERN:
9108       n = csc_extern;
9109       /* Diagnose "__thread extern".  */
9110       if (specs->thread_p)
9111         error ("%<__thread%> before %<extern%>");
9112       break;
9113     case RID_REGISTER:
9114       n = csc_register;
9115       break;
9116     case RID_STATIC:
9117       n = csc_static;
9118       /* Diagnose "__thread static".  */
9119       if (specs->thread_p)
9120         error ("%<__thread%> before %<static%>");
9121       break;
9122     case RID_TYPEDEF:
9123       n = csc_typedef;
9124       break;
9125     default:
9126       gcc_unreachable ();
9127     }
9128   if (n != csc_none && n == specs->storage_class)
9129     dupe = true;
9130   if (dupe)
9131     error ("duplicate %qE", scspec);
9132   if (n != csc_none)
9133     {
9134       if (specs->storage_class != csc_none && n != specs->storage_class)
9135         {
9136           error ("multiple storage classes in declaration specifiers");
9137         }
9138       else
9139         {
9140           specs->storage_class = n;
9141           if (n != csc_extern && n != csc_static && specs->thread_p)
9142             {
9143               error ("%<__thread%> used with %qE", scspec);
9144               specs->thread_p = false;
9145             }
9146         }
9147     }
9148   return specs;
9149 }
9150
9151 /* Add the attributes ATTRS to the declaration specifiers SPECS,
9152    returning SPECS.  */
9153
9154 struct c_declspecs *
9155 declspecs_add_attrs (struct c_declspecs *specs, tree attrs)
9156 {
9157   specs->attrs = chainon (attrs, specs->attrs);
9158   specs->declspecs_seen_p = true;
9159   return specs;
9160 }
9161
9162 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
9163    specifiers with any other type specifier to determine the resulting
9164    type.  This is where ISO C checks on complex types are made, since
9165    "_Complex long" is a prefix of the valid ISO C type "_Complex long
9166    double".  */
9167
9168 struct c_declspecs *
9169 finish_declspecs (struct c_declspecs *specs)
9170 {
9171   /* If a type was specified as a whole, we have no modifiers and are
9172      done.  */
9173   if (specs->type != NULL_TREE)
9174     {
9175       gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
9176                   && !specs->signed_p && !specs->unsigned_p
9177                   && !specs->complex_p);
9178       return specs;
9179     }
9180
9181   /* If none of "void", "_Bool", "char", "int", "float" or "double"
9182      has been specified, treat it as "int" unless "_Complex" is
9183      present and there are no other specifiers.  If we just have
9184      "_Complex", it is equivalent to "_Complex double", but e.g.
9185      "_Complex short" is equivalent to "_Complex short int".  */
9186   if (specs->typespec_word == cts_none)
9187     {
9188       if (specs->saturating_p)
9189         {
9190           error ("%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
9191           if (!targetm.fixed_point_supported_p ())
9192             error ("fixed-point types not supported for this target");
9193           specs->typespec_word = cts_fract;
9194         }
9195       else if (specs->long_p || specs->short_p
9196                || specs->signed_p || specs->unsigned_p)
9197         {
9198           specs->typespec_word = cts_int;
9199         }
9200       else if (specs->complex_p)
9201         {
9202           specs->typespec_word = cts_double;
9203           pedwarn (input_location, OPT_pedantic,
9204                    "ISO C does not support plain %<complex%> meaning "
9205                    "%<double complex%>");
9206         }
9207       else
9208         {
9209           specs->typespec_word = cts_int;
9210           specs->default_int_p = true;
9211           /* We don't diagnose this here because grokdeclarator will
9212              give more specific diagnostics according to whether it is
9213              a function definition.  */
9214         }
9215     }
9216
9217   /* If "signed" was specified, record this to distinguish "int" and
9218      "signed int" in the case of a bit-field with
9219      -funsigned-bitfields.  */
9220   specs->explicit_signed_p = specs->signed_p;
9221
9222   /* Now compute the actual type.  */
9223   switch (specs->typespec_word)
9224     {
9225     case cts_void:
9226       gcc_assert (!specs->long_p && !specs->short_p
9227                   && !specs->signed_p && !specs->unsigned_p
9228                   && !specs->complex_p);
9229       specs->type = void_type_node;
9230       break;
9231     case cts_bool:
9232       gcc_assert (!specs->long_p && !specs->short_p
9233                   && !specs->signed_p && !specs->unsigned_p
9234                   && !specs->complex_p);
9235       specs->type = boolean_type_node;
9236       break;
9237     case cts_char:
9238       gcc_assert (!specs->long_p && !specs->short_p);
9239       gcc_assert (!(specs->signed_p && specs->unsigned_p));
9240       if (specs->signed_p)
9241         specs->type = signed_char_type_node;
9242       else if (specs->unsigned_p)
9243         specs->type = unsigned_char_type_node;
9244       else
9245         specs->type = char_type_node;
9246       if (specs->complex_p)
9247         {
9248           pedwarn (input_location, OPT_pedantic,
9249                    "ISO C does not support complex integer types");
9250           specs->type = build_complex_type (specs->type);
9251         }
9252       break;
9253     case cts_int:
9254       gcc_assert (!(specs->long_p && specs->short_p));
9255       gcc_assert (!(specs->signed_p && specs->unsigned_p));
9256       if (specs->long_long_p)
9257         specs->type = (specs->unsigned_p
9258                        ? long_long_unsigned_type_node
9259                        : long_long_integer_type_node);
9260       else if (specs->long_p)
9261         specs->type = (specs->unsigned_p
9262                        ? long_unsigned_type_node
9263                        : long_integer_type_node);
9264       else if (specs->short_p)
9265         specs->type = (specs->unsigned_p
9266                        ? short_unsigned_type_node
9267                        : short_integer_type_node);
9268       else
9269         specs->type = (specs->unsigned_p
9270                        ? unsigned_type_node
9271                        : integer_type_node);
9272       if (specs->complex_p)
9273         {
9274           pedwarn (input_location, OPT_pedantic,
9275                    "ISO C does not support complex integer types");
9276           specs->type = build_complex_type (specs->type);
9277         }
9278       break;
9279     case cts_float:
9280       gcc_assert (!specs->long_p && !specs->short_p
9281                   && !specs->signed_p && !specs->unsigned_p);
9282       specs->type = (specs->complex_p
9283                      ? complex_float_type_node
9284                      : float_type_node);
9285       break;
9286     case cts_double:
9287       gcc_assert (!specs->long_long_p && !specs->short_p
9288                   && !specs->signed_p && !specs->unsigned_p);
9289       if (specs->long_p)
9290         {
9291           specs->type = (specs->complex_p
9292                          ? complex_long_double_type_node
9293                          : long_double_type_node);
9294         }
9295       else
9296         {
9297           specs->type = (specs->complex_p
9298                          ? complex_double_type_node
9299                          : double_type_node);
9300         }
9301       break;
9302     case cts_dfloat32:
9303     case cts_dfloat64:
9304     case cts_dfloat128:
9305       gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
9306                   && !specs->signed_p && !specs->unsigned_p && !specs->complex_p);
9307       if (specs->typespec_word == cts_dfloat32)
9308         specs->type = dfloat32_type_node;
9309       else if (specs->typespec_word == cts_dfloat64)
9310         specs->type = dfloat64_type_node;
9311       else
9312         specs->type = dfloat128_type_node;
9313       break;
9314     case cts_fract:
9315       gcc_assert (!specs->complex_p);
9316       if (!targetm.fixed_point_supported_p ())
9317         specs->type = integer_type_node;
9318       else if (specs->saturating_p)
9319         {
9320           if (specs->long_long_p)
9321             specs->type = specs->unsigned_p
9322                           ? sat_unsigned_long_long_fract_type_node
9323                           : sat_long_long_fract_type_node;
9324           else if (specs->long_p)
9325             specs->type = specs->unsigned_p
9326                           ? sat_unsigned_long_fract_type_node
9327                           : sat_long_fract_type_node;
9328           else if (specs->short_p)
9329             specs->type = specs->unsigned_p
9330                           ? sat_unsigned_short_fract_type_node
9331                           : sat_short_fract_type_node;
9332           else
9333             specs->type = specs->unsigned_p
9334                           ? sat_unsigned_fract_type_node
9335                           : sat_fract_type_node;
9336         }
9337       else
9338         {
9339           if (specs->long_long_p)
9340             specs->type = specs->unsigned_p
9341                           ? unsigned_long_long_fract_type_node
9342                           : long_long_fract_type_node;
9343           else if (specs->long_p)
9344             specs->type = specs->unsigned_p
9345                           ? unsigned_long_fract_type_node
9346                           : long_fract_type_node;
9347           else if (specs->short_p)
9348             specs->type = specs->unsigned_p
9349                           ? unsigned_short_fract_type_node
9350                           : short_fract_type_node;
9351           else
9352             specs->type = specs->unsigned_p
9353                           ? unsigned_fract_type_node
9354                           : fract_type_node;
9355         }
9356       break;
9357     case cts_accum:
9358       gcc_assert (!specs->complex_p);
9359       if (!targetm.fixed_point_supported_p ())
9360         specs->type = integer_type_node;
9361       else if (specs->saturating_p)
9362         {
9363           if (specs->long_long_p)
9364             specs->type = specs->unsigned_p
9365                           ? sat_unsigned_long_long_accum_type_node
9366                           : sat_long_long_accum_type_node;
9367           else if (specs->long_p)
9368             specs->type = specs->unsigned_p
9369                           ? sat_unsigned_long_accum_type_node
9370                           : sat_long_accum_type_node;
9371           else if (specs->short_p)
9372             specs->type = specs->unsigned_p
9373                           ? sat_unsigned_short_accum_type_node
9374                           : sat_short_accum_type_node;
9375           else
9376             specs->type = specs->unsigned_p
9377                           ? sat_unsigned_accum_type_node
9378                           : sat_accum_type_node;
9379         }
9380       else
9381         {
9382           if (specs->long_long_p)
9383             specs->type = specs->unsigned_p
9384                           ? unsigned_long_long_accum_type_node
9385                           : long_long_accum_type_node;
9386           else if (specs->long_p)
9387             specs->type = specs->unsigned_p
9388                           ? unsigned_long_accum_type_node
9389                           : long_accum_type_node;
9390           else if (specs->short_p)
9391             specs->type = specs->unsigned_p
9392                           ? unsigned_short_accum_type_node
9393                           : short_accum_type_node;
9394           else
9395             specs->type = specs->unsigned_p
9396                           ? unsigned_accum_type_node
9397                           : accum_type_node;
9398         }
9399       break;
9400     default:
9401       gcc_unreachable ();
9402     }
9403
9404   return specs;
9405 }
9406
9407 /* A subroutine of c_write_global_declarations.  Perform final processing
9408    on one file scope's declarations (or the external scope's declarations),
9409    GLOBALS.  */
9410
9411 static void
9412 c_write_global_declarations_1 (tree globals)
9413 {
9414   tree decl;
9415   bool reconsider;
9416
9417   /* Process the decls in the order they were written.  */
9418   for (decl = globals; decl; decl = TREE_CHAIN (decl))
9419     {
9420       /* Check for used but undefined static functions using the C
9421          standard's definition of "used", and set TREE_NO_WARNING so
9422          that check_global_declarations doesn't repeat the check.  */
9423       if (TREE_CODE (decl) == FUNCTION_DECL
9424           && DECL_INITIAL (decl) == 0
9425           && DECL_EXTERNAL (decl)
9426           && !TREE_PUBLIC (decl)
9427           && C_DECL_USED (decl))
9428         {
9429           pedwarn (input_location, 0, "%q+F used but never defined", decl);
9430           TREE_NO_WARNING (decl) = 1;
9431         }
9432
9433       wrapup_global_declaration_1 (decl);
9434     }
9435
9436   do
9437     {
9438       reconsider = false;
9439       for (decl = globals; decl; decl = TREE_CHAIN (decl))
9440         reconsider |= wrapup_global_declaration_2 (decl);
9441     }
9442   while (reconsider);
9443
9444   for (decl = globals; decl; decl = TREE_CHAIN (decl))
9445     check_global_declaration_1 (decl);
9446 }
9447
9448 /* A subroutine of c_write_global_declarations Emit debug information for each
9449    of the declarations in GLOBALS.  */
9450
9451 static void
9452 c_write_global_declarations_2 (tree globals)
9453 {
9454   tree decl;
9455
9456   for (decl = globals; decl ; decl = TREE_CHAIN (decl))
9457     debug_hooks->global_decl (decl);
9458 }
9459
9460 /* Preserve the external declarations scope across a garbage collect.  */
9461 static GTY(()) tree ext_block;
9462
9463 void
9464 c_write_global_declarations (void)
9465 {
9466   tree t;
9467
9468   /* We don't want to do this if generating a PCH.  */
9469   if (pch_file)
9470     return;
9471
9472   /* Don't waste time on further processing if -fsyntax-only.
9473      Continue for warning and errors issued during lowering though.  */
9474   if (flag_syntax_only)
9475     return;
9476
9477   /* Close the external scope.  */
9478   ext_block = pop_scope ();
9479   external_scope = 0;
9480   gcc_assert (!current_scope);
9481
9482   if (ext_block)
9483     {
9484       tree tmp = BLOCK_VARS (ext_block);
9485       int flags;
9486       FILE * stream = dump_begin (TDI_tu, &flags);
9487       if (stream && tmp)
9488         {
9489           dump_node (tmp, flags & ~TDF_SLIM, stream);
9490           dump_end (TDI_tu, stream);
9491         }
9492     }
9493
9494   /* Process all file scopes in this compilation, and the external_scope,
9495      through wrapup_global_declarations and check_global_declarations.  */
9496   for (t = all_translation_units; t; t = TREE_CHAIN (t))
9497     c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t)));
9498   c_write_global_declarations_1 (BLOCK_VARS (ext_block));
9499
9500   /* We're done parsing; proceed to optimize and emit assembly.
9501      FIXME: shouldn't be the front end's responsibility to call this.  */
9502   cgraph_finalize_compilation_unit ();
9503
9504   /* After cgraph has had a chance to emit everything that's going to
9505      be emitted, output debug information for globals.  */
9506   if (errorcount == 0 && sorrycount == 0)
9507     {
9508       timevar_push (TV_SYMOUT);
9509       for (t = all_translation_units; t; t = TREE_CHAIN (t))
9510         c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t)));
9511       c_write_global_declarations_2 (BLOCK_VARS (ext_block));
9512       timevar_pop (TV_SYMOUT);
9513     }
9514
9515   ext_block = NULL;
9516 }
9517
9518 #include "gt-c-decl.h"