OSDN Git Service

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