OSDN Git Service

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