OSDN Git Service

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