OSDN Git Service

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