OSDN Git Service

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