OSDN Git Service

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