OSDN Git Service

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