OSDN Git Service

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