OSDN Git Service

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