OSDN Git Service

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