OSDN Git Service

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