OSDN Git Service

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