OSDN Git Service

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