OSDN Git Service

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