OSDN Git Service

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