OSDN Git Service

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