OSDN Git Service

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