OSDN Git Service

2002-01-04 Dirk Mueller <dmueller@suse.com>
[pf3gnuchains/gcc-fork.git] / gcc / cp / decl.c
1 /* Process declarations and variables for C++ compiler.
2    Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3    2001, 2002, 2003, 2004, 2005  Free Software Foundation, Inc.
4    Contributed by Michael Tiemann (tiemann@cygnus.com)
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING.  If not, write to
20 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA.  */
22
23
24 /* Process declarations and symbol lookup for C++ front end.
25    Also constructs types; the standard scalar types at initialization,
26    and structure, union, array and enum types when they are declared.  */
27
28 /* ??? not all decl nodes are given the most useful possible
29    line numbers.  For example, the CONST_DECLs for enum values.  */
30
31 #include "config.h"
32 #include "system.h"
33 #include "coretypes.h"
34 #include "tm.h"
35 #include "tree.h"
36 #include "rtl.h"
37 #include "expr.h"
38 #include "flags.h"
39 #include "cp-tree.h"
40 #include "tree-inline.h"
41 #include "decl.h"
42 #include "output.h"
43 #include "except.h"
44 #include "toplev.h"
45 #include "hashtab.h"
46 #include "tm_p.h"
47 #include "target.h"
48 #include "c-common.h"
49 #include "c-pragma.h"
50 #include "diagnostic.h"
51 #include "debug.h"
52 #include "timevar.h"
53 #include "tree-flow.h"
54
55 static tree grokparms (cp_parameter_declarator *, tree *);
56 static const char *redeclaration_error_message (tree, tree);
57
58 static int decl_jump_unsafe (tree);
59 static void require_complete_types_for_parms (tree);
60 static int ambi_op_p (enum tree_code);
61 static int unary_op_p (enum tree_code);
62 static void push_local_name (tree);
63 static tree grok_reference_init (tree, tree, tree, tree *);
64 static tree grokvardecl (tree, tree, const cp_decl_specifier_seq *,
65                          int, int, tree);
66 static void record_unknown_type (tree, const char *);
67 static tree builtin_function_1 (const char *, tree, tree,
68                                 enum built_in_function code,
69                                 enum built_in_class cl, const char *,
70                                 tree);
71 static tree build_library_fn_1 (tree, enum tree_code, tree);
72 static int member_function_or_else (tree, tree, enum overload_flags);
73 static void bad_specifiers (tree, const char *, int, int, int, int,
74                             int);
75 static void check_for_uninitialized_const_var (tree);
76 static hashval_t typename_hash (const void *);
77 static int typename_compare (const void *, const void *);
78 static tree local_variable_p_walkfn (tree *, int *, void *);
79 static tree record_builtin_java_type (const char *, int);
80 static const char *tag_name (enum tag_types);
81 static tree lookup_and_check_tag (enum tag_types, tree, tag_scope, bool);
82 static int walk_namespaces_r (tree, walk_namespaces_fn, void *);
83 static tree make_label_decl (tree, int);
84 static void use_label (tree);
85 static void check_previous_goto_1 (tree, struct cp_binding_level *, tree,
86                                    const location_t *);
87 static void check_previous_goto (struct named_label_use_list *);
88 static void check_switch_goto (struct cp_binding_level *);
89 static void check_previous_gotos (tree);
90 static void pop_label (tree, tree);
91 static void pop_labels (tree);
92 static void maybe_deduce_size_from_array_init (tree, tree);
93 static void layout_var_decl (tree);
94 static void maybe_commonize_var (tree);
95 static tree check_initializer (tree, tree, int, tree *);
96 static void make_rtl_for_nonlocal_decl (tree, tree, const char *);
97 static void save_function_data (tree);
98 static void check_function_type (tree, tree);
99 static void finish_constructor_body (void);
100 static void begin_destructor_body (void);
101 static void finish_destructor_body (void);
102 static tree create_array_type_for_decl (tree, tree, tree);
103 static tree get_atexit_node (void);
104 static tree get_dso_handle_node (void);
105 static tree start_cleanup_fn (void);
106 static void end_cleanup_fn (void);
107 static tree cp_make_fname_decl (tree, int);
108 static void initialize_predefined_identifiers (void);
109 static tree check_special_function_return_type
110         (special_function_kind, tree, tree);
111 static tree push_cp_library_fn (enum tree_code, tree);
112 static tree build_cp_library_fn (tree, enum tree_code, tree);
113 static void store_parm_decls (tree);
114 static void initialize_local_var (tree, tree);
115 static void expand_static_init (tree, tree);
116 static tree next_initializable_field (tree);
117
118 /* Erroneous argument lists can use this *IFF* they do not modify it.  */
119 tree error_mark_list;
120
121 /* The following symbols are subsumed in the cp_global_trees array, and
122    listed here individually for documentation purposes.
123
124    C++ extensions
125         tree wchar_decl_node;
126
127         tree vtable_entry_type;
128         tree delta_type_node;
129         tree __t_desc_type_node;
130
131         tree class_type_node;
132         tree unknown_type_node;
133
134    Array type `vtable_entry_type[]'
135
136         tree vtbl_type_node;
137         tree vtbl_ptr_type_node;
138
139    Namespaces,
140
141         tree std_node;
142         tree abi_node;
143
144    A FUNCTION_DECL which can call `abort'.  Not necessarily the
145    one that the user will declare, but sufficient to be called
146    by routines that want to abort the program.
147
148         tree abort_fndecl;
149
150    The FUNCTION_DECL for the default `::operator delete'.
151
152         tree global_delete_fndecl;
153
154    Used by RTTI
155         tree type_info_type_node, tinfo_decl_id, tinfo_decl_type;
156         tree tinfo_var_id;
157
158 */
159
160 tree cp_global_trees[CPTI_MAX];
161
162 /* Indicates that there is a type value in some namespace, although
163    that is not necessarily in scope at the moment.  */
164
165 tree global_type_node;
166
167 /* The node that holds the "name" of the global scope.  */
168 tree global_scope_name;
169
170 /* Used only for jumps to as-yet undefined labels, since jumps to
171    defined labels can have their validity checked immediately.  */
172
173 struct named_label_use_list GTY(())
174 {
175   struct cp_binding_level *binding_level;
176   tree names_in_scope;
177   tree label_decl;
178   location_t o_goto_locus;
179   struct named_label_use_list *next;
180 };
181
182 #define named_label_uses cp_function_chain->x_named_label_uses
183
184 #define local_names cp_function_chain->x_local_names
185
186 /* A list of objects which have constructors or destructors
187    which reside in the global scope.  The decl is stored in
188    the TREE_VALUE slot and the initializer is stored
189    in the TREE_PURPOSE slot.  */
190 tree static_aggregates;
191
192 /* -- end of C++ */
193
194 /* A node for the integer constants 2, and 3.  */
195
196 tree integer_two_node, integer_three_node;
197
198 /* A list of all LABEL_DECLs in the function that have names.  Here so
199    we can clear out their names' definitions at the end of the
200    function, and so we can check the validity of jumps to these labels.  */
201
202 struct named_label_list GTY(())
203 {
204   struct cp_binding_level *binding_level;
205   tree names_in_scope;
206   tree old_value;
207   tree label_decl;
208   tree bad_decls;
209   struct named_label_list *next;
210   unsigned int in_try_scope : 1;
211   unsigned int in_catch_scope : 1;
212 };
213
214 #define named_labels cp_function_chain->x_named_labels
215 \f
216 /* The number of function bodies which we are currently processing.
217    (Zero if we are at namespace scope, one inside the body of a
218    function, two inside the body of a function in a local class, etc.)  */
219 int function_depth;
220
221 /* States indicating how grokdeclarator() should handle declspecs marked
222    with __attribute__((deprecated)).  An object declared as
223    __attribute__((deprecated)) suppresses warnings of uses of other
224    deprecated items.  */
225
226 enum deprecated_states {
227   DEPRECATED_NORMAL,
228   DEPRECATED_SUPPRESS
229 };
230
231 static enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
232
233 /* True if a declaration with an `extern' linkage specifier is being
234    processed.  */
235 bool have_extern_spec;
236
237 \f
238 /* A TREE_LIST of VAR_DECLs.  The TREE_PURPOSE is a RECORD_TYPE or
239    UNION_TYPE; the TREE_VALUE is a VAR_DECL with that type.  At the
240    time the VAR_DECL was declared, the type was incomplete.  */
241
242 static GTY(()) tree incomplete_vars;
243 \f
244 /* Returns the kind of template specialization we are currently
245    processing, given that it's declaration contained N_CLASS_SCOPES
246    explicit scope qualifications.  */
247
248 tmpl_spec_kind
249 current_tmpl_spec_kind (int n_class_scopes)
250 {
251   int n_template_parm_scopes = 0;
252   int seen_specialization_p = 0;
253   int innermost_specialization_p = 0;
254   struct cp_binding_level *b;
255
256   /* Scan through the template parameter scopes.  */
257   for (b = current_binding_level;
258        b->kind == sk_template_parms;
259        b = b->level_chain)
260     {
261       /* If we see a specialization scope inside a parameter scope,
262          then something is wrong.  That corresponds to a declaration
263          like:
264
265             template <class T> template <> ...
266
267          which is always invalid since [temp.expl.spec] forbids the
268          specialization of a class member template if the enclosing
269          class templates are not explicitly specialized as well.  */
270       if (b->explicit_spec_p)
271         {
272           if (n_template_parm_scopes == 0)
273             innermost_specialization_p = 1;
274           else
275             seen_specialization_p = 1;
276         }
277       else if (seen_specialization_p == 1)
278         return tsk_invalid_member_spec;
279
280       ++n_template_parm_scopes;
281     }
282
283   /* Handle explicit instantiations.  */
284   if (processing_explicit_instantiation)
285     {
286       if (n_template_parm_scopes != 0)
287         /* We've seen a template parameter list during an explicit
288            instantiation.  For example:
289
290              template <class T> template void f(int);
291
292            This is erroneous.  */
293         return tsk_invalid_expl_inst;
294       else
295         return tsk_expl_inst;
296     }
297
298   if (n_template_parm_scopes < n_class_scopes)
299     /* We've not seen enough template headers to match all the
300        specialized classes present.  For example:
301
302          template <class T> void R<T>::S<T>::f(int);
303
304        This is invalid; there needs to be one set of template
305        parameters for each class.  */
306     return tsk_insufficient_parms;
307   else if (n_template_parm_scopes == n_class_scopes)
308     /* We're processing a non-template declaration (even though it may
309        be a member of a template class.)  For example:
310
311          template <class T> void S<T>::f(int);
312
313        The `class T' maches the `S<T>', leaving no template headers
314        corresponding to the `f'.  */
315     return tsk_none;
316   else if (n_template_parm_scopes > n_class_scopes + 1)
317     /* We've got too many template headers.  For example:
318
319          template <> template <class T> void f (T);
320
321        There need to be more enclosing classes.  */
322     return tsk_excessive_parms;
323   else
324     /* This must be a template.  It's of the form:
325
326          template <class T> template <class U> void S<T>::f(U);
327
328        This is a specialization if the innermost level was a
329        specialization; otherwise it's just a definition of the
330        template.  */
331     return innermost_specialization_p ? tsk_expl_spec : tsk_template;
332 }
333
334 /* Exit the current scope.  */
335
336 void
337 finish_scope (void)
338 {
339   poplevel (0, 0, 0);
340 }
341
342 /* When a label goes out of scope, check to see if that label was used
343    in a valid manner, and issue any appropriate warnings or errors.  */
344
345 static void
346 pop_label (tree label, tree old_value)
347 {
348   if (!processing_template_decl)
349     {
350       if (DECL_INITIAL (label) == NULL_TREE)
351         {
352           location_t location;
353
354           error ("label %q+D used but not defined", label);
355 #ifdef USE_MAPPED_LOCATION
356           location = input_location; /* FIXME want (input_filename, (line)0) */
357 #else
358           location.file = input_filename;
359           location.line = 0;
360 #endif
361           /* Avoid crashing later.  */
362           define_label (location, DECL_NAME (label));
363         }
364       else if (warn_unused_label && !TREE_USED (label))
365         warning (0, "label %q+D defined but not used", label);
366     }
367
368   SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), old_value);
369 }
370
371 /* At the end of a function, all labels declared within the function
372    go out of scope.  BLOCK is the top-level block for the
373    function.  */
374
375 static void
376 pop_labels (tree block)
377 {
378   struct named_label_list *link;
379
380   /* Clear out the definitions of all label names, since their scopes
381      end here.  */
382   for (link = named_labels; link; link = link->next)
383     {
384       pop_label (link->label_decl, link->old_value);
385       /* Put the labels into the "variables" of the top-level block,
386          so debugger can see them.  */
387       TREE_CHAIN (link->label_decl) = BLOCK_VARS (block);
388       BLOCK_VARS (block) = link->label_decl;
389     }
390
391   named_labels = NULL;
392 }
393
394 /* The following two routines are used to interface to Objective-C++.
395    The binding level is purposely treated as an opaque type.  */
396
397 void *
398 objc_get_current_scope (void)
399 {
400   return current_binding_level;
401 }
402
403 /* The following routine is used by the NeXT-style SJLJ exceptions;
404    variables get marked 'volatile' so as to not be clobbered by
405    _setjmp()/_longjmp() calls.  All variables in the current scope,
406    as well as parent scopes up to (but not including) ENCLOSING_BLK
407    shall be thusly marked.  */
408
409 void
410 objc_mark_locals_volatile (void *enclosing_blk)
411 {
412   struct cp_binding_level *scope;
413
414   for (scope = current_binding_level;
415        scope && scope != enclosing_blk;
416        scope = scope->level_chain)
417     {
418       tree decl;
419
420       for (decl = scope->names; decl; decl = TREE_CHAIN (decl))
421         objc_volatilize_decl (decl);
422
423       /* Do not climb up past the current function.  */
424       if (scope->kind == sk_function_parms)
425         break;
426     }
427 }
428
429 /* Exit a binding level.
430    Pop the level off, and restore the state of the identifier-decl mappings
431    that were in effect when this level was entered.
432
433    If KEEP == 1, this level had explicit declarations, so
434    and create a "block" (a BLOCK node) for the level
435    to record its declarations and subblocks for symbol table output.
436
437    If FUNCTIONBODY is nonzero, this level is the body of a function,
438    so create a block as if KEEP were set and also clear out all
439    label names.
440
441    If REVERSE is nonzero, reverse the order of decls before putting
442    them into the BLOCK.  */
443
444 tree
445 poplevel (int keep, int reverse, int functionbody)
446 {
447   tree link;
448   /* The chain of decls was accumulated in reverse order.
449      Put it into forward order, just for cleanliness.  */
450   tree decls;
451   int tmp = functionbody;
452   int real_functionbody;
453   tree subblocks;
454   tree block;
455   tree decl;
456   int leaving_for_scope;
457   scope_kind kind;
458
459   timevar_push (TV_NAME_LOOKUP);
460  restart:
461
462   block = NULL_TREE;
463
464   gcc_assert (current_binding_level->kind != sk_class);
465
466   real_functionbody = (current_binding_level->kind == sk_cleanup
467                        ? ((functionbody = 0), tmp) : functionbody);
468   subblocks = functionbody >= 0 ? current_binding_level->blocks : 0;
469
470   gcc_assert (!VEC_length(cp_class_binding,
471                           current_binding_level->class_shadowed));
472
473   /* We used to use KEEP == 2 to indicate that the new block should go
474      at the beginning of the list of blocks at this binding level,
475      rather than the end.  This hack is no longer used.  */
476   gcc_assert (keep == 0 || keep == 1);
477
478   if (current_binding_level->keep)
479     keep = 1;
480
481   /* Any uses of undefined labels, and any defined labels, now operate
482      under constraints of next binding contour.  */
483   if (cfun && !functionbody)
484     {
485       struct cp_binding_level *level_chain;
486       level_chain = current_binding_level->level_chain;
487       if (level_chain)
488         {
489           struct named_label_use_list *uses;
490           struct named_label_list *labels;
491           for (labels = named_labels; labels; labels = labels->next)
492             if (labels->binding_level == current_binding_level)
493               {
494                 tree decl;
495                 if (current_binding_level->kind == sk_try)
496                   labels->in_try_scope = 1;
497                 if (current_binding_level->kind == sk_catch)
498                   labels->in_catch_scope = 1;
499                 for (decl = labels->names_in_scope; decl;
500                      decl = TREE_CHAIN (decl))
501                   if (decl_jump_unsafe (decl))
502                     labels->bad_decls = tree_cons (NULL_TREE, decl,
503                                                    labels->bad_decls);
504                 labels->binding_level = level_chain;
505                 labels->names_in_scope = level_chain->names;
506               }
507
508           for (uses = named_label_uses; uses; uses = uses->next)
509             if (uses->binding_level == current_binding_level)
510               {
511                 uses->binding_level = level_chain;
512                 uses->names_in_scope = level_chain->names;
513               }
514         }
515     }
516
517   /* Get the decls in the order they were written.
518      Usually current_binding_level->names is in reverse order.
519      But parameter decls were previously put in forward order.  */
520
521   if (reverse)
522     current_binding_level->names
523       = decls = nreverse (current_binding_level->names);
524   else
525     decls = current_binding_level->names;
526
527   /* If there were any declarations or structure tags in that level,
528      or if this level is a function body,
529      create a BLOCK to record them for the life of this function.  */
530   block = NULL_TREE;
531   if (keep == 1 || functionbody)
532     block = make_node (BLOCK);
533   if (block != NULL_TREE)
534     {
535       BLOCK_VARS (block) = decls;
536       BLOCK_SUBBLOCKS (block) = subblocks;
537     }
538
539   /* In each subblock, record that this is its superior.  */
540   if (keep >= 0)
541     for (link = subblocks; link; link = TREE_CHAIN (link))
542       BLOCK_SUPERCONTEXT (link) = block;
543
544   /* We still support the old for-scope rules, whereby the variables
545      in a for-init statement were in scope after the for-statement
546      ended.  We only use the new rules if flag_new_for_scope is
547      nonzero.  */
548   leaving_for_scope
549     = current_binding_level->kind == sk_for && flag_new_for_scope == 1;
550
551   /* Before we remove the declarations first check for unused variables.  */
552   if (warn_unused_variable
553       && !processing_template_decl)
554     for (decl = getdecls (); decl; decl = TREE_CHAIN (decl))
555       if (TREE_CODE (decl) == VAR_DECL
556           && ! TREE_USED (decl)
557           && ! DECL_IN_SYSTEM_HEADER (decl)
558           && DECL_NAME (decl) && ! DECL_ARTIFICIAL (decl))
559         warning (0, "unused variable %q+D", decl);
560
561   /* Remove declarations for all the DECLs in this level.  */
562   for (link = decls; link; link = TREE_CHAIN (link))
563     {
564       if (leaving_for_scope && TREE_CODE (link) == VAR_DECL
565           && DECL_NAME (link))
566         {
567           tree name = DECL_NAME (link);
568           cxx_binding *ob;
569           tree ns_binding;
570
571           ob = outer_binding (name,
572                               IDENTIFIER_BINDING (name),
573                               /*class_p=*/true);
574           if (!ob)
575             ns_binding = IDENTIFIER_NAMESPACE_VALUE (name);
576           else
577             ns_binding = NULL_TREE;
578
579           if (ob && ob->scope == current_binding_level->level_chain)
580             /* We have something like:
581
582                  int i;
583                  for (int i; ;);
584
585                and we are leaving the `for' scope.  There's no reason to
586                keep the binding of the inner `i' in this case.  */
587             pop_binding (name, link);
588           else if ((ob && (TREE_CODE (ob->value) == TYPE_DECL))
589                    || (ns_binding && TREE_CODE (ns_binding) == TYPE_DECL))
590             /* Here, we have something like:
591
592                  typedef int I;
593
594                  void f () {
595                    for (int I; ;);
596                  }
597
598                We must pop the for-scope binding so we know what's a
599                type and what isn't.  */
600             pop_binding (name, link);
601           else
602             {
603               /* Mark this VAR_DECL as dead so that we can tell we left it
604                  there only for backward compatibility.  */
605               DECL_DEAD_FOR_LOCAL (link) = 1;
606
607               /* Keep track of what should have happened when we
608                  popped the binding.  */
609               if (ob && ob->value)
610                 {
611                   SET_DECL_SHADOWED_FOR_VAR (link, ob->value);
612                   DECL_HAS_SHADOWED_FOR_VAR_P (link) = 1;
613                 }
614
615               /* Add it to the list of dead variables in the next
616                  outermost binding to that we can remove these when we
617                  leave that binding.  */
618               current_binding_level->level_chain->dead_vars_from_for
619                 = tree_cons (NULL_TREE, link,
620                              current_binding_level->level_chain->
621                              dead_vars_from_for);
622
623               /* Although we don't pop the cxx_binding, we do clear
624                  its SCOPE since the scope is going away now.  */
625               IDENTIFIER_BINDING (name)->scope
626                 = current_binding_level->level_chain;
627             }
628         }
629       else
630         {
631           tree name;
632
633           /* Remove the binding.  */
634           decl = link;
635
636           if (TREE_CODE (decl) == TREE_LIST)
637             decl = TREE_VALUE (decl);
638           name = decl;
639
640           if (TREE_CODE (name) == OVERLOAD)
641             name = OVL_FUNCTION (name);
642
643           gcc_assert (DECL_P (name));
644           pop_binding (DECL_NAME (name), decl);
645         }
646     }
647
648   /* Remove declarations for any `for' variables from inner scopes
649      that we kept around.  */
650   for (link = current_binding_level->dead_vars_from_for;
651        link; link = TREE_CHAIN (link))
652     pop_binding (DECL_NAME (TREE_VALUE (link)), TREE_VALUE (link));
653
654   /* Restore the IDENTIFIER_TYPE_VALUEs.  */
655   for (link = current_binding_level->type_shadowed;
656        link; link = TREE_CHAIN (link))
657     SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (link), TREE_VALUE (link));
658
659   /* Restore the IDENTIFIER_LABEL_VALUEs for local labels.  */
660   for (link = current_binding_level->shadowed_labels;
661        link;
662        link = TREE_CHAIN (link))
663     pop_label (TREE_VALUE (link), TREE_PURPOSE (link));
664
665   /* There may be OVERLOADs (wrapped in TREE_LISTs) on the BLOCK_VARs
666      list if a `using' declaration put them there.  The debugging
667      back-ends won't understand OVERLOAD, so we remove them here.
668      Because the BLOCK_VARS are (temporarily) shared with
669      CURRENT_BINDING_LEVEL->NAMES we must do this fixup after we have
670      popped all the bindings.  */
671   if (block)
672     {
673       tree* d;
674
675       for (d = &BLOCK_VARS (block); *d; )
676         {
677           if (TREE_CODE (*d) == TREE_LIST)
678             *d = TREE_CHAIN (*d);
679           else
680             d = &TREE_CHAIN (*d);
681         }
682     }
683
684   /* If the level being exited is the top level of a function,
685      check over all the labels.  */
686   if (functionbody)
687     {
688       /* Since this is the top level block of a function, the vars are
689          the function's parameters.  Don't leave them in the BLOCK
690          because they are found in the FUNCTION_DECL instead.  */
691       BLOCK_VARS (block) = 0;
692       pop_labels (block);
693     }
694
695   kind = current_binding_level->kind;
696   if (kind == sk_cleanup)
697     {
698       tree stmt;
699
700       /* If this is a temporary binding created for a cleanup, then we'll
701          have pushed a statement list level.  Pop that, create a new
702          BIND_EXPR for the block, and insert it into the stream.  */
703       stmt = pop_stmt_list (current_binding_level->statement_list);
704       stmt = c_build_bind_expr (block, stmt);
705       add_stmt (stmt);
706     }
707
708   leave_scope ();
709   if (functionbody)
710     DECL_INITIAL (current_function_decl) = block;
711   else if (block)
712     current_binding_level->blocks
713       = chainon (current_binding_level->blocks, block);
714
715   /* If we did not make a block for the level just exited,
716      any blocks made for inner levels
717      (since they cannot be recorded as subblocks in that level)
718      must be carried forward so they will later become subblocks
719      of something else.  */
720   else if (subblocks)
721     current_binding_level->blocks
722       = chainon (current_binding_level->blocks, subblocks);
723
724   /* Each and every BLOCK node created here in `poplevel' is important
725      (e.g. for proper debugging information) so if we created one
726      earlier, mark it as "used".  */
727   if (block)
728     TREE_USED (block) = 1;
729
730   /* All temporary bindings created for cleanups are popped silently.  */
731   if (kind == sk_cleanup)
732     goto restart;
733
734   POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, block);
735 }
736
737 /* Insert BLOCK at the end of the list of subblocks of the
738    current binding level.  This is used when a BIND_EXPR is expanded,
739    to handle the BLOCK node inside the BIND_EXPR.  */
740
741 void
742 insert_block (tree block)
743 {
744   TREE_USED (block) = 1;
745   current_binding_level->blocks
746     = chainon (current_binding_level->blocks, block);
747 }
748
749 /* Walk all the namespaces contained NAMESPACE, including NAMESPACE
750    itself, calling F for each.  The DATA is passed to F as well.  */
751
752 static int
753 walk_namespaces_r (tree namespace, walk_namespaces_fn f, void* data)
754 {
755   int result = 0;
756   tree current = NAMESPACE_LEVEL (namespace)->namespaces;
757
758   result |= (*f) (namespace, data);
759
760   for (; current; current = TREE_CHAIN (current))
761     result |= walk_namespaces_r (current, f, data);
762
763   return result;
764 }
765
766 /* Walk all the namespaces, calling F for each.  The DATA is passed to
767    F as well.  */
768
769 int
770 walk_namespaces (walk_namespaces_fn f, void* data)
771 {
772   return walk_namespaces_r (global_namespace, f, data);
773 }
774
775 /* Call wrapup_globals_declarations for the globals in NAMESPACE.  If
776    DATA is non-NULL, this is the last time we will call
777    wrapup_global_declarations for this NAMESPACE.  */
778
779 int
780 wrapup_globals_for_namespace (tree namespace, void* data)
781 {
782   struct cp_binding_level *level = NAMESPACE_LEVEL (namespace);
783   VEC(tree,gc) *statics = level->static_decls;
784   tree *vec = VEC_address (tree, statics);
785   int len = VEC_length (tree, statics);
786   int last_time = (data != 0);
787
788   if (last_time)
789     {
790       check_global_declarations (vec, len);
791       emit_debug_global_declarations (vec, len);
792       return 0;
793     }
794
795   /* Write out any globals that need to be output.  */
796   return wrapup_global_declarations (vec, len);
797 }
798
799 \f
800 /* In C++, you don't have to write `struct S' to refer to `S'; you
801    can just use `S'.  We accomplish this by creating a TYPE_DECL as
802    if the user had written `typedef struct S S'.  Create and return
803    the TYPE_DECL for TYPE.  */
804
805 tree
806 create_implicit_typedef (tree name, tree type)
807 {
808   tree decl;
809
810   decl = build_decl (TYPE_DECL, name, type);
811   DECL_ARTIFICIAL (decl) = 1;
812   /* There are other implicit type declarations, like the one *within*
813      a class that allows you to write `S::S'.  We must distinguish
814      amongst these.  */
815   SET_DECL_IMPLICIT_TYPEDEF_P (decl);
816   TYPE_NAME (type) = decl;
817
818   return decl;
819 }
820
821 /* Remember a local name for name-mangling purposes.  */
822
823 static void
824 push_local_name (tree decl)
825 {
826   size_t i, nelts;
827   tree t, name;
828
829   timevar_push (TV_NAME_LOOKUP);
830
831   name = DECL_NAME (decl);
832
833   nelts = VEC_length (tree, local_names);
834   for (i = 0; i < nelts; i++)
835     {
836       t = VEC_index (tree, local_names, i);
837       if (DECL_NAME (t) == name)
838         {
839           if (!DECL_LANG_SPECIFIC (decl))
840             retrofit_lang_decl (decl);
841           DECL_LANG_SPECIFIC (decl)->decl_flags.u2sel = 1;
842           if (DECL_LANG_SPECIFIC (t))
843             DECL_DISCRIMINATOR (decl) = DECL_DISCRIMINATOR (t) + 1;
844           else
845             DECL_DISCRIMINATOR (decl) = 1;
846
847           VEC_replace (tree, local_names, i, decl);
848           timevar_pop (TV_NAME_LOOKUP);
849           return;
850         }
851     }
852
853   VEC_safe_push (tree, gc, local_names, decl);
854   timevar_pop (TV_NAME_LOOKUP);
855 }
856 \f
857 /* Subroutine of duplicate_decls: return truthvalue of whether
858    or not types of these decls match.
859
860    For C++, we must compare the parameter list so that `int' can match
861    `int&' in a parameter position, but `int&' is not confused with
862    `const int&'.  */
863
864 int
865 decls_match (tree newdecl, tree olddecl)
866 {
867   int types_match;
868
869   if (newdecl == olddecl)
870     return 1;
871
872   if (TREE_CODE (newdecl) != TREE_CODE (olddecl))
873     /* If the two DECLs are not even the same kind of thing, we're not
874        interested in their types.  */
875     return 0;
876
877   if (TREE_CODE (newdecl) == FUNCTION_DECL)
878     {
879       tree f1 = TREE_TYPE (newdecl);
880       tree f2 = TREE_TYPE (olddecl);
881       tree p1 = TYPE_ARG_TYPES (f1);
882       tree p2 = TYPE_ARG_TYPES (f2);
883
884       if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl)
885           && ! (DECL_EXTERN_C_P (newdecl)
886                 && DECL_EXTERN_C_P (olddecl)))
887         return 0;
888
889       if (TREE_CODE (f1) != TREE_CODE (f2))
890         return 0;
891
892       if (same_type_p (TREE_TYPE (f1), TREE_TYPE (f2)))
893         {
894           if (p2 == NULL_TREE && DECL_EXTERN_C_P (olddecl)
895               && (DECL_BUILT_IN (olddecl)
896 #ifndef NO_IMPLICIT_EXTERN_C
897                   || (DECL_IN_SYSTEM_HEADER (newdecl) && !DECL_CLASS_SCOPE_P (newdecl))
898                   || (DECL_IN_SYSTEM_HEADER (olddecl) && !DECL_CLASS_SCOPE_P (olddecl))
899 #endif
900               ))
901             {
902               types_match = self_promoting_args_p (p1);
903               if (p1 == void_list_node)
904                 TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
905             }
906 #ifndef NO_IMPLICIT_EXTERN_C
907           else if (p1 == NULL_TREE
908                    && (DECL_EXTERN_C_P (olddecl)
909                        && DECL_IN_SYSTEM_HEADER (olddecl)
910                        && !DECL_CLASS_SCOPE_P (olddecl))
911                    && (DECL_EXTERN_C_P (newdecl)
912                        && DECL_IN_SYSTEM_HEADER (newdecl)
913                        && !DECL_CLASS_SCOPE_P (newdecl)))
914             {
915               types_match = self_promoting_args_p (p2);
916               TREE_TYPE (newdecl) = TREE_TYPE (olddecl);
917             }
918 #endif
919           else
920             types_match = compparms (p1, p2);
921         }
922       else
923         types_match = 0;
924     }
925   else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
926     {
927       if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl))
928           != TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)))
929         return 0;
930
931       if (!comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
932                                 DECL_TEMPLATE_PARMS (olddecl)))
933         return 0;
934
935       if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
936         types_match = same_type_p (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl)),
937                                    TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl)));
938       else
939         types_match = decls_match (DECL_TEMPLATE_RESULT (olddecl),
940                                    DECL_TEMPLATE_RESULT (newdecl));
941     }
942   else
943     {
944       /* Need to check scope for variable declaration (VAR_DECL).
945          For typedef (TYPE_DECL), scope is ignored.  */
946       if (TREE_CODE (newdecl) == VAR_DECL
947           && CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
948         return 0;
949
950       if (TREE_TYPE (newdecl) == error_mark_node)
951         types_match = TREE_TYPE (olddecl) == error_mark_node;
952       else if (TREE_TYPE (olddecl) == NULL_TREE)
953         types_match = TREE_TYPE (newdecl) == NULL_TREE;
954       else if (TREE_TYPE (newdecl) == NULL_TREE)
955         types_match = 0;
956       else
957         types_match = comptypes (TREE_TYPE (newdecl),
958                                  TREE_TYPE (olddecl),
959                                  COMPARE_REDECLARATION);
960     }
961
962   return types_match;
963 }
964
965 /* If NEWDECL is `static' and an `extern' was seen previously,
966    warn about it.  OLDDECL is the previous declaration.
967
968    Note that this does not apply to the C++ case of declaring
969    a variable `extern const' and then later `const'.
970
971    Don't complain about built-in functions, since they are beyond
972    the user's control.  */
973
974 void
975 warn_extern_redeclared_static (tree newdecl, tree olddecl)
976 {
977   tree name;
978
979   if (TREE_CODE (newdecl) == TYPE_DECL
980       || TREE_CODE (newdecl) == TEMPLATE_DECL
981       || TREE_CODE (newdecl) == CONST_DECL
982       || TREE_CODE (newdecl) == NAMESPACE_DECL)
983     return;
984
985   /* Don't get confused by static member functions; that's a different
986      use of `static'.  */
987   if (TREE_CODE (newdecl) == FUNCTION_DECL
988       && DECL_STATIC_FUNCTION_P (newdecl))
989     return;
990
991   /* If the old declaration was `static', or the new one isn't, then
992      then everything is OK.  */
993   if (DECL_THIS_STATIC (olddecl) || !DECL_THIS_STATIC (newdecl))
994     return;
995
996   /* It's OK to declare a builtin function as `static'.  */
997   if (TREE_CODE (olddecl) == FUNCTION_DECL
998       && DECL_ARTIFICIAL (olddecl))
999     return;
1000
1001   name = DECL_ASSEMBLER_NAME (newdecl);
1002   pedwarn ("%qD was declared %<extern%> and later %<static%>", newdecl);
1003   pedwarn ("previous declaration of %q+D", olddecl);
1004 }
1005
1006 /* NEW_DECL is a redeclaration of OLD_DECL; both are functions or
1007    function templates.  If their exception specifications do not
1008    match, issue an a diagnostic.  */
1009
1010 static void
1011 check_redeclaration_exception_specification (tree new_decl,
1012                                              tree old_decl)
1013 {
1014   tree new_type;
1015   tree old_type;
1016   tree new_exceptions;
1017   tree old_exceptions;
1018
1019   new_type = TREE_TYPE (new_decl);
1020   new_exceptions = TYPE_RAISES_EXCEPTIONS (new_type);
1021   old_type = TREE_TYPE (old_decl);
1022   old_exceptions = TYPE_RAISES_EXCEPTIONS (old_type);
1023
1024   /* [except.spec]
1025
1026      If any declaration of a function has an exception-specification,
1027      all declarations, including the definition and an explicit
1028      specialization, of that function shall have an
1029      exception-specification with the same set of type-ids.  */
1030   if ((pedantic || ! DECL_IN_SYSTEM_HEADER (old_decl))
1031       && ! DECL_IS_BUILTIN (old_decl)
1032       && flag_exceptions
1033       && !comp_except_specs (new_exceptions, old_exceptions, 
1034                              /*exact=*/true))
1035     {
1036       error ("declaration of %qF throws different exceptions", new_decl);
1037       error ("from previous declaration %q+F", old_decl);
1038     }
1039 }
1040
1041 /* If NEWDECL is a redeclaration of OLDDECL, merge the declarations.
1042    If the redeclaration is invalid, a diagnostic is issued, and the
1043    error_mark_node is returned.  Otherwise, OLDDECL is returned.
1044
1045    If NEWDECL is not a redeclaration of OLDDECL, NULL_TREE is
1046    returned.
1047
1048    NEWDECL_IS_FRIEND is true if NEWDECL was declared as a friend.  */
1049
1050 tree
1051 duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
1052 {
1053   unsigned olddecl_uid = DECL_UID (olddecl);
1054   int olddecl_friend = 0, types_match = 0, hidden_friend = 0;
1055   int new_defines_function = 0;
1056   tree new_template;
1057
1058   if (newdecl == olddecl)
1059     return olddecl;
1060
1061   types_match = decls_match (newdecl, olddecl);
1062
1063   /* If either the type of the new decl or the type of the old decl is an
1064      error_mark_node, then that implies that we have already issued an
1065      error (earlier) for some bogus type specification, and in that case,
1066      it is rather pointless to harass the user with yet more error message
1067      about the same declaration, so just pretend the types match here.  */
1068   if (TREE_TYPE (newdecl) == error_mark_node
1069       || TREE_TYPE (olddecl) == error_mark_node)
1070     types_match = 1;
1071
1072   if (DECL_P (olddecl)
1073       && TREE_CODE (newdecl) == FUNCTION_DECL
1074       && TREE_CODE (olddecl) == FUNCTION_DECL
1075       && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1076     {
1077       if (DECL_DECLARED_INLINE_P (newdecl)
1078           && DECL_UNINLINABLE (newdecl)
1079           && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1080         /* Already warned elsewhere.  */;
1081       else if (DECL_DECLARED_INLINE_P (olddecl)
1082                && DECL_UNINLINABLE (olddecl)
1083                && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1084         /* Already warned.  */;
1085       else if (DECL_DECLARED_INLINE_P (newdecl)
1086                && DECL_UNINLINABLE (olddecl)
1087                && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1088         {
1089           warning (OPT_Wattributes, "function %q+D redeclared as inline",
1090                    newdecl);
1091           warning (OPT_Wattributes, "previous declaration of %q+D "
1092                    "with attribute noinline", olddecl);
1093         }
1094       else if (DECL_DECLARED_INLINE_P (olddecl)
1095                && DECL_UNINLINABLE (newdecl)
1096                && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1097         {
1098           warning (OPT_Wattributes, "function %q+D redeclared with "
1099                    "attribute noinline", newdecl);
1100           warning (OPT_Wattributes, "previous declaration of %q+D was inline",
1101                    olddecl);
1102         }
1103     }
1104
1105   /* Check for redeclaration and other discrepancies.  */
1106   if (TREE_CODE (olddecl) == FUNCTION_DECL
1107       && DECL_ARTIFICIAL (olddecl))
1108     {
1109       gcc_assert (!DECL_HIDDEN_FRIEND_P (olddecl));
1110       if (TREE_CODE (newdecl) != FUNCTION_DECL)
1111         {
1112           /* Avoid warnings redeclaring built-ins which have not been
1113              explicitly declared.  */
1114           if (DECL_ANTICIPATED (olddecl))
1115             return NULL_TREE;
1116
1117           /* If you declare a built-in or predefined function name as static,
1118              the old definition is overridden, but optionally warn this was a
1119              bad choice of name.  */
1120           if (! TREE_PUBLIC (newdecl))
1121             {
1122               if (warn_shadow)
1123                 warning (0, "shadowing %s function %q#D",
1124                          DECL_BUILT_IN (olddecl) ? "built-in" : "library",
1125                          olddecl);
1126               /* Discard the old built-in function.  */
1127               return NULL_TREE;
1128             }
1129           /* If the built-in is not ansi, then programs can override
1130              it even globally without an error.  */
1131           else if (! DECL_BUILT_IN (olddecl))
1132             warning (0, "library function %q#D redeclared as non-function %q#D",
1133                      olddecl, newdecl);
1134           else
1135             {
1136               error ("declaration of %q#D", newdecl);
1137               error ("conflicts with built-in declaration %q#D",
1138                      olddecl);
1139             }
1140           return NULL_TREE;
1141         }
1142       else if (!types_match)
1143         {
1144           /* Avoid warnings redeclaring built-ins which have not been
1145              explicitly declared.  */
1146           if (DECL_ANTICIPATED (olddecl))
1147             {
1148               /* Deal with fileptr_type_node.  FILE type is not known
1149                  at the time we create the builtins.  */
1150               tree t1, t2;
1151
1152               for (t1 = TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1153                    t2 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1154                    t1 || t2;
1155                    t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1156                 if (!t1 || !t2)
1157                   break;
1158                 else if (TREE_VALUE (t2) == fileptr_type_node)
1159                   {
1160                     tree t = TREE_VALUE (t1);
1161
1162                     if (TREE_CODE (t) == POINTER_TYPE
1163                         && TYPE_NAME (TREE_TYPE (t))
1164                         && DECL_NAME (TYPE_NAME (TREE_TYPE (t)))
1165                            == get_identifier ("FILE")
1166                         && compparms (TREE_CHAIN (t1), TREE_CHAIN (t2)))
1167                       {
1168                         tree oldargs = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1169
1170                         TYPE_ARG_TYPES (TREE_TYPE (olddecl))
1171                           = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1172                         types_match = decls_match (newdecl, olddecl);
1173                         if (types_match)
1174                           return duplicate_decls (newdecl, olddecl,
1175                                                   newdecl_is_friend);
1176                         TYPE_ARG_TYPES (TREE_TYPE (olddecl)) = oldargs;
1177                       }
1178                   }
1179                 else if (! same_type_p (TREE_VALUE (t1), TREE_VALUE (t2)))
1180                   break;
1181             }
1182           else if ((DECL_EXTERN_C_P (newdecl)
1183                     && DECL_EXTERN_C_P (olddecl))
1184                    || compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1185                                  TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1186             {
1187               /* A near match; override the builtin.  */
1188
1189               if (TREE_PUBLIC (newdecl))
1190                 {
1191                   warning (0, "new declaration %q#D", newdecl);
1192                   warning (0, "ambiguates built-in declaration %q#D",
1193                            olddecl);
1194                 }
1195               else if (warn_shadow)
1196                 warning (0, "shadowing %s function %q#D",
1197                          DECL_BUILT_IN (olddecl) ? "built-in" : "library",
1198                          olddecl);
1199             }
1200           else
1201             /* Discard the old built-in function.  */
1202             return NULL_TREE;
1203
1204           /* Replace the old RTL to avoid problems with inlining.  */
1205           COPY_DECL_RTL (newdecl, olddecl);
1206         }
1207       /* Even if the types match, prefer the new declarations type for
1208          built-ins which have not been explicitly declared, for
1209          exception lists, etc...  */
1210       else if (DECL_ANTICIPATED (olddecl))
1211         {
1212           tree type = TREE_TYPE (newdecl);
1213           tree attribs = (*targetm.merge_type_attributes)
1214             (TREE_TYPE (olddecl), type);
1215
1216           type = cp_build_type_attribute_variant (type, attribs);
1217           TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = type;
1218         }
1219
1220       /* Whether or not the builtin can throw exceptions has no
1221          bearing on this declarator.  */
1222       TREE_NOTHROW (olddecl) = 0;
1223
1224       if (DECL_THIS_STATIC (newdecl) && !DECL_THIS_STATIC (olddecl))
1225         {
1226           /* If a builtin function is redeclared as `static', merge
1227              the declarations, but make the original one static.  */
1228           DECL_THIS_STATIC (olddecl) = 1;
1229           TREE_PUBLIC (olddecl) = 0;
1230
1231           /* Make the old declaration consistent with the new one so
1232              that all remnants of the builtin-ness of this function
1233              will be banished.  */
1234           SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1235           COPY_DECL_RTL (newdecl, olddecl);
1236         }
1237     }
1238   else if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1239     {
1240       if ((TREE_CODE (olddecl) == TYPE_DECL && DECL_ARTIFICIAL (olddecl)
1241            && TREE_CODE (newdecl) != TYPE_DECL
1242            && ! (TREE_CODE (newdecl) == TEMPLATE_DECL
1243                  && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL))
1244           || (TREE_CODE (newdecl) == TYPE_DECL && DECL_ARTIFICIAL (newdecl)
1245               && TREE_CODE (olddecl) != TYPE_DECL
1246               && ! (TREE_CODE (olddecl) == TEMPLATE_DECL
1247                     && (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl))
1248                         == TYPE_DECL))))
1249         {
1250           /* We do nothing special here, because C++ does such nasty
1251              things with TYPE_DECLs.  Instead, just let the TYPE_DECL
1252              get shadowed, and know that if we need to find a TYPE_DECL
1253              for a given name, we can look in the IDENTIFIER_TYPE_VALUE
1254              slot of the identifier.  */
1255           return NULL_TREE;
1256         }
1257
1258       if ((TREE_CODE (newdecl) == FUNCTION_DECL
1259            && DECL_FUNCTION_TEMPLATE_P (olddecl))
1260           || (TREE_CODE (olddecl) == FUNCTION_DECL
1261               && DECL_FUNCTION_TEMPLATE_P (newdecl)))
1262         return NULL_TREE;
1263
1264       error ("%q#D redeclared as different kind of symbol", newdecl);
1265       if (TREE_CODE (olddecl) == TREE_LIST)
1266         olddecl = TREE_VALUE (olddecl);
1267       error ("previous declaration of %q+#D", olddecl);
1268
1269       return error_mark_node;
1270     }
1271   else if (!types_match)
1272     {
1273       if (CP_DECL_CONTEXT (newdecl) != CP_DECL_CONTEXT (olddecl))
1274         /* These are certainly not duplicate declarations; they're
1275            from different scopes.  */
1276         return NULL_TREE;
1277
1278       if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1279         {
1280           /* The name of a class template may not be declared to refer to
1281              any other template, class, function, object, namespace, value,
1282              or type in the same scope.  */
1283           if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == TYPE_DECL
1284               || TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
1285             {
1286               error ("declaration of template %q#D", newdecl);
1287               error ("conflicts with previous declaration %q+#D", olddecl);
1288             }
1289           else if (TREE_CODE (DECL_TEMPLATE_RESULT (olddecl)) == FUNCTION_DECL
1290                    && TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == FUNCTION_DECL
1291                    && compparms (TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (olddecl))),
1292                                  TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (newdecl))))
1293                    && comp_template_parms (DECL_TEMPLATE_PARMS (newdecl),
1294                                            DECL_TEMPLATE_PARMS (olddecl))
1295                    /* Template functions can be disambiguated by
1296                       return type.  */
1297                    && same_type_p (TREE_TYPE (TREE_TYPE (newdecl)),
1298                                    TREE_TYPE (TREE_TYPE (olddecl))))
1299             {
1300               error ("new declaration %q#D", newdecl);
1301               error ("ambiguates old declaration %q+#D", olddecl);
1302             }
1303           return NULL_TREE;
1304         }
1305       if (TREE_CODE (newdecl) == FUNCTION_DECL)
1306         {
1307           if (DECL_EXTERN_C_P (newdecl) && DECL_EXTERN_C_P (olddecl))
1308             {
1309               error ("declaration of C function %q#D conflicts with",
1310                      newdecl);
1311               error ("previous declaration %q+#D here", olddecl);
1312             }
1313           else if (compparms (TYPE_ARG_TYPES (TREE_TYPE (newdecl)),
1314                               TYPE_ARG_TYPES (TREE_TYPE (olddecl))))
1315             {
1316               error ("new declaration %q#D", newdecl);
1317               error ("ambiguates old declaration %q+#D", olddecl);
1318             }
1319           else
1320             return NULL_TREE;
1321         }
1322       else
1323         {
1324           error ("conflicting declaration %q#D", newdecl);
1325           error ("%q+D has a previous declaration as %q#D", olddecl, olddecl);
1326           return error_mark_node;
1327         }
1328     }
1329   else if (TREE_CODE (newdecl) == FUNCTION_DECL
1330             && ((DECL_TEMPLATE_SPECIALIZATION (olddecl)
1331                  && (!DECL_TEMPLATE_INFO (newdecl)
1332                      || (DECL_TI_TEMPLATE (newdecl)
1333                          != DECL_TI_TEMPLATE (olddecl))))
1334                 || (DECL_TEMPLATE_SPECIALIZATION (newdecl)
1335                     && (!DECL_TEMPLATE_INFO (olddecl)
1336                         || (DECL_TI_TEMPLATE (olddecl)
1337                             != DECL_TI_TEMPLATE (newdecl))))))
1338     /* It's OK to have a template specialization and a non-template
1339        with the same type, or to have specializations of two
1340        different templates with the same type.  Note that if one is a
1341        specialization, and the other is an instantiation of the same
1342        template, that we do not exit at this point.  That situation
1343        can occur if we instantiate a template class, and then
1344        specialize one of its methods.  This situation is valid, but
1345        the declarations must be merged in the usual way.  */
1346     return NULL_TREE;
1347   else if (TREE_CODE (newdecl) == FUNCTION_DECL
1348            && ((DECL_TEMPLATE_INSTANTIATION (olddecl)
1349                 && !DECL_USE_TEMPLATE (newdecl))
1350                || (DECL_TEMPLATE_INSTANTIATION (newdecl)
1351                    && !DECL_USE_TEMPLATE (olddecl))))
1352     /* One of the declarations is a template instantiation, and the
1353        other is not a template at all.  That's OK.  */
1354     return NULL_TREE;
1355   else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1356     {
1357       /* In [namespace.alias] we have:
1358
1359            In a declarative region, a namespace-alias-definition can be
1360            used to redefine a namespace-alias declared in that declarative
1361            region to refer only to the namespace to which it already
1362            refers.
1363
1364          Therefore, if we encounter a second alias directive for the same
1365          alias, we can just ignore the second directive.  */
1366       if (DECL_NAMESPACE_ALIAS (newdecl)
1367           && (DECL_NAMESPACE_ALIAS (newdecl)
1368               == DECL_NAMESPACE_ALIAS (olddecl)))
1369         return olddecl;
1370       /* [namespace.alias]
1371
1372          A namespace-name or namespace-alias shall not be declared as
1373          the name of any other entity in the same declarative region.
1374          A namespace-name defined at global scope shall not be
1375          declared as the name of any other entity in any global scope
1376          of the program.  */
1377       error ("declaration of namespace %qD conflicts with", newdecl);
1378       error ("previous declaration of namespace %q+D here", olddecl);
1379       return error_mark_node;
1380     }
1381   else
1382     {
1383       const char *errmsg = redeclaration_error_message (newdecl, olddecl);
1384       if (errmsg)
1385         {
1386           error (errmsg, newdecl);
1387           if (DECL_NAME (olddecl) != NULL_TREE)
1388             error ((DECL_INITIAL (olddecl) && namespace_bindings_p ())
1389                          ? "%q+#D previously defined here"
1390                          : "%q+#D previously declared here", olddecl);
1391           return error_mark_node;
1392         }
1393       else if (TREE_CODE (olddecl) == FUNCTION_DECL
1394                && DECL_INITIAL (olddecl) != NULL_TREE
1395                && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) == NULL_TREE
1396                && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != NULL_TREE)
1397         {
1398           /* Prototype decl follows defn w/o prototype.  */
1399           warning (0, "prototype for %q+#D", newdecl);
1400           warning (0, "%Jfollows non-prototype definition here", olddecl);
1401         }
1402       else if (TREE_CODE (olddecl) == FUNCTION_DECL
1403                && DECL_LANGUAGE (newdecl) != DECL_LANGUAGE (olddecl))
1404         {
1405           /* extern "C" int foo ();
1406              int foo () { bar (); }
1407              is OK.  */
1408           if (current_lang_depth () == 0)
1409             SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1410           else
1411             {
1412               error ("previous declaration of %q+#D with %qL linkage",
1413                      olddecl, DECL_LANGUAGE (olddecl));
1414               error ("conflicts with new declaration with %qL linkage",
1415                      DECL_LANGUAGE (newdecl));
1416             }
1417         }
1418
1419       if (DECL_LANG_SPECIFIC (olddecl) && DECL_USE_TEMPLATE (olddecl))
1420         ;
1421       else if (TREE_CODE (olddecl) == FUNCTION_DECL)
1422         {
1423           tree t1 = TYPE_ARG_TYPES (TREE_TYPE (olddecl));
1424           tree t2 = TYPE_ARG_TYPES (TREE_TYPE (newdecl));
1425           int i = 1;
1426
1427           if (TREE_CODE (TREE_TYPE (newdecl)) == METHOD_TYPE)
1428             t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2);
1429
1430           for (; t1 && t1 != void_list_node;
1431                t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2), i++)
1432             if (TREE_PURPOSE (t1) && TREE_PURPOSE (t2))
1433               {
1434                 if (1 == simple_cst_equal (TREE_PURPOSE (t1),
1435                                            TREE_PURPOSE (t2)))
1436                   {
1437                     pedwarn ("default argument given for parameter %d of %q#D",
1438                              i, newdecl);
1439                     pedwarn ("after previous specification in %q+#D", olddecl);
1440                   }
1441                 else
1442                   {
1443                     error ("default argument given for parameter %d of %q#D",
1444                            i, newdecl);
1445                     error ("after previous specification in %q+#D",
1446                                  olddecl);
1447                   }
1448               }
1449
1450           if (DECL_DECLARED_INLINE_P (newdecl)
1451               && ! DECL_DECLARED_INLINE_P (olddecl)
1452               && TREE_ADDRESSABLE (olddecl) && warn_inline)
1453             {
1454               warning (0, "%q#D was used before it was declared inline", newdecl);
1455               warning (0, "%Jprevious non-inline declaration here", olddecl);
1456             }
1457         }
1458     }
1459
1460   /* Do not merge an implicit typedef with an explicit one.  In:
1461
1462        class A;
1463        ...
1464        typedef class A A __attribute__ ((foo));
1465
1466      the attribute should apply only to the typedef.  */
1467   if (TREE_CODE (olddecl) == TYPE_DECL
1468       && (DECL_IMPLICIT_TYPEDEF_P (olddecl)
1469           || DECL_IMPLICIT_TYPEDEF_P (newdecl)))
1470     return NULL_TREE;
1471
1472   /* If new decl is `static' and an `extern' was seen previously,
1473      warn about it.  */
1474   warn_extern_redeclared_static (newdecl, olddecl);
1475
1476   /* We have committed to returning 1 at this point.  */
1477   if (TREE_CODE (newdecl) == FUNCTION_DECL)
1478     {
1479       /* Now that functions must hold information normally held
1480          by field decls, there is extra work to do so that
1481          declaration information does not get destroyed during
1482          definition.  */
1483       if (DECL_VINDEX (olddecl))
1484         DECL_VINDEX (newdecl) = DECL_VINDEX (olddecl);
1485       if (DECL_CONTEXT (olddecl))
1486         DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1487       DECL_STATIC_CONSTRUCTOR (newdecl) |= DECL_STATIC_CONSTRUCTOR (olddecl);
1488       DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1489       DECL_PURE_VIRTUAL_P (newdecl) |= DECL_PURE_VIRTUAL_P (olddecl);
1490       DECL_VIRTUAL_P (newdecl) |= DECL_VIRTUAL_P (olddecl);
1491       DECL_THIS_STATIC (newdecl) |= DECL_THIS_STATIC (olddecl);
1492       if (DECL_OVERLOADED_OPERATOR_P (olddecl) != ERROR_MARK)
1493         SET_OVERLOADED_OPERATOR_CODE
1494           (newdecl, DECL_OVERLOADED_OPERATOR_P (olddecl));
1495       new_defines_function = DECL_INITIAL (newdecl) != NULL_TREE;
1496
1497       /* Optionally warn about more than one declaration for the same
1498          name, but don't warn about a function declaration followed by a
1499          definition.  */
1500       if (warn_redundant_decls && ! DECL_ARTIFICIAL (olddecl)
1501           && !(new_defines_function && DECL_INITIAL (olddecl) == NULL_TREE)
1502           /* Don't warn about extern decl followed by definition.  */
1503           && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl))
1504           /* Don't warn about friends, let add_friend take care of it.  */
1505           && ! (newdecl_is_friend || DECL_FRIEND_P (olddecl)))
1506         {
1507           warning (0, "redundant redeclaration of %qD in same scope", newdecl);
1508           warning (0, "previous declaration of %q+D", olddecl);
1509         }
1510     }
1511
1512   /* Deal with C++: must preserve virtual function table size.  */
1513   if (TREE_CODE (olddecl) == TYPE_DECL)
1514     {
1515       tree newtype = TREE_TYPE (newdecl);
1516       tree oldtype = TREE_TYPE (olddecl);
1517
1518       if (newtype != error_mark_node && oldtype != error_mark_node
1519           && TYPE_LANG_SPECIFIC (newtype) && TYPE_LANG_SPECIFIC (oldtype))
1520         CLASSTYPE_FRIEND_CLASSES (newtype)
1521           = CLASSTYPE_FRIEND_CLASSES (oldtype);
1522
1523       DECL_ORIGINAL_TYPE (newdecl) = DECL_ORIGINAL_TYPE (olddecl);
1524     }
1525
1526   /* Copy all the DECL_... slots specified in the new decl
1527      except for any that we copy here from the old type.  */
1528   DECL_ATTRIBUTES (newdecl)
1529     = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1530
1531   if (TREE_CODE (newdecl) == TEMPLATE_DECL)
1532     {
1533       tree old_result;
1534       tree new_result;
1535       old_result = DECL_TEMPLATE_RESULT (olddecl);
1536       new_result = DECL_TEMPLATE_RESULT (newdecl);
1537       TREE_TYPE (olddecl) = TREE_TYPE (old_result);
1538       DECL_TEMPLATE_SPECIALIZATIONS (olddecl)
1539         = chainon (DECL_TEMPLATE_SPECIALIZATIONS (olddecl),
1540                    DECL_TEMPLATE_SPECIALIZATIONS (newdecl));
1541
1542       if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1543         {
1544           DECL_INLINE (old_result)
1545             |= DECL_INLINE (new_result);
1546           DECL_DECLARED_INLINE_P (old_result)
1547             |= DECL_DECLARED_INLINE_P (new_result);
1548           check_redeclaration_exception_specification (newdecl, olddecl);
1549         }
1550
1551       /* If the new declaration is a definition, update the file and
1552          line information on the declaration.  */
1553       if (DECL_INITIAL (old_result) == NULL_TREE
1554           && DECL_INITIAL (new_result) != NULL_TREE)
1555         {
1556           DECL_SOURCE_LOCATION (olddecl)
1557             = DECL_SOURCE_LOCATION (old_result)
1558             = DECL_SOURCE_LOCATION (newdecl);
1559           if (DECL_FUNCTION_TEMPLATE_P (newdecl))
1560             DECL_ARGUMENTS (old_result)
1561               = DECL_ARGUMENTS (new_result);
1562         }
1563
1564       return olddecl;
1565     }
1566
1567   if (types_match)
1568     {
1569       /* Automatically handles default parameters.  */
1570       tree oldtype = TREE_TYPE (olddecl);
1571       tree newtype;
1572
1573       /* Merge the data types specified in the two decls.  */
1574       newtype = merge_types (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1575
1576       /* If merge_types produces a non-typedef type, just use the old type.  */
1577       if (TREE_CODE (newdecl) == TYPE_DECL
1578           && newtype == DECL_ORIGINAL_TYPE (newdecl))
1579         newtype = oldtype;
1580
1581       if (TREE_CODE (newdecl) == VAR_DECL)
1582         {
1583           DECL_THIS_EXTERN (newdecl) |= DECL_THIS_EXTERN (olddecl);
1584           DECL_INITIALIZED_P (newdecl) |= DECL_INITIALIZED_P (olddecl);
1585           DECL_NONTRIVIALLY_INITIALIZED_P (newdecl) 
1586             |= DECL_NONTRIVIALLY_INITIALIZED_P (olddecl);
1587           DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (newdecl)
1588             |= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (olddecl);
1589         }
1590
1591       /* Do this after calling `merge_types' so that default
1592          parameters don't confuse us.  */
1593       else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1594         check_redeclaration_exception_specification (newdecl, olddecl);
1595       TREE_TYPE (newdecl) = TREE_TYPE (olddecl) = newtype;
1596
1597       /* Lay the type out, unless already done.  */
1598       if (! same_type_p (newtype, oldtype)
1599           && TREE_TYPE (newdecl) != error_mark_node
1600           && !(processing_template_decl && uses_template_parms (newdecl)))
1601         layout_type (TREE_TYPE (newdecl));
1602
1603       if ((TREE_CODE (newdecl) == VAR_DECL
1604            || TREE_CODE (newdecl) == PARM_DECL
1605            || TREE_CODE (newdecl) == RESULT_DECL
1606            || TREE_CODE (newdecl) == FIELD_DECL
1607            || TREE_CODE (newdecl) == TYPE_DECL)
1608           && !(processing_template_decl && uses_template_parms (newdecl)))
1609         layout_decl (newdecl, 0);
1610
1611       /* Merge the type qualifiers.  */
1612       if (TREE_READONLY (newdecl))
1613         TREE_READONLY (olddecl) = 1;
1614       if (TREE_THIS_VOLATILE (newdecl))
1615         TREE_THIS_VOLATILE (olddecl) = 1;
1616       if (TREE_NOTHROW (newdecl))
1617         TREE_NOTHROW (olddecl) = 1;
1618
1619       /* Merge deprecatedness.  */
1620       if (TREE_DEPRECATED (newdecl))
1621         TREE_DEPRECATED (olddecl) = 1;
1622
1623       /* Merge the initialization information.  */
1624       if (DECL_INITIAL (newdecl) == NULL_TREE
1625           && DECL_INITIAL (olddecl) != NULL_TREE)
1626         {
1627           DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1628           DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
1629           if (CAN_HAVE_FULL_LANG_DECL_P (newdecl)
1630               && DECL_LANG_SPECIFIC (newdecl)
1631               && DECL_LANG_SPECIFIC (olddecl))
1632             {
1633               DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
1634               DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
1635             }
1636         }
1637
1638       /* Merge the section attribute.
1639          We want to issue an error if the sections conflict but that must be
1640          done later in decl_attributes since we are called before attributes
1641          are assigned.  */
1642       if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1643         DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1644
1645       if (TREE_CODE (newdecl) == FUNCTION_DECL)
1646         {
1647           DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1648             |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1649           DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1650           TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1651           TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1652           TREE_NOTHROW (newdecl) |= TREE_NOTHROW (olddecl);
1653           DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1654           DECL_IS_PURE (newdecl) |= DECL_IS_PURE (olddecl);
1655           /* Keep the old RTL.  */
1656           COPY_DECL_RTL (olddecl, newdecl);
1657         }
1658       else if (TREE_CODE (newdecl) == VAR_DECL
1659                && (DECL_SIZE (olddecl) || !DECL_SIZE (newdecl)))
1660         {
1661           /* Keep the old RTL.  We cannot keep the old RTL if the old
1662              declaration was for an incomplete object and the new
1663              declaration is not since many attributes of the RTL will
1664              change.  */
1665           COPY_DECL_RTL (olddecl, newdecl);
1666         }
1667     }
1668   /* If cannot merge, then use the new type and qualifiers,
1669      and don't preserve the old rtl.  */
1670   else
1671     {
1672       /* Clean out any memory we had of the old declaration.  */
1673       tree oldstatic = value_member (olddecl, static_aggregates);
1674       if (oldstatic)
1675         TREE_VALUE (oldstatic) = error_mark_node;
1676
1677       TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1678       TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1679       TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1680       TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1681     }
1682
1683   /* Merge the storage class information.  */
1684   merge_weak (newdecl, olddecl);
1685
1686   DECL_ONE_ONLY (newdecl) |= DECL_ONE_ONLY (olddecl);
1687   DECL_DEFER_OUTPUT (newdecl) |= DECL_DEFER_OUTPUT (olddecl);
1688   TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1689   TREE_STATIC (olddecl) = TREE_STATIC (newdecl) |= TREE_STATIC (olddecl);
1690   if (! DECL_EXTERNAL (olddecl))
1691     DECL_EXTERNAL (newdecl) = 0;
1692
1693   new_template = NULL_TREE;
1694   if (DECL_LANG_SPECIFIC (newdecl) && DECL_LANG_SPECIFIC (olddecl))
1695     {
1696       DECL_INTERFACE_KNOWN (newdecl) |= DECL_INTERFACE_KNOWN (olddecl);
1697       DECL_NOT_REALLY_EXTERN (newdecl) |= DECL_NOT_REALLY_EXTERN (olddecl);
1698       DECL_COMDAT (newdecl) |= DECL_COMDAT (olddecl);
1699       DECL_TEMPLATE_INSTANTIATED (newdecl)
1700         |= DECL_TEMPLATE_INSTANTIATED (olddecl);
1701
1702       /* If the OLDDECL is an instantiation and/or specialization,
1703          then the NEWDECL must be too.  But, it may not yet be marked
1704          as such if the caller has created NEWDECL, but has not yet
1705          figured out that it is a redeclaration.  */
1706       if (!DECL_USE_TEMPLATE (newdecl))
1707         DECL_USE_TEMPLATE (newdecl) = DECL_USE_TEMPLATE (olddecl);
1708
1709       /* Don't really know how much of the language-specific
1710          values we should copy from old to new.  */
1711       DECL_IN_AGGR_P (newdecl) = DECL_IN_AGGR_P (olddecl);
1712       DECL_LANG_SPECIFIC (newdecl)->decl_flags.u2 =
1713         DECL_LANG_SPECIFIC (olddecl)->decl_flags.u2;
1714       DECL_NONCONVERTING_P (newdecl) = DECL_NONCONVERTING_P (olddecl);
1715       DECL_REPO_AVAILABLE_P (newdecl) = DECL_REPO_AVAILABLE_P (olddecl);
1716       if (DECL_TEMPLATE_INFO (newdecl))
1717         new_template = DECL_TI_TEMPLATE (newdecl);
1718       DECL_TEMPLATE_INFO (newdecl) = DECL_TEMPLATE_INFO (olddecl);
1719       DECL_INITIALIZED_IN_CLASS_P (newdecl)
1720         |= DECL_INITIALIZED_IN_CLASS_P (olddecl);
1721       olddecl_friend = DECL_FRIEND_P (olddecl);
1722       hidden_friend = (DECL_ANTICIPATED (olddecl)
1723                        && DECL_HIDDEN_FRIEND_P (olddecl)
1724                        && newdecl_is_friend);
1725
1726       /* Only functions have DECL_BEFRIENDING_CLASSES.  */
1727       if (TREE_CODE (newdecl) == FUNCTION_DECL
1728           || DECL_FUNCTION_TEMPLATE_P (newdecl))
1729         {
1730           DECL_BEFRIENDING_CLASSES (newdecl)
1731             = chainon (DECL_BEFRIENDING_CLASSES (newdecl),
1732                        DECL_BEFRIENDING_CLASSES (olddecl));
1733           /* DECL_THUNKS is only valid for virtual functions,
1734              otherwise it is a DECL_FRIEND_CONTEXT.  */
1735           if (DECL_VIRTUAL_P (newdecl))
1736             DECL_THUNKS (newdecl) = DECL_THUNKS (olddecl);
1737         }
1738     }
1739
1740   if (TREE_CODE (newdecl) == FUNCTION_DECL)
1741     {
1742       if (DECL_TEMPLATE_INSTANTIATION (olddecl)
1743           && !DECL_TEMPLATE_INSTANTIATION (newdecl))
1744         {
1745           /* If newdecl is not a specialization, then it is not a
1746              template-related function at all.  And that means that we
1747              should have exited above, returning 0.  */
1748           gcc_assert (DECL_TEMPLATE_SPECIALIZATION (newdecl));
1749
1750           if (TREE_USED (olddecl))
1751             /* From [temp.expl.spec]:
1752
1753                If a template, a member template or the member of a class
1754                template is explicitly specialized then that
1755                specialization shall be declared before the first use of
1756                that specialization that would cause an implicit
1757                instantiation to take place, in every translation unit in
1758                which such a use occurs.  */
1759             error ("explicit specialization of %qD after first use",
1760                       olddecl);
1761
1762           SET_DECL_TEMPLATE_SPECIALIZATION (olddecl);
1763
1764           /* [temp.expl.spec/14] We don't inline explicit specialization
1765              just because the primary template says so.  */
1766         }
1767       else
1768         {
1769           if (DECL_PENDING_INLINE_INFO (newdecl) == 0)
1770             DECL_PENDING_INLINE_INFO (newdecl) = DECL_PENDING_INLINE_INFO (olddecl);
1771
1772           DECL_DECLARED_INLINE_P (newdecl) |= DECL_DECLARED_INLINE_P (olddecl);
1773
1774           /* If either decl says `inline', this fn is inline, unless
1775              its definition was passed already.  */
1776           if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == NULL_TREE)
1777             DECL_INLINE (olddecl) = 1;
1778           DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
1779
1780           DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1781             = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
1782         }
1783
1784       /* Preserve abstractness on cloned [cd]tors.  */
1785       DECL_ABSTRACT (newdecl) = DECL_ABSTRACT (olddecl);
1786
1787       if (! types_match)
1788         {
1789           SET_DECL_LANGUAGE (olddecl, DECL_LANGUAGE (newdecl));
1790           COPY_DECL_ASSEMBLER_NAME (newdecl, olddecl);
1791           COPY_DECL_RTL (newdecl, olddecl);
1792         }
1793       if (! types_match || new_defines_function)
1794         {
1795           /* These need to be copied so that the names are available.
1796              Note that if the types do match, we'll preserve inline
1797              info and other bits, but if not, we won't.  */
1798           DECL_ARGUMENTS (olddecl) = DECL_ARGUMENTS (newdecl);
1799           DECL_RESULT (olddecl) = DECL_RESULT (newdecl);
1800         }
1801       if (new_defines_function)
1802         /* If defining a function declared with other language
1803            linkage, use the previously declared language linkage.  */
1804         SET_DECL_LANGUAGE (newdecl, DECL_LANGUAGE (olddecl));
1805       else if (types_match)
1806         {
1807           /* If redeclaring a builtin function, and not a definition,
1808              it stays built in.  */
1809           if (DECL_BUILT_IN (olddecl))
1810             {
1811               DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1812               DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1813               /* If we're keeping the built-in definition, keep the rtl,
1814                  regardless of declaration matches.  */
1815               COPY_DECL_RTL (olddecl, newdecl);
1816             }
1817
1818           DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1819           /* Don't clear out the arguments if we're redefining a function.  */
1820           if (DECL_ARGUMENTS (olddecl))
1821             DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1822         }
1823     }
1824   else if (TREE_CODE (newdecl) == NAMESPACE_DECL)
1825     NAMESPACE_LEVEL (newdecl) = NAMESPACE_LEVEL (olddecl);
1826
1827   /* Now preserve various other info from the definition.  */
1828   TREE_ADDRESSABLE (newdecl) = TREE_ADDRESSABLE (olddecl);
1829   TREE_ASM_WRITTEN (newdecl) = TREE_ASM_WRITTEN (olddecl);
1830   DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
1831   COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1832
1833   /* Warn about conflicting visibility specifications.  */
1834   if (DECL_VISIBILITY_SPECIFIED (olddecl)
1835       && DECL_VISIBILITY_SPECIFIED (newdecl)
1836       && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
1837     {
1838       warning (OPT_Wattributes, "%q+D: visibility attribute ignored "
1839                "because it", newdecl);
1840       warning (OPT_Wattributes, "%Jconflicts with previous "
1841                "declaration here", olddecl);
1842     }
1843   /* Choose the declaration which specified visibility.  */
1844   if (DECL_VISIBILITY_SPECIFIED (olddecl))
1845     {
1846       DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
1847       DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
1848     }
1849   /* Init priority used to be merged from newdecl to olddecl by the memcpy, 
1850      so keep this behavior.  */
1851   if (TREE_CODE (newdecl) == VAR_DECL && DECL_HAS_INIT_PRIORITY_P (newdecl))
1852     {
1853       SET_DECL_INIT_PRIORITY (olddecl, DECL_INIT_PRIORITY (newdecl));
1854       DECL_HAS_INIT_PRIORITY_P (olddecl) = 1;
1855     }
1856
1857   /* The DECL_LANG_SPECIFIC information in OLDDECL will be replaced
1858      with that from NEWDECL below.  */
1859   if (DECL_LANG_SPECIFIC (olddecl))
1860     {
1861       gcc_assert (DECL_LANG_SPECIFIC (olddecl)
1862                   != DECL_LANG_SPECIFIC (newdecl));
1863       ggc_free (DECL_LANG_SPECIFIC (olddecl));
1864     }
1865
1866   if (TREE_CODE (newdecl) == FUNCTION_DECL)
1867     {
1868       int function_size;
1869
1870       function_size = sizeof (struct tree_decl_common);
1871
1872       memcpy ((char *) olddecl + sizeof (struct tree_common),
1873               (char *) newdecl + sizeof (struct tree_common),
1874               function_size - sizeof (struct tree_common));
1875
1876       memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1877               (char *) newdecl + sizeof (struct tree_decl_common),
1878               sizeof (struct tree_function_decl) - sizeof (struct tree_decl_common));
1879       if (new_template)
1880         /* If newdecl is a template instantiation, it is possible that
1881            the following sequence of events has occurred:
1882
1883            o A friend function was declared in a class template.  The
1884            class template was instantiated.
1885
1886            o The instantiation of the friend declaration was
1887            recorded on the instantiation list, and is newdecl.
1888
1889            o Later, however, instantiate_class_template called pushdecl
1890            on the newdecl to perform name injection.  But, pushdecl in
1891            turn called duplicate_decls when it discovered that another
1892            declaration of a global function with the same name already
1893            existed.
1894
1895            o Here, in duplicate_decls, we decided to clobber newdecl.
1896
1897            If we're going to do that, we'd better make sure that
1898            olddecl, and not newdecl, is on the list of
1899            instantiations so that if we try to do the instantiation
1900            again we won't get the clobbered declaration.  */
1901         reregister_specialization (newdecl,
1902                                    new_template,
1903                                    olddecl);
1904     }
1905   else
1906     {
1907       size_t size = tree_code_size (TREE_CODE (olddecl));
1908       memcpy ((char *) olddecl + sizeof (struct tree_common),
1909               (char *) newdecl + sizeof (struct tree_common),
1910               sizeof (struct tree_decl_common) - sizeof (struct tree_common));
1911       switch (TREE_CODE (olddecl))       
1912         {
1913         case LABEL_DECL:
1914         case VAR_DECL:
1915         case RESULT_DECL:
1916         case PARM_DECL:
1917         case FIELD_DECL:
1918         case TYPE_DECL:
1919         case CONST_DECL:
1920           {
1921             memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1922                     (char *) newdecl + sizeof (struct tree_decl_common),
1923                     size - sizeof (struct tree_decl_common)
1924                     + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
1925           }
1926           break;
1927         default:
1928           memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1929                   (char *) newdecl + sizeof (struct tree_decl_common),
1930                   sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common)
1931                   + TREE_CODE_LENGTH (TREE_CODE (newdecl)) * sizeof (char *));
1932           break;
1933         }
1934     }
1935   DECL_UID (olddecl) = olddecl_uid;
1936   if (olddecl_friend)
1937     DECL_FRIEND_P (olddecl) = 1;
1938   if (hidden_friend)
1939     {
1940       DECL_ANTICIPATED (olddecl) = 1;
1941       DECL_HIDDEN_FRIEND_P (olddecl) = 1;
1942     }
1943
1944   /* NEWDECL contains the merged attribute lists.
1945      Update OLDDECL to be the same.  */
1946   DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
1947
1948   /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
1949     so that encode_section_info has a chance to look at the new decl
1950     flags and attributes.  */
1951   if (DECL_RTL_SET_P (olddecl)
1952       && (TREE_CODE (olddecl) == FUNCTION_DECL
1953           || (TREE_CODE (olddecl) == VAR_DECL
1954               && TREE_STATIC (olddecl))))
1955     make_decl_rtl (olddecl);
1956
1957   /* The NEWDECL will no longer be needed.  Because every out-of-class
1958      declaration of a member results in a call to duplicate_decls,
1959      freeing these nodes represents in a significant savings.  */
1960   ggc_free (newdecl);
1961
1962   return olddecl;
1963 }
1964 \f
1965 /* Return zero if the declaration NEWDECL is valid
1966    when the declaration OLDDECL (assumed to be for the same name)
1967    has already been seen.
1968    Otherwise return an error message format string with a %s
1969    where the identifier should go.  */
1970
1971 static const char *
1972 redeclaration_error_message (tree newdecl, tree olddecl)
1973 {
1974   if (TREE_CODE (newdecl) == TYPE_DECL)
1975     {
1976       /* Because C++ can put things into name space for free,
1977          constructs like "typedef struct foo { ... } foo"
1978          would look like an erroneous redeclaration.  */
1979       if (same_type_p (TREE_TYPE (newdecl), TREE_TYPE (olddecl)))
1980         return 0;
1981       else
1982         return "redefinition of %q#D";
1983     }
1984   else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1985     {
1986       /* If this is a pure function, its olddecl will actually be
1987          the original initialization to `0' (which we force to call
1988          abort()).  Don't complain about redefinition in this case.  */
1989       if (DECL_LANG_SPECIFIC (olddecl) && DECL_PURE_VIRTUAL_P (olddecl)
1990           && DECL_INITIAL (olddecl) == NULL_TREE)
1991         return 0;
1992
1993       /* If both functions come from different namespaces, this is not
1994          a redeclaration - this is a conflict with a used function.  */
1995       if (DECL_NAMESPACE_SCOPE_P (olddecl)
1996           && DECL_CONTEXT (olddecl) != DECL_CONTEXT (newdecl)
1997           && ! decls_match (olddecl, newdecl))
1998         return "%qD conflicts with used function";
1999
2000       /* We'll complain about linkage mismatches in
2001          warn_extern_redeclared_static.  */
2002
2003       /* Defining the same name twice is no good.  */
2004       if (DECL_INITIAL (olddecl) != NULL_TREE
2005           && DECL_INITIAL (newdecl) != NULL_TREE)
2006         {
2007           if (DECL_NAME (olddecl) == NULL_TREE)
2008             return "%q#D not declared in class";
2009           else
2010             return "redefinition of %q#D";
2011         }
2012       return 0;
2013     }
2014   else if (TREE_CODE (newdecl) == TEMPLATE_DECL)
2015     {
2016       tree nt, ot;
2017
2018       if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) == TYPE_DECL)
2019         {
2020           if (COMPLETE_TYPE_P (TREE_TYPE (newdecl))
2021               && COMPLETE_TYPE_P (TREE_TYPE (olddecl)))
2022             return "redefinition of %q#D";
2023           return NULL;
2024         }
2025
2026       if (TREE_CODE (DECL_TEMPLATE_RESULT (newdecl)) != FUNCTION_DECL
2027           || (DECL_TEMPLATE_RESULT (newdecl)
2028               == DECL_TEMPLATE_RESULT (olddecl)))
2029         return NULL;
2030
2031       nt = DECL_TEMPLATE_RESULT (newdecl);
2032       if (DECL_TEMPLATE_INFO (nt))
2033         nt = DECL_TEMPLATE_RESULT (template_for_substitution (nt));
2034       ot = DECL_TEMPLATE_RESULT (olddecl);
2035       if (DECL_TEMPLATE_INFO (ot))
2036         ot = DECL_TEMPLATE_RESULT (template_for_substitution (ot));
2037       if (DECL_INITIAL (nt) && DECL_INITIAL (ot))
2038         return "redefinition of %q#D";
2039
2040       return NULL;
2041     }
2042   else if (TREE_CODE (newdecl) == VAR_DECL
2043            && DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
2044     {
2045       /* Only variables can be thread-local, and all declarations must
2046          agree on this property.  */
2047       if (DECL_THREAD_LOCAL_P (newdecl))
2048         return "thread-local declaration of %q#D follows "
2049                "non-thread-local declaration";
2050       else
2051         return "non-thread-local declaration of %q#D follows "
2052                "thread-local declaration";
2053     }
2054   else if (toplevel_bindings_p () || DECL_NAMESPACE_SCOPE_P (newdecl))
2055     {
2056       /* Objects declared at top level:  */
2057       /* If at least one is a reference, it's ok.  */
2058       if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2059         return 0;
2060       /* Reject two definitions.  */
2061       return "redefinition of %q#D";
2062     }
2063   else
2064     {
2065       /* Objects declared with block scope:  */
2066       /* Reject two definitions, and reject a definition
2067          together with an external reference.  */
2068       if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl)))
2069         return "redeclaration of %q#D";
2070       return 0;
2071     }
2072 }
2073 \f
2074 /* Create a new label, named ID.  */
2075
2076 static tree
2077 make_label_decl (tree id, int local_p)
2078 {
2079   tree decl;
2080
2081   decl = build_decl (LABEL_DECL, id, void_type_node);
2082
2083   DECL_CONTEXT (decl) = current_function_decl;
2084   DECL_MODE (decl) = VOIDmode;
2085   C_DECLARED_LABEL_FLAG (decl) = local_p;
2086
2087   /* Say where one reference is to the label, for the sake of the
2088      error if it is not defined.  */
2089   DECL_SOURCE_LOCATION (decl) = input_location;
2090
2091   /* Record the fact that this identifier is bound to this label.  */
2092   SET_IDENTIFIER_LABEL_VALUE (id, decl);
2093
2094   return decl;
2095 }
2096
2097 /* Record this label on the list of used labels so that we can check
2098    at the end of the function to see whether or not the label was
2099    actually defined, and so we can check when the label is defined whether
2100    this use is valid.  */
2101
2102 static void
2103 use_label (tree decl)
2104 {
2105   if (named_label_uses == NULL
2106       || named_label_uses->names_in_scope != current_binding_level->names
2107       || named_label_uses->label_decl != decl)
2108     {
2109       struct named_label_use_list *new_ent;
2110       new_ent = GGC_NEW (struct named_label_use_list);
2111       new_ent->label_decl = decl;
2112       new_ent->names_in_scope = current_binding_level->names;
2113       new_ent->binding_level = current_binding_level;
2114       new_ent->o_goto_locus = input_location;
2115       new_ent->next = named_label_uses;
2116       named_label_uses = new_ent;
2117     }
2118 }
2119
2120 /* Look for a label named ID in the current function.  If one cannot
2121    be found, create one.  (We keep track of used, but undefined,
2122    labels, and complain about them at the end of a function.)  */
2123
2124 tree
2125 lookup_label (tree id)
2126 {
2127   tree decl;
2128   struct named_label_list *ent;
2129
2130   timevar_push (TV_NAME_LOOKUP);
2131   /* You can't use labels at global scope.  */
2132   if (current_function_decl == NULL_TREE)
2133     {
2134       error ("label %qE referenced outside of any function", id);
2135       POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, NULL_TREE);
2136     }
2137
2138   /* See if we've already got this label.  */
2139   decl = IDENTIFIER_LABEL_VALUE (id);
2140   if (decl != NULL_TREE && DECL_CONTEXT (decl) == current_function_decl)
2141     POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2142
2143   /* Record this label on the list of labels used in this function.
2144      We do this before calling make_label_decl so that we get the
2145      IDENTIFIER_LABEL_VALUE before the new label is declared.  */
2146   ent = GGC_CNEW (struct named_label_list);
2147   ent->old_value = IDENTIFIER_LABEL_VALUE (id);
2148   ent->next = named_labels;
2149   named_labels = ent;
2150
2151   /* We need a new label.  */
2152   decl = make_label_decl (id, /*local_p=*/0);
2153
2154   /* Now fill in the information we didn't have before.  */
2155   ent->label_decl = decl;
2156
2157   POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2158 }
2159
2160 /* Declare a local label named ID.  */
2161
2162 tree
2163 declare_local_label (tree id)
2164 {
2165   tree decl;
2166
2167   /* Add a new entry to the SHADOWED_LABELS list so that when we leave
2168      this scope we can restore the old value of
2169      IDENTIFIER_TYPE_VALUE.  */
2170   current_binding_level->shadowed_labels
2171     = tree_cons (IDENTIFIER_LABEL_VALUE (id), NULL_TREE,
2172                  current_binding_level->shadowed_labels);
2173   /* Look for the label.  */
2174   decl = make_label_decl (id, /*local_p=*/1);
2175   /* Now fill in the information we didn't have before.  */
2176   TREE_VALUE (current_binding_level->shadowed_labels) = decl;
2177
2178   return decl;
2179 }
2180
2181 /* Returns nonzero if it is ill-formed to jump past the declaration of
2182    DECL.  Returns 2 if it's also a real problem.  */
2183
2184 static int
2185 decl_jump_unsafe (tree decl)
2186 {
2187   if (TREE_CODE (decl) != VAR_DECL || TREE_STATIC (decl)
2188       || TREE_TYPE (decl) == error_mark_node)
2189     return 0;
2190
2191   if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl))
2192       || DECL_NONTRIVIALLY_INITIALIZED_P (decl))
2193     return 2;
2194
2195   if (pod_type_p (TREE_TYPE (decl)))
2196     return 0;
2197
2198   /* The POD stuff is just pedantry; why should it matter if the class
2199      contains a field of pointer to member type?  */
2200   return 1;
2201 }
2202
2203 /* Check that a single previously seen jump to a newly defined label
2204    is OK.  DECL is the LABEL_DECL or 0; LEVEL is the binding_level for
2205    the jump context; NAMES are the names in scope in LEVEL at the jump
2206    context; FILE and LINE are the source position of the jump or 0.  */
2207
2208 static void
2209 check_previous_goto_1 (tree decl,
2210                        struct cp_binding_level* level,
2211                        tree names, const location_t *locus)
2212 {
2213   int identified = 0;
2214   int saw_eh = 0;
2215   struct cp_binding_level *b = current_binding_level;
2216   for (; b; b = b->level_chain)
2217     {
2218       tree new_decls = b->names;
2219       tree old_decls = (b == level ? names : NULL_TREE);
2220       for (; new_decls != old_decls;
2221            new_decls = TREE_CHAIN (new_decls))
2222         {
2223           int problem = decl_jump_unsafe (new_decls);
2224           if (! problem)
2225             continue;
2226
2227           if (! identified)
2228             {
2229               if (decl)
2230                 pedwarn ("jump to label %qD", decl);
2231               else
2232                 pedwarn ("jump to case label");
2233
2234               if (locus)
2235                 pedwarn ("%H  from here", locus);
2236               identified = 1;
2237             }
2238
2239           if (problem > 1)
2240             error ("  crosses initialization of %q+#D", new_decls);
2241           else
2242             pedwarn ("  enters scope of non-POD %q+#D", new_decls);
2243         }
2244
2245       if (b == level)
2246         break;
2247       if ((b->kind == sk_try || b->kind == sk_catch) && ! saw_eh)
2248         {
2249           if (! identified)
2250             {
2251               if (decl)
2252                 pedwarn ("jump to label %qD", decl);
2253               else
2254                 pedwarn ("jump to case label");
2255
2256               if (locus)
2257                 pedwarn ("%H  from here", locus);
2258               identified = 1;
2259             }
2260           if (b->kind == sk_try)
2261             error ("  enters try block");
2262           else
2263             error ("  enters catch block");
2264           saw_eh = 1;
2265         }
2266     }
2267 }
2268
2269 static void
2270 check_previous_goto (struct named_label_use_list* use)
2271 {
2272   check_previous_goto_1 (use->label_decl, use->binding_level,
2273                          use->names_in_scope, &use->o_goto_locus);
2274 }
2275
2276 static void
2277 check_switch_goto (struct cp_binding_level* level)
2278 {
2279   check_previous_goto_1 (NULL_TREE, level, level->names, NULL);
2280 }
2281
2282 /* Check that any previously seen jumps to a newly defined label DECL
2283    are OK.  Called by define_label.  */
2284
2285 static void
2286 check_previous_gotos (tree decl)
2287 {
2288   struct named_label_use_list **usep;
2289
2290   if (! TREE_USED (decl))
2291     return;
2292
2293   for (usep = &named_label_uses; *usep; )
2294     {
2295       struct named_label_use_list *use = *usep;
2296       if (use->label_decl == decl)
2297         {
2298           check_previous_goto (use);
2299           *usep = use->next;
2300         }
2301       else
2302         usep = &(use->next);
2303     }
2304 }
2305
2306 /* Check that a new jump to a label DECL is OK.  Called by
2307    finish_goto_stmt.  */
2308
2309 void
2310 check_goto (tree decl)
2311 {
2312   int identified = 0;
2313   tree bad;
2314   struct named_label_list *lab;
2315
2316   /* We can't know where a computed goto is jumping.  So we assume
2317      that it's OK.  */
2318   if (! DECL_P (decl))
2319     return;
2320
2321   /* If the label hasn't been defined yet, defer checking.  */
2322   if (! DECL_INITIAL (decl))
2323     {
2324       use_label (decl);
2325       return;
2326     }
2327
2328   for (lab = named_labels; lab; lab = lab->next)
2329     if (decl == lab->label_decl)
2330       break;
2331
2332   /* If the label is not on named_labels it's a gcc local label, so
2333      it must be in an outer scope, so jumping to it is always OK.  */
2334   if (lab == 0)
2335     return;
2336
2337   if ((lab->in_try_scope || lab->in_catch_scope || lab->bad_decls)
2338       && !identified)
2339     {
2340       pedwarn ("jump to label %q+D", decl);
2341       pedwarn ("  from here");
2342       identified = 1;
2343     }
2344
2345   for (bad = lab->bad_decls; bad; bad = TREE_CHAIN (bad))
2346     {
2347       tree b = TREE_VALUE (bad);
2348       int u = decl_jump_unsafe (b);
2349
2350       if (u > 1 && DECL_ARTIFICIAL (b))
2351         /* Can't skip init of __exception_info.  */
2352         error ("%J  enters catch block", b);
2353       else if (u > 1)
2354         error ("  skips initialization of %q+#D", b);
2355       else
2356         pedwarn ("  enters scope of non-POD %q+#D", b);
2357     }
2358
2359   if (lab->in_try_scope)
2360     error ("  enters try block");
2361   else if (lab->in_catch_scope)
2362     error ("  enters catch block");
2363 }
2364
2365 /* Define a label, specifying the location in the source file.
2366    Return the LABEL_DECL node for the label.  */
2367
2368 tree
2369 define_label (location_t location, tree name)
2370 {
2371   tree decl = lookup_label (name);
2372   struct named_label_list *ent;
2373   struct cp_binding_level *p;
2374
2375   timevar_push (TV_NAME_LOOKUP);
2376   for (ent = named_labels; ent; ent = ent->next)
2377     if (ent->label_decl == decl)
2378       break;
2379
2380   /* After labels, make any new cleanups in the function go into their
2381      own new (temporary) binding contour.  */
2382   for (p = current_binding_level;
2383        p->kind != sk_function_parms;
2384        p = p->level_chain)
2385     p->more_cleanups_ok = 0;
2386
2387   if (name == get_identifier ("wchar_t"))
2388     pedwarn ("label named wchar_t");
2389
2390   if (DECL_INITIAL (decl) != NULL_TREE)
2391     error ("duplicate label %qD", decl);
2392   else
2393     {
2394       /* Mark label as having been defined.  */
2395       DECL_INITIAL (decl) = error_mark_node;
2396       /* Say where in the source.  */
2397       DECL_SOURCE_LOCATION (decl) = location;
2398       if (ent)
2399         {
2400           ent->names_in_scope = current_binding_level->names;
2401           ent->binding_level = current_binding_level;
2402         }
2403       check_previous_gotos (decl);
2404     }
2405
2406   POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, decl);
2407 }
2408
2409 struct cp_switch
2410 {
2411   struct cp_binding_level *level;
2412   struct cp_switch *next;
2413   /* The SWITCH_STMT being built.  */
2414   tree switch_stmt;
2415   /* A splay-tree mapping the low element of a case range to the high
2416      element, or NULL_TREE if there is no high element.  Used to
2417      determine whether or not a new case label duplicates an old case
2418      label.  We need a tree, rather than simply a hash table, because
2419      of the GNU case range extension.  */
2420   splay_tree cases;
2421 };
2422
2423 /* A stack of the currently active switch statements.  The innermost
2424    switch statement is on the top of the stack.  There is no need to
2425    mark the stack for garbage collection because it is only active
2426    during the processing of the body of a function, and we never
2427    collect at that point.  */
2428
2429 static struct cp_switch *switch_stack;
2430
2431 /* Called right after a switch-statement condition is parsed.
2432    SWITCH_STMT is the switch statement being parsed.  */
2433
2434 void
2435 push_switch (tree switch_stmt)
2436 {
2437   struct cp_switch *p = XNEW (struct cp_switch);
2438   p->level = current_binding_level;
2439   p->next = switch_stack;
2440   p->switch_stmt = switch_stmt;
2441   p->cases = splay_tree_new (case_compare, NULL, NULL);
2442   switch_stack = p;
2443 }
2444
2445 void
2446 pop_switch (void)
2447 {
2448   struct cp_switch *cs = switch_stack;
2449   location_t switch_location;
2450
2451   /* Emit warnings as needed.  */
2452   if (EXPR_HAS_LOCATION (cs->switch_stmt))
2453     switch_location = EXPR_LOCATION (cs->switch_stmt);
2454   else
2455     switch_location = input_location;
2456   if (!processing_template_decl)
2457     c_do_switch_warnings (cs->cases, switch_location,
2458                           SWITCH_STMT_TYPE (cs->switch_stmt),
2459                           SWITCH_STMT_COND (cs->switch_stmt));
2460
2461   splay_tree_delete (cs->cases);
2462   switch_stack = switch_stack->next;
2463   free (cs);
2464 }
2465
2466 /* Note that we've seen a definition of a case label, and complain if this
2467    is a bad place for one.  */
2468
2469 tree
2470 finish_case_label (tree low_value, tree high_value)
2471 {
2472   tree cond, r;
2473   struct cp_binding_level *p;
2474
2475   if (processing_template_decl)
2476     {
2477       tree label;
2478
2479       /* For templates, just add the case label; we'll do semantic
2480          analysis at instantiation-time.  */
2481       label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
2482       return add_stmt (build_case_label (low_value, high_value, label));
2483     }
2484
2485   /* Find the condition on which this switch statement depends.  */
2486   cond = SWITCH_STMT_COND (switch_stack->switch_stmt);
2487   if (cond && TREE_CODE (cond) == TREE_LIST)
2488     cond = TREE_VALUE (cond);
2489
2490   r = c_add_case_label (switch_stack->cases, cond, TREE_TYPE (cond),
2491                         low_value, high_value);
2492
2493   check_switch_goto (switch_stack->level);
2494
2495   /* After labels, make any new cleanups in the function go into their
2496      own new (temporary) binding contour.  */
2497   for (p = current_binding_level;
2498        p->kind != sk_function_parms;
2499        p = p->level_chain)
2500     p->more_cleanups_ok = 0;
2501
2502   return r;
2503 }
2504 \f
2505 /* Hash a TYPENAME_TYPE.  K is really of type `tree'.  */
2506
2507 static hashval_t
2508 typename_hash (const void* k)
2509 {
2510   hashval_t hash;
2511   tree t = (tree) k;
2512
2513   hash = (htab_hash_pointer (TYPE_CONTEXT (t))
2514           ^ htab_hash_pointer (DECL_NAME (TYPE_NAME (t))));
2515
2516   return hash;
2517 }
2518
2519 typedef struct typename_info {
2520   tree scope;
2521   tree name;
2522   tree template_id;
2523   bool enum_p;
2524   bool class_p;
2525 } typename_info;
2526
2527 /* Compare two TYPENAME_TYPEs.  K1 and K2 are really of type `tree'.  */
2528
2529 static int
2530 typename_compare (const void * k1, const void * k2)
2531 {
2532   tree t1;
2533   const typename_info *t2;
2534
2535   t1 = (tree) k1;
2536   t2 = (const typename_info *) k2;
2537
2538   return (DECL_NAME (TYPE_NAME (t1)) == t2->name
2539           && TYPE_CONTEXT (t1) == t2->scope
2540           && TYPENAME_TYPE_FULLNAME (t1) == t2->template_id
2541           && TYPENAME_IS_ENUM_P (t1) == t2->enum_p
2542           && TYPENAME_IS_CLASS_P (t1) == t2->class_p);
2543 }
2544
2545 /* Build a TYPENAME_TYPE.  If the type is `typename T::t', CONTEXT is
2546    the type of `T', NAME is the IDENTIFIER_NODE for `t'.
2547
2548    Returns the new TYPENAME_TYPE.  */
2549
2550 static GTY ((param_is (union tree_node))) htab_t typename_htab;
2551
2552 static tree
2553 build_typename_type (tree context, tree name, tree fullname,
2554                      enum tag_types tag_type)
2555 {
2556   tree t;
2557   tree d;
2558   typename_info ti;
2559   void **e;
2560   hashval_t hash;
2561
2562   if (typename_htab == NULL)
2563     typename_htab = htab_create_ggc (61, &typename_hash,
2564                                      &typename_compare, NULL);
2565
2566   ti.scope = FROB_CONTEXT (context);
2567   ti.name = name;
2568   ti.template_id = fullname;
2569   ti.enum_p = tag_type == enum_type;
2570   ti.class_p = (tag_type == class_type
2571                 || tag_type == record_type
2572                 || tag_type == union_type);
2573   hash =  (htab_hash_pointer (ti.scope)
2574            ^ htab_hash_pointer (ti.name));
2575
2576   /* See if we already have this type.  */
2577   e = htab_find_slot_with_hash (typename_htab, &ti, hash, INSERT);
2578   if (*e)
2579     t = (tree) *e;
2580   else
2581     {
2582       /* Build the TYPENAME_TYPE.  */
2583       t = make_aggr_type (TYPENAME_TYPE);
2584       TYPE_CONTEXT (t) = ti.scope;
2585       TYPENAME_TYPE_FULLNAME (t) = ti.template_id;
2586       TYPENAME_IS_ENUM_P (t) = ti.enum_p;
2587       TYPENAME_IS_CLASS_P (t) = ti.class_p;
2588
2589       /* Build the corresponding TYPE_DECL.  */
2590       d = build_decl (TYPE_DECL, name, t);
2591       TYPE_NAME (TREE_TYPE (d)) = d;
2592       TYPE_STUB_DECL (TREE_TYPE (d)) = d;
2593       DECL_CONTEXT (d) = FROB_CONTEXT (context);
2594       DECL_ARTIFICIAL (d) = 1;
2595
2596       /* Store it in the hash table.  */
2597       *e = t;
2598     }
2599
2600   return t;
2601 }
2602
2603 /* Resolve `typename CONTEXT::NAME'.  TAG_TYPE indicates the tag
2604    provided to name the type.  Returns an appropriate type, unless an
2605    error occurs, in which case error_mark_node is returned.  If we
2606    locate a non-artificial TYPE_DECL and TF_KEEP_TYPE_DECL is set, we
2607    return that, rather than the _TYPE it corresponds to, in other
2608    cases we look through the type decl.  If TF_ERROR is set, complain
2609    about errors, otherwise be quiet.  */
2610
2611 tree
2612 make_typename_type (tree context, tree name, enum tag_types tag_type,
2613                     tsubst_flags_t complain)
2614 {
2615   tree fullname;
2616
2617   if (name == error_mark_node
2618       || context == NULL_TREE
2619       || context == error_mark_node)
2620     return error_mark_node;
2621
2622   if (TYPE_P (name))
2623     {
2624       if (!(TYPE_LANG_SPECIFIC (name)
2625             && (CLASSTYPE_IS_TEMPLATE (name)
2626                 || CLASSTYPE_USE_TEMPLATE (name))))
2627         name = TYPE_IDENTIFIER (name);
2628       else
2629         /* Create a TEMPLATE_ID_EXPR for the type.  */
2630         name = build_nt (TEMPLATE_ID_EXPR,
2631                          CLASSTYPE_TI_TEMPLATE (name),
2632                          CLASSTYPE_TI_ARGS (name));
2633     }
2634   else if (TREE_CODE (name) == TYPE_DECL)
2635     name = DECL_NAME (name);
2636
2637   fullname = name;
2638
2639   if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
2640     {
2641       name = TREE_OPERAND (name, 0);
2642       if (TREE_CODE (name) == TEMPLATE_DECL)
2643         name = TREE_OPERAND (fullname, 0) = DECL_NAME (name);
2644     }
2645   if (TREE_CODE (name) == TEMPLATE_DECL)
2646     {
2647       error ("%qD used without template parameters", name);
2648       return error_mark_node;
2649     }
2650   gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
2651   gcc_assert (TYPE_P (context));
2652
2653   if (!dependent_type_p (context)
2654       || currently_open_class (context))
2655     {
2656       if (TREE_CODE (fullname) == TEMPLATE_ID_EXPR)
2657         {
2658           tree tmpl = NULL_TREE;
2659           if (IS_AGGR_TYPE (context))
2660             tmpl = lookup_field (context, name, 0, false);
2661           if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
2662             {
2663               if (complain & tf_error)
2664                 error ("no class template named %q#T in %q#T",
2665                        name, context);
2666               return error_mark_node;
2667             }
2668
2669           if (complain & tf_error)
2670             perform_or_defer_access_check (TYPE_BINFO (context), tmpl);
2671
2672           return lookup_template_class (tmpl,
2673                                         TREE_OPERAND (fullname, 1),
2674                                         NULL_TREE, context,
2675                                         /*entering_scope=*/0,
2676                                         tf_error | tf_warning | tf_user);
2677         }
2678       else
2679         {
2680           tree t;
2681
2682           if (!IS_AGGR_TYPE (context))
2683             {
2684               if (complain & tf_error)
2685                 error ("no type named %q#T in %q#T", name, context);
2686               return error_mark_node;
2687             }
2688
2689           t = lookup_field (context, name, 0, true);
2690           if (t)
2691             {
2692               if (TREE_CODE (t) != TYPE_DECL)
2693                 {
2694                   if (complain & tf_error)
2695                     error ("no type named %q#T in %q#T", name, context);
2696                   return error_mark_node;
2697                 }
2698
2699               if (complain & tf_error)
2700                 perform_or_defer_access_check (TYPE_BINFO (context), t);
2701
2702               if (DECL_ARTIFICIAL (t) || !(complain & tf_keep_type_decl))
2703                 t = TREE_TYPE (t);
2704
2705               return t;
2706             }
2707         }
2708     }
2709
2710   /* If the CONTEXT is not a template type, then either the field is
2711      there now or its never going to be.  */
2712   if (!dependent_type_p (context))
2713     {
2714       if (complain & tf_error)
2715         error ("no type named %q#T in %q#T", name, context);
2716       return error_mark_node;
2717     }
2718
2719   return build_typename_type (context, name, fullname, tag_type);
2720 }
2721
2722 /* Resolve `CONTEXT::template NAME'.  Returns a TEMPLATE_DECL if the name
2723    can be resolved or an UNBOUND_CLASS_TEMPLATE, unless an error occurs,
2724    in which case error_mark_node is returned.
2725
2726    If PARM_LIST is non-NULL, also make sure that the template parameter
2727    list of TEMPLATE_DECL matches.
2728
2729    If COMPLAIN zero, don't complain about any errors that occur.  */
2730
2731 tree
2732 make_unbound_class_template (tree context, tree name, tree parm_list,
2733                              tsubst_flags_t complain)
2734 {
2735   tree t;
2736   tree d;
2737
2738   if (TYPE_P (name))
2739     name = TYPE_IDENTIFIER (name);
2740   else if (DECL_P (name))
2741     name = DECL_NAME (name);
2742   gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
2743
2744   if (!dependent_type_p (context)
2745       || currently_open_class (context))
2746     {
2747       tree tmpl = NULL_TREE;
2748
2749       if (IS_AGGR_TYPE (context))
2750         tmpl = lookup_field (context, name, 0, false);
2751
2752       if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
2753         {
2754           if (complain & tf_error)
2755             error ("no class template named %q#T in %q#T", name, context);
2756           return error_mark_node;
2757         }
2758
2759       if (parm_list
2760           && !comp_template_parms (DECL_TEMPLATE_PARMS (tmpl), parm_list))
2761         {
2762           if (complain & tf_error)
2763             {
2764               error ("template parameters do not match template");
2765               error ("%q+D declared here", tmpl);
2766             }
2767           return error_mark_node;
2768         }
2769
2770       if (complain & tf_error)
2771         perform_or_defer_access_check (TYPE_BINFO (context), tmpl);
2772
2773       return tmpl;
2774     }
2775
2776   /* Build the UNBOUND_CLASS_TEMPLATE.  */
2777   t = make_aggr_type (UNBOUND_CLASS_TEMPLATE);
2778   TYPE_CONTEXT (t) = FROB_CONTEXT (context);
2779   TREE_TYPE (t) = NULL_TREE;
2780
2781   /* Build the corresponding TEMPLATE_DECL.  */
2782   d = build_decl (TEMPLATE_DECL, name, t);
2783   TYPE_NAME (TREE_TYPE (d)) = d;
2784   TYPE_STUB_DECL (TREE_TYPE (d)) = d;
2785   DECL_CONTEXT (d) = FROB_CONTEXT (context);
2786   DECL_ARTIFICIAL (d) = 1;
2787   DECL_TEMPLATE_PARMS (d) = parm_list;
2788
2789   return t;
2790 }
2791
2792 \f
2793
2794 /* Push the declarations of builtin types into the namespace.
2795    RID_INDEX is the index of the builtin type in the array
2796    RID_POINTERS.  NAME is the name used when looking up the builtin
2797    type.  TYPE is the _TYPE node for the builtin type.  */
2798
2799 void
2800 record_builtin_type (enum rid rid_index,
2801                      const char* name,
2802                      tree type)
2803 {
2804   tree rname = NULL_TREE, tname = NULL_TREE;
2805   tree tdecl = NULL_TREE;
2806
2807   if ((int) rid_index < (int) RID_MAX)
2808     rname = ridpointers[(int) rid_index];
2809   if (name)
2810     tname = get_identifier (name);
2811
2812   /* The calls to SET_IDENTIFIER_GLOBAL_VALUE below should be
2813      eliminated.  Built-in types should not be looked up name; their
2814      names are keywords that the parser can recognize.  However, there
2815      is code in c-common.c that uses identifier_global_value to look
2816      up built-in types by name.  */
2817   if (tname)
2818     {
2819       tdecl = build_decl (TYPE_DECL, tname, type);
2820       DECL_ARTIFICIAL (tdecl) = 1;
2821       SET_IDENTIFIER_GLOBAL_VALUE (tname, tdecl);
2822     }
2823   if (rname)
2824     {
2825       if (!tdecl)
2826         {
2827           tdecl = build_decl (TYPE_DECL, rname, type);
2828           DECL_ARTIFICIAL (tdecl) = 1;
2829         }
2830       SET_IDENTIFIER_GLOBAL_VALUE (rname, tdecl);
2831     }
2832
2833   if (!TYPE_NAME (type))
2834     TYPE_NAME (type) = tdecl;
2835
2836   if (tdecl)
2837     debug_hooks->type_decl (tdecl, 0);
2838 }
2839
2840 /* Record one of the standard Java types.
2841  * Declare it as having the given NAME.
2842  * If SIZE > 0, it is the size of one of the integral types;
2843  * otherwise it is the negative of the size of one of the other types.  */
2844
2845 static tree
2846 record_builtin_java_type (const char* name, int size)
2847 {
2848   tree type, decl;
2849   if (size > 0)
2850     type = make_signed_type (size);
2851   else if (size > -32)
2852     { /* "__java_char" or ""__java_boolean".  */
2853       type = make_unsigned_type (-size);
2854       /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/
2855     }
2856   else
2857     { /* "__java_float" or ""__java_double".  */
2858       type = make_node (REAL_TYPE);
2859       TYPE_PRECISION (type) = - size;
2860       layout_type (type);
2861     }
2862   record_builtin_type (RID_MAX, name, type);
2863   decl = TYPE_NAME (type);
2864
2865   /* Suppress generate debug symbol entries for these types,
2866      since for normal C++ they are just clutter.
2867      However, push_lang_context undoes this if extern "Java" is seen.  */
2868   DECL_IGNORED_P (decl) = 1;
2869
2870   TYPE_FOR_JAVA (type) = 1;
2871   return type;
2872 }
2873
2874 /* Push a type into the namespace so that the back-ends ignore it.  */
2875
2876 static void
2877 record_unknown_type (tree type, const char* name)
2878 {
2879   tree decl = pushdecl (build_decl (TYPE_DECL, get_identifier (name), type));
2880   /* Make sure the "unknown type" typedecl gets ignored for debug info.  */
2881   DECL_IGNORED_P (decl) = 1;
2882   TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
2883   TYPE_SIZE (type) = TYPE_SIZE (void_type_node);
2884   TYPE_ALIGN (type) = 1;
2885   TYPE_USER_ALIGN (type) = 0;
2886   TYPE_MODE (type) = TYPE_MODE (void_type_node);
2887 }
2888
2889 /* A string for which we should create an IDENTIFIER_NODE at
2890    startup.  */
2891
2892 typedef struct predefined_identifier
2893 {
2894   /* The name of the identifier.  */
2895   const char *const name;
2896   /* The place where the IDENTIFIER_NODE should be stored.  */
2897   tree *const node;
2898   /* Nonzero if this is the name of a constructor or destructor.  */
2899   const int ctor_or_dtor_p;
2900 } predefined_identifier;
2901
2902 /* Create all the predefined identifiers.  */
2903
2904 static void
2905 initialize_predefined_identifiers (void)
2906 {
2907   const predefined_identifier *pid;
2908
2909   /* A table of identifiers to create at startup.  */
2910   static const predefined_identifier predefined_identifiers[] = {
2911     { "C++", &lang_name_cplusplus, 0 },
2912     { "C", &lang_name_c, 0 },
2913     { "Java", &lang_name_java, 0 },
2914     /* Some of these names have a trailing space so that it is
2915        impossible for them to conflict with names written by users.  */
2916     { "__ct ", &ctor_identifier, 1 },
2917     { "__base_ctor ", &base_ctor_identifier, 1 },
2918     { "__comp_ctor ", &complete_ctor_identifier, 1 },
2919     { "__dt ", &dtor_identifier, 1 },
2920     { "__comp_dtor ", &complete_dtor_identifier, 1 },
2921     { "__base_dtor ", &base_dtor_identifier, 1 },
2922     { "__deleting_dtor ", &deleting_dtor_identifier, 1 },
2923     { IN_CHARGE_NAME, &in_charge_identifier, 0 },
2924     { "nelts", &nelts_identifier, 0 },
2925     { THIS_NAME, &this_identifier, 0 },
2926     { VTABLE_DELTA_NAME, &delta_identifier, 0 },
2927     { VTABLE_PFN_NAME, &pfn_identifier, 0 },
2928     { "_vptr", &vptr_identifier, 0 },
2929     { "__vtt_parm", &vtt_parm_identifier, 0 },
2930     { "::", &global_scope_name, 0 },
2931     { "std", &std_identifier, 0 },
2932     { NULL, NULL, 0 }
2933   };
2934
2935   for (pid = predefined_identifiers; pid->name; ++pid)
2936     {
2937       *pid->node = get_identifier (pid->name);
2938       if (pid->ctor_or_dtor_p)
2939         IDENTIFIER_CTOR_OR_DTOR_P (*pid->node) = 1;
2940     }
2941 }
2942
2943 /* Create the predefined scalar types of C,
2944    and some nodes representing standard constants (0, 1, (void *)0).
2945    Initialize the global binding level.
2946    Make definitions for built-in primitive functions.  */
2947
2948 void
2949 cxx_init_decl_processing (void)
2950 {
2951   tree void_ftype;
2952   tree void_ftype_ptr;
2953
2954   build_common_tree_nodes (flag_signed_char, false);
2955
2956   /* Create all the identifiers we need.  */
2957   initialize_predefined_identifiers ();
2958
2959   /* Create the global variables.  */
2960   push_to_top_level ();
2961
2962   current_function_decl = NULL_TREE;
2963   current_binding_level = NULL;
2964   /* Enter the global namespace.  */
2965   gcc_assert (global_namespace == NULL_TREE);
2966   global_namespace = build_lang_decl (NAMESPACE_DECL, global_scope_name,
2967                                       void_type_node);
2968   begin_scope (sk_namespace, global_namespace);
2969
2970   current_lang_name = NULL_TREE;
2971
2972   /* Adjust various flags based on command-line settings.  */
2973   if (!flag_permissive)
2974     flag_pedantic_errors = 1;
2975   if (!flag_no_inline)
2976     {
2977       flag_inline_trees = 1;
2978       flag_no_inline = 1;
2979     }
2980   if (flag_inline_functions)
2981     flag_inline_trees = 2;
2982
2983   /* Force minimum function alignment if using the least significant
2984      bit of function pointers to store the virtual bit.  */
2985   if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
2986       && force_align_functions_log < 1)
2987     force_align_functions_log = 1;
2988
2989   /* Initially, C.  */
2990   current_lang_name = lang_name_c;
2991
2992   error_mark_list = build_tree_list (error_mark_node, error_mark_node);
2993   TREE_TYPE (error_mark_list) = error_mark_node;
2994
2995   /* Create the `std' namespace.  */
2996   push_namespace (std_identifier);
2997   std_node = current_namespace;
2998   pop_namespace ();
2999
3000   c_common_nodes_and_builtins ();
3001
3002   java_byte_type_node = record_builtin_java_type ("__java_byte", 8);
3003   java_short_type_node = record_builtin_java_type ("__java_short", 16);
3004   java_int_type_node = record_builtin_java_type ("__java_int", 32);
3005   java_long_type_node = record_builtin_java_type ("__java_long", 64);
3006   java_float_type_node = record_builtin_java_type ("__java_float", -32);
3007   java_double_type_node = record_builtin_java_type ("__java_double", -64);
3008   java_char_type_node = record_builtin_java_type ("__java_char", -16);
3009   java_boolean_type_node = record_builtin_java_type ("__java_boolean", -1);
3010
3011   integer_two_node = build_int_cst (NULL_TREE, 2);
3012   integer_three_node = build_int_cst (NULL_TREE, 3);
3013
3014   record_builtin_type (RID_BOOL, "bool", boolean_type_node);
3015   truthvalue_type_node = boolean_type_node;
3016   truthvalue_false_node = boolean_false_node;
3017   truthvalue_true_node = boolean_true_node;
3018
3019   empty_except_spec = build_tree_list (NULL_TREE, NULL_TREE);
3020
3021 #if 0
3022   record_builtin_type (RID_MAX, NULL, string_type_node);
3023 #endif
3024
3025   delta_type_node = ptrdiff_type_node;
3026   vtable_index_type = ptrdiff_type_node;
3027
3028   vtt_parm_type = build_pointer_type (const_ptr_type_node);
3029   void_ftype = build_function_type (void_type_node, void_list_node);
3030   void_ftype_ptr = build_function_type (void_type_node,
3031                                         tree_cons (NULL_TREE,
3032                                                    ptr_type_node,
3033                                                    void_list_node));
3034   void_ftype_ptr
3035     = build_exception_variant (void_ftype_ptr, empty_except_spec);
3036
3037   /* C++ extensions */
3038
3039   unknown_type_node = make_node (UNKNOWN_TYPE);
3040   record_unknown_type (unknown_type_node, "unknown type");
3041
3042   /* Indirecting an UNKNOWN_TYPE node yields an UNKNOWN_TYPE node.  */
3043   TREE_TYPE (unknown_type_node) = unknown_type_node;
3044
3045   /* Looking up TYPE_POINTER_TO and TYPE_REFERENCE_TO yield the same
3046      result.  */
3047   TYPE_POINTER_TO (unknown_type_node) = unknown_type_node;
3048   TYPE_REFERENCE_TO (unknown_type_node) = unknown_type_node;
3049
3050   {
3051     /* Make sure we get a unique function type, so we can give
3052        its pointer type a name.  (This wins for gdb.) */
3053     tree vfunc_type = make_node (FUNCTION_TYPE);
3054     TREE_TYPE (vfunc_type) = integer_type_node;
3055     TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
3056     layout_type (vfunc_type);
3057
3058     vtable_entry_type = build_pointer_type (vfunc_type);
3059   }
3060   record_builtin_type (RID_MAX, VTBL_PTR_TYPE, vtable_entry_type);
3061
3062   vtbl_type_node
3063     = build_cplus_array_type (vtable_entry_type, NULL_TREE);
3064   layout_type (vtbl_type_node);
3065   vtbl_type_node = build_qualified_type (vtbl_type_node, TYPE_QUAL_CONST);
3066   record_builtin_type (RID_MAX, NULL, vtbl_type_node);
3067   vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
3068   layout_type (vtbl_ptr_type_node);
3069   record_builtin_type (RID_MAX, NULL, vtbl_ptr_type_node);
3070
3071   push_namespace (get_identifier ("__cxxabiv1"));
3072   abi_node = current_namespace;
3073   pop_namespace ();
3074
3075   global_type_node = make_node (LANG_TYPE);
3076   record_unknown_type (global_type_node, "global type");
3077
3078   /* Now, C++.  */
3079   current_lang_name = lang_name_cplusplus;
3080
3081   {
3082     tree bad_alloc_id;
3083     tree bad_alloc_type_node;
3084     tree bad_alloc_decl;
3085     tree newtype, deltype;
3086     tree ptr_ftype_sizetype;
3087
3088     push_namespace (std_identifier);
3089     bad_alloc_id = get_identifier ("bad_alloc");
3090     bad_alloc_type_node = make_aggr_type (RECORD_TYPE);
3091     TYPE_CONTEXT (bad_alloc_type_node) = current_namespace;
3092     bad_alloc_decl
3093       = create_implicit_typedef (bad_alloc_id, bad_alloc_type_node);
3094     DECL_CONTEXT (bad_alloc_decl) = current_namespace;
3095     TYPE_STUB_DECL (bad_alloc_type_node) = bad_alloc_decl;
3096     pop_namespace ();
3097
3098     ptr_ftype_sizetype
3099       = build_function_type (ptr_type_node,
3100                              tree_cons (NULL_TREE,
3101                                         size_type_node,
3102                                         void_list_node));
3103     newtype = build_exception_variant
3104       (ptr_ftype_sizetype, add_exception_specifier
3105        (NULL_TREE, bad_alloc_type_node, -1));
3106     deltype = build_exception_variant (void_ftype_ptr, empty_except_spec);
3107     push_cp_library_fn (NEW_EXPR, newtype);
3108     push_cp_library_fn (VEC_NEW_EXPR, newtype);
3109     global_delete_fndecl = push_cp_library_fn (DELETE_EXPR, deltype);
3110     push_cp_library_fn (VEC_DELETE_EXPR, deltype);
3111   }
3112
3113   abort_fndecl
3114     = build_library_fn_ptr ("__cxa_pure_virtual", void_ftype);
3115
3116   /* Perform other language dependent initializations.  */
3117   init_class_processing ();
3118   init_rtti_processing ();
3119
3120   if (flag_exceptions)
3121     init_exception_processing ();
3122
3123   if (! supports_one_only ())
3124     flag_weak = 0;
3125
3126   make_fname_decl = cp_make_fname_decl;
3127   start_fname_decls ();
3128
3129   /* Show we use EH for cleanups.  */
3130   if (flag_exceptions)
3131     using_eh_for_cleanups ();
3132 }
3133
3134 /* Generate an initializer for a function naming variable from
3135    NAME. NAME may be NULL, to indicate a dependent name.  TYPE_P is
3136    filled in with the type of the init.  */
3137
3138 tree
3139 cp_fname_init (const char* name, tree *type_p)
3140 {
3141   tree domain = NULL_TREE;
3142   tree type;
3143   tree init = NULL_TREE;
3144   size_t length = 0;
3145
3146   if (name)
3147     {
3148       length = strlen (name);
3149       domain = build_index_type (size_int (length));
3150       init = build_string (length + 1, name);
3151     }
3152
3153   type = build_qualified_type (char_type_node, TYPE_QUAL_CONST);
3154   type = build_cplus_array_type (type, domain);
3155
3156   *type_p = type;
3157
3158   if (init)
3159     TREE_TYPE (init) = type;
3160   else
3161     init = error_mark_node;
3162
3163   return init;
3164 }
3165
3166 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3167    decl, NAME is the initialization string and TYPE_DEP indicates whether
3168    NAME depended on the type of the function. We make use of that to detect
3169    __PRETTY_FUNCTION__ inside a template fn. This is being done
3170    lazily at the point of first use, so we mustn't push the decl now.  */
3171
3172 static tree
3173 cp_make_fname_decl (tree id, int type_dep)
3174 {
3175   const char *const name = (type_dep && processing_template_decl
3176                             ? NULL : fname_as_string (type_dep));
3177   tree type;
3178   tree init = cp_fname_init (name, &type);
3179   tree decl = build_decl (VAR_DECL, id, type);
3180
3181   if (name)
3182     free ((char *) name);
3183
3184   /* As we're using pushdecl_with_scope, we must set the context.  */
3185   DECL_CONTEXT (decl) = current_function_decl;
3186   DECL_PRETTY_FUNCTION_P (decl) = type_dep;
3187
3188   TREE_STATIC (decl) = 1;
3189   TREE_READONLY (decl) = 1;
3190   DECL_ARTIFICIAL (decl) = 1;
3191   DECL_INITIAL (decl) = init;
3192
3193   TREE_USED (decl) = 1;
3194
3195   if (current_function_decl)
3196     {
3197       struct cp_binding_level *b = current_binding_level;
3198       while (b->level_chain->kind != sk_function_parms)
3199         b = b->level_chain;
3200       pushdecl_with_scope (decl, b, /*is_friend=*/false);
3201       cp_finish_decl (decl, init, NULL_TREE, LOOKUP_ONLYCONVERTING);
3202     }
3203   else
3204     pushdecl_top_level_and_finish (decl, init);
3205
3206   return decl;
3207 }
3208
3209 /* Make a definition for a builtin function named NAME in the current
3210    namespace, whose data type is TYPE and whose context is CONTEXT.
3211    TYPE should be a function type with argument types.
3212
3213    CLASS and CODE tell later passes how to compile calls to this function.
3214    See tree.h for possible values.
3215
3216    If LIBNAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3217    the name to be called if we can't opencode the function.
3218    If ATTRS is nonzero, use that for the function's attribute
3219    list.  */
3220
3221 static tree
3222 builtin_function_1 (const char* name,
3223                     tree type,
3224                     tree context,
3225                     enum built_in_function code,
3226                     enum built_in_class class,
3227                     const char* libname,
3228                     tree attrs)
3229 {
3230   tree decl = build_library_fn_1 (get_identifier (name), ERROR_MARK, type);
3231   DECL_BUILT_IN_CLASS (decl) = class;
3232   DECL_FUNCTION_CODE (decl) = code;
3233   DECL_CONTEXT (decl) = context;
3234
3235   pushdecl (decl);
3236
3237   /* Since `pushdecl' relies on DECL_ASSEMBLER_NAME instead of DECL_NAME,
3238      we cannot change DECL_ASSEMBLER_NAME until we have installed this
3239      function in the namespace.  */
3240   if (libname)
3241     SET_DECL_ASSEMBLER_NAME (decl, get_identifier (libname));
3242
3243   /* A function in the user's namespace should have an explicit
3244      declaration before it is used.  Mark the built-in function as
3245      anticipated but not actually declared.  */
3246   if (name[0] != '_' || name[1] != '_')
3247     DECL_ANTICIPATED (decl) = 1;
3248
3249   /* Possibly apply some default attributes to this built-in function.  */
3250   if (attrs)
3251     decl_attributes (&decl, attrs, ATTR_FLAG_BUILT_IN);
3252   else
3253     decl_attributes (&decl, NULL_TREE, 0);
3254
3255   return decl;
3256 }
3257
3258 /* Entry point for the benefit of c_common_nodes_and_builtins.
3259
3260    Make a definition for a builtin function named NAME and whose data type
3261    is TYPE.  TYPE should be a function type with argument types.  This
3262    function places the anticipated declaration in the global namespace
3263    and additionally in the std namespace if appropriate.
3264
3265    CLASS and CODE tell later passes how to compile calls to this function.
3266    See tree.h for possible values.
3267
3268    If LIBNAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3269    the name to be called if we can't opencode the function.
3270
3271    If ATTRS is nonzero, use that for the function's attribute
3272    list.  */
3273
3274 tree
3275 builtin_function (const char* name,
3276                   tree type,
3277                   int code,
3278                   enum built_in_class cl,
3279                   const char* libname,
3280                   tree attrs)
3281 {
3282   /* All builtins that don't begin with an '_' should additionally
3283      go in the 'std' namespace.  */
3284   if (name[0] != '_')
3285     {
3286       push_namespace (std_identifier);
3287       builtin_function_1 (name, type, std_node, code, cl, libname, attrs);
3288       pop_namespace ();
3289     }
3290
3291   return builtin_function_1 (name, type, NULL_TREE, code,
3292                              cl, libname, attrs);
3293 }
3294
3295 /* Generate a FUNCTION_DECL with the typical flags for a runtime library
3296    function.  Not called directly.  */
3297
3298 static tree
3299 build_library_fn_1 (tree name, enum tree_code operator_code, tree type)
3300 {
3301   tree fn = build_lang_decl (FUNCTION_DECL, name, type);
3302   DECL_EXTERNAL (fn) = 1;
3303   TREE_PUBLIC (fn) = 1;
3304   DECL_ARTIFICIAL (fn) = 1;
3305   SET_OVERLOADED_OPERATOR_CODE (fn, operator_code);
3306   SET_DECL_LANGUAGE (fn, lang_c);
3307   /* Runtime library routines are, by definition, available in an
3308      external shared object.  */
3309   DECL_VISIBILITY (fn) = VISIBILITY_DEFAULT;
3310   DECL_VISIBILITY_SPECIFIED (fn) = 1;
3311   return fn;
3312 }
3313
3314 /* Returns the _DECL for a library function with C linkage.
3315    We assume that such functions never throw; if this is incorrect,
3316    callers should unset TREE_NOTHROW.  */
3317
3318 tree
3319 build_library_fn (tree name, tree type)
3320 {
3321   tree fn = build_library_fn_1 (name, ERROR_MARK, type);
3322   TREE_NOTHROW (fn) = 1;
3323   return fn;
3324 }
3325
3326 /* Returns the _DECL for a library function with C++ linkage.  */
3327
3328 static tree
3329 build_cp_library_fn (tree name, enum tree_code operator_code, tree type)
3330 {
3331   tree fn = build_library_fn_1 (name, operator_code, type);
3332   TREE_NOTHROW (fn) = TYPE_NOTHROW_P (type);
3333   DECL_CONTEXT (fn) = FROB_CONTEXT (current_namespace);
3334   SET_DECL_LANGUAGE (fn, lang_cplusplus);
3335   return fn;
3336 }
3337
3338 /* Like build_library_fn, but takes a C string instead of an
3339    IDENTIFIER_NODE.  */
3340
3341 tree
3342 build_library_fn_ptr (const char* name, tree type)
3343 {
3344   return build_library_fn (get_identifier (name), type);
3345 }
3346
3347 /* Like build_cp_library_fn, but takes a C string instead of an
3348    IDENTIFIER_NODE.  */
3349
3350 tree
3351 build_cp_library_fn_ptr (const char* name, tree type)
3352 {
3353   return build_cp_library_fn (get_identifier (name), ERROR_MARK, type);
3354 }
3355
3356 /* Like build_library_fn, but also pushes the function so that we will
3357    be able to find it via IDENTIFIER_GLOBAL_VALUE.  */
3358
3359 tree
3360 push_library_fn (tree name, tree type)
3361 {
3362   tree fn = build_library_fn (name, type);
3363   pushdecl_top_level (fn);
3364   return fn;
3365 }
3366
3367 /* Like build_cp_library_fn, but also pushes the function so that it
3368    will be found by normal lookup.  */
3369
3370 static tree
3371 push_cp_library_fn (enum tree_code operator_code, tree type)
3372 {
3373   tree fn = build_cp_library_fn (ansi_opname (operator_code),
3374                                  operator_code,
3375                                  type);
3376   pushdecl (fn);
3377   return fn;
3378 }
3379
3380 /* Like push_library_fn, but takes a TREE_LIST of parm types rather than
3381    a FUNCTION_TYPE.  */
3382
3383 tree
3384 push_void_library_fn (tree name, tree parmtypes)
3385 {
3386   tree type = build_function_type (void_type_node, parmtypes);
3387   return push_library_fn (name, type);
3388 }
3389
3390 /* Like push_library_fn, but also note that this function throws
3391    and does not return.  Used for __throw_foo and the like.  */
3392
3393 tree
3394 push_throw_library_fn (tree name, tree type)
3395 {
3396   tree fn = push_library_fn (name, type);
3397   TREE_THIS_VOLATILE (fn) = 1;
3398   TREE_NOTHROW (fn) = 0;
3399   return fn;
3400 }
3401 \f
3402 /* When we call finish_struct for an anonymous union, we create
3403    default copy constructors and such.  But, an anonymous union
3404    shouldn't have such things; this function undoes the damage to the
3405    anonymous union type T.
3406
3407    (The reason that we create the synthesized methods is that we don't
3408    distinguish `union { int i; }' from `typedef union { int i; } U'.
3409    The first is an anonymous union; the second is just an ordinary
3410    union type.)  */
3411
3412 void
3413 fixup_anonymous_aggr (tree t)
3414 {
3415   tree *q;
3416
3417   /* Wipe out memory of synthesized methods.  */
3418   TYPE_HAS_CONSTRUCTOR (t) = 0;
3419   TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
3420   TYPE_HAS_INIT_REF (t) = 0;
3421   TYPE_HAS_CONST_INIT_REF (t) = 0;
3422   TYPE_HAS_ASSIGN_REF (t) = 0;
3423   TYPE_HAS_CONST_ASSIGN_REF (t) = 0;
3424
3425   /* Splice the implicitly generated functions out of the TYPE_METHODS
3426      list.  */
3427   q = &TYPE_METHODS (t);
3428   while (*q)
3429     {
3430       if (DECL_ARTIFICIAL (*q))
3431         *q = TREE_CHAIN (*q);
3432       else
3433         q = &TREE_CHAIN (*q);
3434     }
3435
3436   /* ISO C++ 9.5.3.  Anonymous unions may not have function members.  */
3437   if (TYPE_METHODS (t))
3438     error ("%Jan anonymous union cannot have function members",
3439            TYPE_MAIN_DECL (t));
3440
3441   /* Anonymous aggregates cannot have fields with ctors, dtors or complex
3442      assignment operators (because they cannot have these methods themselves).
3443      For anonymous unions this is already checked because they are not allowed
3444      in any union, otherwise we have to check it.  */
3445   if (TREE_CODE (t) != UNION_TYPE)
3446     {
3447       tree field, type;
3448
3449       for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
3450         if (TREE_CODE (field) == FIELD_DECL)
3451           {
3452             type = TREE_TYPE (field);
3453             if (CLASS_TYPE_P (type))
3454               {
3455                 if (TYPE_NEEDS_CONSTRUCTING (type))
3456                   error ("member %q+#D with constructor not allowed "
3457                          "in anonymous aggregate", field);
3458                 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3459                   error ("member %q+#D with destructor not allowed "
3460                          "in anonymous aggregate", field);
3461                 if (TYPE_HAS_COMPLEX_ASSIGN_REF (type))
3462                   error ("member %q+#D with copy assignment operator "
3463                          "not allowed in anonymous aggregate", field);
3464               }
3465           }
3466     }
3467 }
3468
3469 /* Make sure that a declaration with no declarator is well-formed, i.e.
3470    just declares a tagged type or anonymous union.
3471
3472    Returns the type declared; or NULL_TREE if none.  */
3473
3474 tree
3475 check_tag_decl (cp_decl_specifier_seq *declspecs)
3476 {
3477   int saw_friend = declspecs->specs[(int)ds_friend] != 0;
3478   int saw_typedef = declspecs->specs[(int)ds_typedef] != 0;
3479   /* If a class, struct, or enum type is declared by the DECLSPECS
3480      (i.e, if a class-specifier, enum-specifier, or non-typename
3481      elaborated-type-specifier appears in the DECLSPECS),
3482      DECLARED_TYPE is set to the corresponding type.  */
3483   tree declared_type = NULL_TREE;
3484   bool error_p = false;
3485
3486   if (declspecs->multiple_types_p)
3487     error ("multiple types in one declaration");
3488   else if (declspecs->redefined_builtin_type)
3489     {
3490       if (!in_system_header)
3491         pedwarn ("redeclaration of C++ built-in type %qT",
3492                  declspecs->redefined_builtin_type);
3493       return NULL_TREE;
3494     }
3495
3496   if (declspecs->type
3497       && TYPE_P (declspecs->type)
3498       && ((TREE_CODE (declspecs->type) != TYPENAME_TYPE
3499            && IS_AGGR_TYPE (declspecs->type))
3500           || TREE_CODE (declspecs->type) == ENUMERAL_TYPE))
3501     declared_type = declspecs->type;
3502   else if (declspecs->type == error_mark_node)
3503     error_p = true;
3504   if (declared_type == NULL_TREE && ! saw_friend && !error_p)
3505     pedwarn ("declaration does not declare anything");
3506   /* Check for an anonymous union.  */
3507   else if (declared_type && IS_AGGR_TYPE_CODE (TREE_CODE (declared_type))
3508            && TYPE_ANONYMOUS_P (declared_type))
3509     {
3510       /* 7/3 In a simple-declaration, the optional init-declarator-list
3511          can be omitted only when declaring a class (clause 9) or
3512          enumeration (7.2), that is, when the decl-specifier-seq contains
3513          either a class-specifier, an elaborated-type-specifier with
3514          a class-key (9.1), or an enum-specifier.  In these cases and
3515          whenever a class-specifier or enum-specifier is present in the
3516          decl-specifier-seq, the identifiers in these specifiers are among
3517          the names being declared by the declaration (as class-name,
3518          enum-names, or enumerators, depending on the syntax).  In such
3519          cases, and except for the declaration of an unnamed bit-field (9.6),
3520          the decl-specifier-seq shall introduce one or more names into the
3521          program, or shall redeclare a name introduced by a previous
3522          declaration.  [Example:
3523              enum { };                  // ill-formed
3524              typedef class { };         // ill-formed
3525          --end example]  */
3526       if (saw_typedef)
3527         {
3528           error ("missing type-name in typedef-declaration");
3529           return NULL_TREE;
3530         }
3531       /* Anonymous unions are objects, so they can have specifiers.  */;
3532       SET_ANON_AGGR_TYPE_P (declared_type);
3533
3534       if (TREE_CODE (declared_type) != UNION_TYPE && pedantic
3535           && !in_system_header)
3536         pedwarn ("ISO C++ prohibits anonymous structs");
3537     }
3538
3539   else
3540     {
3541       if (declspecs->specs[(int)ds_inline]
3542           || declspecs->specs[(int)ds_virtual])
3543         error ("%qs can only be specified for functions",
3544                declspecs->specs[(int)ds_inline]
3545                ? "inline" : "virtual");
3546       else if (saw_friend
3547                && (!current_class_type
3548                    || current_scope () != current_class_type))
3549         error ("%<friend%> can only be specified inside a class");
3550       else if (declspecs->specs[(int)ds_explicit])
3551         error ("%<explicit%> can only be specified for constructors");
3552       else if (declspecs->storage_class)
3553         error ("a storage class can only be specified for objects "
3554                "and functions");
3555       else if (declspecs->specs[(int)ds_const]
3556                || declspecs->specs[(int)ds_volatile]
3557                || declspecs->specs[(int)ds_restrict]
3558                || declspecs->specs[(int)ds_thread])
3559         error ("qualifiers can only be specified for objects "
3560                "and functions");
3561     }
3562
3563   return declared_type;
3564 }
3565
3566 /* Called when a declaration is seen that contains no names to declare.
3567    If its type is a reference to a structure, union or enum inherited
3568    from a containing scope, shadow that tag name for the current scope
3569    with a forward reference.
3570    If its type defines a new named structure or union
3571    or defines an enum, it is valid but we need not do anything here.
3572    Otherwise, it is an error.
3573
3574    C++: may have to grok the declspecs to learn about static,
3575    complain for anonymous unions.
3576
3577    Returns the TYPE declared -- or NULL_TREE if none.  */
3578
3579 tree
3580 shadow_tag (cp_decl_specifier_seq *declspecs)
3581 {
3582   tree t = check_tag_decl (declspecs);
3583
3584   if (!t)
3585     return NULL_TREE;
3586
3587   if (declspecs->attributes)
3588     {
3589       warning (0, "attribute ignored in declaration of %q+#T", t);
3590       warning (0, "attribute for %q+#T must follow the %qs keyword",
3591                t, class_key_or_enum_as_string (t));
3592
3593     }
3594
3595   maybe_process_partial_specialization (t);
3596
3597   /* This is where the variables in an anonymous union are
3598      declared.  An anonymous union declaration looks like:
3599      union { ... } ;
3600      because there is no declarator after the union, the parser
3601      sends that declaration here.  */
3602   if (ANON_AGGR_TYPE_P (t))
3603     {
3604       fixup_anonymous_aggr (t);
3605
3606       if (TYPE_FIELDS (t))
3607         {
3608           tree decl = grokdeclarator (/*declarator=*/NULL,
3609                                       declspecs, NORMAL, 0, NULL);
3610           finish_anon_union (decl);
3611         }
3612     }
3613
3614   return t;
3615 }
3616 \f
3617 /* Decode a "typename", such as "int **", returning a ..._TYPE node.  */
3618
3619 tree
3620 groktypename (cp_decl_specifier_seq *type_specifiers,
3621               const cp_declarator *declarator)
3622 {
3623   tree attrs;
3624   tree type;
3625   attrs = type_specifiers->attributes;
3626   type_specifiers->attributes = NULL_TREE;
3627   type = grokdeclarator (declarator, type_specifiers, TYPENAME, 0, &attrs);
3628   if (attrs)
3629     cplus_decl_attributes (&type, attrs, 0);
3630   return type;
3631 }
3632
3633 /* Decode a declarator in an ordinary declaration or data definition.
3634    This is called as soon as the type information and variable name
3635    have been parsed, before parsing the initializer if any.
3636    Here we create the ..._DECL node, fill in its type,
3637    and put it on the list of decls for the current context.
3638    The ..._DECL node is returned as the value.
3639
3640    Exception: for arrays where the length is not specified,
3641    the type is left null, to be filled in by `cp_finish_decl'.
3642
3643    Function definitions do not come here; they go to start_function
3644    instead.  However, external and forward declarations of functions
3645    do go through here.  Structure field declarations are done by
3646    grokfield and not through here.  */
3647
3648 tree
3649 start_decl (const cp_declarator *declarator,
3650             cp_decl_specifier_seq *declspecs,
3651             int initialized,
3652             tree attributes,
3653             tree prefix_attributes,
3654             tree *pushed_scope_p)
3655 {
3656   tree decl;
3657   tree type, tem;
3658   tree context;
3659
3660   *pushed_scope_p = NULL_TREE;
3661
3662   /* This should only be done once on the top most decl.  */
3663   if (have_extern_spec)
3664     {
3665       declspecs->storage_class = sc_extern;
3666       have_extern_spec = false;
3667     }
3668
3669   /* An object declared as __attribute__((deprecated)) suppresses
3670      warnings of uses of other deprecated items.  */
3671   if (lookup_attribute ("deprecated", attributes))
3672     deprecated_state = DEPRECATED_SUPPRESS;
3673
3674   attributes = chainon (attributes, prefix_attributes);
3675
3676   decl = grokdeclarator (declarator, declspecs, NORMAL, initialized,
3677                          &attributes);
3678
3679   deprecated_state = DEPRECATED_NORMAL;
3680
3681   if (decl == NULL_TREE || TREE_CODE (decl) == VOID_TYPE
3682       || decl == error_mark_node)
3683     return error_mark_node;
3684
3685   type = TREE_TYPE (decl);
3686
3687   context = DECL_CONTEXT (decl);
3688
3689   if (context)
3690     {
3691       *pushed_scope_p = push_scope (context);
3692
3693       /* We are only interested in class contexts, later.  */
3694       if (TREE_CODE (context) == NAMESPACE_DECL)
3695         context = NULL_TREE;
3696     }
3697
3698   if (initialized)
3699     /* Is it valid for this decl to have an initializer at all?
3700        If not, set INITIALIZED to zero, which will indirectly
3701        tell `cp_finish_decl' to ignore the initializer once it is parsed.  */
3702     switch (TREE_CODE (decl))
3703       {
3704       case TYPE_DECL:
3705         error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3706         initialized = 0;
3707         break;
3708
3709       case FUNCTION_DECL:
3710         error ("function %q#D is initialized like a variable", decl);
3711         initialized = 0;
3712         break;
3713
3714       default:
3715         break;
3716       }
3717
3718   if (initialized)
3719     {
3720       if (! toplevel_bindings_p ()
3721           && DECL_EXTERNAL (decl))
3722         warning (0, "declaration of %q#D has %<extern%> and is initialized",
3723                  decl);
3724       DECL_EXTERNAL (decl) = 0;
3725       if (toplevel_bindings_p ())
3726         TREE_STATIC (decl) = 1;
3727
3728       /* Tell `pushdecl' this is an initialized decl
3729          even though we don't yet have the initializer expression.
3730          Also tell `cp_finish_decl' it may store the real initializer.  */
3731       DECL_INITIAL (decl) = error_mark_node;
3732     }
3733
3734   /* Set attributes here so if duplicate decl, will have proper attributes.  */
3735   cplus_decl_attributes (&decl, attributes, 0);
3736
3737   /* If #pragma weak was used, mark the decl weak now.  */
3738   maybe_apply_pragma_weak (decl);
3739
3740   if (TREE_CODE (decl) == FUNCTION_DECL
3741       && DECL_DECLARED_INLINE_P (decl)
3742       && DECL_UNINLINABLE (decl)
3743       && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3744     warning (0, "inline function %q+D given attribute noinline", decl);
3745
3746   if (context && COMPLETE_TYPE_P (complete_type (context)))
3747     {
3748       if (TREE_CODE (decl) == VAR_DECL)
3749         {
3750           tree field = lookup_field (context, DECL_NAME (decl), 0, false);
3751           if (field == NULL_TREE || TREE_CODE (field) != VAR_DECL)
3752             error ("%q#D is not a static member of %q#T", decl, context);
3753           else
3754             {
3755               if (DECL_CONTEXT (field) != context)
3756                 {
3757                   if (!same_type_p (DECL_CONTEXT (field), context))
3758                     pedwarn ("ISO C++ does not permit %<%T::%D%> "
3759                              "to be defined as %<%T::%D%>",
3760                              DECL_CONTEXT (field), DECL_NAME (decl),
3761                              context, DECL_NAME (decl));
3762                   DECL_CONTEXT (decl) = DECL_CONTEXT (field);
3763                 }
3764               if (processing_specialization
3765                   && template_class_depth (context) == 0
3766                   && CLASSTYPE_TEMPLATE_SPECIALIZATION (context))
3767                 error ("template header not allowed in member definition "
3768                        "of explicitly specialized class");
3769               /* Static data member are tricky; an in-class initialization
3770                  still doesn't provide a definition, so the in-class
3771                  declaration will have DECL_EXTERNAL set, but will have an
3772                  initialization.  Thus, duplicate_decls won't warn
3773                  about this situation, and so we check here.  */
3774               if (DECL_INITIAL (decl) 
3775                   && DECL_INITIALIZED_IN_CLASS_P (field))
3776                 error ("duplicate initialization of %qD", decl);
3777               if (duplicate_decls (decl, field, /*newdecl_is_friend=*/false))
3778                 decl = field;
3779             }
3780         }
3781       else
3782         {
3783           tree field = check_classfn (context, decl,
3784                                       (processing_template_decl
3785                                        > template_class_depth (context))
3786                                       ? current_template_parms
3787                                       : NULL_TREE);
3788           if (field && duplicate_decls (decl, field,
3789                                         /*newdecl_is_friend=*/false))
3790             decl = field;
3791         }
3792
3793       /* cp_finish_decl sets DECL_EXTERNAL if DECL_IN_AGGR_P is set.  */
3794       DECL_IN_AGGR_P (decl) = 0;
3795       /* Do not mark DECL as an explicit specialization if it was not
3796          already marked as an instantiation; a declaration should
3797          never be marked as a specialization unless we know what
3798          template is being specialized.  */
3799       if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
3800         {
3801           SET_DECL_TEMPLATE_SPECIALIZATION (decl);
3802
3803           /* [temp.expl.spec] An explicit specialization of a static data
3804              member of a template is a definition if the declaration
3805              includes an initializer; otherwise, it is a declaration.
3806
3807              We check for processing_specialization so this only applies
3808              to the new specialization syntax.  */
3809           if (!DECL_INITIAL (decl)
3810               && processing_specialization)
3811             DECL_EXTERNAL (decl) = 1;
3812         }
3813
3814       if (DECL_EXTERNAL (decl) && ! DECL_TEMPLATE_SPECIALIZATION (decl))
3815         pedwarn ("declaration of %q#D outside of class is not definition",
3816                  decl);
3817     }
3818
3819   /* Enter this declaration into the symbol table.  */
3820   tem = maybe_push_decl (decl);
3821
3822   if (processing_template_decl)
3823     tem = push_template_decl (tem);
3824   if (tem == error_mark_node)
3825     return error_mark_node;
3826
3827 #if ! defined (ASM_OUTPUT_BSS) && ! defined (ASM_OUTPUT_ALIGNED_BSS)
3828   /* Tell the back-end to use or not use .common as appropriate.  If we say
3829      -fconserve-space, we want this to save .data space, at the expense of
3830      wrong semantics.  If we say -fno-conserve-space, we want this to
3831      produce errors about redefs; to do this we force variables into the
3832      data segment.  */
3833   DECL_COMMON (tem) = ((TREE_CODE (tem) != VAR_DECL
3834                         || !DECL_THREAD_LOCAL_P (tem))
3835                        && (flag_conserve_space || ! TREE_PUBLIC (tem)));
3836 #endif
3837
3838   if (! processing_template_decl)
3839     start_decl_1 (tem);
3840
3841   return tem;
3842 }
3843
3844 void
3845 start_decl_1 (tree decl)
3846 {
3847   tree type = TREE_TYPE (decl);
3848   int initialized = (DECL_INITIAL (decl) != NULL_TREE);
3849
3850   if (type == error_mark_node)
3851     return;
3852
3853   if (initialized)
3854     /* Is it valid for this decl to have an initializer at all?
3855        If not, set INITIALIZED to zero, which will indirectly
3856        tell `cp_finish_decl' to ignore the initializer once it is parsed.  */
3857     {
3858       /* Don't allow initializations for incomplete types except for
3859          arrays which might be completed by the initialization.  */
3860       if (COMPLETE_TYPE_P (complete_type (type)))
3861         ;                       /* A complete type is ok.  */
3862       else if (TREE_CODE (type) != ARRAY_TYPE)
3863         {
3864           error ("variable %q#D has initializer but incomplete type", decl);
3865           initialized = 0;
3866           type = TREE_TYPE (decl) = error_mark_node;
3867         }
3868       else if (!COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
3869         {
3870           if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
3871             error ("elements of array %q#D have incomplete type", decl);
3872           /* else we already gave an error in start_decl.  */
3873           initialized = 0;
3874         }
3875     }
3876
3877   if (!initialized
3878       && TREE_CODE (decl) != TYPE_DECL
3879       && TREE_CODE (decl) != TEMPLATE_DECL
3880       && type != error_mark_node
3881       && IS_AGGR_TYPE (type)
3882       && ! DECL_EXTERNAL (decl))
3883     {
3884       if ((! processing_template_decl || ! uses_template_parms (type))
3885           && !COMPLETE_TYPE_P (complete_type (type)))
3886         {
3887           error ("aggregate %q#D has incomplete type and cannot be defined",
3888                  decl);
3889           /* Change the type so that assemble_variable will give
3890              DECL an rtl we can live with: (mem (const_int 0)).  */
3891           type = TREE_TYPE (decl) = error_mark_node;
3892         }
3893       else
3894         {
3895           /* If any base type in the hierarchy of TYPE needs a constructor,
3896              then we set initialized to 1.  This way any nodes which are
3897              created for the purposes of initializing this aggregate
3898              will live as long as it does.  This is necessary for global
3899              aggregates which do not have their initializers processed until
3900              the end of the file.  */
3901           initialized = TYPE_NEEDS_CONSTRUCTING (type);
3902         }
3903     }
3904
3905   if (! initialized)
3906     DECL_INITIAL (decl) = NULL_TREE;
3907
3908   /* Create a new scope to hold this declaration if necessary.
3909      Whether or not a new scope is necessary cannot be determined
3910      until after the type has been completed; if the type is a
3911      specialization of a class template it is not until after
3912      instantiation has occurred that TYPE_HAS_NONTRIVIAL_DESTRUCTOR
3913      will be set correctly.  */
3914   maybe_push_cleanup_level (type);
3915 }
3916
3917 /* Handle initialization of references.  DECL, TYPE, and INIT have the
3918    same meaning as in cp_finish_decl.  *CLEANUP must be NULL on entry,
3919    but will be set to a new CLEANUP_STMT if a temporary is created
3920    that must be destroyed subsequently.
3921
3922    Returns an initializer expression to use to initialize DECL, or
3923    NULL if the initialization can be performed statically.
3924
3925    Quotes on semantics can be found in ARM 8.4.3.  */
3926
3927 static tree
3928 grok_reference_init (tree decl, tree type, tree init, tree *cleanup)
3929 {
3930   tree tmp;
3931
3932   if (init == NULL_TREE)
3933     {
3934       if ((DECL_LANG_SPECIFIC (decl) == 0
3935            || DECL_IN_AGGR_P (decl) == 0)
3936           && ! DECL_THIS_EXTERN (decl))
3937         error ("%qD declared as reference but not initialized", decl);
3938       return NULL_TREE;
3939     }
3940
3941   if (TREE_CODE (init) == CONSTRUCTOR)
3942     {
3943       error ("ISO C++ forbids use of initializer list to "
3944              "initialize reference %qD", decl);
3945       return NULL_TREE;
3946     }
3947
3948   if (TREE_CODE (init) == TREE_LIST)
3949     init = build_x_compound_expr_from_list (init, "initializer");
3950
3951   if (TREE_CODE (TREE_TYPE (type)) != ARRAY_TYPE
3952       && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
3953     /* Note: default conversion is only called in very special cases.  */
3954     init = decay_conversion (init);
3955
3956   /* Convert INIT to the reference type TYPE.  This may involve the
3957      creation of a temporary, whose lifetime must be the same as that
3958      of the reference.  If so, a DECL_EXPR for the temporary will be
3959      added just after the DECL_EXPR for DECL.  That's why we don't set
3960      DECL_INITIAL for local references (instead assigning to them
3961      explicitly); we need to allow the temporary to be initialized
3962      first.  */
3963   tmp = initialize_reference (type, init, decl, cleanup);
3964
3965   if (tmp == error_mark_node)
3966     return NULL_TREE;
3967   else if (tmp == NULL_TREE)
3968     {
3969       error ("cannot initialize %qT from %qT", type, TREE_TYPE (init));
3970       return NULL_TREE;
3971     }
3972
3973   if (TREE_STATIC (decl) && !TREE_CONSTANT (tmp))
3974     return tmp;
3975
3976   DECL_INITIAL (decl) = tmp;
3977
3978   return NULL_TREE;
3979 }
3980
3981 /* When parsing `int a[] = {1, 2};' we don't know the size of the
3982    array until we finish parsing the initializer.  If that's the
3983    situation we're in, update DECL accordingly.  */
3984
3985 static void
3986 maybe_deduce_size_from_array_init (tree decl, tree init)
3987 {
3988   tree type = TREE_TYPE (decl);
3989
3990   if (TREE_CODE (type) == ARRAY_TYPE
3991       && TYPE_DOMAIN (type) == NULL_TREE
3992       && TREE_CODE (decl) != TYPE_DECL)
3993     {
3994       /* do_default is really a C-ism to deal with tentative definitions.
3995          But let's leave it here to ease the eventual merge.  */
3996       int do_default = !DECL_EXTERNAL (decl);
3997       tree initializer = init ? init : DECL_INITIAL (decl);
3998       int failure = cp_complete_array_type (&TREE_TYPE (decl), initializer,
3999                                             do_default);
4000
4001       if (failure == 1)
4002         error ("initializer fails to determine size of %qD", decl);
4003
4004       if (failure == 2)
4005         {
4006           if (do_default)
4007             error ("array size missing in %qD", decl);
4008           /* If a `static' var's size isn't known, make it extern as
4009              well as static, so it does not get allocated.  If it's not
4010              `static', then don't mark it extern; finish_incomplete_decl
4011              will give it a default size and it will get allocated.  */
4012           else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
4013             DECL_EXTERNAL (decl) = 1;
4014         }
4015
4016       if (failure == 3)
4017         error ("zero-size array %qD", decl);
4018
4019       cp_apply_type_quals_to_decl (cp_type_quals (TREE_TYPE (decl)), decl);
4020
4021       layout_decl (decl, 0);
4022     }
4023 }
4024
4025 /* Set DECL_SIZE, DECL_ALIGN, etc. for DECL (a VAR_DECL), and issue
4026    any appropriate error messages regarding the layout.  */
4027
4028 static void
4029 layout_var_decl (tree decl)
4030 {
4031   tree type = TREE_TYPE (decl);
4032
4033   /* If we haven't already layed out this declaration, do so now.
4034      Note that we must not call complete type for an external object
4035      because it's type might involve templates that we are not
4036      supposed to instantiate yet.  (And it's perfectly valid to say
4037      `extern X x' for some incomplete type `X'.)  */
4038   if (!DECL_EXTERNAL (decl))
4039     complete_type (type);
4040   if (!DECL_SIZE (decl)
4041       && TREE_TYPE (decl) != error_mark_node
4042       && (COMPLETE_TYPE_P (type)
4043           || (TREE_CODE (type) == ARRAY_TYPE
4044               && !TYPE_DOMAIN (type)
4045               && COMPLETE_TYPE_P (TREE_TYPE (type)))))
4046     layout_decl (decl, 0);
4047
4048   if (!DECL_EXTERNAL (decl) && DECL_SIZE (decl) == NULL_TREE)
4049     {
4050       /* An automatic variable with an incomplete type: that is an error.
4051          Don't talk about array types here, since we took care of that
4052          message in grokdeclarator.  */
4053       error ("storage size of %qD isn't known", decl);
4054       TREE_TYPE (decl) = error_mark_node;
4055     }
4056 #if 0
4057   /* Keep this code around in case we later want to control debug info
4058      based on whether a type is "used".  (jason 1999-11-11) */
4059
4060   else if (!DECL_EXTERNAL (decl) && IS_AGGR_TYPE (ttype))
4061     /* Let debugger know it should output info for this type.  */
4062     note_debug_info_needed (ttype);
4063
4064   if (TREE_STATIC (decl) && DECL_CLASS_SCOPE_P (decl))
4065     note_debug_info_needed (DECL_CONTEXT (decl));
4066 #endif
4067
4068   if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
4069       && DECL_SIZE (decl) != NULL_TREE
4070       && ! TREE_CONSTANT (DECL_SIZE (decl)))
4071     {
4072       if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
4073         constant_expression_warning (DECL_SIZE (decl));
4074       else
4075         error ("storage size of %qD isn't constant", decl);
4076     }
4077
4078   if (TREE_STATIC (decl)
4079       && !DECL_ARTIFICIAL (decl)
4080       && current_function_decl
4081       && DECL_CONTEXT (decl) == current_function_decl)
4082     push_local_name (decl);
4083 }
4084
4085 /* If a local static variable is declared in an inline function, or if
4086    we have a weak definition, we must endeavor to create only one
4087    instance of the variable at link-time.  */
4088
4089 static void
4090 maybe_commonize_var (tree decl)
4091 {
4092   /* Static data in a function with comdat linkage also has comdat
4093      linkage.  */
4094   if (TREE_STATIC (decl)
4095       /* Don't mess with __FUNCTION__.  */
4096       && ! DECL_ARTIFICIAL (decl)
4097       && DECL_FUNCTION_SCOPE_P (decl)
4098       /* Unfortunately, import_export_decl has not always been called
4099          before the function is processed, so we cannot simply check
4100          DECL_COMDAT.  */
4101       && (DECL_COMDAT (DECL_CONTEXT (decl))
4102           || ((DECL_DECLARED_INLINE_P (DECL_CONTEXT (decl))
4103                || DECL_TEMPLATE_INSTANTIATION (DECL_CONTEXT (decl)))
4104               && TREE_PUBLIC (DECL_CONTEXT (decl)))))
4105     {
4106       if (flag_weak)
4107         {
4108           /* With weak symbols, we simply make the variable COMDAT;
4109              that will cause copies in multiple translations units to
4110              be merged.  */
4111           comdat_linkage (decl);
4112         }
4113       else
4114         {
4115           if (DECL_INITIAL (decl) == NULL_TREE
4116               || DECL_INITIAL (decl) == error_mark_node)
4117             {
4118               /* Without weak symbols, we can use COMMON to merge
4119                  uninitialized variables.  */
4120               TREE_PUBLIC (decl) = 1;
4121               DECL_COMMON (decl) = 1;
4122             }
4123           else
4124             {
4125               /* While for initialized variables, we must use internal
4126                  linkage -- which means that multiple copies will not
4127                  be merged.  */
4128               TREE_PUBLIC (decl) = 0;
4129               DECL_COMMON (decl) = 0;
4130               warning (0, "sorry: semantics of inline function static "
4131                        "data %q+#D are wrong (you'll wind up "
4132                        "with multiple copies)", decl);
4133               warning (0, "%J  you can work around this by removing "
4134                        "the initializer",
4135                        decl);
4136             }
4137         }
4138     }
4139   else if (DECL_LANG_SPECIFIC (decl) && DECL_COMDAT (decl))
4140     /* Set it up again; we might have set DECL_INITIAL since the last
4141        time.  */
4142     comdat_linkage (decl);
4143 }
4144
4145 /* Issue an error message if DECL is an uninitialized const variable.  */
4146
4147 static void
4148 check_for_uninitialized_const_var (tree decl)
4149 {
4150   tree type = TREE_TYPE (decl);
4151
4152   /* ``Unless explicitly declared extern, a const object does not have
4153      external linkage and must be initialized. ($8.4; $12.1)'' ARM
4154      7.1.6 */
4155   if (TREE_CODE (decl) == VAR_DECL
4156       && TREE_CODE (type) != REFERENCE_TYPE
4157       && CP_TYPE_CONST_P (type)
4158       && !TYPE_NEEDS_CONSTRUCTING (type)
4159       && !DECL_INITIAL (decl))
4160     error ("uninitialized const %qD", decl);
4161 }
4162
4163 \f
4164 /* Structure holding the current initializer being processed by reshape_init.
4165    CUR is a pointer to the current element being processed, END is a pointer
4166    after the last element present in the initializer.  */
4167 typedef struct reshape_iterator_t
4168 {
4169   constructor_elt *cur;
4170   constructor_elt *end;
4171 } reshape_iter;
4172
4173 static tree reshape_init_r (tree, reshape_iter *, bool);
4174
4175 /* FIELD is a FIELD_DECL or NULL.  In the former case, the value
4176    returned is the next FIELD_DECL (possibly FIELD itself) that can be
4177    initialized.  If there are no more such fields, the return value
4178    will be NULL.  */
4179
4180 static tree
4181 next_initializable_field (tree field)
4182 {
4183   while (field
4184          && (TREE_CODE (field) != FIELD_DECL
4185              || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
4186              || DECL_ARTIFICIAL (field)))
4187     field = TREE_CHAIN (field);
4188
4189   return field;
4190 }
4191
4192 /* Subroutine of reshape_init_array and reshape_init_vector, which does
4193    the actual work. ELT_TYPE is the element type of the array. MAX_INDEX is an
4194    INTEGER_CST representing the size of the array minus one (the maximum index),
4195    or NULL_TREE if the array was declared without specifying the size. D is
4196    the iterator within the constructor.  */
4197
4198 static tree
4199 reshape_init_array_1 (tree elt_type, tree max_index, reshape_iter *d)
4200 {
4201   tree new_init;
4202   bool sized_array_p = (max_index != NULL_TREE);
4203   unsigned HOST_WIDE_INT max_index_cst = 0;
4204   unsigned HOST_WIDE_INT index;
4205
4206   /* The initializer for an array is always a CONSTRUCTOR.  */
4207   new_init = build_constructor (NULL_TREE, NULL);
4208
4209   if (sized_array_p)
4210     {
4211       /* Minus 1 is used for zero sized arrays.  */
4212       if (integer_all_onesp (max_index))
4213         return new_init;
4214
4215       if (host_integerp (max_index, 1))
4216         max_index_cst = tree_low_cst (max_index, 1);
4217       /* sizetype is sign extended, not zero extended.  */
4218       else
4219         max_index_cst = tree_low_cst (fold_convert (size_type_node, max_index),
4220                                       1);
4221     }
4222
4223   /* Loop until there are no more initializers.  */
4224   for (index = 0;
4225        d->cur != d->end && (!sized_array_p || index <= max_index_cst);
4226        ++index)
4227     {
4228       tree elt_init;
4229
4230       if (d->cur->index)
4231         {
4232           /* Handle array designated initializers (GNU extension).  */
4233           if (TREE_CODE (d->cur->index) == IDENTIFIER_NODE)
4234             {
4235               error ("name %qD used in a GNU-style designated "
4236                      "initializer for an array", d->cur->index);
4237             }
4238           else
4239             gcc_unreachable ();
4240         }
4241
4242       elt_init = reshape_init_r (elt_type, d, /*first_initializer_p=*/false);
4243       CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), NULL_TREE, elt_init);
4244     }
4245
4246   return new_init;
4247 }
4248
4249 /* Subroutine of reshape_init_r, processes the initializers for arrays.
4250    Parameters are the same of reshape_init_r.  */
4251
4252 static tree
4253 reshape_init_array (tree type, reshape_iter *d)
4254 {
4255   tree max_index = NULL_TREE;
4256
4257   gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
4258
4259   if (TYPE_DOMAIN (type))
4260     max_index = array_type_nelts (type);
4261
4262   return reshape_init_array_1 (TREE_TYPE (type), max_index, d);
4263 }
4264
4265 /* Subroutine of reshape_init_r, processes the initializers for vectors.
4266    Parameters are the same of reshape_init_r.  */
4267
4268 static tree
4269 reshape_init_vector (tree type, reshape_iter *d)
4270 {
4271   tree max_index = NULL_TREE;
4272   tree rtype;
4273
4274   gcc_assert (TREE_CODE (type) == VECTOR_TYPE);
4275
4276   if (COMPOUND_LITERAL_P (d->cur->value))
4277     {
4278       tree value = d->cur->value;
4279       if (!same_type_p (TREE_TYPE (value), type))
4280         {
4281           error ("invalid type %qT as initializer for a vector of type %qT",
4282                 TREE_TYPE (d->cur->value), type);
4283           value = error_mark_node;
4284         }
4285       ++d->cur;
4286       return value;
4287     }
4288
4289   /* For a vector, the representation type is a struct
4290       containing a single member which is an array of the
4291       appropriate size.  */
4292   rtype = TYPE_DEBUG_REPRESENTATION_TYPE (type);
4293   if (rtype && TYPE_DOMAIN (TREE_TYPE (TYPE_FIELDS (rtype))))
4294     max_index = array_type_nelts (TREE_TYPE (TYPE_FIELDS (rtype)));
4295
4296   return reshape_init_array_1 (TREE_TYPE (type), max_index, d);
4297 }
4298
4299 /* Subroutine of reshape_init_r, processes the initializers for classes
4300    or union. Parameters are the same of reshape_init_r.  */
4301
4302 static tree
4303 reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p)
4304 {
4305   tree field;
4306   tree new_init;
4307
4308   gcc_assert (CLASS_TYPE_P (type));
4309
4310   /* The initializer for a class is always a CONSTRUCTOR.  */
4311   new_init = build_constructor (NULL_TREE, NULL);
4312   field = next_initializable_field (TYPE_FIELDS (type));
4313
4314   if (!field)
4315     {
4316       /* [dcl.init.aggr]
4317
4318         An initializer for an aggregate member that is an
4319         empty class shall have the form of an empty
4320         initializer-list {}.  */
4321       if (!first_initializer_p)
4322         {
4323           error ("initializer for %qT must be brace-enclosed", type);
4324           return error_mark_node;
4325         }
4326       return new_init;
4327     }
4328
4329   /* Loop through the initializable fields, gathering initializers.  */
4330   while (d->cur != d->end)
4331     {
4332       tree field_init;
4333
4334       /* Handle designated initializers, as an extension.  */
4335       if (d->cur->index)
4336         {
4337           if (pedantic)
4338             pedwarn ("ISO C++ does not allow designated initializers");
4339         
4340           field = lookup_field_1 (type, d->cur->index, /*want_type=*/false);
4341
4342           if (!field || TREE_CODE (field) != FIELD_DECL)
4343             error ("%qT has no non-static data member named %qD", type,
4344                   d->cur->index);
4345         }
4346
4347       /* If we processed all the member of the class, we are done.  */
4348       if (!field)
4349         break;
4350
4351       field_init = reshape_init_r (TREE_TYPE (field), d,
4352                                    /*first_initializer_p=*/false);
4353       CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
4354
4355       /* [dcl.init.aggr]
4356
4357         When a union  is  initialized with a brace-enclosed
4358         initializer, the braces shall only contain an
4359         initializer for the first member of the union.  */
4360       if (TREE_CODE (type) == UNION_TYPE)
4361         break;
4362
4363       field = next_initializable_field (TREE_CHAIN (field));
4364     }
4365
4366   return new_init;
4367 }
4368
4369 /* Subroutine of reshape_init, which processes a single initializer (part of
4370    a CONSTRUCTOR). TYPE is the type of the variable being initialized, D is the
4371    iterator within the CONSTRUCTOR which points to the initializer to process.
4372    FIRST_INITIALIZER_P is true if this is the first initializer of the
4373    CONSTRUCTOR node.  */
4374
4375 static tree
4376 reshape_init_r (tree type, reshape_iter *d, bool first_initializer_p)
4377 {
4378   tree init = d->cur->value;
4379
4380   /* A non-aggregate type is always initialized with a single
4381      initializer.  */
4382   if (!CP_AGGREGATE_TYPE_P (type))
4383     {
4384       /* It is invalid to initialize a non-aggregate type with a
4385          brace-enclosed initializer.
4386          We need to check for BRACE_ENCLOSED_INITIALIZER_P here because
4387          of g++.old-deja/g++.mike/p7626.C: a pointer-to-member constant is
4388          a CONSTRUCTOR (with a record type).  */
4389       if (TREE_CODE (init) == CONSTRUCTOR
4390           && BRACE_ENCLOSED_INITIALIZER_P (init))  /* p7626.C */
4391         {
4392           error ("braces around scalar initializer for type %qT", type);
4393           init = error_mark_node;
4394         }
4395         
4396       d->cur++;
4397       return init;
4398     }
4399
4400   /* [dcl.init.aggr]
4401
4402      All implicit type conversions (clause _conv_) are considered when
4403      initializing the aggregate member with an initializer from an
4404      initializer-list.  If the initializer can initialize a member,
4405      the member is initialized.  Otherwise, if the member is itself a
4406      non-empty subaggregate, brace elision is assumed and the
4407      initializer is considered for the initialization of the first
4408      member of the subaggregate.  */
4409   if (TREE_CODE (init) != CONSTRUCTOR
4410       && can_convert_arg (type, TREE_TYPE (init), init, LOOKUP_NORMAL))
4411     {
4412       d->cur++;
4413       return init;
4414     }
4415
4416   /* [dcl.init.string]
4417
4418       A char array (whether plain char, signed char, or unsigned char)
4419       can be initialized by a string-literal (optionally enclosed in
4420       braces); a wchar_t array can be initialized by a wide
4421       string-literal (optionally enclosed in braces).  */
4422   if (TREE_CODE (type) == ARRAY_TYPE
4423       && char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (type))))
4424     {
4425       tree str_init = init;
4426
4427       /* Strip one level of braces if and only if they enclose a single
4428          element (as allowed by [dcl.init.string]).  */
4429       if (!first_initializer_p
4430           && TREE_CODE (str_init) == CONSTRUCTOR
4431           && VEC_length (constructor_elt, CONSTRUCTOR_ELTS (str_init)) == 1)
4432         {
4433           str_init = VEC_index (constructor_elt,
4434                                 CONSTRUCTOR_ELTS (str_init), 0)->value;
4435         }
4436   
4437       /* If it's a string literal, then it's the initializer for the array
4438          as a whole. Otherwise, continue with normal initialization for
4439          array types (one value per array element).  */
4440       if (TREE_CODE (str_init) == STRING_CST)
4441         {
4442           d->cur++;
4443           return str_init;
4444         }
4445     }
4446
4447   /* The following cases are about aggregates. If we are not within a full
4448      initializer already, and there is not a CONSTRUCTOR, it means that there
4449      is a missing set of braces (that is, we are processing the case for
4450      which reshape_init exists).  */
4451   if (!first_initializer_p)
4452     {
4453       if (TREE_CODE (init) == CONSTRUCTOR)
4454         {
4455           /* For a nested compound literal, there is no need to reshape since
4456              brace elision is not allowed. Even if we decided to allow it,
4457              we should add a call to reshape_init in finish_compound_literal,
4458              before calling digest_init, so changing this code would still
4459              not be necessary.  */
4460           if (!COMPOUND_LITERAL_P (init))
4461             {
4462               ++d->cur;
4463               gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
4464               return reshape_init (type, init);
4465             }
4466           else
4467             gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (init));
4468         }
4469
4470       warning (OPT_Wmissing_braces, "missing braces around initializer for %qT",
4471                type);
4472     }
4473
4474   /* Dispatch to specialized routines.  */
4475   if (CLASS_TYPE_P (type))
4476     return reshape_init_class (type, d, first_initializer_p);
4477   else if (TREE_CODE (type) == ARRAY_TYPE)
4478     return reshape_init_array (type, d);
4479   else if (TREE_CODE (type) == VECTOR_TYPE)
4480     return reshape_init_vector (type, d);
4481   else
4482     gcc_unreachable();
4483 }
4484
4485 /* Undo the brace-elision allowed by [dcl.init.aggr] in a
4486    brace-enclosed aggregate initializer.
4487
4488    INIT is the CONSTRUCTOR containing the list of initializers describing
4489    a brace-enclosed initializer for an entity of the indicated aggregate TYPE.
4490    It may not presently match the shape of the TYPE; for example:
4491
4492      struct S { int a; int b; };
4493      struct S a[] = { 1, 2, 3, 4 };
4494
4495    Here INIT will hold a VEC of four elements, rather than a
4496    VEC of two elements, each itself a VEC of two elements.  This
4497    routine transforms INIT from the former form into the latter.  The
4498    revised CONSTRUCTOR node is returned.  */
4499
4500 tree
4501 reshape_init (tree type, tree init)
4502 {
4503   VEC(constructor_elt, gc) *v;
4504   reshape_iter d;
4505   tree new_init;
4506
4507   gcc_assert (BRACE_ENCLOSED_INITIALIZER_P (init));
4508
4509   v = CONSTRUCTOR_ELTS (init);
4510
4511   /* An empty constructor does not need reshaping, and it is always a valid
4512      initializer.  */
4513   if (VEC_empty (constructor_elt, v))
4514     return init;
4515
4516   /* Recurse on this CONSTRUCTOR.  */
4517   d.cur = VEC_index (constructor_elt, v, 0);
4518   d.end = d.cur + VEC_length (constructor_elt, v);
4519
4520   new_init = reshape_init_r (type, &d, true);
4521
4522   /* Make sure all the element of the constructor were used. Otherwise,
4523      issue an error about exceeding initializers.  */
4524   if (d.cur != d.end)
4525     error ("too many initializers for %qT", type);
4526
4527   return new_init;
4528 }
4529
4530 /* Verify INIT (the initializer for DECL), and record the
4531    initialization in DECL_INITIAL, if appropriate.  CLEANUP is as for
4532    grok_reference_init.
4533
4534    If the return value is non-NULL, it is an expression that must be
4535    evaluated dynamically to initialize DECL.  */
4536
4537 static tree
4538 check_initializer (tree decl, tree init, int flags, tree *cleanup)
4539 {
4540   tree type = TREE_TYPE (decl);
4541   tree init_code = NULL;
4542
4543   /* If `start_decl' didn't like having an initialization, ignore it now.  */
4544   if (init != NULL_TREE && DECL_INITIAL (decl) == NULL_TREE)
4545     init = NULL_TREE;
4546
4547   /* If an initializer is present, DECL_INITIAL has been
4548      error_mark_node, to indicate that an as-of-yet unevaluated
4549      initialization will occur.  From now on, DECL_INITIAL reflects
4550      the static initialization -- if any -- of DECL.  */
4551   DECL_INITIAL (decl) = NULL_TREE;
4552
4553   /* Things that are going to be initialized need to have complete
4554      type.  */
4555   TREE_TYPE (decl) = type = complete_type (TREE_TYPE (decl));
4556
4557   if (type == error_mark_node)
4558     /* We will have already complained.  */
4559     init = NULL_TREE;
4560   else if (init && COMPLETE_TYPE_P (type)
4561            && !TREE_CONSTANT (TYPE_SIZE (type)))
4562     {
4563       error ("variable-sized object %qD may not be initialized", decl);
4564       init = NULL_TREE;
4565     }
4566   else if (TREE_CODE (type) == ARRAY_TYPE
4567            && !COMPLETE_TYPE_P (complete_type (TREE_TYPE (type))))
4568     {
4569       error ("elements of array %q#D have incomplete type", decl);
4570       init = NULL_TREE;
4571     }
4572   else if (TREE_CODE (type) != ARRAY_TYPE && !COMPLETE_TYPE_P (type))
4573     {
4574       error ("%qD has incomplete type", decl);
4575       TREE_TYPE (decl) = error_mark_node;
4576       init = NULL_TREE;
4577     }
4578
4579   if (TREE_CODE (decl) == CONST_DECL)
4580     {
4581       gcc_assert (TREE_CODE (decl) != REFERENCE_TYPE);
4582
4583       DECL_INITIAL (decl) = init;
4584
4585       gcc_assert (init != NULL_TREE);
4586       init = NULL_TREE;
4587     }
4588   else if (!DECL_EXTERNAL (decl) && TREE_CODE (type) == REFERENCE_TYPE)
4589     init = grok_reference_init (decl, type, init, cleanup);
4590   else if (init)
4591     {
4592       /* Do not reshape constructors of vectors (they don't need to be
4593          reshaped.  */
4594       if (TREE_CODE (init) == CONSTRUCTOR
4595           && !COMPOUND_LITERAL_P (init)
4596           && !TREE_TYPE (init))  /* ptrmemfunc */
4597         {
4598           init = reshape_init (type, init);
4599
4600           if ((*targetm.vector_opaque_p) (type))
4601             {
4602               error ("opaque vector types cannot be initialized");
4603               init = error_mark_node;
4604             }
4605         }
4606
4607       /* If DECL has an array type without a specific bound, deduce the
4608          array size from the initializer.  */
4609       maybe_deduce_size_from_array_init (decl, init);
4610       type = TREE_TYPE (decl);
4611
4612       if (TYPE_HAS_CONSTRUCTOR (type) || TYPE_NEEDS_CONSTRUCTING (type))
4613         {
4614           if (TREE_CODE (type) == ARRAY_TYPE)
4615             goto initialize_aggr;
4616           else if (TREE_CODE (init) == CONSTRUCTOR)
4617             {
4618               if (TYPE_NON_AGGREGATE_CLASS (type))
4619                 {
4620                   error ("%qD must be initialized by constructor, "
4621                          "not by %<{...}%>",
4622                          decl);
4623                   init = error_mark_node;
4624                 }
4625               else
4626                 goto dont_use_constructor;
4627             }
4628           else
4629             {
4630               int saved_stmts_are_full_exprs_p;
4631
4632             initialize_aggr:
4633               saved_stmts_are_full_exprs_p = 0;
4634               if (building_stmt_tree ())
4635                 {
4636                   saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
4637                   current_stmt_tree ()->stmts_are_full_exprs_p = 1;
4638                 }
4639               init = build_aggr_init (decl, init, flags);
4640               if (building_stmt_tree ())
4641                 current_stmt_tree ()->stmts_are_full_exprs_p =
4642                   saved_stmts_are_full_exprs_p;
4643               return init;
4644             }
4645         }
4646       else
4647         {
4648         dont_use_constructor:
4649           if (TREE_CODE (init) != TREE_VEC)
4650             {
4651               init_code = store_init_value (decl, init);
4652               if (pedantic && TREE_CODE (type) == ARRAY_TYPE
4653                   && DECL_INITIAL (decl)
4654                   && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
4655                   && PAREN_STRING_LITERAL_P (DECL_INITIAL (decl)))
4656                 warning (0, "array %qD initialized by parenthesized string literal %qE",
4657                          decl, DECL_INITIAL (decl));
4658               init = NULL;
4659             }
4660         }
4661     }
4662   else if (DECL_EXTERNAL (decl))
4663     ;
4664   else if (TYPE_P (type) && TYPE_NEEDS_CONSTRUCTING (type))
4665     goto initialize_aggr;
4666   else if (IS_AGGR_TYPE (type))
4667     {
4668       tree core_type = strip_array_types (type);
4669
4670       if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type))
4671         error ("structure %qD with uninitialized const members", decl);
4672       if (CLASSTYPE_REF_FIELDS_NEED_INIT (core_type))
4673         error ("structure %qD with uninitialized reference members", decl);
4674
4675       check_for_uninitialized_const_var (decl);
4676     }
4677   else
4678     check_for_uninitialized_const_var (decl);
4679
4680   if (init && init != error_mark_node)
4681     init_code = build2 (INIT_EXPR, type, decl, init);
4682
4683   return init_code;
4684 }
4685
4686 /* If DECL is not a local variable, give it RTL.  */
4687
4688 static void
4689 make_rtl_for_nonlocal_decl (tree decl, tree init, const char* asmspec)
4690 {
4691   int toplev = toplevel_bindings_p ();
4692   int defer_p;
4693   const char *filename;
4694
4695   /* Set the DECL_ASSEMBLER_NAME for the object.  */
4696   if (asmspec)
4697     {
4698       /* The `register' keyword, when used together with an
4699          asm-specification, indicates that the variable should be
4700          placed in a particular register.  */
4701       if (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
4702         {
4703           set_user_assembler_name (decl, asmspec);
4704           DECL_HARD_REGISTER (decl) = 1;
4705         }
4706       else
4707         {
4708           if (TREE_CODE (decl) == FUNCTION_DECL
4709               && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
4710             set_builtin_user_assembler_name (decl, asmspec);
4711           set_user_assembler_name (decl, asmspec);
4712         }
4713     }
4714
4715   /* Handle non-variables up front.  */
4716   if (TREE_CODE (decl) != VAR_DECL)
4717     {
4718       rest_of_decl_compilation (decl, toplev, at_eof);
4719       return;
4720     }
4721
4722   /* If we see a class member here, it should be a static data
4723      member.  */
4724   if (DECL_LANG_SPECIFIC (decl) && DECL_IN_AGGR_P (decl))
4725     {
4726       gcc_assert (TREE_STATIC (decl));
4727       /* An in-class declaration of a static data member should be
4728          external; it is only a declaration, and not a definition.  */
4729       if (init == NULL_TREE)
4730         gcc_assert (DECL_EXTERNAL (decl));
4731     }
4732
4733   /* We don't create any RTL for local variables.  */
4734   if (DECL_FUNCTION_SCOPE_P (decl) && !TREE_STATIC (decl))
4735     return;
4736
4737   /* We defer emission of local statics until the corresponding
4738      DECL_EXPR is expanded.  */
4739   defer_p = DECL_FUNCTION_SCOPE_P (decl) || DECL_VIRTUAL_P (decl);
4740
4741   /* We try to defer namespace-scope static constants so that they are
4742      not emitted into the object file unnecessarily.  */
4743   filename = input_filename;
4744   if (!DECL_VIRTUAL_P (decl)
4745       && TREE_READONLY (decl)
4746       && DECL_INITIAL (decl) != NULL_TREE
4747       && DECL_INITIAL (decl) != error_mark_node
4748       && filename != NULL
4749       && ! EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl))
4750       && toplev
4751       && !TREE_PUBLIC (decl))
4752     {
4753       /* Fool with the linkage of static consts according to #pragma
4754          interface.  */
4755       struct c_fileinfo *finfo = get_fileinfo (lbasename (filename));
4756       if (!finfo->interface_unknown && !TREE_PUBLIC (decl))
4757         {
4758           TREE_PUBLIC (decl) = 1;
4759           DECL_EXTERNAL (decl) = finfo->interface_only;
4760         }
4761
4762       defer_p = 1;
4763     }
4764   /* Likewise for template instantiations.  */
4765   else if (DECL_LANG_SPECIFIC (decl)
4766            && DECL_IMPLICIT_INSTANTIATION (decl))
4767     defer_p = 1;
4768
4769   /* If we're not deferring, go ahead and assemble the variable.  */
4770   if (!defer_p)
4771     rest_of_decl_compilation (decl, toplev, at_eof);
4772 }
4773
4774 /* Generate code to initialize DECL (a local variable).  */
4775
4776 static void
4777 initialize_local_var (tree decl, tree init)
4778 {
4779   tree type = TREE_TYPE (decl);
4780   tree cleanup;
4781
4782   gcc_assert (TREE_CODE (decl) == VAR_DECL
4783               || TREE_CODE (decl) == RESULT_DECL);
4784   gcc_assert (!TREE_STATIC (decl));
4785
4786   if (DECL_SIZE (decl) == NULL_TREE)
4787     {
4788       /* If we used it already as memory, it must stay in memory.  */
4789       DECL_INITIAL (decl) = NULL_TREE;
4790       TREE_ADDRESSABLE (decl) = TREE_USED (decl);
4791     }
4792
4793   if (DECL_SIZE (decl) && type != error_mark_node)
4794     {
4795       int already_used;
4796
4797       /* Compute and store the initial value.  */
4798       already_used = TREE_USED (decl) || TREE_USED (type);
4799
4800       /* Perform the initialization.  */
4801       if (init)
4802         {
4803           int saved_stmts_are_full_exprs_p;
4804
4805           gcc_assert (building_stmt_tree ());
4806           saved_stmts_are_full_exprs_p = stmts_are_full_exprs_p ();
4807           current_stmt_tree ()->stmts_are_full_exprs_p = 1;
4808           finish_expr_stmt (init);
4809           current_stmt_tree ()->stmts_are_full_exprs_p =
4810             saved_stmts_are_full_exprs_p;
4811         }
4812
4813       /* Set this to 0 so we can tell whether an aggregate which was
4814          initialized was ever used.  Don't do this if it has a
4815          destructor, so we don't complain about the 'resource
4816          allocation is initialization' idiom.  Now set
4817          attribute((unused)) on types so decls of that type will be
4818          marked used. (see TREE_USED, above.)  */
4819       if (TYPE_NEEDS_CONSTRUCTING (type)
4820           && ! already_used
4821           && TYPE_HAS_TRIVIAL_DESTRUCTOR (type)
4822           && DECL_NAME (decl))
4823         TREE_USED (decl) = 0;
4824       else if (already_used)
4825         TREE_USED (decl) = 1;
4826     }
4827
4828   /* Generate a cleanup, if necessary.  */
4829   cleanup = cxx_maybe_build_cleanup (decl);
4830   if (DECL_SIZE (decl) && cleanup)
4831     finish_decl_cleanup (decl, cleanup);
4832 }
4833
4834 /* DECL is a VAR_DECL for a compiler-generated variable with static
4835    storage duration (like a virtual table) whose initializer is a
4836    compile-time constant.  INIT must be either a TREE_LIST of values,
4837    or a CONSTRUCTOR.  Initialize the variable and provide it to the
4838    back end.  */
4839
4840 void
4841 initialize_artificial_var (tree decl, tree init)
4842 {
4843   if (TREE_CODE (init) == TREE_LIST)
4844     init = build_constructor_from_list (NULL_TREE, init);
4845   gcc_assert (TREE_CODE (init) == CONSTRUCTOR);
4846   DECL_INITIAL (decl) = init;
4847   DECL_INITIALIZED_P (decl) = 1;
4848   determine_visibility (decl);
4849   layout_var_decl (decl);
4850   maybe_commonize_var (decl);
4851   make_rtl_for_nonlocal_decl (decl, init, /*asmspec=*/NULL);
4852 }
4853
4854 /* Finish processing of a declaration;
4855    install its line number and initial value.
4856    If the length of an array type is not known before,
4857    it must be determined now, from the initial value, or it is an error.
4858
4859    INIT holds the value of an initializer that should be allowed to escape
4860    the normal rules.
4861
4862    FLAGS is LOOKUP_ONLYCONVERTING if the = init syntax was used, else 0
4863    if the (init) syntax was used.  */
4864
4865 void
4866 cp_finish_decl (tree decl, tree init, tree asmspec_tree, int flags)
4867 {
4868   tree type;
4869   tree cleanup;
4870   const char *asmspec = NULL;
4871   int was_readonly = 0;
4872   bool var_definition_p = false;
4873
4874   if (decl == error_mark_node)
4875     return;
4876   else if (! decl)
4877     {
4878       if (init)
4879         error ("assignment (not initialization) in declaration");
4880       return;
4881     }
4882
4883   gcc_assert (TREE_CODE (decl) != RESULT_DECL);
4884
4885   /* Assume no cleanup is required.  */
4886   cleanup = NULL_TREE;
4887
4888   /* If a name was specified, get the string.  */
4889   if (global_scope_p (current_binding_level))
4890     asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
4891   if (asmspec_tree)
4892     asmspec = TREE_STRING_POINTER (asmspec_tree);
4893
4894   if (init && TREE_CODE (init) == NAMESPACE_DECL)
4895     {
4896       error ("cannot initialize %qD to namespace %qD", decl, init);
4897       init = NULL_TREE;
4898     }
4899
4900   if (current_class_type
4901       && CP_DECL_CONTEXT (decl) == current_class_type
4902       && TYPE_BEING_DEFINED (current_class_type)
4903       && (DECL_INITIAL (decl) || init))
4904     DECL_INITIALIZED_IN_CLASS_P (decl) = 1;
4905
4906   type = TREE_TYPE (decl);
4907
4908   if (type == error_mark_node)
4909     goto finish_end;
4910
4911   if (processing_template_decl)
4912     {
4913       /* Add this declaration to the statement-tree.  */
4914       if (at_function_scope_p ())
4915         add_decl_expr (decl);
4916
4917       if (init && DECL_INITIAL (decl))
4918         DECL_INITIAL (decl) = init;
4919       if (TREE_CODE (decl) == VAR_DECL
4920           && !DECL_PRETTY_FUNCTION_P (decl)
4921           && !dependent_type_p (TREE_TYPE (decl)))
4922         maybe_deduce_size_from_array_init (decl, init);
4923
4924       goto finish_end;
4925     }
4926
4927   /* Parameters are handled by store_parm_decls, not cp_finish_decl.  */
4928   gcc_assert (TREE_CODE (decl) != PARM_DECL);
4929
4930   /* Take care of TYPE_DECLs up front.  */
4931   if (TREE_CODE (decl) == TYPE_DECL)
4932     {
4933       if (type != error_mark_node
4934           && IS_AGGR_TYPE (type) && DECL_NAME (decl))
4935         {
4936           if (TREE_TYPE (DECL_NAME (decl)) && TREE_TYPE (decl) != type)
4937             warning (0, "shadowing previous type declaration of %q#D", decl);
4938           set_identifier_type_value (DECL_NAME (decl), decl);
4939         }
4940
4941       /* If we have installed this as the canonical typedef for this
4942          type, and that type has not been defined yet, delay emitting
4943          the debug information for it, as we will emit it later.  */
4944       if (TYPE_MAIN_DECL (TREE_TYPE (decl)) == decl
4945           && !COMPLETE_TYPE_P (TREE_TYPE (decl)))
4946         TYPE_DECL_SUPPRESS_DEBUG (decl) = 1;
4947
4948       rest_of_decl_compilation (decl, DECL_CONTEXT (decl) == NULL_TREE,
4949                                 at_eof);
4950       goto finish_end;
4951     }
4952
4953   /* A reference will be modified here, as it is initialized.  */
4954   if (! DECL_EXTERNAL (decl)
4955       && TREE_READONLY (decl)
4956       && TREE_CODE (type) == REFERENCE_TYPE)
4957     {
4958       was_readonly = 1;
4959       TREE_READONLY (decl) = 0;
4960     }
4961
4962   if (TREE_CODE (decl) == VAR_DECL)
4963     {
4964       /* Only PODs can have thread-local storage.  Other types may require
4965          various kinds of non-trivial initialization.  */
4966       if (DECL_THREAD_LOCAL_P (decl) && !pod_type_p (TREE_TYPE (decl)))
4967         error ("%qD cannot be thread-local because it has non-POD type %qT",
4968                decl, TREE_TYPE (decl));
4969       /* Convert the initializer to the type of DECL, if we have not
4970          already initialized DECL.  */
4971       if (!DECL_INITIALIZED_P (decl)
4972           /* If !DECL_EXTERNAL then DECL is being defined.  In the
4973              case of a static data member initialized inside the
4974              class-specifier, there can be an initializer even if DECL
4975              is *not* defined.  */
4976           && (!DECL_EXTERNAL (decl) || init))
4977         {
4978           if (init)
4979             DECL_NONTRIVIALLY_INITIALIZED_P (decl) = 1;
4980           init = check_initializer (decl, init, flags, &cleanup);
4981           /* Thread-local storage cannot be dynamically initialized.  */
4982           if (DECL_THREAD_LOCAL_P (decl) && init)
4983             {
4984               error ("%qD is thread-local and so cannot be dynamically "
4985                      "initialized", decl);
4986               init = NULL_TREE;
4987             }
4988
4989           /* Check that the initializer for a static data member was a
4990              constant.  Although we check in the parser that the
4991              initializer is an integral constant expression, we do not
4992              simplify division-by-zero at the point at which it
4993              occurs.  Therefore, in:
4994
4995                struct S { static const int i = 7 / 0; };
4996                
4997              we issue an error at this point.  It would
4998              probably be better to forbid division by zero in
4999              integral constant expressions.  */
5000           if (DECL_EXTERNAL (decl) && init)
5001             {
5002               error ("%qD cannot be initialized by a non-constant expression"
5003                      " when being declared", decl);
5004               DECL_INITIALIZED_IN_CLASS_P (decl) = 0;
5005               init = NULL_TREE;
5006             }
5007
5008           /* Handle:
5009
5010              [dcl.init]
5011
5012              The memory occupied by any object of static storage
5013              duration is zero-initialized at program startup before
5014              any other initialization takes place.
5015
5016              We cannot create an appropriate initializer until after
5017              the type of DECL is finalized.  If DECL_INITIAL is set,
5018              then the DECL is statically initialized, and any
5019              necessary zero-initialization has already been performed.  */
5020           if (TREE_STATIC (decl) && !DECL_INITIAL (decl))
5021             DECL_INITIAL (decl) = build_zero_init (TREE_TYPE (decl),
5022                                                    /*nelts=*/NULL_TREE,
5023                                                    /*static_storage_p=*/true);
5024           /* Remember that the initialization for this variable has
5025              taken place.  */
5026           DECL_INITIALIZED_P (decl) = 1;
5027           /* This declaration is the definition of this variable,
5028              unless we are initializing a static data member within
5029              the class specifier.  */
5030           if (!DECL_EXTERNAL (decl))
5031             var_definition_p = true;
5032           /* The variable is being defined, so determine its
5033              visibility.  */
5034           determine_visibility (decl);
5035         }
5036       /* If the variable has an array type, lay out the type, even if
5037          there is no initializer.  It is valid to index through the
5038          array, and we must get TYPE_ALIGN set correctly on the array
5039          type.  */
5040       else if (TREE_CODE (type) == ARRAY_TYPE)
5041         layout_type (type);
5042     }
5043
5044   /* Add this declaration to the statement-tree.  This needs to happen
5045      after the call to check_initializer so that the DECL_EXPR for a
5046      reference temp is added before the DECL_EXPR for the reference itself.  */
5047   if (at_function_scope_p ())
5048     add_decl_expr (decl);
5049
5050   if (TREE_CODE (decl) == VAR_DECL)
5051     layout_var_decl (decl);
5052
5053   /* Output the assembler code and/or RTL code for variables and functions,
5054      unless the type is an undefined structure or union.
5055      If not, it will get done when the type is completed.  */
5056   if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
5057     {
5058       if (TREE_CODE (decl) == VAR_DECL)
5059         maybe_commonize_var (decl);
5060
5061       make_rtl_for_nonlocal_decl (decl, init, asmspec);
5062
5063       /* Check for abstractness of the type. Notice that there is no
5064          need to strip array types here since the check for those types
5065          is already done within create_array_type_for_decl.  */
5066       if (TREE_CODE (type) == FUNCTION_TYPE
5067           || TREE_CODE (type) == METHOD_TYPE)
5068         abstract_virtuals_error (decl, TREE_TYPE (type));
5069       else
5070         abstract_virtuals_error (decl, type);
5071
5072       if (TREE_CODE (decl) == FUNCTION_DECL
5073           || TREE_TYPE (decl) == error_mark_node)
5074         /* No initialization required.  */
5075         ;
5076       else if (DECL_EXTERNAL (decl)
5077                && ! (DECL_LANG_SPECIFIC (decl)
5078                      && DECL_NOT_REALLY_EXTERN (decl)))
5079         {
5080           if (init)
5081             DECL_INITIAL (decl) = init;
5082         }
5083       else
5084         {
5085           /* A variable definition.  */
5086           if (DECL_FUNCTION_SCOPE_P (decl))
5087             {
5088               /* Initialize the local variable.  */
5089               if (processing_template_decl)
5090                 {
5091                   if (init || DECL_INITIAL (decl) == error_mark_node)
5092                     DECL_INITIAL (decl) = init;
5093                 }
5094               else if (!TREE_STATIC (decl))
5095                 initialize_local_var (decl, init);
5096             }
5097
5098           /* If a variable is defined, and then a subsequent
5099              definition with external linkage is encountered, we will
5100              get here twice for the same variable.  We want to avoid
5101              calling expand_static_init more than once.  For variables
5102              that are not static data members, we can call
5103              expand_static_init only when we actually process the
5104              initializer.  It is not legal to redeclare a static data
5105              member, so this issue does not arise in that case.  */
5106           if (var_definition_p && TREE_STATIC (decl))
5107             expand_static_init (decl, init);
5108         }
5109     }
5110
5111   /* If a CLEANUP_STMT was created to destroy a temporary bound to a
5112      reference, insert it in the statement-tree now.  */
5113   if (cleanup)
5114     push_cleanup (decl, cleanup, false);
5115
5116  finish_end:
5117
5118   if (was_readonly)
5119     TREE_READONLY (decl) = 1;
5120
5121   /* If this was marked 'used', be sure it will be output.  */
5122   if (lookup_attribute ("used", DECL_ATTRIBUTES (decl)))
5123     mark_decl_referenced (decl);
5124 }
5125
5126 /* This is here for a midend callback from c-common.c.  */
5127
5128 void
5129 finish_decl (tree decl, tree init, tree asmspec_tree)
5130 {
5131   cp_finish_decl (decl, init, asmspec_tree, 0);
5132 }
5133
5134 /* Returns a declaration for a VAR_DECL as if:
5135
5136      extern "C" TYPE NAME;
5137
5138    had been seen.  Used to create compiler-generated global
5139    variables.  */
5140
5141 tree
5142 declare_global_var (tree name, tree type)
5143 {
5144   tree decl;
5145
5146   push_to_top_level ();
5147   decl = build_decl (VAR_DECL, name, type);
5148   TREE_PUBLIC (decl) = 1;
5149   DECL_EXTERNAL (decl) = 1;
5150   DECL_ARTIFICIAL (decl) = 1;
5151   /* If the user has explicitly declared this variable (perhaps
5152      because the code we are compiling is part of a low-level runtime
5153      library), then it is possible that our declaration will be merged
5154      with theirs by pushdecl.  */
5155   decl = pushdecl (decl);
5156   cp_finish_decl (decl, NULL_TREE, NULL_TREE, 0);
5157   pop_from_top_level ();
5158
5159   return decl;
5160 }
5161
5162 /* Returns a pointer to the `atexit' function.  Note that if
5163    FLAG_USE_CXA_ATEXIT is nonzero, then this will actually be the new
5164    `__cxa_atexit' function specified in the IA64 C++ ABI.  */
5165
5166 static tree
5167 get_atexit_node (void)
5168 {
5169   tree atexit_fndecl;
5170   tree arg_types;
5171   tree fn_type;
5172   tree fn_ptr_type;
5173   const char *name;
5174   bool use_aeabi_atexit;
5175
5176   if (atexit_node)
5177     return atexit_node;
5178
5179   if (flag_use_cxa_atexit)
5180     {
5181       /* The declaration for `__cxa_atexit' is:
5182
5183            int __cxa_atexit (void (*)(void *), void *, void *)
5184
5185          We build up the argument types and then then function type
5186          itself.  */
5187
5188       use_aeabi_atexit = targetm.cxx.use_aeabi_atexit ();
5189       /* First, build the pointer-to-function type for the first
5190          argument.  */
5191       arg_types = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
5192       fn_type = build_function_type (void_type_node, arg_types);
5193       fn_ptr_type = build_pointer_type (fn_type);
5194       /* Then, build the rest of the argument types.  */
5195       arg_types = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
5196       if (use_aeabi_atexit)
5197         {
5198           arg_types = tree_cons (NULL_TREE, fn_ptr_type, arg_types);
5199           arg_types = tree_cons (NULL_TREE, ptr_type_node, arg_types);
5200         }
5201       else
5202         {
5203           arg_types = tree_cons (NULL_TREE, ptr_type_node, arg_types);
5204           arg_types = tree_cons (NULL_TREE, fn_ptr_type, arg_types);
5205         }
5206       /* And the final __cxa_atexit type.  */
5207       fn_type = build_function_type (integer_type_node, arg_types);
5208       fn_ptr_type = build_pointer_type (fn_type);
5209       if (use_aeabi_atexit)
5210         name = "__aeabi_atexit";
5211       else
5212         name = "__cxa_atexit";
5213     }
5214   else
5215     {
5216       /* The declaration for `atexit' is:
5217
5218            int atexit (void (*)());
5219
5220          We build up the argument types and then then function type
5221          itself.  */
5222       fn_type = build_function_type (void_type_node, void_list_node);
5223       fn_ptr_type = build_pointer_type (fn_type);
5224       arg_types = tree_cons (NULL_TREE, fn_ptr_type, void_list_node);
5225       /* Build the final atexit type.  */
5226       fn_type = build_function_type (integer_type_node, arg_types);
5227       name = "atexit";
5228     }
5229
5230   /* Now, build the function declaration.  */
5231   push_lang_context (lang_name_c);
5232   atexit_fndecl = build_library_fn_ptr (name, fn_type);
5233   mark_used (atexit_fndecl);
5234   pop_lang_context ();
5235   atexit_node = decay_conversion (atexit_fndecl);
5236
5237   return atexit_node;
5238 }
5239
5240 /* Returns the __dso_handle VAR_DECL.  */
5241
5242 static tree
5243 get_dso_handle_node (void)
5244 {
5245   if (dso_handle_node)
5246     return dso_handle_node;
5247
5248   /* Declare the variable.  */
5249   dso_handle_node = declare_global_var (get_identifier ("__dso_handle"),
5250                                         ptr_type_node);
5251
5252   return dso_handle_node;
5253 }
5254
5255 /* Begin a new function with internal linkage whose job will be simply
5256    to destroy some particular variable.  */
5257
5258 static GTY(()) int start_cleanup_cnt;
5259
5260 static tree
5261 start_cleanup_fn (void)
5262 {
5263   char name[32];
5264   tree parmtypes;
5265   tree fntype;
5266   tree fndecl;
5267
5268   push_to_top_level ();
5269
5270   /* No need to mangle this.  */
5271   push_lang_context (lang_name_c);
5272
5273   /* Build the parameter-types.  */
5274   parmtypes = void_list_node;
5275   /* Functions passed to __cxa_atexit take an additional parameter.
5276      We'll just ignore it.  After we implement the new calling
5277      convention for destructors, we can eliminate the use of
5278      additional cleanup functions entirely in the -fnew-abi case.  */
5279   if (flag_use_cxa_atexit)
5280     parmtypes = tree_cons (NULL_TREE, ptr_type_node, parmtypes);
5281   /* Build the function type itself.  */
5282   fntype = build_function_type (void_type_node, parmtypes);
5283   /* Build the name of the function.  */
5284   sprintf (name, "__tcf_%d", start_cleanup_cnt++);
5285   /* Build the function declaration.  */
5286   fndecl = build_lang_decl (FUNCTION_DECL, get_identifier (name), fntype);
5287   /* It's a function with internal linkage, generated by the
5288      compiler.  */
5289   TREE_PUBLIC (fndecl) = 0;
5290   DECL_ARTIFICIAL (fndecl) = 1;
5291   /* Make the function `inline' so that it is only emitted if it is
5292      actually needed.  It is unlikely that it will be inlined, since
5293      it is only called via a function pointer, but we avoid unnecessary
5294      emissions this way.  */
5295   DECL_INLINE (fndecl) = 1;
5296   DECL_DECLARED_INLINE_P (fndecl) = 1;
5297   DECL_INTERFACE_KNOWN (fndecl) = 1;
5298   /* Build the parameter.  */
5299   if (flag_use_cxa_atexit)
5300     {
5301       tree parmdecl;
5302
5303       parmdecl = cp_build_parm_decl (NULL_TREE, ptr_type_node);
5304       DECL_CONTEXT (parmdecl) = fndecl;
5305       TREE_USED (parmdecl) = 1;
5306       DECL_ARGUMENTS (fndecl) = parmdecl;
5307     }
5308
5309   pushdecl (fndecl);
5310   start_preparsed_function (fndecl, NULL_TREE, SF_PRE_PARSED);
5311
5312   pop_lang_context ();
5313
5314   return current_function_decl;
5315 }
5316
5317 /* Finish the cleanup function begun by start_cleanup_fn.  */
5318
5319 static void
5320 end_cleanup_fn (void)
5321 {
5322   expand_or_defer_fn (finish_function (0));
5323
5324   pop_from_top_level ();
5325 }
5326
5327 /* Generate code to handle the destruction of DECL, an object with
5328    static storage duration.  */
5329
5330 tree
5331 register_dtor_fn (tree decl)
5332 {
5333   tree cleanup;
5334   tree compound_stmt;
5335   tree args;
5336   tree fcall;
5337
5338   if (TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
5339     return void_zero_node;
5340
5341   /* Call build_cleanup before we enter the anonymous function so that
5342      any access checks will be done relative to the current scope,
5343      rather than the scope of the anonymous function.  */
5344   build_cleanup (decl);
5345
5346   /* Now start the function.  */
5347   cleanup = start_cleanup_fn ();
5348
5349   /* Now, recompute the cleanup.  It may contain SAVE_EXPRs that refer
5350      to the original function, rather than the anonymous one.  That
5351      will make the back-end think that nested functions are in use,
5352      which causes confusion.  */
5353
5354   push_deferring_access_checks (dk_no_check);
5355   fcall = build_cleanup (decl);
5356   pop_deferring_access_checks ();
5357
5358   /* Create the body of the anonymous function.  */
5359   compound_stmt = begin_compound_stmt (BCS_FN_BODY);
5360   finish_expr_stmt (fcall);
5361   finish_compound_stmt (compound_stmt);
5362   end_cleanup_fn ();
5363
5364   /* Call atexit with the cleanup function.  */
5365   cxx_mark_addressable (cleanup);
5366   mark_used (cleanup);
5367   cleanup = build_unary_op (ADDR_EXPR, cleanup, 0);
5368   if (flag_use_cxa_atexit)
5369     {
5370       args = tree_cons (NULL_TREE,
5371                         build_unary_op (ADDR_EXPR, get_dso_handle_node (), 0),
5372                         NULL_TREE);
5373       if (targetm.cxx.use_aeabi_atexit ())
5374         {
5375           args = tree_cons (NULL_TREE, cleanup, args);
5376           args = tree_cons (NULL_TREE, null_pointer_node, args);
5377         }
5378       else
5379         {
5380           args = tree_cons (NULL_TREE, null_pointer_node, args);
5381           args = tree_cons (NULL_TREE, cleanup, args);
5382         }
5383     }
5384   else
5385     args = tree_cons (NULL_TREE, cleanup, NULL_TREE);
5386   return build_function_call (get_atexit_node (), args);
5387 }
5388
5389 /* DECL is a VAR_DECL with static storage duration.  INIT, if present,
5390    is its initializer.  Generate code to handle the construction
5391    and destruction of DECL.  */
5392
5393 static void
5394 expand_static_init (tree decl, tree init)
5395 {
5396   gcc_assert (TREE_CODE (decl) == VAR_DECL);
5397   gcc_assert (TREE_STATIC (decl));
5398
5399   /* Some variables require no initialization.  */
5400   if (!init
5401       && !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl))
5402       && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
5403     return;
5404
5405   if (DECL_FUNCTION_SCOPE_P (decl))
5406     {
5407       /* Emit code to perform this initialization but once.  */
5408       tree if_stmt = NULL_TREE, inner_if_stmt = NULL_TREE;
5409       tree then_clause = NULL_TREE, inner_then_clause = NULL_TREE;
5410       tree guard, guard_addr, guard_addr_list;
5411       tree acquire_fn, release_fn, abort_fn;
5412       tree flag, begin;
5413
5414       /* Emit code to perform this initialization but once.  This code
5415          looks like:
5416
5417            static <type> guard;
5418            if (!guard.first_byte) {
5419              if (__cxa_guard_acquire (&guard)) {
5420                bool flag = false;
5421                try {
5422                  // Do initialization.
5423                  flag = true; __cxa_guard_release (&guard);
5424                  // Register variable for destruction at end of program.
5425                } catch {
5426                  if (!flag) __cxa_guard_abort (&guard);
5427                }
5428            }
5429
5430          Note that the `flag' variable is only set to 1 *after* the
5431          initialization is complete.  This ensures that an exception,
5432          thrown during the construction, will cause the variable to
5433          reinitialized when we pass through this code again, as per:
5434
5435            [stmt.dcl]
5436
5437            If the initialization exits by throwing an exception, the
5438            initialization is not complete, so it will be tried again
5439            the next time control enters the declaration.
5440
5441          This process should be thread-safe, too; multiple threads
5442          should not be able to initialize the variable more than
5443          once.  */
5444
5445       /* Create the guard variable.  */
5446       guard = get_guard (decl);
5447
5448       /* This optimization isn't safe on targets with relaxed memory
5449          consistency.  On such targets we force synchronization in
5450          __cxa_guard_acquire.  */
5451       if (!targetm.relaxed_ordering || !flag_threadsafe_statics)
5452         {
5453           /* Begin the conditional initialization.  */
5454           if_stmt = begin_if_stmt ();
5455           finish_if_stmt_cond (get_guard_cond (guard), if_stmt);
5456           then_clause = begin_compound_stmt (BCS_NO_SCOPE);
5457         }
5458
5459       if (flag_threadsafe_statics)
5460         {
5461           guard_addr = build_address (guard);
5462           guard_addr_list = build_tree_list (NULL_TREE, guard_addr);
5463
5464           acquire_fn = get_identifier ("__cxa_guard_acquire");
5465           release_fn = get_identifier ("__cxa_guard_release");
5466           abort_fn = get_identifier ("__cxa_guard_abort");
5467           if (!get_global_value_if_present (acquire_fn, &acquire_fn))
5468             {
5469               tree argtypes = tree_cons (NULL_TREE, TREE_TYPE (guard_addr),
5470                                          void_list_node);
5471               tree vfntype = build_function_type (void_type_node, argtypes);
5472               acquire_fn = push_library_fn
5473                 (acquire_fn, build_function_type (integer_type_node, argtypes));
5474               release_fn = push_library_fn (release_fn, vfntype);
5475               abort_fn = push_library_fn (abort_fn, vfntype);
5476             }
5477           else
5478             {
5479               release_fn = identifier_global_value (release_fn);
5480               abort_fn = identifier_global_value (abort_fn);
5481             }
5482
5483           inner_if_stmt = begin_if_stmt ();
5484           finish_if_stmt_cond (build_call (acquire_fn, guard_addr_list),
5485                                inner_if_stmt);
5486
5487           inner_then_clause = begin_compound_stmt (BCS_NO_SCOPE);
5488           begin = get_target_expr (boolean_false_node);
5489           flag = TARGET_EXPR_SLOT (begin);
5490
5491           TARGET_EXPR_CLEANUP (begin)
5492             = build3 (COND_EXPR, void_type_node, flag,
5493                       void_zero_node,
5494                       build_call (abort_fn, guard_addr_list));
5495           CLEANUP_EH_ONLY (begin) = 1;
5496
5497           /* Do the initialization itself.  */
5498           init = add_stmt_to_compound (begin, init);
5499           init = add_stmt_to_compound
5500             (init, build2 (MODIFY_EXPR, void_type_node, flag, boolean_true_node));
5501           init = add_stmt_to_compound
5502             (init, build_call (release_fn, guard_addr_list));
5503         }
5504       else
5505         init = add_stmt_to_compound (init, set_guard (guard));
5506
5507       /* Use atexit to register a function for destroying this static
5508          variable.  */
5509       init = add_stmt_to_compound (init, register_dtor_fn (decl));
5510
5511       finish_expr_stmt (init);
5512
5513       if (flag_threadsafe_statics)
5514         {
5515           finish_compound_stmt (inner_then_clause);
5516           finish_then_clause (inner_if_stmt);
5517           finish_if_stmt (inner_if_stmt);
5518         }
5519
5520       if (!targetm.relaxed_ordering || !flag_threadsafe_statics)
5521         {
5522           finish_compound_stmt (then_clause);
5523           finish_then_clause (if_stmt);
5524           finish_if_stmt (if_stmt);
5525         }
5526     }
5527   else
5528     static_aggregates = tree_cons (init, decl, static_aggregates);
5529 }
5530
5531 \f
5532 /* Make TYPE a complete type based on INITIAL_VALUE.
5533    Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
5534    2 if there was no information (in which case assume 0 if DO_DEFAULT),
5535    3 if the initializer list is empty (in pedantic mode). */
5536
5537 int
5538 cp_complete_array_type (tree *ptype, tree initial_value, bool do_default)
5539 {
5540   int failure;
5541   tree type, elt_type;
5542
5543   if (initial_value)
5544     {
5545       /* An array of character type can be initialized from a
5546          brace-enclosed string constant.
5547
5548          FIXME: this code is duplicated from reshape_init. Probably
5549          we should just call reshape_init here?  */
5550       if (char_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (*ptype)))
5551           && TREE_CODE (initial_value) == CONSTRUCTOR
5552           && !VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (initial_value)))
5553         {
5554           VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (initial_value);
5555           tree value = VEC_index (constructor_elt, v, 0)->value;
5556
5557           if (TREE_CODE (value) == STRING_CST
5558               && VEC_length (constructor_elt, v) == 1)
5559             initial_value = value;
5560         }
5561     }
5562
5563   failure = complete_array_type (ptype, initial_value, do_default);
5564
5565   /* We can create the array before the element type is complete, which
5566      means that we didn't have these two bits set in the original type
5567      either.  In completing the type, we are expected to propagate these
5568      bits.  See also complete_type which does the same thing for arrays
5569      of fixed size.  */
5570   type = *ptype;
5571   if (TYPE_DOMAIN (type))
5572     {
5573       elt_type = TREE_TYPE (type);
5574       TYPE_NEEDS_CONSTRUCTING (type) = TYPE_NEEDS_CONSTRUCTING (elt_type);
5575       TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
5576         = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (elt_type);
5577     }
5578
5579   return failure;
5580 }
5581 \f
5582 /* Return zero if something is declared to be a member of type
5583    CTYPE when in the context of CUR_TYPE.  STRING is the error
5584    message to print in that case.  Otherwise, quietly return 1.  */
5585
5586 static int
5587 member_function_or_else (tree ctype, tree cur_type, enum overload_flags flags)
5588 {
5589   if (ctype && ctype != cur_type)
5590     {
5591       if (flags == DTOR_FLAG)
5592         error ("destructor for alien class %qT cannot be a member", ctype);
5593       else
5594         error ("constructor for alien class %qT cannot be a member", ctype);
5595       return 0;
5596     }
5597   return 1;
5598 }
5599 \f
5600 /* Subroutine of `grokdeclarator'.  */
5601
5602 /* Generate errors possibly applicable for a given set of specifiers.
5603    This is for ARM $7.1.2.  */
5604
5605 static void
5606 bad_specifiers (tree object,
5607                 const char* type,
5608                 int virtualp,
5609                 int quals,
5610                 int inlinep,
5611                 int friendp,
5612                 int raises)
5613 {
5614   if (virtualp)
5615     error ("%qD declared as a %<virtual%> %s", object, type);
5616   if (inlinep)
5617     error ("%qD declared as an %<inline%> %s", object, type);
5618   if (quals)
5619     error ("%<const%> and %<volatile%> function specifiers on "
5620            "%qD invalid in %s declaration",
5621            object, type);
5622   if (friendp)
5623     error ("%q+D declared as a friend", object);
5624   if (raises
5625       && (TREE_CODE (object) == TYPE_DECL
5626           || (!TYPE_PTRFN_P (TREE_TYPE (object))
5627               && !TYPE_REFFN_P (TREE_TYPE (object))
5628               && !TYPE_PTRMEMFUNC_P (TREE_TYPE (object)))))
5629     error ("%q+D declared with an exception specification", object);
5630 }
5631
5632 /* DECL is a member function or static data member and is presently
5633    being defined.  Check that the definition is taking place in a
5634    valid namespace.  */
5635
5636 static void
5637 check_class_member_definition_namespace (tree decl)
5638 {
5639   /* These checks only apply to member functions and static data
5640      members.  */
5641   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
5642               || TREE_CODE (decl) == VAR_DECL);
5643   /* We check for problems with specializations in pt.c in
5644      check_specialization_namespace, where we can issue better
5645      diagnostics.  */
5646   if (processing_specialization)
5647     return;
5648   /* There are no restrictions on the placement of
5649      explicit instantiations.  */
5650   if (processing_explicit_instantiation)
5651     return;
5652   /* [class.mfct]
5653
5654      A member function definition that appears outside of the
5655      class definition shall appear in a namespace scope enclosing
5656      the class definition.
5657
5658      [class.static.data]
5659
5660      The definition for a static data member shall appear in a
5661      namespace scope enclosing the member's class definition.  */
5662   if (!is_ancestor (current_namespace, DECL_CONTEXT (decl)))
5663     pedwarn ("definition of %qD is not in namespace enclosing %qT",
5664              decl, DECL_CONTEXT (decl));
5665 }
5666
5667 /* CTYPE is class type, or null if non-class.
5668    TYPE is type this FUNCTION_DECL should have, either FUNCTION_TYPE
5669    or METHOD_TYPE.
5670    DECLARATOR is the function's name.
5671    PARMS is a chain of PARM_DECLs for the function.
5672    VIRTUALP is truthvalue of whether the function is virtual or not.
5673    FLAGS are to be passed through to `grokclassfn'.
5674    QUALS are qualifiers indicating whether the function is `const'
5675    or `volatile'.
5676    RAISES is a list of exceptions that this function can raise.
5677    CHECK is 1 if we must find this method in CTYPE, 0 if we should
5678    not look, and -1 if we should not call `grokclassfn' at all.
5679
5680    SFK is the kind of special function (if any) for the new function.
5681
5682    Returns `NULL_TREE' if something goes wrong, after issuing
5683    applicable error messages.  */
5684
5685 static tree
5686 grokfndecl (tree ctype,
5687             tree type,
5688             tree declarator,
5689             tree parms,
5690             tree orig_declarator,
5691             int virtualp,
5692             enum overload_flags flags,
5693             cp_cv_quals quals,
5694             tree raises,
5695             int check,
5696             int friendp,
5697             int publicp,
5698             int inlinep,
5699             special_function_kind sfk,
5700             bool funcdef_flag,
5701             int template_count,
5702             tree in_namespace,
5703             tree* attrlist)
5704 {
5705   tree decl;
5706   int staticp = ctype && TREE_CODE (type) == FUNCTION_TYPE;
5707   tree t;
5708
5709   if (raises)
5710     type = build_exception_variant (type, raises);
5711
5712   decl = build_lang_decl (FUNCTION_DECL, declarator, type);
5713   DECL_ARGUMENTS (decl) = parms;
5714   /* Propagate volatile out from type to decl.  */
5715   if (TYPE_VOLATILE (type))
5716     TREE_THIS_VOLATILE (decl) = 1;
5717
5718   if (friendp
5719       && TREE_CODE (orig_declarator) == TEMPLATE_ID_EXPR)
5720     {
5721       if (funcdef_flag)
5722         error
5723           ("defining explicit specialization %qD in friend declaration",
5724            orig_declarator);
5725       else
5726         {
5727           tree fns = TREE_OPERAND (orig_declarator, 0);
5728           tree args = TREE_OPERAND (orig_declarator, 1);
5729
5730           if (PROCESSING_REAL_TEMPLATE_DECL_P ())
5731             {
5732               /* Something like `template <class T> friend void f<T>()'.  */
5733               error ("invalid use of template-id %qD in declaration "
5734                      "of primary template",
5735                      orig_declarator);
5736               return NULL_TREE;
5737             }
5738
5739
5740           /* A friend declaration of the form friend void f<>().  Record
5741              the information in the TEMPLATE_ID_EXPR.  */
5742           SET_DECL_IMPLICIT_INSTANTIATION (decl);
5743
5744           if (TREE_CODE (fns) == COMPONENT_REF)
5745             {
5746               /* Due to bison parser ickiness, we will have already looked
5747                  up an operator_name or PFUNCNAME within the current class
5748                  (see template_id in parse.y). If the current class contains
5749                  such a name, we'll get a COMPONENT_REF here. Undo that.  */
5750
5751               gcc_assert (TREE_TYPE (TREE_OPERAND (fns, 0))
5752                           == current_class_type);
5753               fns = TREE_OPERAND (fns, 1);
5754             }
5755           gcc_assert (TREE_CODE (fns) == IDENTIFIER_NODE
5756                       || TREE_CODE (fns) == OVERLOAD);
5757           DECL_TEMPLATE_INFO (decl) = tree_cons (fns, args, NULL_TREE);
5758
5759           for (t = TYPE_ARG_TYPES (TREE_TYPE (decl)); t; t = TREE_CHAIN (t))
5760             if (TREE_PURPOSE (t)
5761                 && TREE_CODE (TREE_PURPOSE (t)) == DEFAULT_ARG)
5762             {
5763               error ("default arguments are not allowed in declaration "
5764                      "of friend template specialization %qD",
5765                      decl);
5766               return NULL_TREE;
5767             }
5768
5769           if (inlinep)
5770             {
5771               error ("%<inline%> is not allowed in declaration of friend "
5772                      "template specialization %qD",
5773                      decl);
5774               return NULL_TREE;
5775             }
5776         }
5777     }
5778
5779   /* If this decl has namespace scope, set that up.  */
5780   if (in_namespace)
5781     set_decl_namespace (decl, in_namespace, friendp);
5782   else if (!ctype)
5783     DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5784
5785   /* `main' and builtins have implicit 'C' linkage.  */
5786   if ((MAIN_NAME_P (declarator)
5787        || (IDENTIFIER_LENGTH (declarator) > 10
5788            && IDENTIFIER_POINTER (declarator)[0] == '_'
5789            && IDENTIFIER_POINTER (declarator)[1] == '_'
5790            && strncmp (IDENTIFIER_POINTER (declarator)+2, "builtin_", 8) == 0))
5791       && current_lang_name == lang_name_cplusplus
5792       && ctype == NULL_TREE
5793       /* NULL_TREE means global namespace.  */
5794       && DECL_CONTEXT (decl) == NULL_TREE)
5795     SET_DECL_LANGUAGE (decl, lang_c);
5796
5797   /* Should probably propagate const out from type to decl I bet (mrs).  */
5798   if (staticp)
5799     {
5800       DECL_STATIC_FUNCTION_P (decl) = 1;
5801       DECL_CONTEXT (decl) = ctype;
5802     }
5803
5804   if (ctype)
5805     {
5806       DECL_CONTEXT (decl) = ctype;
5807       if (funcdef_flag)
5808         check_class_member_definition_namespace (decl);
5809     }
5810
5811   if (ctype == NULL_TREE && DECL_MAIN_P (decl))
5812     {
5813       if (processing_template_decl)
5814         error ("cannot declare %<::main%> to be a template");
5815       if (inlinep)
5816         error ("cannot declare %<::main%> to be inline");
5817       if (!publicp)
5818         error ("cannot declare %<::main%> to be static");
5819       if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
5820                         integer_type_node))
5821         {
5822           tree oldtypeargs = TYPE_ARG_TYPES (TREE_TYPE (decl));
5823           tree newtype;
5824           error ("%<::main%> must return %<int%>");
5825           newtype =  build_function_type (integer_type_node,
5826                                           oldtypeargs);
5827           TREE_TYPE (decl) = newtype;
5828         }
5829       inlinep = 0;
5830       publicp = 1;
5831     }
5832
5833   /* Members of anonymous types and local classes have no linkage; make
5834      them internal.  If a typedef is made later, this will be changed.  */
5835   if (ctype && (TYPE_ANONYMOUS_P (ctype)
5836                 || decl_function_context (TYPE_MAIN_DECL (ctype))))
5837     publicp = 0;
5838
5839   if (publicp)
5840     {
5841       /* [basic.link]: A name with no linkage (notably, the name of a class
5842          or enumeration declared in a local scope) shall not be used to
5843          declare an entity with linkage.
5844
5845          Only check this for public decls for now.  See core 319, 389.  */
5846       t = no_linkage_check (TREE_TYPE (decl),
5847                             /*relaxed_p=*/false);
5848       if (t)
5849         {
5850           if (TYPE_ANONYMOUS_P (t))
5851             {
5852               if (DECL_EXTERN_C_P (decl))
5853                 /* Allow this; it's pretty common in C.  */;
5854               else
5855                 {
5856                   pedwarn ("non-local function %q#D uses anonymous type",
5857                               decl);
5858                   if (DECL_ORIGINAL_TYPE (TYPE_NAME (t)))
5859                     pedwarn ("%q+#D does not refer to the unqualified "
5860                              "type, so it is not used for linkage",
5861                              TYPE_NAME (t));
5862                 }
5863             }
5864           else
5865             pedwarn ("non-local function %q#D uses local type %qT", decl, t);
5866         }
5867     }
5868
5869   TREE_PUBLIC (decl) = publicp;
5870   if (! publicp)
5871     {
5872       DECL_INTERFACE_KNOWN (decl) = 1;
5873       DECL_NOT_REALLY_EXTERN (decl) = 1;
5874     }
5875
5876   /* If the declaration was declared inline, mark it as such.  */
5877   if (inlinep)
5878     DECL_DECLARED_INLINE_P (decl) = 1;
5879   /* We inline functions that are explicitly declared inline, or, when
5880      the user explicitly asks us to, all functions.  */
5881   if (DECL_DECLARED_INLINE_P (decl)
5882       || (flag_inline_trees == 2 && !DECL_INLINE (decl) && funcdef_flag))
5883     DECL_INLINE (decl) = 1;
5884
5885   DECL_EXTERNAL (decl) = 1;
5886   if (quals && TREE_CODE (type) == FUNCTION_TYPE)
5887     {
5888       error ("%smember function %qD cannot have cv-qualifier",
5889              (ctype ? "static " : "non-"), decl);
5890       quals = TYPE_UNQUALIFIED;
5891     }
5892
5893   if (IDENTIFIER_OPNAME_P (DECL_NAME (decl)))
5894     grok_op_properties (decl, /*complain=*/true);
5895
5896   if (ctype && decl_function_context (decl))
5897     DECL_NO_STATIC_CHAIN (decl) = 1;
5898
5899   if (funcdef_flag)
5900     /* Make the init_value nonzero so pushdecl knows this is not
5901        tentative.  error_mark_node is replaced later with the BLOCK.  */
5902     DECL_INITIAL (decl) = error_mark_node;
5903
5904   if (TYPE_NOTHROW_P (type) || nothrow_libfn_p (decl))
5905     TREE_NOTHROW (decl) = 1;
5906
5907   /* Caller will do the rest of this.  */
5908   if (check < 0)
5909     return decl;
5910
5911   if (ctype != NULL_TREE)
5912     {
5913       if (sfk == sfk_constructor)
5914         DECL_CONSTRUCTOR_P (decl) = 1;
5915
5916       grokclassfn (ctype, decl, flags, quals);
5917     }
5918
5919   decl = check_explicit_specialization (orig_declarator, decl,
5920                                         template_count,
5921                                         2 * funcdef_flag +
5922                                         4 * (friendp != 0));
5923   if (decl == error_mark_node)
5924     return NULL_TREE;
5925
5926   if (attrlist)
5927     {
5928       cplus_decl_attributes (&decl, *attrlist, 0);
5929       *attrlist = NULL_TREE;
5930     }
5931
5932   if (ctype != NULL_TREE
5933       && (! TYPE_FOR_JAVA (ctype) || check_java_method (decl))
5934       && check)
5935     {
5936       tree old_decl;
5937
5938       old_decl = check_classfn (ctype, decl,
5939                                 (processing_template_decl
5940                                  > template_class_depth (ctype))
5941                                 ? current_template_parms
5942                                 : NULL_TREE);
5943       if (old_decl)
5944         {
5945           tree ok;
5946           tree pushed_scope;
5947
5948           if (TREE_CODE (old_decl) == TEMPLATE_DECL)
5949             /* Because grokfndecl is always supposed to return a
5950                FUNCTION_DECL, we pull out the DECL_TEMPLATE_RESULT
5951                here.  We depend on our callers to figure out that its
5952                really a template that's being returned.  */
5953             old_decl = DECL_TEMPLATE_RESULT (old_decl);
5954
5955           if (DECL_STATIC_FUNCTION_P (old_decl)
5956               && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE)
5957             /* Remove the `this' parm added by grokclassfn.
5958                XXX Isn't this done in start_function, too?  */
5959             revert_static_member_fn (decl);
5960           if (DECL_ARTIFICIAL (old_decl))
5961             error ("definition of implicitly-declared %qD", old_decl);
5962
5963           /* Since we've smashed OLD_DECL to its
5964              DECL_TEMPLATE_RESULT, we must do the same to DECL.  */
5965           if (TREE_CODE (decl) == TEMPLATE_DECL)
5966             decl = DECL_TEMPLATE_RESULT (decl);
5967
5968           /* Attempt to merge the declarations.  This can fail, in
5969              the case of some invalid specialization declarations.  */
5970           pushed_scope = push_scope (ctype);
5971           ok = duplicate_decls (decl, old_decl, friendp);
5972           if (pushed_scope)
5973             pop_scope (pushed_scope);
5974           if (!ok)
5975             {
5976               error ("no %q#D member function declared in class %qT",
5977                      decl, ctype);
5978               return NULL_TREE;
5979             }
5980           return old_decl;
5981         }
5982     }
5983
5984   if (DECL_CONSTRUCTOR_P (decl) && !grok_ctor_properties (ctype, decl))
5985     return NULL_TREE;
5986
5987   if (ctype == NULL_TREE || check)
5988     return decl;
5989
5990   if (virtualp)
5991     DECL_VIRTUAL_P (decl) = 1;
5992
5993   return decl;
5994 }
5995
5996 /* DECL is a VAR_DECL for a static data member.  Set flags to reflect
5997    the linkage that DECL will receive in the object file.  */
5998
5999 static void
6000 set_linkage_for_static_data_member (tree decl)
6001 {
6002   /* A static data member always has static storage duration and
6003      external linkage.  Note that static data members are forbidden in
6004      local classes -- the only situation in which a class has
6005      non-external linkage.  */
6006   TREE_PUBLIC (decl) = 1;
6007   TREE_STATIC (decl) = 1;
6008   /* For non-template classes, static data members are always put
6009      out in exactly those files where they are defined, just as
6010      with ordinary namespace-scope variables.  */
6011   if (!processing_template_decl)
6012     DECL_INTERFACE_KNOWN (decl) = 1;
6013 }
6014
6015 /* Create a VAR_DECL named NAME with the indicated TYPE.
6016
6017    If SCOPE is non-NULL, it is the class type or namespace containing
6018    the variable.  If SCOPE is NULL, the variable should is created in
6019    the innermost enclosings scope.  */
6020
6021 static tree
6022 grokvardecl (tree type,
6023              tree name,
6024              const cp_decl_specifier_seq *declspecs,
6025              int initialized,
6026              int constp,
6027              tree scope)
6028 {
6029   tree decl;
6030   tree explicit_scope;
6031
6032   gcc_assert (!name || TREE_CODE (name) == IDENTIFIER_NODE);
6033
6034   /* Compute the scope in which to place the variable, but remember
6035      whether or not that scope was explicitly specified by the user.   */
6036   explicit_scope = scope;
6037   if (!scope)
6038     {
6039       /* An explicit "extern" specifier indicates a namespace-scope
6040          variable.  */
6041       if (declspecs->storage_class == sc_extern)
6042         scope = current_namespace;
6043       else if (!at_function_scope_p ())
6044         scope = current_scope ();
6045     }
6046
6047   if (scope
6048       && (/* If the variable is a namespace-scope variable declared in a
6049              template, we need DECL_LANG_SPECIFIC.  */
6050           (TREE_CODE (scope) == NAMESPACE_DECL && processing_template_decl)
6051           /* Similarly for namespace-scope variables with language linkage
6052              other than C++.  */
6053           || (TREE_CODE (scope) == NAMESPACE_DECL
6054               && current_lang_name != lang_name_cplusplus)
6055           /* Similarly for static data members.  */
6056           || TYPE_P (scope)))
6057     decl = build_lang_decl (VAR_DECL, name, type);
6058   else
6059     decl = build_decl (VAR_DECL, name, type);
6060
6061   if (explicit_scope && TREE_CODE (explicit_scope) == NAMESPACE_DECL)
6062     set_decl_namespace (decl, explicit_scope, 0);
6063   else
6064     DECL_CONTEXT (decl) = scope;
6065
6066   if (declspecs->storage_class == sc_extern)
6067     {
6068       DECL_THIS_EXTERN (decl) = 1;
6069       DECL_EXTERNAL (decl) = !initialized;
6070     }
6071
6072   if (DECL_CLASS_SCOPE_P (decl))
6073     {
6074       set_linkage_for_static_data_member (decl);
6075       /* This function is only called with out-of-class definitions.  */
6076       DECL_EXTERNAL (decl) = 0;
6077       check_class_member_definition_namespace (decl);
6078     }
6079   /* At top level, either `static' or no s.c. makes a definition
6080      (perhaps tentative), and absence of `static' makes it public.  */
6081   else if (toplevel_bindings_p ())
6082     {
6083       TREE_PUBLIC (decl) = (declspecs->storage_class != sc_static
6084                             && (DECL_THIS_EXTERN (decl) || ! constp));
6085       TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
6086     }
6087   /* Not at top level, only `static' makes a static definition.  */
6088   else
6089     {
6090       TREE_STATIC (decl) = declspecs->storage_class == sc_static;
6091       TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
6092     }
6093
6094   if (declspecs->specs[(int)ds_thread])
6095     {
6096       if (targetm.have_tls)
6097         DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
6098       else
6099         /* A mere warning is sure to result in improper semantics
6100            at runtime.  Don't bother to allow this to compile.  */
6101         error ("thread-local storage not supported for this target");
6102     }
6103
6104   if (TREE_PUBLIC (decl))
6105     {
6106       /* [basic.link]: A name with no linkage (notably, the name of a class
6107          or enumeration declared in a local scope) shall not be used to
6108          declare an entity with linkage.
6109
6110          Only check this for public decls for now.  */
6111       tree t = no_linkage_check (TREE_TYPE (decl), /*relaxed_p=*/false);
6112       if (t)
6113         {
6114           if (TYPE_ANONYMOUS_P (t))
6115             {
6116               if (DECL_EXTERN_C_P (decl))
6117                 /* Allow this; it's pretty common in C.  */
6118                   ;
6119               else
6120                 {
6121                   /* DRs 132, 319 and 389 seem to indicate types with
6122                      no linkage can only be used to declare extern "C"
6123                      entities.  Since it's not always an error in the
6124                      ISO C++ 90 Standard, we only issue a warning.  */
6125                   warning (0, "non-local variable %q#D uses anonymous type",
6126                            decl);
6127                   if (DECL_ORIGINAL_TYPE (TYPE_NAME (t)))
6128                     warning (0, "%q+#D does not refer to the unqualified "
6129                              "type, so it is not used for linkage",
6130                              TYPE_NAME (t));
6131                 }
6132             }
6133           else
6134             warning (0, "non-local variable %q#D uses local type %qT", decl, t);
6135         }
6136     }
6137   else
6138     DECL_INTERFACE_KNOWN (decl) = 1;
6139
6140   return decl;
6141 }
6142
6143 /* Create and return a canonical pointer to member function type, for
6144    TYPE, which is a POINTER_TYPE to a METHOD_TYPE.  */
6145
6146 tree
6147 build_ptrmemfunc_type (tree type)
6148 {
6149   tree field, fields;
6150   tree t;
6151   tree unqualified_variant = NULL_TREE;
6152
6153   if (type == error_mark_node)
6154     return type;
6155
6156   /* If a canonical type already exists for this type, use it.  We use
6157      this method instead of type_hash_canon, because it only does a
6158      simple equality check on the list of field members.  */
6159
6160   if ((t = TYPE_GET_PTRMEMFUNC_TYPE (type)))
6161     return t;
6162
6163   /* Make sure that we always have the unqualified pointer-to-member
6164      type first.  */
6165   if (cp_type_quals (type) != TYPE_UNQUALIFIED)
6166     unqualified_variant
6167       = build_ptrmemfunc_type (TYPE_MAIN_VARIANT (type));
6168
6169   t = make_aggr_type (RECORD_TYPE);
6170   xref_basetypes (t, NULL_TREE);
6171
6172   /* Let the front-end know this is a pointer to member function...  */
6173   TYPE_PTRMEMFUNC_FLAG (t) = 1;
6174   /* ... and not really an aggregate.  */
6175   SET_IS_AGGR_TYPE (t, 0);
6176
6177   field = build_decl (FIELD_DECL, pfn_identifier, type);
6178   fields = field;
6179
6180   field = build_decl (FIELD_DECL, delta_identifier, delta_type_node);
6181   TREE_CHAIN (field) = fields;
6182   fields = field;
6183
6184   finish_builtin_struct (t, "__ptrmemfunc_type", fields, ptr_type_node);
6185
6186   /* Zap out the name so that the back-end will give us the debugging
6187      information for this anonymous RECORD_TYPE.  */
6188   TYPE_NAME (t) = NULL_TREE;
6189
6190   /* If this is not the unqualified form of this pointer-to-member
6191      type, set the TYPE_MAIN_VARIANT for this type to be the
6192      unqualified type.  Since they are actually RECORD_TYPEs that are
6193      not variants of each other, we must do this manually.  */
6194   if (cp_type_quals (type) != TYPE_UNQUALIFIED)
6195     {
6196       t = build_qualified_type (t, cp_type_quals (type));
6197       TYPE_MAIN_VARIANT (t) = unqualified_variant;
6198       TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (unqualified_variant);
6199       TYPE_NEXT_VARIANT (unqualified_variant) = t;
6200     }
6201
6202   /* Cache this pointer-to-member type so that we can find it again
6203      later.  */
6204   TYPE_SET_PTRMEMFUNC_TYPE (type, t);
6205
6206   return t;
6207 }
6208
6209 /* Create and return a pointer to data member type.  */
6210
6211 tree
6212 build_ptrmem_type (tree class_type, tree member_type)
6213 {
6214   if (TREE_CODE (member_type) == METHOD_TYPE)
6215     {
6216       tree arg_types;
6217
6218       arg_types = TYPE_ARG_TYPES (member_type);
6219       class_type = (cp_build_qualified_type
6220                     (class_type,
6221                      cp_type_quals (TREE_TYPE (TREE_VALUE (arg_types)))));
6222       member_type
6223         = build_method_type_directly (class_type,
6224                                       TREE_TYPE (member_type),
6225                                       TREE_CHAIN (arg_types));
6226       return build_ptrmemfunc_type (build_pointer_type (member_type));
6227     }
6228   else
6229     {
6230       gcc_assert (TREE_CODE (member_type) != FUNCTION_TYPE);
6231       return build_offset_type (class_type, member_type);
6232     }
6233 }
6234
6235 /* DECL is a VAR_DECL defined in-class, whose TYPE is also given.
6236    Check to see that the definition is valid.  Issue appropriate error
6237    messages.  Return 1 if the definition is particularly bad, or 0
6238    otherwise.  */
6239
6240 int
6241 check_static_variable_definition (tree decl, tree type)
6242 {
6243   /* Motion 10 at San Diego: If a static const integral data member is
6244      initialized with an integral constant expression, the initializer
6245      may appear either in the declaration (within the class), or in
6246      the definition, but not both.  If it appears in the class, the
6247      member is a member constant.  The file-scope definition is always
6248      required.  */
6249   if (!ARITHMETIC_TYPE_P (type) && TREE_CODE (type) != ENUMERAL_TYPE)
6250     {
6251       error ("invalid in-class initialization of static data member "
6252              "of non-integral type %qT",
6253              type);
6254       /* If we just return the declaration, crashes will sometimes
6255          occur.  We therefore return void_type_node, as if this were a
6256          friend declaration, to cause callers to completely ignore
6257          this declaration.  */
6258       return 1;
6259     }
6260   else if (!CP_TYPE_CONST_P (type))
6261     error ("ISO C++ forbids in-class initialization of non-const "
6262            "static member %qD",
6263            decl);
6264   else if (pedantic && !INTEGRAL_TYPE_P (type))
6265     pedwarn ("ISO C++ forbids initialization of member constant "
6266              "%qD of non-integral type %qT", decl, type);
6267
6268   return 0;
6269 }
6270
6271 /* Given the SIZE (i.e., number of elements) in an array, compute an
6272    appropriate index type for the array.  If non-NULL, NAME is the
6273    name of the thing being declared.  */
6274
6275 tree
6276 compute_array_index_type (tree name, tree size)
6277 {
6278   tree type = TREE_TYPE (size);
6279   tree itype;
6280
6281   /* The array bound must be an integer type.  */
6282   if (!dependent_type_p (type) && !INTEGRAL_TYPE_P (type))
6283     {
6284       if (name)
6285         error ("size of array %qD has non-integral type %qT", name, type);
6286       else
6287         error ("size of array has non-integral type %qT", type);
6288       size = integer_one_node;
6289       type = TREE_TYPE (size);
6290     }
6291
6292   if (abi_version_at_least (2)
6293       /* We should only handle value dependent expressions specially.  */
6294       ? value_dependent_expression_p (size)
6295       /* But for abi-1, we handled all instances in templates. This
6296          effects the manglings produced.  */
6297       : processing_template_decl)
6298     return build_index_type (build_min (MINUS_EXPR, sizetype,
6299                                         size, integer_one_node));
6300
6301   /* The size might be the result of a cast.  */
6302   STRIP_TYPE_NOPS (size);
6303
6304   /* It might be a const variable or enumeration constant.  */
6305   size = integral_constant_value (size);
6306
6307   /* Normally, the array-bound will be a constant.  */
6308   if (TREE_CODE (size) == INTEGER_CST)
6309     {
6310       /* Check to see if the array bound overflowed.  Make that an
6311          error, no matter how generous we're being.  */
6312       int old_flag_pedantic_errors = flag_pedantic_errors;
6313       int old_pedantic = pedantic;
6314       pedantic = flag_pedantic_errors = 1;
6315       constant_expression_warning (size);
6316       pedantic = old_pedantic;
6317       flag_pedantic_errors = old_flag_pedantic_errors;
6318
6319       /* An array must have a positive number of elements.  */
6320       if (INT_CST_LT (size, integer_zero_node))
6321         {
6322           if (name)
6323             error ("size of array %qD is negative", name);
6324           else
6325             error ("size of array is negative");
6326           size = integer_one_node;
6327         }
6328       /* As an extension we allow zero-sized arrays.  We always allow
6329          them in system headers because glibc uses them.  */
6330       else if (integer_zerop (size) && pedantic && !in_system_header)
6331         {
6332           if (name)
6333             pedwarn ("ISO C++ forbids zero-size array %qD", name);
6334           else
6335             pedwarn ("ISO C++ forbids zero-size array");
6336         }
6337     }
6338   else if (TREE_CONSTANT (size))
6339     {
6340       /* `(int) &fn' is not a valid array bound.  */
6341       if (name)
6342         error ("size of array %qD is not an integral constant-expression",
6343                name);
6344       else
6345         error ("size of array is not an integral constant-expression");
6346     }
6347   else if (pedantic)
6348     {
6349       if (name)
6350         pedwarn ("ISO C++ forbids variable-size array %qD", name);
6351       else
6352         pedwarn ("ISO C++ forbids variable-size array");
6353     }
6354
6355   if (processing_template_decl && !TREE_CONSTANT (size))
6356     /* A variable sized array.  */
6357     itype = build_min (MINUS_EXPR, sizetype, size, integer_one_node);
6358   else
6359     {
6360       HOST_WIDE_INT saved_processing_template_decl;
6361
6362       /* Compute the index of the largest element in the array.  It is
6363          one less than the number of elements in the array.  We save
6364          and restore PROCESSING_TEMPLATE_DECL so that computations in
6365          cp_build_binary_op will be appropriately folded.  */
6366       saved_processing_template_decl = processing_template_decl;
6367       processing_template_decl = 0;
6368       itype = cp_build_binary_op (MINUS_EXPR,
6369                                   cp_convert (ssizetype, size),
6370                                   cp_convert (ssizetype, integer_one_node));
6371       itype = fold (itype);
6372       processing_template_decl = saved_processing_template_decl;
6373
6374       if (!TREE_CONSTANT (itype))
6375         /* A variable sized array.  */
6376         itype = variable_size (itype);
6377       /* Make sure that there was no overflow when creating to a signed
6378          index type.  (For example, on a 32-bit machine, an array with
6379          size 2^32 - 1 is too big.)  */
6380       else if (TREE_CODE (itype) == INTEGER_CST
6381                && TREE_OVERFLOW (itype))
6382         {
6383           error ("overflow in array dimension");
6384           TREE_OVERFLOW (itype) = 0;
6385         }
6386     }
6387
6388   /* Create and return the appropriate index type.  */
6389   return build_index_type (itype);
6390 }
6391
6392 /* Returns the scope (if any) in which the entity declared by
6393    DECLARATOR will be located.  If the entity was declared with an
6394    unqualified name, NULL_TREE is returned.  */
6395
6396 tree
6397 get_scope_of_declarator (const cp_declarator *declarator)
6398 {
6399   while (declarator && declarator->kind != cdk_id)
6400     declarator = declarator->declarator;
6401
6402   /* If the declarator-id is a SCOPE_REF, the scope in which the
6403      declaration occurs is the first operand.  */
6404   if (declarator
6405       && declarator->u.id.qualifying_scope)
6406     return declarator->u.id.qualifying_scope;
6407
6408   /* Otherwise, the declarator is not a qualified name; the entity will
6409      be declared in the current scope.  */
6410   return NULL_TREE;
6411 }
6412
6413 /* Returns an ARRAY_TYPE for an array with SIZE elements of the
6414    indicated TYPE.  If non-NULL, NAME is the NAME of the declaration
6415    with this type.  */
6416
6417 static tree
6418 create_array_type_for_decl (tree name, tree type, tree size)
6419 {
6420   tree itype = NULL_TREE;
6421   const char* error_msg;
6422
6423   /* If things have already gone awry, bail now.  */
6424   if (type == error_mark_node || size == error_mark_node)
6425     return error_mark_node;
6426
6427   /* Assume that everything will go OK.  */
6428   error_msg = NULL;
6429
6430   /* There are some types which cannot be array elements.  */
6431   switch (TREE_CODE (type))
6432     {
6433     case VOID_TYPE:
6434       error_msg = "array of void";
6435       break;
6436
6437     case FUNCTION_TYPE:
6438       error_msg = "array of functions";
6439       break;
6440
6441     case REFERENCE_TYPE:
6442       error_msg = "array of references";
6443       break;
6444
6445     case METHOD_TYPE:
6446       error_msg = "array of function members";
6447       break;
6448
6449     default:
6450       break;
6451     }
6452
6453   /* If something went wrong, issue an error-message and return.  */
6454   if (error_msg)
6455     {
6456       if (name)
6457         error ("declaration of %qD as %s", name, error_msg);
6458       else
6459         error ("creating %s", error_msg);
6460
6461       return error_mark_node;
6462     }
6463
6464   /* [dcl.array]
6465
6466      The constant expressions that specify the bounds of the arrays
6467      can be omitted only for the first member of the sequence.  */
6468   if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
6469     {
6470       if (name)
6471         error ("declaration of %qD as multidimensional array must "
6472                "have bounds for all dimensions except the first",
6473                name);
6474       else
6475         error ("multidimensional array must have bounds for all "
6476                "dimensions except the first");
6477
6478       return error_mark_node;
6479     }
6480
6481   /* Figure out the index type for the array.  */
6482   if (size)
6483     itype = compute_array_index_type (name, size);
6484
6485   /* [dcl.array]
6486      T is called the array element type; this type shall not be [...] an
6487      abstract class type.  */
6488   abstract_virtuals_error (name, type);
6489
6490   return build_cplus_array_type (type, itype);
6491 }
6492
6493 /* Check that it's OK to declare a function with the indicated TYPE.
6494    SFK indicates the kind of special function (if any) that this
6495    function is.  OPTYPE is the type given in a conversion operator
6496    declaration, or the class type for a constructor/destructor.
6497    Returns the actual return type of the function; that
6498    may be different than TYPE if an error occurs, or for certain
6499    special functions.  */
6500
6501 static tree
6502 check_special_function_return_type (special_function_kind sfk,
6503                                     tree type,
6504                                     tree optype)
6505 {
6506   switch (sfk)
6507     {
6508     case sfk_constructor:
6509       if (type)
6510         error ("return type specification for constructor invalid");
6511
6512       if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
6513         type = build_pointer_type (optype);
6514       else
6515         type = void_type_node;
6516       break;
6517
6518     case sfk_destructor:
6519       if (type)
6520         error ("return type specification for destructor invalid");
6521       /* We can't use the proper return type here because we run into
6522          problems with ambiguous bases and covariant returns.
6523          Java classes are left unchanged because (void *) isn't a valid
6524          Java type, and we don't want to change the Java ABI.  */
6525       if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (optype))
6526         type = build_pointer_type (void_type_node);
6527       else
6528         type = void_type_node;
6529       break;
6530
6531     case sfk_conversion:
6532       if (type && !same_type_p (type, optype))
6533         error ("operator %qT declared to return %qT", optype, type);
6534       else if (type)
6535         pedwarn ("return type specified for %<operator %T%>",  optype);
6536       type = optype;
6537       break;
6538
6539     default:
6540       gcc_unreachable ();
6541     }
6542
6543   return type;
6544 }
6545
6546 /* A variable or data member (whose unqualified name is IDENTIFIER)
6547    has been declared with the indicated TYPE.  If the TYPE is not
6548    acceptable, issue an error message and return a type to use for
6549    error-recovery purposes.  */
6550
6551 tree
6552 check_var_type (tree identifier, tree type)
6553 {
6554   if (VOID_TYPE_P (type))
6555     {
6556       if (!identifier)
6557         error ("unnamed variable or field declared void");
6558       else if (TREE_CODE (identifier) == IDENTIFIER_NODE)
6559         {
6560           gcc_assert (!IDENTIFIER_OPNAME_P (identifier));
6561           error ("variable or field %qE declared void", identifier);
6562         }
6563       else
6564         error ("variable or field declared void");
6565       type = integer_type_node;
6566     }
6567
6568   return type;
6569 }
6570
6571 /* Given declspecs and a declarator (abstract or otherwise), determine
6572    the name and type of the object declared and construct a DECL node
6573    for it.
6574
6575    DECLSPECS is a chain of tree_list nodes whose value fields
6576     are the storage classes and type specifiers.
6577
6578    DECL_CONTEXT says which syntactic context this declaration is in:
6579      NORMAL for most contexts.  Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
6580      FUNCDEF for a function definition.  Like NORMAL but a few different
6581       error messages in each case.  Return value may be zero meaning
6582       this definition is too screwy to try to parse.
6583      MEMFUNCDEF for a function definition.  Like FUNCDEF but prepares to
6584       handle member functions (which have FIELD context).
6585       Return value may be zero meaning this definition is too screwy to
6586       try to parse.
6587      PARM for a parameter declaration (either within a function prototype
6588       or before a function body).  Make a PARM_DECL, or return void_type_node.
6589      CATCHPARM for a parameter declaration before a catch clause.
6590      TYPENAME if for a typename (in a cast or sizeof).
6591       Don't make a DECL node; just return the ..._TYPE node.
6592      FIELD for a struct or union field; make a FIELD_DECL.
6593      BITFIELD for a field with specified width.
6594    INITIALIZED is 1 if the decl has an initializer.
6595
6596    ATTRLIST is a pointer to the list of attributes, which may be NULL
6597    if there are none; *ATTRLIST may be modified if attributes from inside
6598    the declarator should be applied to the declaration.
6599
6600    When this function is called, scoping variables (such as
6601    CURRENT_CLASS_TYPE) should reflect the scope in which the
6602    declaration occurs, not the scope in which the new declaration will
6603    be placed.  For example, on:
6604
6605      void S::f() { ... }
6606
6607    when grokdeclarator is called for `S::f', the CURRENT_CLASS_TYPE
6608    should not be `S'.  */
6609
6610 tree
6611 grokdeclarator (const cp_declarator *declarator,
6612                 const cp_decl_specifier_seq *declspecs,
6613                 enum decl_context decl_context,
6614                 int initialized,
6615                 tree* attrlist)
6616 {
6617   tree type = NULL_TREE;
6618   int longlong = 0;
6619   int type_quals;
6620   int virtualp, explicitp, friendp, inlinep, staticp;
6621   int explicit_int = 0;
6622   int explicit_char = 0;
6623   int defaulted_int = 0;
6624   tree dependant_name = NULL_TREE;
6625
6626   tree typedef_decl = NULL_TREE;
6627   const char *name = NULL;
6628   tree typedef_type = NULL_TREE;
6629   /* True if this declarator is a function definition.  */
6630   bool funcdef_flag = false;
6631   cp_declarator_kind innermost_code = cdk_error;
6632   int bitfield = 0;
6633 #if 0
6634   /* See the code below that used this.  */
6635   tree decl_attr = NULL_TREE;
6636 #endif
6637
6638   /* Keep track of what sort of function is being processed
6639      so that we can warn about default return values, or explicit
6640      return values which do not match prescribed defaults.  */
6641   special_function_kind sfk = sfk_none;
6642
6643   tree dname = NULL_TREE;
6644   tree ctor_return_type = NULL_TREE;
6645   enum overload_flags flags = NO_SPECIAL;
6646   cp_cv_quals quals = TYPE_UNQUALIFIED;
6647   tree raises = NULL_TREE;
6648   int template_count = 0;
6649   tree returned_attrs = NULL_TREE;
6650   tree parms = NULL_TREE;
6651   const cp_declarator *id_declarator;
6652   /* The unqualified name of the declarator; either an
6653      IDENTIFIER_NODE, BIT_NOT_EXPR, or TEMPLATE_ID_EXPR.  */
6654   tree unqualified_id;
6655   /* The class type, if any, in which this entity is located,
6656      or NULL_TREE if none.  Note that this value may be different from
6657      the current class type; for example if an attempt is made to declare
6658      "A::f" inside "B", this value will be "A".  */
6659   tree ctype = current_class_type;
6660   /* The NAMESPACE_DECL for the namespace in which this entity is
6661      located.  If an unqualified name is used to declare the entity,
6662      this value will be NULL_TREE, even if the entity is located at
6663      namespace scope.  */
6664   tree in_namespace = NULL_TREE;
6665   cp_decl_spec ds;
6666   cp_storage_class storage_class;
6667   bool unsigned_p, signed_p, short_p, long_p, thread_p;
6668   bool type_was_error_mark_node = false;
6669
6670   signed_p = declspecs->specs[(int)ds_signed];
6671   unsigned_p = declspecs->specs[(int)ds_unsigned];
6672   short_p = declspecs->specs[(int)ds_short];
6673   long_p = declspecs->specs[(int)ds_long];
6674   thread_p = declspecs->specs[(int)ds_thread];
6675
6676   if (decl_context == FUNCDEF)
6677     funcdef_flag = true, decl_context = NORMAL;
6678   else if (decl_context == MEMFUNCDEF)
6679     funcdef_flag = true, decl_context = FIELD;
6680   else if (decl_context == BITFIELD)
6681     bitfield = 1, decl_context = FIELD;
6682
6683   /* Look inside a declarator for the name being declared
6684      and get it as a string, for an error message.  */
6685   for (id_declarator = declarator;
6686        id_declarator;
6687        id_declarator = id_declarator->declarator)
6688     {
6689       if (id_declarator->kind != cdk_id)
6690         innermost_code = id_declarator->kind;
6691
6692       switch (id_declarator->kind)
6693         {
6694         case cdk_function:
6695           if (id_declarator->declarator
6696               && id_declarator->declarator->kind == cdk_id)
6697             {
6698               sfk = id_declarator->declarator->u.id.sfk;
6699               if (sfk == sfk_destructor)
6700                 flags = DTOR_FLAG;
6701             }
6702           break;
6703
6704         case cdk_id:
6705           {
6706             tree qualifying_scope = id_declarator->u.id.qualifying_scope;
6707             tree decl = id_declarator->u.id.unqualified_name;
6708             if (!decl)
6709               break;
6710             if (qualifying_scope)
6711               {
6712                 if (TYPE_P (qualifying_scope))
6713                   {
6714                     ctype = qualifying_scope;
6715                     if (innermost_code != cdk_function
6716                         && current_class_type
6717                         && !UNIQUELY_DERIVED_FROM_P (ctype,
6718                                                      current_class_type))
6719                       {
6720                         error ("type %qT is not derived from type %qT",
6721                                ctype, current_class_type);
6722                         return error_mark_node;
6723                       }
6724                   }
6725                 else if (TREE_CODE (qualifying_scope) == NAMESPACE_DECL)
6726                   in_namespace = qualifying_scope;
6727               }
6728             switch (TREE_CODE (decl))
6729               {
6730               case BIT_NOT_EXPR:
6731                 {
6732                   tree type;
6733
6734                   if (innermost_code != cdk_function)
6735                     {
6736                       error ("declaration of %qD as non-function", decl);
6737                       return error_mark_node;
6738                     }
6739                   else if (!qualifying_scope
6740                            && !(current_class_type && at_class_scope_p ()))
6741                     {
6742                       error ("declaration of %qD as non-member", decl);
6743                       return error_mark_node;
6744                     }
6745
6746                   type = TREE_OPERAND (decl, 0);
6747                   name = IDENTIFIER_POINTER (constructor_name (type));
6748                 }
6749                 break;
6750
6751               case TEMPLATE_ID_EXPR:
6752                 {
6753                   tree fns = TREE_OPERAND (decl, 0);
6754
6755                   dname = fns;
6756                   if (TREE_CODE (dname) == COMPONENT_REF)
6757                     dname = TREE_OPERAND (dname, 1);
6758                   if (TREE_CODE (dname) != IDENTIFIER_NODE)
6759                     {
6760                       gcc_assert (is_overloaded_fn (dname));
6761                       dname = DECL_NAME (get_first_fn (dname));
6762                     }
6763                 }
6764                 /* Fall through.  */
6765
6766               case IDENTIFIER_NODE:
6767                 if (TREE_CODE (decl) == IDENTIFIER_NODE)
6768                   dname = decl;
6769
6770                 if (C_IS_RESERVED_WORD (dname))
6771                   {
6772                     error ("declarator-id missing; using reserved word %qD",
6773                            dname);
6774                     name = IDENTIFIER_POINTER (dname);
6775                   }
6776                 else if (!IDENTIFIER_TYPENAME_P (dname))
6777                   name = IDENTIFIER_POINTER (dname);
6778                 else
6779                   {
6780                     gcc_assert (flags == NO_SPECIAL);
6781                     flags = TYPENAME_FLAG;
6782                     ctor_return_type = TREE_TYPE (dname);
6783                     sfk = sfk_conversion;
6784                     if (is_typename_at_global_scope (dname))
6785                       name = IDENTIFIER_POINTER (dname);
6786                     else
6787                       name = "<invalid operator>";
6788                   }
6789                 break;
6790
6791               default:
6792                 gcc_unreachable ();
6793               }
6794             break;
6795
6796           case cdk_array:
6797           case cdk_pointer:
6798           case cdk_reference:
6799           case cdk_ptrmem:
6800             break;
6801
6802           case cdk_error:
6803             break;
6804
6805           default:
6806             gcc_unreachable ();
6807           }
6808         }
6809       if (id_declarator->kind == cdk_id)
6810         break;
6811     }
6812
6813   /* A function definition's declarator must have the form of
6814      a function declarator.  */
6815
6816   if (funcdef_flag && innermost_code != cdk_function)
6817     return 0;
6818
6819   if (((dname && IDENTIFIER_OPNAME_P (dname)) || flags == TYPENAME_FLAG)
6820       && innermost_code != cdk_function
6821       && ! (ctype && !declspecs->any_specifiers_p))
6822     {
6823       error ("declaration of %qD as non-function", dname);
6824       return error_mark_node;
6825     }
6826
6827   /* Anything declared one level down from the top level
6828      must be one of the parameters of a function
6829      (because the body is at least two levels down).  */
6830
6831   /* This heuristic cannot be applied to C++ nodes! Fixed, however,
6832      by not allowing C++ class definitions to specify their parameters
6833      with xdecls (must be spec.d in the parmlist).
6834
6835      Since we now wait to push a class scope until we are sure that
6836      we are in a legitimate method context, we must set oldcname
6837      explicitly (since current_class_name is not yet alive).
6838
6839      We also want to avoid calling this a PARM if it is in a namespace.  */
6840
6841   if (decl_context == NORMAL && !toplevel_bindings_p ())
6842     {
6843       struct cp_binding_level *b = current_binding_level;
6844       current_binding_level = b->level_chain;
6845       if (current_binding_level != 0 && toplevel_bindings_p ())
6846         decl_context = PARM;
6847       current_binding_level = b;
6848     }
6849
6850   if (name == NULL)
6851     name = decl_context == PARM ? "parameter" : "type name";
6852
6853   /* If there were multiple types specified in the decl-specifier-seq,
6854      issue an error message.  */
6855   if (declspecs->multiple_types_p)
6856     error ("two or more data types in declaration of %qs", name);
6857   /* Extract the basic type from the decl-specifier-seq.  */
6858   type = declspecs->type;
6859   if (type == error_mark_node)
6860     {
6861       type = NULL_TREE;
6862       type_was_error_mark_node = true;
6863     }
6864   /* If the entire declaration is itself tagged as deprecated then
6865      suppress reports of deprecated items.  */
6866   if (type && TREE_DEPRECATED (type)
6867       && deprecated_state != DEPRECATED_SUPPRESS)
6868     warn_deprecated_use (type);
6869   if (type && TREE_CODE (type) == TYPE_DECL)
6870     {
6871       typedef_decl = type;
6872       type = TREE_TYPE (typedef_decl);
6873     }
6874   /* No type at all: default to `int', and set DEFAULTED_INT
6875      because it was not a user-defined typedef.  */
6876   if (type == NULL_TREE && (signed_p || unsigned_p || long_p || short_p))
6877     {
6878       /* These imply 'int'.  */
6879       type = integer_type_node;
6880       defaulted_int = 1;
6881     }
6882   /* Gather flags.  */
6883   explicit_int = declspecs->explicit_int_p;
6884   explicit_char = declspecs->explicit_char_p;
6885
6886   /* Check for repeated decl-specifiers.  */
6887   for (ds = ds_first; ds != ds_last; ++ds)
6888     {
6889       unsigned count = declspecs->specs[(int)ds];
6890       if (count < 2)
6891         continue;
6892       /* The "long" specifier is a special case because of
6893          "long long".  */
6894       if (ds == ds_long)
6895         {
6896           if (count > 2)
6897             error ("%<long long long%> is too long for GCC");
6898           else if (pedantic && !in_system_header && warn_long_long)
6899             pedwarn ("ISO C++ does not support %<long long%>");
6900           else
6901             longlong = 1;
6902         }
6903       else if (declspecs->specs[(int)ds] > 1)
6904         {
6905           static const char *const decl_spec_names[] = {
6906             "signed",
6907             "unsigned",
6908             "short",
6909             "long",
6910             "const",
6911             "volatile",
6912             "restrict",
6913             "inline",
6914             "virtual",
6915             "explicit",
6916             "friend",
6917             "typedef",
6918             "__complex",
6919             "__thread"
6920           };
6921           error ("duplicate %qs", decl_spec_names[(int)ds]);
6922         }
6923     }
6924
6925 #if 0
6926   /* See the code below that used this.  */
6927   if (typedef_decl)
6928     decl_attr = DECL_ATTRIBUTES (typedef_decl);
6929 #endif
6930   typedef_type = type;
6931
6932
6933   if (sfk != sfk_conversion)
6934     ctor_return_type = ctype;
6935
6936   if (sfk != sfk_none)
6937     type = check_special_function_return_type (sfk, type,
6938                                                ctor_return_type);
6939   else if (type == NULL_TREE)
6940     {
6941       int is_main;
6942
6943       explicit_int = -1;
6944
6945       /* We handle `main' specially here, because 'main () { }' is so
6946          common.  With no options, it is allowed.  With -Wreturn-type,
6947          it is a warning.  It is only an error with -pedantic-errors.  */
6948       is_main = (funcdef_flag
6949                  && dname && MAIN_NAME_P (dname)
6950                  && ctype == NULL_TREE
6951                  && in_namespace == NULL_TREE
6952                  && current_namespace == global_namespace);
6953
6954       if (type_was_error_mark_node)
6955         /* We've already issued an error, don't complain more.  */;
6956       else if (in_system_header || flag_ms_extensions)
6957         /* Allow it, sigh.  */;
6958       else if (pedantic || ! is_main)
6959         pedwarn ("ISO C++ forbids declaration of %qs with no type", name);
6960       else if (warn_return_type)
6961         warning (0, "ISO C++ forbids declaration of %qs with no type", name);
6962
6963       type = integer_type_node;
6964     }
6965
6966   ctype = NULL_TREE;
6967
6968   /* Now process the modifiers that were specified
6969      and check for invalid combinations.  */
6970
6971   /* Long double is a special combination.  */
6972   if (long_p && TYPE_MAIN_VARIANT (type) == double_type_node)
6973     {
6974       long_p = false;
6975       type = build_qualified_type (long_double_type_node,
6976                                    cp_type_quals (type));
6977     }
6978
6979   /* Check all other uses of type modifiers.  */
6980
6981   if (unsigned_p || signed_p || long_p || short_p)
6982     {
6983       int ok = 0;
6984
6985       if (TREE_CODE (type) == REAL_TYPE)
6986         error ("short, signed or unsigned invalid for %qs", name);
6987       else if (TREE_CODE (type) != INTEGER_TYPE)
6988         error ("long, short, signed or unsigned invalid for %qs", name);
6989       else if (long_p && short_p)
6990         error ("long and short specified together for %qs", name);
6991       else if ((long_p || short_p) && explicit_char)
6992         error ("long or short specified with char for %qs", name);
6993       else if ((long_p|| short_p) && TREE_CODE (type) == REAL_TYPE)
6994         error ("long or short specified with floating type for %qs", name);
6995       else if (signed_p && unsigned_p)
6996         error ("signed and unsigned given together for %qs", name);
6997       else
6998         {
6999           ok = 1;
7000           if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
7001             {
7002               pedwarn ("long, short, signed or unsigned used invalidly for %qs",
7003                        name);
7004               if (flag_pedantic_errors)
7005                 ok = 0;
7006             }
7007         }
7008
7009       /* Discard the type modifiers if they are invalid.  */
7010       if (! ok)
7011         {
7012           unsigned_p = false;
7013           signed_p = false;
7014           long_p = false;
7015           short_p = false;
7016           longlong = 0;
7017         }
7018     }
7019
7020   /* Decide whether an integer type is signed or not.
7021      Optionally treat bitfields as signed by default.  */
7022   if (unsigned_p
7023       /* [class.bit]
7024
7025          It is implementation-defined whether a plain (neither
7026          explicitly signed or unsigned) char, short, int, or long
7027          bit-field is signed or unsigned.
7028
7029          Naturally, we extend this to long long as well.  Note that
7030          this does not include wchar_t.  */
7031       || (bitfield && !flag_signed_bitfields
7032           && !signed_p
7033           /* A typedef for plain `int' without `signed' can be
7034              controlled just like plain `int', but a typedef for
7035              `signed int' cannot be so controlled.  */
7036           && !(typedef_decl
7037                && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
7038           && (TREE_CODE (type) == INTEGER_TYPE
7039               || TREE_CODE (type) == CHAR_TYPE)
7040           && !same_type_p (TYPE_MAIN_VARIANT (type), wchar_type_node)))
7041     {
7042       if (longlong)
7043         type = long_long_unsigned_type_node;
7044       else if (long_p)
7045         type = long_unsigned_type_node;
7046       else if (short_p)
7047         type = short_unsigned_type_node;
7048       else if (type == char_type_node)
7049         type = unsigned_char_type_node;
7050       else if (typedef_decl)
7051         type = c_common_unsigned_type (type);
7052       else
7053         type = unsigned_type_node;
7054     }
7055   else if (signed_p && type == char_type_node)
7056     type = signed_char_type_node;
7057   else if (longlong)
7058     type = long_long_integer_type_node;
7059   else if (long_p)
7060     type = long_integer_type_node;
7061   else if (short_p)
7062     type = short_integer_type_node;
7063
7064   if (declspecs->specs[(int)ds_complex])
7065     {
7066       if (TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
7067         error ("complex invalid for %qs", name);
7068       /* If we just have "complex", it is equivalent to
7069          "complex double", but if any modifiers at all are specified it is
7070          the complex form of TYPE.  E.g, "complex short" is
7071          "complex short int".  */
7072
7073       else if (defaulted_int && ! longlong
7074                && ! (long_p || short_p || signed_p || unsigned_p))
7075         type = complex_double_type_node;
7076       else if (type == integer_type_node)
7077         type = complex_integer_type_node;
7078       else if (type == float_type_node)
7079         type = complex_float_type_node;
7080       else if (type == double_type_node)
7081         type = complex_double_type_node;
7082       else if (type == long_double_type_node)
7083         type = complex_long_double_type_node;
7084       else
7085         type = build_complex_type (type);
7086     }
7087
7088   type_quals = TYPE_UNQUALIFIED;
7089   if (declspecs->specs[(int)ds_const])
7090     type_quals |= TYPE_QUAL_CONST;
7091   if (declspecs->specs[(int)ds_volatile])
7092     type_quals |= TYPE_QUAL_VOLATILE;
7093   if (declspecs->specs[(int)ds_restrict])
7094     type_quals |= TYPE_QUAL_RESTRICT;
7095   if (sfk == sfk_conversion && type_quals != TYPE_UNQUALIFIED)
7096     error ("qualifiers are not allowed on declaration of %<operator %T%>",
7097            ctor_return_type);
7098
7099   if (TREE_CODE (type) == FUNCTION_TYPE
7100       && type_quals != TYPE_UNQUALIFIED)
7101     {
7102       /* This was an error in C++98 (cv-qualifiers cannot be added to
7103          a function type), but DR 295 makes the code well-formed by
7104          dropping the extra qualifiers. */
7105       if (pedantic)
7106         {
7107           tree bad_type = build_qualified_type (type, type_quals);
7108           pedwarn ("ignoring %qV qualifiers added to function type %qT",
7109                    bad_type, type);
7110         }
7111       type_quals = TYPE_UNQUALIFIED;
7112     }
7113   type_quals |= cp_type_quals (type);
7114   type = cp_build_qualified_type_real
7115     (type, type_quals, ((typedef_decl && !DECL_ARTIFICIAL (typedef_decl)
7116                          ? tf_ignore_bad_quals : 0) | tf_error | tf_warning));
7117   /* We might have ignored or rejected some of the qualifiers.  */
7118   type_quals = cp_type_quals (type);
7119
7120   staticp = 0;
7121   inlinep = !! declspecs->specs[(int)ds_inline];
7122   virtualp = !! declspecs->specs[(int)ds_virtual];
7123   explicitp = !! declspecs->specs[(int)ds_explicit];
7124
7125   storage_class = declspecs->storage_class;
7126   if (storage_class == sc_static)
7127     staticp = 1 + (decl_context == FIELD);
7128
7129   if (virtualp && staticp == 2)
7130     {
7131       error ("member %qD cannot be declared both virtual and static", dname);
7132       staticp = 0;
7133     }
7134   friendp = !! declspecs->specs[(int)ds_friend];
7135
7136   if (dependant_name && !friendp)
7137     {
7138       error ("%<%T::%D%> is not a valid declarator", ctype, dependant_name);
7139       return void_type_node;
7140     }
7141
7142   /* Issue errors about use of storage classes for parameters.  */
7143   if (decl_context == PARM)
7144     {
7145       if (declspecs->specs[(int)ds_typedef])
7146         error ("typedef declaration invalid in parameter declaration");
7147       else if (storage_class == sc_static
7148                || storage_class == sc_extern
7149                || thread_p)
7150         error ("storage class specifiers invalid in parameter declarations");
7151     }
7152
7153   /* Give error if `virtual' is used outside of class declaration.  */
7154   if (virtualp
7155       && (current_class_name == NULL_TREE || decl_context != FIELD))
7156     {
7157       error ("virtual outside class declaration");
7158       virtualp = 0;
7159     }
7160
7161   /* Static anonymous unions are dealt with here.  */
7162   if (staticp && decl_context == TYPENAME
7163       && declspecs->type
7164       && ANON_AGGR_TYPE_P (declspecs->type))
7165     decl_context = FIELD;
7166
7167   /* Warn about storage classes that are invalid for certain
7168      kinds of declarations (parameters, typenames, etc.).  */
7169   if (declspecs->multiple_storage_classes_p)
7170     {
7171       error ("multiple storage classes in declaration of %qs", name);
7172       storage_class = sc_none;
7173     }
7174   else if (thread_p
7175            && ((storage_class
7176                 && storage_class != sc_extern
7177                 && storage_class != sc_static)
7178                || declspecs->specs[(int)ds_typedef]))
7179     {
7180       error ("multiple storage classes in declaration of %qs", name);
7181       thread_p = false;
7182     }
7183   else if (decl_context != NORMAL
7184            && ((storage_class != sc_none
7185                 && storage_class != sc_mutable)
7186                || thread_p))
7187     {
7188       if ((decl_context == PARM || decl_context == CATCHPARM)
7189           && (storage_class == sc_register
7190               || storage_class == sc_auto))
7191         ;
7192       else if (declspecs->specs[(int)ds_typedef])
7193         ;
7194       else if (decl_context == FIELD
7195                /* C++ allows static class elements.  */
7196                && storage_class == sc_static)
7197         /* C++ also allows inlines and signed and unsigned elements,
7198            but in those cases we don't come in here.  */
7199         ;
7200       else
7201         {
7202           if (decl_context == FIELD)
7203             error ("storage class specified for %qs", name);
7204           else
7205             {
7206               if (decl_context == PARM || decl_context == CATCHPARM)
7207                 error ("storage class specified for parameter %qs", name);
7208               else
7209                 error ("storage class specified for typename");
7210             }
7211           if (storage_class == sc_register
7212               || storage_class == sc_auto
7213               || storage_class == sc_extern
7214               || thread_p)
7215             storage_class = sc_none;
7216         }
7217     }
7218   else if (storage_class == sc_extern && initialized
7219            && !funcdef_flag)
7220     {
7221       if (toplevel_bindings_p ())
7222         {
7223           /* It's common practice (and completely valid) to have a const
7224              be initialized and declared extern.  */
7225           if (!(type_quals & TYPE_QUAL_CONST))
7226             warning (0, "%qs initialized and declared %<extern%>", name);
7227         }
7228       else
7229         error ("%qs has both %<extern%> and initializer", name);
7230     }
7231   else if (storage_class == sc_extern && funcdef_flag
7232            && ! toplevel_bindings_p ())
7233     error ("nested function %qs declared %<extern%>", name);
7234   else if (toplevel_bindings_p ())
7235     {
7236       if (storage_class == sc_auto)
7237         error ("top-level declaration of %qs specifies %<auto%>", name);
7238     }
7239   else if (thread_p
7240            && storage_class != sc_extern
7241            && storage_class != sc_static)
7242     {
7243       error ("function-scope %qs implicitly auto and declared %<__thread%>",
7244              name);
7245       thread_p = false;
7246     }
7247
7248   if (storage_class && friendp)
7249     error ("storage class specifiers invalid in friend function declarations");
7250
7251   if (!id_declarator)
7252     unqualified_id = NULL_TREE;
7253   else
7254     {
7255       unqualified_id = id_declarator->u.id.unqualified_name;
7256       switch (TREE_CODE (unqualified_id))
7257         {
7258         case BIT_NOT_EXPR:
7259           unqualified_id
7260             = constructor_name (TREE_OPERAND (unqualified_id, 0));
7261           break;
7262
7263         case IDENTIFIER_NODE:
7264         case TEMPLATE_ID_EXPR:
7265           break;
7266
7267         default:
7268           gcc_unreachable ();
7269         }
7270     }
7271
7272   /* Determine the type of the entity declared by recurring on the
7273      declarator.  */
7274   for (; declarator; declarator = declarator->declarator)
7275     {
7276       const cp_declarator *inner_declarator;
7277       tree attrs;
7278
7279       if (type == error_mark_node)
7280         return error_mark_node;
7281
7282       attrs = declarator->attributes;
7283       if (attrs)
7284         {
7285           int attr_flags;
7286
7287           attr_flags = 0;
7288           if (declarator == NULL || declarator->kind == cdk_id)
7289             attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
7290           if (declarator->kind == cdk_function)
7291             attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
7292           if (declarator->kind == cdk_array)
7293             attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
7294           returned_attrs = decl_attributes (&type,
7295                                             chainon (returned_attrs, attrs),
7296                                             attr_flags);
7297         }
7298
7299       if (declarator->kind == cdk_id)
7300         break;
7301
7302       inner_declarator = declarator->declarator;
7303
7304       switch (declarator->kind)
7305         {
7306         case cdk_array:
7307           type = create_array_type_for_decl (dname, type,
7308                                              declarator->u.array.bounds);
7309           break;
7310
7311         case cdk_function:
7312           {
7313             tree arg_types;
7314             int funcdecl_p;
7315
7316             /* Declaring a function type.
7317                Make sure we have a valid type for the function to return.  */
7318
7319             /* We now know that the TYPE_QUALS don't apply to the
7320                decl, but to its return type.  */
7321             type_quals = TYPE_UNQUALIFIED;
7322
7323             /* Warn about some types functions can't return.  */
7324
7325             if (TREE_CODE (type) == FUNCTION_TYPE)
7326               {
7327                 error ("%qs declared as function returning a function", name);
7328                 type = integer_type_node;
7329               }
7330             if (TREE_CODE (type) == ARRAY_TYPE)
7331               {
7332                 error ("%qs declared as function returning an array", name);
7333                 type = integer_type_node;
7334               }
7335
7336             /* Pick up type qualifiers which should be applied to `this'.  */
7337             quals = declarator->u.function.qualifiers;
7338
7339             /* Pick up the exception specifications.  */
7340             raises = declarator->u.function.exception_specification;
7341
7342             /* Say it's a definition only for the CALL_EXPR
7343                closest to the identifier.  */
7344             funcdecl_p = inner_declarator && inner_declarator->kind == cdk_id;
7345
7346             if (ctype == NULL_TREE
7347                 && decl_context == FIELD
7348                 && funcdecl_p
7349                 && (friendp == 0 || dname == current_class_name))
7350               ctype = current_class_type;
7351
7352             if (ctype && (sfk == sfk_constructor
7353                           || sfk == sfk_destructor))
7354               {
7355                 /* We are within a class's scope. If our declarator name
7356                    is the same as the class name, and we are defining
7357                    a function, then it is a constructor/destructor, and
7358                    therefore returns a void type.  */
7359
7360                 if (flags == DTOR_FLAG)
7361                   {
7362                     /* ISO C++ 12.4/2.  A destructor may not be
7363                        declared const or volatile.  A destructor may
7364                        not be static.  */
7365                     if (staticp == 2)
7366                       error ("destructor cannot be static member function");
7367                     if (quals)
7368                       {
7369                         error ("destructors may not be cv-qualified");
7370                         quals = TYPE_UNQUALIFIED;
7371                       }
7372                     if (decl_context == FIELD)
7373                       {
7374                         if (! member_function_or_else (ctype,
7375                                                        current_class_type,
7376                                                        flags))
7377                           return void_type_node;
7378                       }
7379                   }
7380                 else /* It's a constructor.  */
7381                   {
7382                     if (explicitp == 1)
7383                       explicitp = 2;
7384                     /* ISO C++ 12.1.  A constructor may not be
7385                        declared const or volatile.  A constructor may
7386                        not be virtual.  A constructor may not be
7387                        static.  */
7388                     if (staticp == 2)
7389                       error ("constructor cannot be static member function");
7390                     if (virtualp)
7391                       {
7392                         pedwarn ("constructors cannot be declared virtual");
7393                         virtualp = 0;
7394                       }
7395                     if (quals)
7396                       {
7397                         error ("constructors may not be cv-qualified");
7398                         quals = TYPE_UNQUALIFIED;
7399                       }
7400                     if (decl_context == FIELD)
7401                       {
7402                         if (! member_function_or_else (ctype,
7403                                                        current_class_type,
7404                                                        flags))
7405                           return void_type_node;
7406                         TYPE_HAS_CONSTRUCTOR (ctype) = 1;
7407                         if (sfk != sfk_constructor)
7408                           return NULL_TREE;
7409                       }
7410                   }
7411                 if (decl_context == FIELD)
7412                   staticp = 0;
7413               }
7414             else if (friendp)
7415               {
7416                 if (initialized)
7417                   error ("can't initialize friend function %qs", name);
7418                 if (virtualp)
7419                   {
7420                     /* Cannot be both friend and virtual.  */
7421                     error ("virtual functions cannot be friends");
7422                     friendp = 0;
7423                   }
7424                 if (decl_context == NORMAL)
7425                   error ("friend declaration not in class definition");
7426                 if (current_function_decl && funcdef_flag)
7427                   error ("can't define friend function %qs in a local "
7428                          "class definition",
7429                          name);
7430               }
7431
7432             arg_types = grokparms (declarator->u.function.parameters,
7433                                    &parms);
7434
7435             if (inner_declarator
7436                 && inner_declarator->kind == cdk_id
7437                 && inner_declarator->u.id.sfk == sfk_destructor
7438                 && arg_types != void_list_node)
7439               {
7440                 error ("destructors may not have parameters");
7441                 arg_types = void_list_node;
7442                 parms = NULL_TREE;
7443               }
7444
7445             type = build_function_type (type, arg_types);
7446             type = cp_build_qualified_type (type, quals);
7447           }
7448           break;
7449
7450         case cdk_pointer:
7451         case cdk_reference:
7452         case cdk_ptrmem:
7453           /* Filter out pointers-to-references and references-to-references.
7454              We can get these if a TYPE_DECL is used.  */
7455
7456           if (TREE_CODE (type) == REFERENCE_TYPE)
7457             {
7458               error (declarator->kind == cdk_reference
7459                      ? "cannot declare reference to %q#T"
7460                      : "cannot declare pointer to %q#T", type);
7461               type = TREE_TYPE (type);
7462             }
7463           else if (VOID_TYPE_P (type))
7464             {
7465               if (declarator->kind == cdk_reference)
7466                 error ("cannot declare reference to %q#T", type);
7467               else if (declarator->kind == cdk_ptrmem)
7468                 error ("cannot declare pointer to %q#T member", type);
7469             }
7470
7471           /* We now know that the TYPE_QUALS don't apply to the decl,
7472              but to the target of the pointer.  */
7473           type_quals = TYPE_UNQUALIFIED;
7474
7475           if (declarator->kind == cdk_ptrmem
7476               && (TREE_CODE (type) == FUNCTION_TYPE
7477                   || (quals && TREE_CODE (type) == METHOD_TYPE)))
7478             {
7479               tree dummy;
7480
7481               /* If the type is a FUNCTION_TYPE, pick up the
7482                  qualifiers from that function type. No other
7483                  qualifiers may be supplied. */
7484               if (TREE_CODE (type) == FUNCTION_TYPE)
7485                 quals = cp_type_quals (type);
7486
7487               dummy = build_decl (TYPE_DECL, NULL_TREE, type);
7488               grok_method_quals (declarator->u.pointer.class_type,
7489                                  dummy, quals);
7490               type = TREE_TYPE (dummy);
7491               quals = TYPE_UNQUALIFIED;
7492             }
7493
7494           if (declarator->kind == cdk_reference)
7495             {
7496               if (!VOID_TYPE_P (type))
7497                 type = build_reference_type (type);
7498             }
7499           else if (TREE_CODE (type) == METHOD_TYPE)
7500             type = build_ptrmemfunc_type (build_pointer_type (type));
7501           else if (declarator->kind == cdk_ptrmem)
7502             {
7503               /* We might have parsed a namespace as the class type.  */
7504               if (TREE_CODE (declarator->u.pointer.class_type)
7505                   == NAMESPACE_DECL)
7506                 {
7507                   error ("%qD is a namespace",
7508                          declarator->u.pointer.class_type);
7509                   type = build_pointer_type (type);
7510                 }
7511               else if (declarator->u.pointer.class_type == error_mark_node)
7512                 /* We will already have complained.  */
7513                 type = error_mark_node;
7514               else
7515                 type = build_ptrmem_type (declarator->u.pointer.class_type,
7516                                           type);
7517             }
7518           else
7519             type = build_pointer_type (type);
7520
7521           /* Process a list of type modifier keywords (such as
7522              const or volatile) that were given inside the `*' or `&'.  */
7523
7524           if (declarator->u.pointer.qualifiers)
7525             {
7526               type
7527                 = cp_build_qualified_type (type,
7528                                            declarator->u.pointer.qualifiers);
7529               type_quals = cp_type_quals (type);
7530             }
7531           ctype = NULL_TREE;
7532           break;
7533
7534         case cdk_error:
7535           break;
7536
7537         default:
7538           gcc_unreachable ();
7539         }
7540     }
7541
7542   if (unqualified_id && TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR
7543       && TREE_CODE (type) != FUNCTION_TYPE
7544       && TREE_CODE (type) != METHOD_TYPE)
7545     {
7546       error ("template-id %qD used as a declarator",
7547              unqualified_id);
7548       unqualified_id = dname;
7549     }
7550
7551   /* If TYPE is a FUNCTION_TYPE, but the function name was explicitly
7552      qualified with a class-name, turn it into a METHOD_TYPE, unless
7553      we know that the function is static.  We take advantage of this
7554      opportunity to do other processing that pertains to entities
7555      explicitly declared to be class members.  Note that if DECLARATOR
7556      is non-NULL, we know it is a cdk_id declarator; otherwise, we
7557      would not have exited the loop above.  */
7558   if (declarator
7559       && declarator->u.id.qualifying_scope
7560       && TYPE_P (declarator->u.id.qualifying_scope))
7561     {
7562       tree t;
7563
7564       ctype = declarator->u.id.qualifying_scope;
7565       ctype = TYPE_MAIN_VARIANT (ctype);
7566       t = ctype;
7567       while (t != NULL_TREE && CLASS_TYPE_P (t))
7568         {
7569           /* You're supposed to have one `template <...>' for every
7570              template class, but you don't need one for a full
7571              specialization.  For example:
7572
7573                template <class T> struct S{};
7574                template <> struct S<int> { void f(); };
7575                void S<int>::f () {}
7576
7577              is correct; there shouldn't be a `template <>' for the
7578              definition of `S<int>::f'.  */
7579           if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t)
7580               && !any_dependent_template_arguments_p (CLASSTYPE_TI_ARGS (t)))
7581             /* T is an explicit (not partial) specialization.  All
7582                containing classes must therefore also be explicitly
7583                specialized.  */
7584             break;
7585           if ((CLASSTYPE_USE_TEMPLATE (t) || CLASSTYPE_IS_TEMPLATE (t))
7586               && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t)))
7587             template_count += 1;
7588
7589           t = TYPE_MAIN_DECL (t);
7590           t = DECL_CONTEXT (t);
7591         }
7592
7593       if (ctype == current_class_type)
7594         {
7595           if (friendp)
7596             pedwarn ("member functions are implicitly friends of their class");
7597           else
7598             pedwarn ("extra qualification %<%T::%> on member %qs",
7599                      ctype, name);
7600         }
7601       else if (TREE_CODE (type) == FUNCTION_TYPE)
7602         {
7603           tree sname = declarator->u.id.unqualified_name;
7604
7605           if (current_class_type
7606               && (!friendp || funcdef_flag))
7607             {
7608               error (funcdef_flag
7609                      ? "cannot define member function %<%T::%s%> within %<%T%>"
7610                      : "cannot declare member function %<%T::%s%> within %<%T%>",
7611                      ctype, name, current_class_type);
7612               return error_mark_node;
7613             }
7614
7615           if (TREE_CODE (sname) == IDENTIFIER_NODE
7616               && NEW_DELETE_OPNAME_P (sname))
7617             /* Overloaded operator new and operator delete
7618                are always static functions.  */
7619             ;
7620           else
7621             type = build_method_type_directly (ctype,
7622                                                TREE_TYPE (type),
7623                                                TYPE_ARG_TYPES (type));
7624         }
7625       else if (declspecs->specs[(int)ds_typedef]
7626                || COMPLETE_TYPE_P (complete_type (ctype)))
7627         {
7628           /* Have to move this code elsewhere in this function.
7629              this code is used for i.e., typedef int A::M; M *pm;
7630
7631              It is?  How? jason 10/2/94 */
7632
7633           if (current_class_type)
7634             {
7635               error ("cannot declare member %<%T::%s%> within %qT",
7636                      ctype, name, current_class_type);
7637               return void_type_node;
7638             }
7639         }
7640       else
7641         {
7642           cxx_incomplete_type_error (NULL_TREE, ctype);
7643           return error_mark_node;
7644         }
7645     }
7646
7647   /* Now TYPE has the actual type.  */
7648
7649   if (returned_attrs)
7650     {
7651       if (attrlist)
7652         *attrlist = chainon (returned_attrs, *attrlist);
7653       else
7654         attrlist = &returned_attrs;
7655     }
7656
7657   /* Did array size calculations overflow?  */
7658
7659   if (TREE_CODE (type) == ARRAY_TYPE
7660       && COMPLETE_TYPE_P (type)
7661       && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
7662       && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
7663     {
7664       error ("size of array %qs is too large", name);
7665       /* If we proceed with the array type as it is, we'll eventually
7666          crash in tree_low_cst().  */
7667       type = error_mark_node;
7668     }
7669
7670   if ((decl_context == FIELD || decl_context == PARM)
7671       && !processing_template_decl
7672       && variably_modified_type_p (type, NULL_TREE))
7673     {
7674       if (decl_context == FIELD)
7675         error ("data member may not have variably modified type %qT", type);
7676       else
7677         error ("parameter may not have variably modified type %qT", type);
7678       type = error_mark_node;
7679     }
7680
7681   if (explicitp == 1 || (explicitp && friendp))
7682     {
7683       /* [dcl.fct.spec] The explicit specifier shall only be used in
7684          declarations of constructors within a class definition.  */
7685       error ("only declarations of constructors can be %<explicit%>");
7686       explicitp = 0;
7687     }
7688
7689   if (storage_class == sc_mutable)
7690     {
7691       if (decl_context != FIELD || friendp)
7692         {
7693           error ("non-member %qs cannot be declared %<mutable%>", name);
7694           storage_class = sc_none;
7695         }
7696       else if (decl_context == TYPENAME || declspecs->specs[(int)ds_typedef])
7697         {
7698           error ("non-object member %qs cannot be declared %<mutable%>", name);
7699           storage_class = sc_none;
7700         }
7701       else if (TREE_CODE (type) == FUNCTION_TYPE
7702                || TREE_CODE (type) == METHOD_TYPE)
7703         {
7704           error ("function %qs cannot be declared %<mutable%>", name);
7705           storage_class = sc_none;
7706         }
7707       else if (staticp)
7708         {
7709           error ("static %qs cannot be declared %<mutable%>", name);
7710           storage_class = sc_none;
7711         }
7712       else if (type_quals & TYPE_QUAL_CONST)
7713         {
7714           error ("const %qs cannot be declared %<mutable%>", name);
7715           storage_class = sc_none;
7716         }
7717     }
7718
7719   /* If this is declaring a typedef name, return a TYPE_DECL.  */
7720   if (declspecs->specs[(int)ds_typedef] && decl_context != TYPENAME)
7721     {
7722       tree decl;
7723
7724       /* Note that the grammar rejects storage classes
7725          in typenames, fields or parameters.  */
7726       if (current_lang_name == lang_name_java)
7727         TYPE_FOR_JAVA (type) = 1;
7728
7729       if (decl_context == FIELD)
7730         decl = build_lang_decl (TYPE_DECL, unqualified_id, type);
7731       else
7732         decl = build_decl (TYPE_DECL, unqualified_id, type);
7733       if (id_declarator && declarator->u.id.qualifying_scope)
7734         error ("%Jtypedef name may not be a nested-name-specifier", decl);
7735
7736       if (decl_context != FIELD)
7737         {
7738           if (!current_function_decl)
7739             DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
7740           else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (current_function_decl)
7741                    || (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P
7742                        (current_function_decl)))
7743             /* The TYPE_DECL is "abstract" because there will be
7744                clones of this constructor/destructor, and there will
7745                be copies of this TYPE_DECL generated in those
7746                clones.  */
7747             DECL_ABSTRACT (decl) = 1;
7748         }
7749       else if (constructor_name_p (unqualified_id, current_class_type))
7750         pedwarn ("ISO C++ forbids nested type %qD with same name "
7751                  "as enclosing class",
7752                  unqualified_id);
7753
7754       /* If the user declares "typedef struct {...} foo" then the
7755          struct will have an anonymous name.  Fill that name in now.
7756          Nothing can refer to it, so nothing needs know about the name
7757          change.  */
7758       if (type != error_mark_node
7759           && unqualified_id
7760           && TYPE_NAME (type)
7761           && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
7762           && TYPE_ANONYMOUS_P (type)
7763           /* Don't do this if there are attributes.  */
7764           && (!attrlist || !*attrlist)
7765           && cp_type_quals (type) == TYPE_UNQUALIFIED)
7766         {
7767           tree oldname = TYPE_NAME (type);
7768           tree t;
7769
7770           /* Replace the anonymous name with the real name everywhere.  */
7771           for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
7772             if (TYPE_NAME (t) == oldname)
7773               TYPE_NAME (t) = decl;
7774
7775           if (TYPE_LANG_SPECIFIC (type))
7776             TYPE_WAS_ANONYMOUS (type) = 1;
7777
7778           /* If this is a typedef within a template class, the nested
7779              type is a (non-primary) template.  The name for the
7780              template needs updating as well.  */
7781           if (TYPE_LANG_SPECIFIC (type) && CLASSTYPE_TEMPLATE_INFO (type))
7782             DECL_NAME (CLASSTYPE_TI_TEMPLATE (type))
7783               = TYPE_IDENTIFIER (type);
7784
7785           /* FIXME remangle member functions; member functions of a
7786              type with external linkage have external linkage.  */
7787         }
7788
7789       if (quals)
7790         {
7791           if (ctype == NULL_TREE)
7792             {
7793               if (TREE_CODE (type) == METHOD_TYPE)
7794                 ctype = TYPE_METHOD_BASETYPE (type);
7795               /* Any qualifiers on a function type typedef have
7796                  already been dealt with. */
7797               else if (TREE_CODE (type) == FUNCTION_TYPE)
7798                 quals = TYPE_UNQUALIFIED;
7799             }
7800           if (ctype != NULL_TREE)
7801             grok_method_quals (ctype, decl, quals);
7802         }
7803
7804       if (signed_p
7805           || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
7806         C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
7807
7808       bad_specifiers (decl, "type", virtualp, quals != TYPE_UNQUALIFIED,
7809                       inlinep, friendp, raises != NULL_TREE);
7810
7811       return decl;
7812     }
7813
7814   /* Detect the case of an array type of unspecified size
7815      which came, as such, direct from a typedef name.
7816      We must copy the type, so that the array's domain can be
7817      individually set by the object's initializer.  */
7818
7819   if (type && typedef_type
7820       && TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
7821       && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
7822     type = build_cplus_array_type (TREE_TYPE (type), NULL_TREE);
7823
7824   /* Detect where we're using a typedef of function type to declare a
7825      function. PARMS will not be set, so we must create it now.  */
7826
7827   if (type == typedef_type && TREE_CODE (type) == FUNCTION_TYPE)
7828     {
7829       tree decls = NULL_TREE;
7830       tree args;
7831
7832       for (args = TYPE_ARG_TYPES (type); args; args = TREE_CHAIN (args))
7833         {
7834           tree decl = cp_build_parm_decl (NULL_TREE, TREE_VALUE (args));
7835
7836           TREE_CHAIN (decl) = decls;
7837           decls = decl;
7838         }
7839
7840       parms = nreverse (decls);
7841
7842       if (decl_context != TYPENAME)
7843         {
7844           /* A cv-qualifier-seq shall only be part of the function type
7845              for a non-static member function. [8.3.5/4 dcl.fct] */
7846           if (cp_type_quals (type) != TYPE_UNQUALIFIED
7847               && (current_class_type == NULL_TREE || staticp) )
7848             {
7849               error ("qualified function types cannot be used to declare %s functions",
7850                      (staticp? "static member" : "free"));
7851               type = TYPE_MAIN_VARIANT (type);
7852             }
7853
7854           /* The qualifiers on the function type become the qualifiers on
7855              the non-static member function. */
7856           quals |= cp_type_quals (type);
7857         }
7858     }
7859
7860   /* If this is a type name (such as, in a cast or sizeof),
7861      compute the type and return it now.  */
7862
7863   if (decl_context == TYPENAME)
7864     {
7865       /* Note that the grammar rejects storage classes
7866          in typenames, fields or parameters.  */
7867       if (type_quals != TYPE_UNQUALIFIED)
7868         type_quals = TYPE_UNQUALIFIED;
7869
7870       /* Special case: "friend class foo" looks like a TYPENAME context.  */
7871       if (friendp)
7872         {
7873           if (type_quals != TYPE_UNQUALIFIED)
7874             {
7875               error ("type qualifiers specified for friend class declaration");
7876               type_quals = TYPE_UNQUALIFIED;
7877             }
7878           if (inlinep)
7879             {
7880               error ("%<inline%> specified for friend class declaration");
7881               inlinep = 0;
7882             }
7883
7884           if (!current_aggr)
7885             {
7886               /* Don't allow friend declaration without a class-key.  */
7887               if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
7888                 pedwarn ("template parameters cannot be friends");
7889               else if (TREE_CODE (type) == TYPENAME_TYPE)
7890                 pedwarn ("friend declaration requires class-key, "
7891                          "i.e. %<friend class %T::%D%>",
7892                          TYPE_CONTEXT (type), TYPENAME_TYPE_FULLNAME (type));
7893               else
7894                 pedwarn ("friend declaration requires class-key, "
7895                          "i.e. %<friend %#T%>",
7896                          type);
7897             }
7898
7899           /* Only try to do this stuff if we didn't already give up.  */
7900           if (type != integer_type_node)
7901             {
7902               /* A friendly class?  */
7903               if (current_class_type)
7904                 make_friend_class (current_class_type, TYPE_MAIN_VARIANT (type),
7905                                    /*complain=*/true);
7906               else
7907                 error ("trying to make class %qT a friend of global scope",
7908                        type);
7909
7910               type = void_type_node;
7911             }
7912         }
7913       else if (quals)
7914         {
7915           if (ctype == NULL_TREE)
7916             {
7917               if (TREE_CODE (type) != METHOD_TYPE)
7918                 error ("invalid qualifiers on non-member function type");
7919               else
7920                 ctype = TYPE_METHOD_BASETYPE (type);
7921             }
7922           if (ctype)
7923             {
7924               tree dummy = build_decl (TYPE_DECL, unqualified_id, type);
7925               grok_method_quals (ctype, dummy, quals);
7926               type = TREE_TYPE (dummy);
7927             }
7928         }
7929
7930       return type;
7931     }
7932   else if (unqualified_id == NULL_TREE && decl_context != PARM
7933            && decl_context != CATCHPARM
7934            && TREE_CODE (type) != UNION_TYPE
7935            && ! bitfield)
7936     {
7937       error ("abstract declarator %qT used as declaration", type);
7938       return error_mark_node;
7939     }
7940
7941   /* Only functions may be declared using an operator-function-id.  */
7942   if (unqualified_id
7943       && IDENTIFIER_OPNAME_P (unqualified_id)
7944       && TREE_CODE (type) != FUNCTION_TYPE
7945       && TREE_CODE (type) != METHOD_TYPE)
7946     {
7947       error ("declaration of %qD as non-function", unqualified_id);
7948       return error_mark_node;
7949     }
7950
7951   /* We don't check parameter types here because we can emit a better
7952      error message later.  */
7953   if (decl_context != PARM)
7954     type = check_var_type (unqualified_id, type);
7955
7956   /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
7957      or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE.  */
7958
7959   if (decl_context == PARM || decl_context == CATCHPARM)
7960     {
7961       if (ctype || in_namespace)
7962         error ("cannot use %<::%> in parameter declaration");
7963
7964       /* A parameter declared as an array of T is really a pointer to T.
7965          One declared as a function is really a pointer to a function.
7966          One declared as a member is really a pointer to member.  */
7967
7968       if (TREE_CODE (type) == ARRAY_TYPE)
7969         {
7970           /* Transfer const-ness of array into that of type pointed to.  */
7971           type = build_pointer_type (TREE_TYPE (type));
7972           type_quals = TYPE_UNQUALIFIED;
7973         }
7974       else if (TREE_CODE (type) == FUNCTION_TYPE)
7975         type = build_pointer_type (type);
7976     }
7977
7978   {
7979     tree decl;
7980
7981     if (decl_context == PARM)
7982       {
7983         decl = cp_build_parm_decl (unqualified_id, type);
7984
7985         bad_specifiers (decl, "parameter", virtualp, quals != TYPE_UNQUALIFIED,
7986                         inlinep, friendp, raises != NULL_TREE);
7987       }
7988     else if (decl_context == FIELD)
7989       {
7990         /* The C99 flexible array extension.  */
7991         if (!staticp && TREE_CODE (type) == ARRAY_TYPE
7992             && TYPE_DOMAIN (type) == NULL_TREE)
7993           {
7994             tree itype = compute_array_index_type (dname, integer_zero_node);
7995             type = build_cplus_array_type (TREE_TYPE (type), itype);
7996           }
7997
7998         if (type == error_mark_node)
7999           {
8000             /* Happens when declaring arrays of sizes which
8001                are error_mark_node, for example.  */
8002             decl = NULL_TREE;
8003           }
8004         else if (in_namespace && !friendp)
8005           {
8006             /* Something like struct S { int N::j; };  */
8007             error ("invalid use of %<::%>");
8008             decl = NULL_TREE;
8009           }
8010         else if (TREE_CODE (type) == FUNCTION_TYPE)
8011           {
8012             int publicp = 0;
8013             tree function_context;
8014
8015             if (friendp == 0)
8016               {
8017                 if (ctype == NULL_TREE)
8018                   ctype = current_class_type;
8019
8020                 if (ctype == NULL_TREE)
8021                   {
8022                     error ("can't make %qD into a method -- not in a class",
8023                            unqualified_id);
8024                     return void_type_node;
8025                   }
8026
8027                 /* ``A union may [ ... ] not [ have ] virtual functions.''
8028                    ARM 9.5 */
8029                 if (virtualp && TREE_CODE (ctype) == UNION_TYPE)
8030                   {
8031                     error ("function %qD declared virtual inside a union",
8032                            unqualified_id);
8033                     return void_type_node;
8034                   }
8035
8036                 if (NEW_DELETE_OPNAME_P (unqualified_id))
8037                   {
8038                     if (virtualp)
8039                       {
8040                         error ("%qD cannot be declared virtual, since it "
8041                                "is always static",
8042                                unqualified_id);
8043                         virtualp = 0;
8044                       }
8045                   }
8046                 else if (staticp < 2)
8047                   type = build_method_type_directly (ctype,
8048                                                      TREE_TYPE (type),
8049                                                      TYPE_ARG_TYPES (type));
8050               }
8051
8052             /* Check that the name used for a destructor makes sense.  */
8053             if (sfk == sfk_destructor)
8054               {
8055                 if (!ctype)
8056                   {
8057                     gcc_assert (friendp);
8058                     error ("expected qualified name in friend declaration "
8059                            "for destructor %qD",
8060                            id_declarator->u.id.unqualified_name);
8061                     return error_mark_node;
8062                   }
8063
8064                 if (!same_type_p (TREE_OPERAND
8065                                   (id_declarator->u.id.unqualified_name, 0),
8066                                   ctype))
8067                   {
8068                     error ("declaration of %qD as member of %qT",
8069                            id_declarator->u.id.unqualified_name, ctype);
8070                     return error_mark_node;
8071                   }
8072               }
8073
8074             /* Tell grokfndecl if it needs to set TREE_PUBLIC on the node.  */
8075             function_context = (ctype != NULL_TREE) ?
8076               decl_function_context (TYPE_MAIN_DECL (ctype)) : NULL_TREE;
8077             publicp = (! friendp || ! staticp)
8078               && function_context == NULL_TREE;
8079             decl = grokfndecl (ctype, type,
8080                                TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
8081                                ? unqualified_id : dname,
8082                                parms,
8083                                unqualified_id,
8084                                virtualp, flags, quals, raises,
8085                                friendp ? -1 : 0, friendp, publicp, inlinep,
8086                                sfk,
8087                                funcdef_flag, template_count, in_namespace, attrlist);
8088             if (decl == NULL_TREE)
8089               return decl;
8090 #if 0
8091             /* This clobbers the attrs stored in `decl' from `attrlist'.  */
8092             /* The decl and setting of decl_attr is also turned off.  */
8093             decl = build_decl_attribute_variant (decl, decl_attr);
8094 #endif
8095
8096             /* [class.conv.ctor]
8097
8098                A constructor declared without the function-specifier
8099                explicit that can be called with a single parameter
8100                specifies a conversion from the type of its first
8101                parameter to the type of its class.  Such a constructor
8102                is called a converting constructor.  */
8103             if (explicitp == 2)
8104               DECL_NONCONVERTING_P (decl) = 1;
8105             else if (DECL_CONSTRUCTOR_P (decl))
8106               {
8107                 /* The constructor can be called with exactly one
8108                    parameter if there is at least one parameter, and
8109                    any subsequent parameters have default arguments.
8110                    Ignore any compiler-added parms.  */
8111                 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (decl);
8112
8113                 if (arg_types == void_list_node
8114                     || (arg_types
8115                         && TREE_CHAIN (arg_types)
8116                         && TREE_CHAIN (arg_types) != void_list_node
8117                         && !TREE_PURPOSE (TREE_CHAIN (arg_types))))
8118                   DECL_NONCONVERTING_P (decl) = 1;
8119               }
8120           }
8121         else if (TREE_CODE (type) == METHOD_TYPE)
8122           {
8123             /* We only get here for friend declarations of
8124                members of other classes.  */
8125             /* All method decls are public, so tell grokfndecl to set
8126                TREE_PUBLIC, also.  */
8127             decl = grokfndecl (ctype, type,
8128                                TREE_CODE (unqualified_id) != TEMPLATE_ID_EXPR
8129                                ? unqualified_id : dname,
8130                                parms,
8131                                unqualified_id,
8132                                virtualp, flags, quals, raises,
8133                                friendp ? -1 : 0, friendp, 1, 0, sfk,
8134                                funcdef_flag, template_count, in_namespace,
8135                                attrlist);
8136             if (decl == NULL_TREE)
8137               return NULL_TREE;
8138           }
8139         else if (!staticp && !dependent_type_p (type)
8140                  && !COMPLETE_TYPE_P (complete_type (type))
8141                  && (TREE_CODE (type) != ARRAY_TYPE || initialized == 0))
8142           {
8143             if (unqualified_id)
8144               error ("field %qD has incomplete type", unqualified_id);
8145             else
8146               error ("name %qT has incomplete type", type);
8147
8148             /* If we're instantiating a template, tell them which
8149                instantiation made the field's type be incomplete.  */
8150             if (current_class_type
8151                 && TYPE_NAME (current_class_type)
8152                 && IDENTIFIER_TEMPLATE (TYPE_IDENTIFIER (current_class_type))
8153                 && declspecs->type
8154                 && declspecs->type == type)
8155               error ("  in instantiation of template %qT",
8156                      current_class_type);
8157
8158             type = error_mark_node;
8159             decl = NULL_TREE;
8160           }
8161         else
8162           {
8163             if (friendp)
8164               {
8165                 error ("%qE is neither function nor member function; "
8166                        "cannot be declared friend", unqualified_id);
8167                 friendp = 0;
8168               }
8169             decl = NULL_TREE;
8170           }
8171
8172         if (friendp)
8173           {
8174             /* Friends are treated specially.  */
8175             if (ctype == current_class_type)
8176               ;  /* We already issued a pedwarn.  */
8177             else if (decl && DECL_NAME (decl))
8178               {
8179                 if (template_class_depth (current_class_type) == 0)
8180                   {
8181                     decl = check_explicit_specialization
8182                       (unqualified_id, decl, template_count,
8183                        2 * funcdef_flag + 4);
8184                     if (decl == error_mark_node)
8185                       return error_mark_node;
8186                   }
8187
8188                 decl = do_friend (ctype, unqualified_id, decl,
8189                                   *attrlist, flags, quals, funcdef_flag);
8190                 return decl;
8191               }
8192             else
8193               return void_type_node;
8194           }
8195
8196         /* Structure field.  It may not be a function, except for C++.  */
8197
8198         if (decl == NULL_TREE)
8199           {
8200             if (initialized)
8201               {
8202                 if (!staticp)
8203                   {
8204                     /* An attempt is being made to initialize a non-static
8205                        member.  But, from [class.mem]:
8206
8207                        4 A member-declarator can contain a
8208                        constant-initializer only if it declares a static
8209                        member (_class.static_) of integral or enumeration
8210                        type, see _class.static.data_.
8211
8212                        This used to be relatively common practice, but
8213                        the rest of the compiler does not correctly
8214                        handle the initialization unless the member is
8215                        static so we make it static below.  */
8216                     pedwarn ("ISO C++ forbids initialization of member %qD",
8217                              unqualified_id);
8218                     pedwarn ("making %qD static", unqualified_id);
8219                     staticp = 1;
8220                   }
8221
8222                 if (uses_template_parms (type))
8223                   /* We'll check at instantiation time.  */
8224                   ;
8225                 else if (check_static_variable_definition (unqualified_id,
8226                                                            type))
8227                   /* If we just return the declaration, crashes
8228                      will sometimes occur.  We therefore return
8229                      void_type_node, as if this was a friend
8230                      declaration, to cause callers to completely
8231                      ignore this declaration.  */
8232                   return void_type_node;
8233               }
8234
8235             if (staticp)
8236               {
8237                 /* C++ allows static class members.  All other work
8238                    for this is done by grokfield.  */
8239                 decl = build_lang_decl (VAR_DECL, unqualified_id, type);
8240                 set_linkage_for_static_data_member (decl);
8241                 /* Even if there is an in-class initialization, DECL
8242                    is considered undefined until an out-of-class
8243                    definition is provided.  */
8244                 DECL_EXTERNAL (decl) = 1;
8245
8246                 if (thread_p)
8247                   {
8248                     if (targetm.have_tls)
8249                       DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
8250                     else
8251                       /* A mere warning is sure to result in improper
8252                          semantics at runtime.  Don't bother to allow this to
8253                          compile.  */
8254                       error ("thread-local storage not supported for this target");
8255                   }
8256               }
8257             else
8258               {
8259                 decl = build_decl (FIELD_DECL, unqualified_id, type);
8260                 DECL_NONADDRESSABLE_P (decl) = bitfield;
8261                 if (storage_class == sc_mutable)
8262                   {
8263                     DECL_MUTABLE_P (decl) = 1;
8264                     storage_class = sc_none;
8265                   }
8266               }
8267
8268             bad_specifiers (decl, "field", virtualp, quals != TYPE_UNQUALIFIED,
8269                             inlinep, friendp, raises != NULL_TREE);
8270           }
8271       }
8272     else if (TREE_CODE (type) == FUNCTION_TYPE
8273              || TREE_CODE (type) == METHOD_TYPE)
8274       {
8275         tree original_name;
8276         int publicp = 0;
8277
8278         if (!unqualified_id)
8279           return NULL_TREE;
8280
8281         if (TREE_CODE (unqualified_id) == TEMPLATE_ID_EXPR)
8282           original_name = dname;
8283         else
8284           original_name = unqualified_id;
8285
8286         if (storage_class == sc_auto)
8287           error ("storage class %<auto%> invalid for function %qs", name);
8288         else if (storage_class == sc_register)
8289           error ("storage class %<register%> invalid for function %qs", name);
8290         else if (thread_p)
8291           error ("storage class %<__thread%> invalid for function %qs", name);
8292
8293         /* Function declaration not at top level.
8294            Storage classes other than `extern' are not allowed
8295            and `extern' makes no difference.  */
8296         if (! toplevel_bindings_p ()
8297             && (storage_class == sc_static
8298                 || declspecs->specs[(int)ds_inline])
8299             && pedantic)
8300           {
8301             if (storage_class == sc_static)
8302               pedwarn ("%<static%> specified invalid for function %qs "
8303                        "declared out of global scope", name);
8304             else
8305               pedwarn ("%<inline%> specifier invalid for function %qs "
8306                        "declared out of global scope", name);
8307           }
8308
8309         if (ctype == NULL_TREE)
8310           {
8311             if (virtualp)
8312               {
8313                 error ("virtual non-class function %qs", name);
8314                 virtualp = 0;
8315               }
8316           }
8317         else if (TREE_CODE (type) == FUNCTION_TYPE && staticp < 2
8318                  && !NEW_DELETE_OPNAME_P (original_name))
8319           type = build_method_type_directly (ctype,
8320                                              TREE_TYPE (type),
8321                                              TYPE_ARG_TYPES (type));
8322
8323         /* Record presence of `static'.  */
8324         publicp = (ctype != NULL_TREE
8325                    || storage_class == sc_extern
8326                    || storage_class != sc_static);
8327
8328         decl = grokfndecl (ctype, type, original_name, parms, unqualified_id,
8329                            virtualp, flags, quals, raises,
8330                            1, friendp,
8331                            publicp, inlinep, sfk, funcdef_flag,
8332                            template_count, in_namespace, attrlist);
8333         if (decl == NULL_TREE)
8334           return NULL_TREE;
8335
8336         if (staticp == 1)
8337           {
8338             int invalid_static = 0;
8339
8340             /* Don't allow a static member function in a class, and forbid
8341                declaring main to be static.  */
8342             if (TREE_CODE (type) == METHOD_TYPE)
8343               {
8344                 pedwarn ("cannot declare member function %qD to have "
8345                          "static linkage", decl);
8346                 invalid_static = 1;
8347               }
8348             else if (current_function_decl)
8349               {
8350                 /* FIXME need arm citation */
8351                 error ("cannot declare static function inside another function");
8352                 invalid_static = 1;
8353               }
8354
8355             if (invalid_static)
8356               {
8357                 staticp = 0;
8358                 storage_class = sc_none;
8359               }
8360           }
8361       }
8362     else
8363       {
8364         /* It's a variable.  */
8365
8366         /* An uninitialized decl with `extern' is a reference.  */
8367         decl = grokvardecl (type, unqualified_id,
8368                             declspecs,
8369                             initialized,
8370                             (type_quals & TYPE_QUAL_CONST) != 0,
8371                             ctype ? ctype : in_namespace);
8372         bad_specifiers (decl, "variable", virtualp, quals != TYPE_UNQUALIFIED,
8373                         inlinep, friendp, raises != NULL_TREE);
8374
8375         if (ctype)
8376           {
8377             DECL_CONTEXT (decl) = ctype;
8378             if (staticp == 1)
8379               {
8380                 pedwarn ("%<static%> may not be used when defining "
8381                          "(as opposed to declaring) a static data member");
8382                 staticp = 0;
8383                 storage_class = sc_none;
8384               }
8385             if (storage_class == sc_register && TREE_STATIC (decl))
8386               {
8387                 error ("static member %qD declared %<register%>", decl);
8388                 storage_class = sc_none;
8389               }
8390             if (storage_class == sc_extern && pedantic)
8391               {
8392                 pedwarn ("cannot explicitly declare member %q#D to have "
8393                          "extern linkage",
8394                          decl);
8395                 storage_class = sc_none;
8396               }
8397           }
8398       }
8399
8400     /* Record `register' declaration for warnings on &
8401        and in case doing stupid register allocation.  */
8402
8403     if (storage_class == sc_register)
8404       DECL_REGISTER (decl) = 1;
8405     else if (storage_class == sc_extern)
8406       DECL_THIS_EXTERN (decl) = 1;
8407     else if (storage_class == sc_static)
8408       DECL_THIS_STATIC (decl) = 1;
8409
8410     /* Record constancy and volatility.  There's no need to do this
8411        when processing a template; we'll do this for the instantiated
8412        declaration based on the type of DECL.  */
8413     if (!processing_template_decl)
8414       cp_apply_type_quals_to_decl (type_quals, decl);
8415
8416     return decl;
8417   }
8418 }
8419 \f
8420 /* Subroutine of start_function.  Ensure that each of the parameter
8421    types (as listed in PARMS) is complete, as is required for a
8422    function definition.  */
8423
8424 static void
8425 require_complete_types_for_parms (tree parms)
8426 {
8427   for (; parms; parms = TREE_CHAIN (parms))
8428     {
8429       if (dependent_type_p (TREE_TYPE (parms)))
8430         continue;
8431       if (!VOID_TYPE_P (TREE_TYPE (parms))
8432           && complete_type_or_else (TREE_TYPE (parms), parms))
8433         {
8434           relayout_decl (parms);
8435           DECL_ARG_TYPE (parms) = type_passed_as (TREE_TYPE (parms));
8436         }
8437       else
8438         /* grokparms or complete_type_or_else will have already issued
8439            an error.  */
8440         TREE_TYPE (parms) = error_mark_node;
8441     }
8442 }
8443
8444 /* Returns nonzero if T is a local variable.  */
8445
8446 int
8447 local_variable_p (tree t)
8448 {
8449   if ((TREE_CODE (t) == VAR_DECL
8450        /* A VAR_DECL with a context that is a _TYPE is a static data
8451           member.  */
8452        && !TYPE_P (CP_DECL_CONTEXT (t))
8453        /* Any other non-local variable must be at namespace scope.  */
8454        && !DECL_NAMESPACE_SCOPE_P (t))
8455       || (TREE_CODE (t) == PARM_DECL))
8456     return 1;
8457
8458   return 0;
8459 }
8460
8461 /* Returns nonzero if T is an automatic local variable or a label.
8462    (These are the declarations that need to be remapped when the code
8463    containing them is duplicated.)  */
8464
8465 int
8466 nonstatic_local_decl_p (tree t)
8467 {
8468   return ((local_variable_p (t) && !TREE_STATIC (t))
8469           || TREE_CODE (t) == LABEL_DECL
8470           || TREE_CODE (t) == RESULT_DECL);
8471 }
8472
8473 /* Like local_variable_p, but suitable for use as a tree-walking
8474    function.  */
8475
8476 static tree
8477 local_variable_p_walkfn (tree *tp, int *walk_subtrees,
8478                          void *data ATTRIBUTE_UNUSED)
8479 {
8480   if (local_variable_p (*tp) && !DECL_ARTIFICIAL (*tp))
8481     return *tp;
8482   else if (TYPE_P (*tp))
8483     *walk_subtrees = 0;
8484
8485   return NULL_TREE;
8486 }
8487
8488
8489 /* Check that ARG, which is a default-argument expression for a
8490    parameter DECL, is valid.  Returns ARG, or ERROR_MARK_NODE, if
8491    something goes wrong.  DECL may also be a _TYPE node, rather than a
8492    DECL, if there is no DECL available.  */
8493
8494 tree
8495 check_default_argument (tree decl, tree arg)
8496 {
8497   tree var;
8498   tree decl_type;
8499
8500   if (TREE_CODE (arg) == DEFAULT_ARG)
8501     /* We get a DEFAULT_ARG when looking at an in-class declaration
8502        with a default argument.  Ignore the argument for now; we'll
8503        deal with it after the class is complete.  */
8504     return arg;
8505
8506   if (TYPE_P (decl))
8507     {
8508       decl_type = decl;
8509       decl = NULL_TREE;
8510     }
8511   else
8512     decl_type = TREE_TYPE (decl);
8513
8514   if (arg == error_mark_node
8515       || decl == error_mark_node
8516       || TREE_TYPE (arg) == error_mark_node
8517       || decl_type == error_mark_node)
8518     /* Something already went wrong.  There's no need to check
8519        further.  */
8520     return error_mark_node;
8521
8522   /* [dcl.fct.default]
8523
8524      A default argument expression is implicitly converted to the
8525      parameter type.  */
8526   if (!TREE_TYPE (arg)
8527       || !can_convert_arg (decl_type, TREE_TYPE (arg), arg, LOOKUP_NORMAL))
8528     {
8529       if (decl)
8530         error ("default argument for %q#D has type %qT",
8531                decl, TREE_TYPE (arg));
8532       else
8533         error ("default argument for parameter of type %qT has type %qT",
8534                decl_type, TREE_TYPE (arg));
8535
8536       return error_mark_node;
8537     }
8538
8539   /* [dcl.fct.default]
8540
8541      Local variables shall not be used in default argument
8542      expressions.
8543
8544      The keyword `this' shall not be used in a default argument of a
8545      member function.  */
8546   var = walk_tree_without_duplicates (&arg, local_variable_p_walkfn,
8547                                       NULL);
8548   if (var)
8549     {
8550       error ("default argument %qE uses local variable %qD", arg, var);
8551       return error_mark_node;
8552     }
8553
8554   /* All is well.  */
8555   return arg;
8556 }
8557
8558 /* Decode the list of parameter types for a function type.
8559    Given the list of things declared inside the parens,
8560    return a list of types.
8561
8562    If this parameter does not end with an ellipsis, we append
8563    void_list_node.
8564
8565    *PARMS is set to the chain of PARM_DECLs created.  */
8566
8567 static tree
8568 grokparms (cp_parameter_declarator *first_parm, tree *parms)
8569 {
8570   tree result = NULL_TREE;
8571   tree decls = NULL_TREE;
8572   int ellipsis = !first_parm || first_parm->ellipsis_p;
8573   cp_parameter_declarator *parm;
8574   int any_error = 0;
8575
8576   for (parm = first_parm; parm != NULL; parm = parm->next)
8577     {
8578       tree type = NULL_TREE;
8579       tree init = parm->default_argument;
8580       tree attrs;
8581       tree decl;
8582
8583       if (parm == no_parameters)
8584         break;
8585
8586       attrs = parm->decl_specifiers.attributes;
8587       parm->decl_specifiers.attributes = NULL_TREE;
8588       decl = grokdeclarator (parm->declarator, &parm->decl_specifiers,
8589                              PARM, init != NULL_TREE, &attrs);
8590       if (! decl || TREE_TYPE (decl) == error_mark_node)
8591         continue;
8592
8593       if (attrs)
8594         cplus_decl_attributes (&decl, attrs, 0);
8595
8596       type = TREE_TYPE (decl);
8597       if (VOID_TYPE_P (type))
8598         {
8599           if (same_type_p (type, void_type_node)
8600               && DECL_SELF_REFERENCE_P (type)
8601               && !DECL_NAME (decl) && !result && !parm->next && !ellipsis)
8602             /* this is a parmlist of `(void)', which is ok.  */
8603             break;
8604           cxx_incomplete_type_error (decl, type);
8605           /* It's not a good idea to actually create parameters of
8606              type `void'; other parts of the compiler assume that a
8607              void type terminates the parameter list.  */
8608           type = error_mark_node;
8609           TREE_TYPE (decl) = error_mark_node;
8610         }
8611
8612       if (type != error_mark_node)
8613         {
8614           /* Top-level qualifiers on the parameters are
8615              ignored for function types.  */
8616           type = cp_build_qualified_type (type, 0);
8617           if (TREE_CODE (type) == METHOD_TYPE)
8618             {
8619               error ("parameter %qD invalidly declared method type", decl);
8620               type = build_pointer_type (type);
8621               TREE_TYPE (decl) = type;
8622             }
8623           else if (abstract_virtuals_error (decl, type))
8624             any_error = 1;  /* Seems like a good idea.  */
8625           else if (POINTER_TYPE_P (type))
8626             {
8627               /* [dcl.fct]/6, parameter types cannot contain pointers
8628                  (references) to arrays of unknown bound.  */
8629               tree t = TREE_TYPE (type);
8630               int ptr = TYPE_PTR_P (type);
8631
8632               while (1)
8633                 {
8634                   if (TYPE_PTR_P (t))
8635                     ptr = 1;
8636                   else if (TREE_CODE (t) != ARRAY_TYPE)
8637                     break;
8638                   else if (!TYPE_DOMAIN (t))
8639                     break;
8640                   t = TREE_TYPE (t);
8641                 }
8642               if (TREE_CODE (t) == ARRAY_TYPE)
8643                 error ("parameter %qD includes %s to array of unknown "
8644                        "bound %qT",
8645                        decl, ptr ? "pointer" : "reference", t);
8646             }
8647
8648           if (any_error)
8649             init = NULL_TREE;
8650           else if (init && !processing_template_decl)
8651             init = check_default_argument (decl, init);
8652         }
8653
8654       TREE_CHAIN (decl) = decls;
8655       decls = decl;
8656       result = tree_cons (init, type, result);
8657     }
8658   decls = nreverse (decls);
8659   result = nreverse (result);
8660   if (!ellipsis)
8661     result = chainon (result, void_list_node);
8662   *parms = decls;
8663
8664   return result;
8665 }
8666
8667 \f
8668 /* D is a constructor or overloaded `operator='.
8669
8670    Let T be the class in which D is declared. Then, this function
8671    returns:
8672
8673    -1 if D's is an ill-formed constructor or copy assignment operator
8674       whose first parameter is of type `T'.
8675    0  if D is not a copy constructor or copy assignment
8676       operator.
8677    1  if D is a copy constructor or copy assignment operator whose
8678       first parameter is a reference to const qualified T.
8679    2  if D is a copy constructor or copy assignment operator whose
8680       first parameter is a reference to non-const qualified T.
8681
8682    This function can be used as a predicate. Positive values indicate
8683    a copy constructor and nonzero values indicate a copy assignment
8684    operator.  */
8685
8686 int
8687 copy_fn_p (tree d)
8688 {
8689   tree args;
8690   tree arg_type;
8691   int result = 1;
8692
8693   gcc_assert (DECL_FUNCTION_MEMBER_P (d));
8694
8695   if (DECL_TEMPLATE_INFO (d)
8696       && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (d)))
8697     /* Instantiations of template member functions are never copy
8698        functions.  Note that member functions of templated classes are
8699        represented as template functions internally, and we must
8700        accept those as copy functions.  */
8701     return 0;
8702
8703   args = FUNCTION_FIRST_USER_PARMTYPE (d);
8704   if (!args)
8705     return 0;
8706
8707   arg_type = TREE_VALUE (args);
8708
8709   if (TYPE_MAIN_VARIANT (arg_type) == DECL_CONTEXT (d))
8710     {
8711       /* Pass by value copy assignment operator.  */
8712       result = -1;
8713     }
8714   else if (TREE_CODE (arg_type) == REFERENCE_TYPE
8715            && TYPE_MAIN_VARIANT (TREE_TYPE (arg_type)) == DECL_CONTEXT (d))
8716     {
8717       if (CP_TYPE_CONST_P (TREE_TYPE (arg_type)))
8718         result = 2;
8719     }
8720   else
8721     return 0;
8722
8723   args = TREE_CHAIN (args);
8724
8725   if (args && args != void_list_node && !TREE_PURPOSE (args))
8726     /* There are more non-optional args.  */
8727     return 0;
8728
8729   return result;
8730 }
8731
8732 /* Remember any special properties of member function DECL.  */
8733
8734 void grok_special_member_properties (tree decl)
8735 {
8736   if (!DECL_NONSTATIC_MEMBER_FUNCTION_P(decl))
8737     ; /* Not special.  */
8738   else if (DECL_CONSTRUCTOR_P (decl))
8739     {
8740       int ctor = copy_fn_p (decl);
8741
8742       if (ctor > 0)
8743         {
8744           /* [class.copy]
8745
8746              A non-template constructor for class X is a copy
8747              constructor if its first parameter is of type X&, const
8748              X&, volatile X& or const volatile X&, and either there
8749              are no other parameters or else all other parameters have
8750              default arguments.  */
8751           TYPE_HAS_INIT_REF (DECL_CONTEXT (decl)) = 1;
8752           if (ctor > 1)
8753             TYPE_HAS_CONST_INIT_REF (DECL_CONTEXT (decl)) = 1;
8754         }
8755       else if (sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (decl)))
8756         TYPE_HAS_DEFAULT_CONSTRUCTOR (DECL_CONTEXT (decl)) = 1;
8757     }
8758   else if (DECL_OVERLOADED_OPERATOR_P (decl) == NOP_EXPR)
8759     {
8760       /* [class.copy]
8761
8762          A non-template assignment operator for class X is a copy
8763          assignment operator if its parameter is of type X, X&, const
8764          X&, volatile X& or const volatile X&.  */
8765
8766       int assop = copy_fn_p (decl);
8767
8768       if (assop)
8769         {
8770           TYPE_HAS_ASSIGN_REF (DECL_CONTEXT (decl)) = 1;
8771           if (assop != 1)
8772             TYPE_HAS_CONST_ASSIGN_REF (DECL_CONTEXT (decl)) = 1;
8773         }
8774     }
8775 }
8776
8777 /* Check a constructor DECL has the correct form.  Complains
8778    if the class has a constructor of the form X(X).  */
8779
8780 int
8781 grok_ctor_properties (tree ctype, tree decl)
8782 {
8783   int ctor_parm = copy_fn_p (decl);
8784
8785   if (ctor_parm < 0)
8786     {
8787       /* [class.copy]
8788
8789          A declaration of a constructor for a class X is ill-formed if
8790          its first parameter is of type (optionally cv-qualified) X
8791          and either there are no other parameters or else all other
8792          parameters have default arguments.
8793
8794          We *don't* complain about member template instantiations that
8795          have this form, though; they can occur as we try to decide
8796          what constructor to use during overload resolution.  Since
8797          overload resolution will never prefer such a constructor to
8798          the non-template copy constructor (which is either explicitly
8799          or implicitly defined), there's no need to worry about their
8800          existence.  Theoretically, they should never even be
8801          instantiated, but that's hard to forestall.  */
8802       error ("invalid constructor; you probably meant %<%T (const %T&)%>",
8803                 ctype, ctype);
8804       return 0;
8805     }
8806
8807   return 1;
8808 }
8809
8810 /* An operator with this code is unary, but can also be binary.  */
8811
8812 static int
8813 ambi_op_p (enum tree_code code)
8814 {
8815   return (code == INDIRECT_REF
8816           || code == ADDR_EXPR
8817           || code == UNARY_PLUS_EXPR
8818           || code == NEGATE_EXPR
8819           || code == PREINCREMENT_EXPR
8820           || code == PREDECREMENT_EXPR);
8821 }
8822
8823 /* An operator with this name can only be unary.  */
8824
8825 static int
8826 unary_op_p (enum tree_code code)
8827 {
8828   return (code == TRUTH_NOT_EXPR
8829           || code == BIT_NOT_EXPR
8830           || code == COMPONENT_REF
8831           || code == TYPE_EXPR);
8832 }
8833
8834 /* DECL is a declaration for an overloaded operator.  If COMPLAIN is true,
8835    errors are issued for invalid declarations.  */
8836
8837 void
8838 grok_op_properties (tree decl, bool complain)
8839 {
8840   tree argtypes = TYPE_ARG_TYPES (TREE_TYPE (decl));
8841   tree argtype;
8842   int methodp = (TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE);
8843   tree name = DECL_NAME (decl);
8844   enum tree_code operator_code;
8845   int arity;
8846   tree class_type;
8847
8848   /* Count the number of arguments.  */
8849   for (argtype = argtypes, arity = 0;
8850        argtype && argtype != void_list_node;
8851        argtype = TREE_CHAIN (argtype))
8852     ++arity;
8853
8854   class_type = DECL_CONTEXT (decl);
8855   if (class_type && !CLASS_TYPE_P (class_type))
8856     class_type = NULL_TREE;
8857
8858   if (DECL_CONV_FN_P (decl))
8859     operator_code = TYPE_EXPR;
8860   else
8861     do
8862       {
8863 #define DEF_OPERATOR(NAME, CODE, MANGLING, ARITY, ASSN_P)       \
8864         if (ansi_opname (CODE) == name)                         \
8865           {                                                     \
8866             operator_code = (CODE);                             \
8867             break;                                              \
8868           }                                                     \
8869         else if (ansi_assopname (CODE) == name)                 \
8870           {                                                     \
8871             operator_code = (CODE);                             \
8872             DECL_ASSIGNMENT_OPERATOR_P (decl) = 1;              \
8873             break;                                              \
8874           }
8875
8876 #include "operators.def"
8877 #undef DEF_OPERATOR
8878
8879         gcc_unreachable ();
8880       }
8881     while (0);
8882   gcc_assert (operator_code != LAST_CPLUS_TREE_CODE);
8883   SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
8884
8885   if (class_type)
8886     switch (operator_code)
8887       {
8888       case NEW_EXPR:
8889         TYPE_HAS_NEW_OPERATOR (class_type) = 1;
8890         break;
8891
8892       case DELETE_EXPR:
8893         TYPE_GETS_DELETE (class_type) |= 1;
8894         break;
8895
8896       case VEC_NEW_EXPR:
8897         TYPE_HAS_ARRAY_NEW_OPERATOR (class_type) = 1;
8898         break;
8899
8900       case VEC_DELETE_EXPR:
8901         TYPE_GETS_DELETE (class_type) |= 2;
8902         break;
8903
8904       default:
8905         break;
8906       }
8907
8908     /* [basic.std.dynamic.allocation]/1:
8909
8910        A program is ill-formed if an allocation function is declared
8911        in a namespace scope other than global scope or declared static
8912        in global scope.
8913
8914        The same also holds true for deallocation functions.  */
8915   if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR
8916       || operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
8917     {
8918       if (DECL_NAMESPACE_SCOPE_P (decl))
8919         {
8920           if (CP_DECL_CONTEXT (decl) != global_namespace)
8921             error ("%qD may not be declared within a namespace", decl);
8922           else if (!TREE_PUBLIC (decl))
8923             error ("%qD may not be declared as static", decl);
8924         }
8925     }
8926
8927   if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR)
8928     TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
8929   else if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
8930     TREE_TYPE (decl) = coerce_delete_type (TREE_TYPE (decl));
8931   else
8932     {
8933       /* An operator function must either be a non-static member function
8934          or have at least one parameter of a class, a reference to a class,
8935          an enumeration, or a reference to an enumeration.  13.4.0.6 */
8936       if (! methodp || DECL_STATIC_FUNCTION_P (decl))
8937         {
8938           if (operator_code == TYPE_EXPR
8939               || operator_code == CALL_EXPR
8940               || operator_code == COMPONENT_REF
8941               || operator_code == ARRAY_REF
8942               || operator_code == NOP_EXPR)
8943             {
8944               error ("%qD must be a nonstatic member function", decl);
8945               return;
8946             }
8947           else
8948             {
8949               tree p;
8950
8951               if (DECL_STATIC_FUNCTION_P (decl))
8952                 {
8953                   error ("%qD must be either a non-static member "
8954                          "function or a non-member function", decl);
8955                   return;
8956                 }
8957
8958               for (p = argtypes; p && p != void_list_node; p = TREE_CHAIN (p))
8959                 {
8960                   tree arg = non_reference (TREE_VALUE (p));
8961                   /* IS_AGGR_TYPE, rather than CLASS_TYPE_P, is used
8962                      because these checks are performed even on
8963                      template functions.  */
8964                   if (IS_AGGR_TYPE (arg) || TREE_CODE (arg) == ENUMERAL_TYPE)
8965                     break;
8966                 }
8967
8968               if (!p || p == void_list_node)
8969                 {
8970                   if (!complain)
8971                     return;
8972
8973                   error ("%qD must have an argument of class or "
8974                          "enumerated type",
8975                          decl);
8976                 }
8977             }
8978         }
8979
8980       /* There are no restrictions on the arguments to an overloaded
8981          "operator ()".  */
8982       if (operator_code == CALL_EXPR)
8983         return;
8984
8985       /* Warn about conversion operators that will never be used.  */
8986       if (IDENTIFIER_TYPENAME_P (name)
8987           && ! DECL_TEMPLATE_INFO (decl)
8988           && warn_conversion
8989           /* Warn only declaring the function; there is no need to
8990              warn again about out-of-class definitions.  */
8991           && class_type == current_class_type)
8992         {
8993           tree t = TREE_TYPE (name);
8994           int ref = (TREE_CODE (t) == REFERENCE_TYPE);
8995           const char *what = 0;
8996
8997           if (ref)
8998             t = TYPE_MAIN_VARIANT (TREE_TYPE (t));
8999
9000           if (TREE_CODE (t) == VOID_TYPE)
9001             what = "void";
9002           else if (class_type)
9003             {
9004               if (t == class_type)
9005                 what = "the same type";
9006               /* Don't force t to be complete here.  */
9007               else if (IS_AGGR_TYPE (t)
9008                        && COMPLETE_TYPE_P (t)
9009                        && DERIVED_FROM_P (t, class_type))
9010                 what = "a base class";
9011             }
9012
9013           if (what)
9014             warning (0, "conversion to %s%s will never use a type "
9015                      "conversion operator",
9016                      ref ? "a reference to " : "", what);
9017         }
9018       if (operator_code == COND_EXPR)
9019         {
9020           /* 13.4.0.3 */
9021           error ("ISO C++ prohibits overloading operator ?:");
9022         }
9023       else if (ambi_op_p (operator_code))
9024         {
9025           if (arity == 1)
9026             /* We pick the one-argument operator codes by default, so
9027                we don't have to change anything.  */
9028             ;
9029           else if (arity == 2)
9030             {
9031               /* If we thought this was a unary operator, we now know
9032                  it to be a binary operator.  */
9033               switch (operator_code)
9034                 {
9035                 case INDIRECT_REF:
9036                   operator_code = MULT_EXPR;
9037                   break;
9038
9039                 case ADDR_EXPR:
9040                   operator_code = BIT_AND_EXPR;
9041                   break;
9042
9043                 case UNARY_PLUS_EXPR:
9044                   operator_code = PLUS_EXPR;
9045                   break;
9046
9047                 case NEGATE_EXPR:
9048                   operator_code = MINUS_EXPR;
9049                   break;
9050
9051                 case PREINCREMENT_EXPR:
9052                   operator_code = POSTINCREMENT_EXPR;
9053                   break;
9054
9055                 case PREDECREMENT_EXPR:
9056                   operator_code = POSTDECREMENT_EXPR;
9057                   break;
9058
9059                 default:
9060                   gcc_unreachable ();
9061                 }
9062
9063               SET_OVERLOADED_OPERATOR_CODE (decl, operator_code);
9064
9065               if ((operator_code == POSTINCREMENT_EXPR
9066                    || operator_code == POSTDECREMENT_EXPR)
9067                   && ! processing_template_decl
9068                   && ! same_type_p (TREE_VALUE (TREE_CHAIN (argtypes)), integer_type_node))
9069                 {
9070                   if (methodp)
9071                     error ("postfix %qD must take %<int%> as its argument",
9072                               decl);
9073                   else
9074                     error
9075                       ("postfix %qD must take %<int%> as its second argument",
9076                        decl);
9077                 }
9078             }
9079           else
9080             {
9081               if (methodp)
9082                 error ("%qD must take either zero or one argument", decl);
9083               else
9084                 error ("%qD must take either one or two arguments", decl);
9085             }
9086
9087           /* More Effective C++ rule 6.  */
9088           if (warn_ecpp
9089               && (operator_code == POSTINCREMENT_EXPR
9090                   || operator_code == POSTDECREMENT_EXPR
9091                   || operator_code == PREINCREMENT_EXPR
9092                   || operator_code == PREDECREMENT_EXPR))
9093             {
9094               tree arg = TREE_VALUE (argtypes);
9095               tree ret = TREE_TYPE (TREE_TYPE (decl));
9096               if (methodp || TREE_CODE (arg) == REFERENCE_TYPE)
9097                 arg = TREE_TYPE (arg);
9098               arg = TYPE_MAIN_VARIANT (arg);
9099               if (operator_code == PREINCREMENT_EXPR
9100                   || operator_code == PREDECREMENT_EXPR)
9101                 {
9102                   if (TREE_CODE (ret) != REFERENCE_TYPE
9103                       || !same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (ret)),
9104                                        arg))
9105                     warning (0, "prefix %qD should return %qT", decl,
9106                              build_reference_type (arg));
9107                 }
9108               else
9109                 {
9110                   if (!same_type_p (TYPE_MAIN_VARIANT (ret), arg))
9111                     warning (0, "postfix %qD should return %qT", decl, arg);
9112                 }
9113             }
9114         }
9115       else if (unary_op_p (operator_code))
9116         {
9117           if (arity != 1)
9118             {
9119               if (methodp)
9120                 error ("%qD must take %<void%>", decl);
9121               else
9122                 error ("%qD must take exactly one argument", decl);
9123             }
9124         }
9125       else /* if (binary_op_p (operator_code)) */
9126         {
9127           if (arity != 2)
9128             {
9129               if (methodp)
9130                 error ("%qD must take exactly one argument", decl);
9131               else
9132                 error ("%qD must take exactly two arguments", decl);
9133             }
9134
9135           /* More Effective C++ rule 7.  */
9136           if (warn_ecpp
9137               && (operator_code == TRUTH_ANDIF_EXPR
9138                   || operator_code == TRUTH_ORIF_EXPR
9139                   || operator_code == COMPOUND_EXPR))
9140             warning (0, "user-defined %qD always evaluates both arguments",
9141                      decl);
9142         }
9143
9144       /* Effective C++ rule 23.  */
9145       if (warn_ecpp
9146           && arity == 2
9147           && !DECL_ASSIGNMENT_OPERATOR_P (decl)
9148           && (operator_code == PLUS_EXPR
9149               || operator_code == MINUS_EXPR
9150               || operator_code == TRUNC_DIV_EXPR
9151               || operator_code == MULT_EXPR
9152               || operator_code == TRUNC_MOD_EXPR)
9153           && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
9154         warning (0, "%qD should return by value", decl);
9155
9156       /* [over.oper]/8 */
9157       for (; argtypes && argtypes != void_list_node;
9158           argtypes = TREE_CHAIN (argtypes))
9159         if (TREE_PURPOSE (argtypes))
9160           {
9161             TREE_PURPOSE (argtypes) = NULL_TREE;
9162             if (operator_code == POSTINCREMENT_EXPR
9163                 || operator_code == POSTDECREMENT_EXPR)
9164               {
9165                 if (pedantic)
9166                   pedwarn ("%qD cannot have default arguments", decl);
9167               }
9168             else
9169               error ("%qD cannot have default arguments", decl);
9170           }
9171
9172     }
9173
9174 }
9175 \f
9176 /* Return a string giving the keyword associate with CODE.  */
9177
9178 static const char *
9179 tag_name (enum tag_types code)
9180 {
9181   switch (code)
9182     {
9183     case record_type:
9184       return "struct";
9185     case class_type:
9186       return "class";
9187     case union_type:
9188       return "union";
9189     case enum_type:
9190       return "enum";
9191     case typename_type:
9192       return "typename";
9193     default:
9194       gcc_unreachable ();
9195     }
9196 }
9197
9198 /* Name lookup in an elaborated-type-specifier (after the keyword
9199    indicated by TAG_CODE) has found the TYPE_DECL DECL.  If the
9200    elaborated-type-specifier is invalid, issue a diagnostic and return
9201    error_mark_node; otherwise, return the *_TYPE to which it referred.
9202    If ALLOW_TEMPLATE_P is true, TYPE may be a class template.  */
9203
9204 tree
9205 check_elaborated_type_specifier (enum tag_types tag_code,
9206                                  tree decl,
9207                                  bool allow_template_p)
9208 {
9209   tree type;
9210
9211   /* In the case of:
9212
9213        struct S { struct S *p; };
9214
9215      name lookup will find the TYPE_DECL for the implicit "S::S"
9216      typedef.  Adjust for that here.  */
9217   if (DECL_SELF_REFERENCE_P (decl))
9218     decl = TYPE_NAME (TREE_TYPE (decl));
9219
9220   type = TREE_TYPE (decl);
9221
9222   /* Check TEMPLATE_TYPE_PARM first because DECL_IMPLICIT_TYPEDEF_P
9223      is false for this case as well.  */
9224   if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
9225     {
9226       error ("using template type parameter %qT after %qs",
9227              type, tag_name (tag_code));
9228       return error_mark_node;
9229     }
9230   /*   [dcl.type.elab]
9231
9232        If the identifier resolves to a typedef-name or a template
9233        type-parameter, the elaborated-type-specifier is ill-formed.
9234
9235      In other words, the only legitimate declaration to use in the
9236      elaborated type specifier is the implicit typedef created when
9237      the type is declared.  */
9238   else if (!DECL_IMPLICIT_TYPEDEF_P (decl)
9239            && tag_code != typename_type)
9240     {
9241       error ("using typedef-name %qD after %qs", decl, tag_name (tag_code));
9242       error ("%q+D has a previous declaration here", decl);
9243       return error_mark_node;
9244     }
9245   else if (TREE_CODE (type) != RECORD_TYPE
9246            && TREE_CODE (type) != UNION_TYPE
9247            && tag_code != enum_type
9248            && tag_code != typename_type)
9249     {
9250       error ("%qT referred to as %qs", type, tag_name (tag_code));
9251       error ("%q+T has a previous declaration here", type);
9252       return error_mark_node;
9253     }
9254   else if (TREE_CODE (type) != ENUMERAL_TYPE
9255            && tag_code == enum_type)
9256     {
9257       error ("%qT referred to as enum", type);
9258       error ("%q+T has a previous declaration here", type);
9259       return error_mark_node;
9260     }
9261   else if (!allow_template_p
9262            && TREE_CODE (type) == RECORD_TYPE
9263            && CLASSTYPE_IS_TEMPLATE (type))
9264     {
9265       /* If a class template appears as elaborated type specifier
9266          without a template header such as:
9267
9268            template <class T> class C {};
9269            void f(class C);             // No template header here
9270
9271          then the required template argument is missing.  */
9272       error ("template argument required for %<%s %T%>",
9273              tag_name (tag_code),
9274              DECL_NAME (CLASSTYPE_TI_TEMPLATE (type)));
9275       return error_mark_node;
9276     }
9277
9278   return type;
9279 }
9280
9281 /* Lookup NAME in elaborate type specifier in scope according to
9282    SCOPE and issue diagnostics if necessary.
9283    Return *_TYPE node upon success, NULL_TREE when the NAME is not
9284    found, and ERROR_MARK_NODE for type error.  */
9285
9286 static tree
9287 lookup_and_check_tag (enum tag_types tag_code, tree name,
9288                       tag_scope scope, bool template_header_p)
9289 {
9290   tree t;
9291   tree decl;
9292   if (scope == ts_global)
9293     {
9294       /* First try ordinary name lookup, ignoring hidden class name
9295          injected via friend declaration.  */
9296       decl = lookup_name_prefer_type (name, 2);
9297       /* If that fails, the name will be placed in the smallest
9298          non-class, non-function-prototype scope according to 3.3.1/5.
9299          We may already have a hidden name declared as friend in this
9300          scope.  So lookup again but not ignoring hidden name.
9301          If we find one, that name will be made visible rather than
9302          creating a new tag.  */
9303       if (!decl)
9304         decl = lookup_type_scope (name, ts_within_enclosing_non_class);
9305     }
9306   else
9307     decl = lookup_type_scope (name, scope);
9308
9309   if (decl && DECL_CLASS_TEMPLATE_P (decl))
9310     decl = DECL_TEMPLATE_RESULT (decl);
9311
9312   if (decl && TREE_CODE (decl) == TYPE_DECL)
9313     {
9314       /* Look for invalid nested type:
9315            class C {
9316              class C {};
9317            };  */
9318       if (scope == ts_current && DECL_SELF_REFERENCE_P (decl))
9319         {
9320           error ("%qD has the same name as the class in which it is "
9321                  "declared",
9322                  decl);
9323           return error_mark_node;
9324         }
9325
9326       /* Two cases we need to consider when deciding if a class
9327          template is allowed as an elaborated type specifier:
9328          1. It is a self reference to its own class.
9329          2. It comes with a template header.
9330
9331          For example:
9332
9333            template <class T> class C {
9334              class C *c1;               // DECL_SELF_REFERENCE_P is true
9335              class D;
9336            };
9337            template <class U> class C; // template_header_p is true
9338            template <class T> class C<T>::D {
9339              class C *c2;               // DECL_SELF_REFERENCE_P is true
9340            };  */
9341
9342       t = check_elaborated_type_specifier (tag_code,
9343                                            decl,
9344                                            template_header_p
9345                                            | DECL_SELF_REFERENCE_P (decl));
9346       return t;
9347     }
9348   else
9349     return NULL_TREE;
9350 }
9351
9352 /* Get the struct, enum or union (TAG_CODE says which) with tag NAME.
9353    Define the tag as a forward-reference if it is not defined.
9354
9355    If a declaration is given, process it here, and report an error if
9356    multiple declarations are not identical.
9357
9358    SCOPE is TS_CURRENT when this is also a definition.  Only look in
9359    the current frame for the name (since C++ allows new names in any
9360    scope.)  It is TS_WITHIN_ENCLOSING_NON_CLASS if this is a friend
9361    declaration.  Only look beginning from the current scope outward up
9362    till the nearest non-class scope.  Otherwise it is TS_GLOBAL.
9363
9364    TEMPLATE_HEADER_P is true when this declaration is preceded by
9365    a set of template parameters.  */
9366
9367 tree
9368 xref_tag (enum tag_types tag_code, tree name,
9369           tag_scope scope, bool template_header_p)
9370 {
9371   enum tree_code code;
9372   tree t;
9373   tree context = NULL_TREE;
9374
9375   timevar_push (TV_NAME_LOOKUP);
9376
9377   gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
9378
9379   switch (tag_code)
9380     {
9381     case record_type:
9382     case class_type:
9383       code = RECORD_TYPE;
9384       break;
9385     case union_type:
9386       code = UNION_TYPE;
9387       break;
9388     case enum_type:
9389       code = ENUMERAL_TYPE;
9390       break;
9391     default:
9392       gcc_unreachable ();
9393     }
9394
9395   /* In case of anonymous name, xref_tag is only called to
9396      make type node and push name.  Name lookup is not required.  */
9397   if (ANON_AGGRNAME_P (name))
9398     t = NULL_TREE;
9399   else
9400     t = lookup_and_check_tag  (tag_code, name,
9401                                scope, template_header_p);
9402
9403   if (t == error_mark_node)
9404     POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
9405
9406   if (scope != ts_current && t && current_class_type
9407       && template_class_depth (current_class_type)
9408       && template_header_p)
9409     {
9410       /* Since SCOPE is not TS_CURRENT, we are not looking at a
9411          definition of this tag.  Since, in addition, we are currently
9412          processing a (member) template declaration of a template
9413          class, we must be very careful; consider:
9414
9415            template <class X>
9416            struct S1
9417
9418            template <class U>
9419            struct S2
9420            { template <class V>
9421            friend struct S1; };
9422
9423          Here, the S2::S1 declaration should not be confused with the
9424          outer declaration.  In particular, the inner version should
9425          have a template parameter of level 2, not level 1.  This
9426          would be particularly important if the member declaration
9427          were instead:
9428
9429            template <class V = U> friend struct S1;
9430
9431          say, when we should tsubst into `U' when instantiating
9432          S2.  On the other hand, when presented with:
9433
9434            template <class T>
9435            struct S1 {
9436              template <class U>
9437              struct S2 {};
9438              template <class U>
9439              friend struct S2;
9440            };
9441
9442          we must find the inner binding eventually.  We
9443          accomplish this by making sure that the new type we
9444          create to represent this declaration has the right
9445          TYPE_CONTEXT.  */
9446       context = TYPE_CONTEXT (t);
9447       t = NULL_TREE;
9448     }
9449
9450   if (! t)
9451     {
9452       /* If no such tag is yet defined, create a forward-reference node
9453          and record it as the "definition".
9454          When a real declaration of this type is found,
9455          the forward-reference will be altered into a real type.  */
9456       if (code == ENUMERAL_TYPE)
9457         {
9458           error ("use of enum %q#D without previous declaration", name);
9459           POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
9460         }
9461       else
9462         {
9463           t = make_aggr_type (code);
9464           TYPE_CONTEXT (t) = context;
9465           t = pushtag (name, t, scope);
9466         }
9467     }
9468   else
9469     {
9470       if (template_header_p && IS_AGGR_TYPE (t))
9471         redeclare_class_template (t, current_template_parms);
9472       else if (!processing_template_decl
9473                && CLASS_TYPE_P (t)
9474                && CLASSTYPE_IS_TEMPLATE (t))
9475         {
9476           error ("redeclaration of %qT as a non-template", t);
9477           t = error_mark_node;
9478         }
9479
9480       /* Make injected friend class visible.  */
9481       if (scope != ts_within_enclosing_non_class
9482           && hidden_name_p (TYPE_NAME (t)))
9483         {
9484           DECL_ANTICIPATED (TYPE_NAME (t)) = 0;
9485           DECL_FRIEND_P (TYPE_NAME (t)) = 0;
9486
9487           if (TYPE_TEMPLATE_INFO (t))
9488             {
9489               DECL_ANTICIPATED (TYPE_TI_TEMPLATE (t)) = 0;
9490               DECL_FRIEND_P (TYPE_TI_TEMPLATE (t)) = 0;
9491             }
9492         }
9493     }
9494
9495   POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
9496 }
9497
9498 tree
9499 xref_tag_from_type (tree old, tree id, tag_scope scope)
9500 {
9501   enum tag_types tag_kind;
9502
9503   if (TREE_CODE (old) == RECORD_TYPE)
9504     tag_kind = (CLASSTYPE_DECLARED_CLASS (old) ? class_type : record_type);
9505   else
9506     tag_kind  = union_type;
9507
9508   if (id == NULL_TREE)
9509     id = TYPE_IDENTIFIER (old);
9510
9511   return xref_tag (tag_kind, id, scope, false);
9512 }
9513
9514 /* Create the binfo hierarchy for REF with (possibly NULL) base list
9515    BASE_LIST.  For each element on BASE_LIST the TREE_PURPOSE is an
9516    access_* node, and the TREE_VALUE is the type of the base-class.
9517    Non-NULL TREE_TYPE indicates virtual inheritance.  */
9518
9519 void
9520 xref_basetypes (tree ref, tree base_list)
9521 {
9522   tree *basep;
9523   tree binfo, base_binfo;
9524   unsigned max_vbases = 0; /* Maximum direct & indirect virtual bases.  */
9525   unsigned max_bases = 0;  /* Maximum direct bases.  */
9526   int i;
9527   tree default_access;
9528   tree igo_prev; /* Track Inheritance Graph Order.  */
9529
9530   if (ref == error_mark_node)
9531     return;
9532
9533   /* The base of a derived class is private by default, all others are
9534      public.  */
9535   default_access = (TREE_CODE (ref) == RECORD_TYPE
9536                     && CLASSTYPE_DECLARED_CLASS (ref)
9537                     ? access_private_node : access_public_node);
9538
9539   /* First, make sure that any templates in base-classes are
9540      instantiated.  This ensures that if we call ourselves recursively
9541      we do not get confused about which classes are marked and which
9542      are not.  */
9543   basep = &base_list;
9544   while (*basep)
9545     {
9546       tree basetype = TREE_VALUE (*basep);
9547
9548       if (!(processing_template_decl && uses_template_parms (basetype))
9549           && !complete_type_or_else (basetype, NULL))
9550         /* An incomplete type.  Remove it from the list.  */
9551         *basep = TREE_CHAIN (*basep);
9552       else
9553         {
9554           max_bases++;
9555           if (TREE_TYPE (*basep))
9556             max_vbases++;
9557           if (CLASS_TYPE_P (basetype))
9558             max_vbases += VEC_length (tree, CLASSTYPE_VBASECLASSES (basetype));
9559           basep = &TREE_CHAIN (*basep);
9560         }
9561     }
9562
9563   TYPE_MARKED_P (ref) = 1;
9564
9565   /* The binfo slot should be empty, unless this is an (ill-formed)
9566      redefinition.  */
9567   gcc_assert (!TYPE_BINFO (ref) || TYPE_SIZE (ref));
9568   gcc_assert (TYPE_MAIN_VARIANT (ref) == ref);
9569
9570   binfo = make_tree_binfo (max_bases);
9571
9572   TYPE_BINFO (ref) = binfo;
9573   BINFO_OFFSET (binfo) = size_zero_node;
9574   BINFO_TYPE (binfo) = ref;
9575
9576   if (max_bases)
9577     {
9578       BINFO_BASE_ACCESSES (binfo) = VEC_alloc (tree, gc, max_bases);
9579       /* An aggregate cannot have baseclasses.  */
9580       CLASSTYPE_NON_AGGREGATE (ref) = 1;
9581
9582       if (TREE_CODE (ref) == UNION_TYPE)
9583         error ("derived union %qT invalid", ref);
9584     }
9585
9586   if (max_bases > 1)
9587     {
9588       if (TYPE_FOR_JAVA (ref))
9589         error ("Java class %qT cannot have multiple bases", ref);
9590     }
9591
9592   if (max_vbases)
9593     {
9594       CLASSTYPE_VBASECLASSES (ref) = VEC_alloc (tree, gc, max_vbases);
9595
9596       if (TYPE_FOR_JAVA (ref))
9597         error ("Java class %qT cannot have virtual bases", ref);
9598     }
9599
9600   for (igo_prev = binfo; base_list; base_list = TREE_CHAIN (base_list))
9601     {
9602       tree access = TREE_PURPOSE (base_list);
9603       int via_virtual = TREE_TYPE (base_list) != NULL_TREE;
9604       tree basetype = TREE_VALUE (base_list);
9605
9606       if (access == access_default_node)
9607         access = default_access;
9608
9609       if (TREE_CODE (basetype) == TYPE_DECL)
9610         basetype = TREE_TYPE (basetype);
9611       if (TREE_CODE (basetype) != RECORD_TYPE
9612           && TREE_CODE (basetype) != TYPENAME_TYPE
9613           && TREE_CODE (basetype) != TEMPLATE_TYPE_PARM
9614           && TREE_CODE (basetype) != BOUND_TEMPLATE_TEMPLATE_PARM)
9615         {
9616           error ("base type %qT fails to be a struct or class type",
9617                  basetype);
9618           continue;
9619         }
9620
9621       if (TYPE_FOR_JAVA (basetype) && (current_lang_depth () == 0))
9622         TYPE_FOR_JAVA (ref) = 1;
9623
9624       base_binfo = NULL_TREE;
9625       if (CLASS_TYPE_P (basetype) && !dependent_type_p (basetype))
9626         {
9627           base_binfo = TYPE_BINFO (basetype);
9628           /* The original basetype could have been a typedef'd type.  */
9629           basetype = BINFO_TYPE (base_binfo);
9630
9631           /* Inherit flags from the base.  */
9632           TYPE_HAS_NEW_OPERATOR (ref)
9633             |= TYPE_HAS_NEW_OPERATOR (basetype);
9634           TYPE_HAS_ARRAY_NEW_OPERATOR (ref)
9635             |= TYPE_HAS_ARRAY_NEW_OPERATOR (basetype);
9636           TYPE_GETS_DELETE (ref) |= TYPE_GETS_DELETE (basetype);
9637           TYPE_HAS_CONVERSION (ref) |= TYPE_HAS_CONVERSION (basetype);
9638           CLASSTYPE_DIAMOND_SHAPED_P (ref)
9639             |= CLASSTYPE_DIAMOND_SHAPED_P (basetype);
9640           CLASSTYPE_REPEATED_BASE_P (ref)
9641             |= CLASSTYPE_REPEATED_BASE_P (basetype);
9642         }
9643
9644       /* We must do this test after we've seen through a typedef
9645          type.  */
9646       if (TYPE_MARKED_P (basetype))
9647         {
9648           if (basetype == ref)
9649             error ("recursive type %qT undefined", basetype);
9650           else
9651             error ("duplicate base type %qT invalid", basetype);
9652           continue;
9653         }
9654       TYPE_MARKED_P (basetype) = 1;
9655
9656       base_binfo = copy_binfo (base_binfo, basetype, ref,
9657                                &igo_prev, via_virtual);
9658       if (!BINFO_INHERITANCE_CHAIN (base_binfo))
9659         BINFO_INHERITANCE_CHAIN (base_binfo) = binfo;
9660
9661       BINFO_BASE_APPEND (binfo, base_binfo);
9662       BINFO_BASE_ACCESS_APPEND (binfo, access);
9663     }
9664
9665   if (VEC_space (tree, CLASSTYPE_VBASECLASSES (ref), 1))
9666     /* If we have space in the vbase vector, we must have shared at
9667        least one of them, and are therefore diamond shaped.  */
9668     CLASSTYPE_DIAMOND_SHAPED_P (ref) = 1;
9669
9670   /* Unmark all the types.  */
9671   for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
9672     TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
9673   TYPE_MARKED_P (ref) = 0;
9674
9675   /* Now see if we have a repeated base type.  */
9676   if (!CLASSTYPE_REPEATED_BASE_P (ref))
9677     {
9678       for (base_binfo = binfo; base_binfo;
9679            base_binfo = TREE_CHAIN (base_binfo))
9680         {
9681           if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
9682             {
9683               CLASSTYPE_REPEATED_BASE_P (ref) = 1;
9684               break;
9685             }
9686           TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 1;
9687         }
9688       for (base_binfo = binfo; base_binfo;
9689            base_binfo = TREE_CHAIN (base_binfo))
9690         if (TYPE_MARKED_P (BINFO_TYPE (base_binfo)))
9691           TYPE_MARKED_P (BINFO_TYPE (base_binfo)) = 0;
9692         else
9693           break;
9694     }
9695 }
9696
9697 \f
9698 /* Begin compiling the definition of an enumeration type.
9699    NAME is its name.
9700    Returns the type object, as yet incomplete.
9701    Also records info about it so that build_enumerator
9702    may be used to declare the individual values as they are read.  */
9703
9704 tree
9705 start_enum (tree name)
9706 {
9707   tree enumtype;
9708
9709   gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
9710
9711   /* If this is the real definition for a previous forward reference,
9712      fill in the contents in the same object that used to be the
9713      forward reference.  */
9714
9715   enumtype = lookup_and_check_tag (enum_type, name,
9716                                    /*tag_scope=*/ts_current,
9717                                    /*template_header_p=*/false);
9718
9719   if (enumtype != NULL_TREE && TREE_CODE (enumtype) == ENUMERAL_TYPE)
9720     {
9721       error ("multiple definition of %q#T", enumtype);
9722       error ("%Jprevious definition here", TYPE_MAIN_DECL (enumtype));
9723       /* Clear out TYPE_VALUES, and start again.  */
9724       TYPE_VALUES (enumtype) = NULL_TREE;
9725     }
9726   else
9727     {
9728       /* In case of error, make a dummy enum to allow parsing to
9729          continue.  */
9730       if (enumtype == error_mark_node)
9731         name = make_anon_name ();
9732
9733       enumtype = make_node (ENUMERAL_TYPE);
9734       enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current);
9735     }
9736
9737   return enumtype;
9738 }
9739
9740 /* After processing and defining all the values of an enumeration type,
9741    install their decls in the enumeration type and finish it off.
9742    ENUMTYPE is the type object and VALUES a list of name-value pairs.  */
9743
9744 void
9745 finish_enum (tree enumtype)
9746 {
9747   tree values;
9748   tree decl;
9749   tree value;
9750   tree minnode;
9751   tree maxnode;
9752   tree t;
9753   bool unsignedp;
9754   bool use_short_enum;
9755   int lowprec;
9756   int highprec;
9757   int precision;
9758   integer_type_kind itk;
9759   tree underlying_type = NULL_TREE;
9760
9761   /* We built up the VALUES in reverse order.  */
9762   TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype));
9763
9764   /* For an enum defined in a template, just set the type of the values;
9765      all further processing is postponed until the template is
9766      instantiated.  We need to set the type so that tsubst of a CONST_DECL
9767      works.  */
9768   if (processing_template_decl)
9769     {
9770       for (values = TYPE_VALUES (enumtype);
9771            values;
9772            values = TREE_CHAIN (values))
9773         TREE_TYPE (TREE_VALUE (values)) = enumtype;
9774       if (at_function_scope_p ())
9775         add_stmt (build_min (TAG_DEFN, enumtype));
9776       return;
9777     }
9778
9779   /* Determine the minimum and maximum values of the enumerators.  */
9780   if (TYPE_VALUES (enumtype))
9781     {
9782       minnode = maxnode = NULL_TREE;
9783
9784       for (values = TYPE_VALUES (enumtype);
9785            values;
9786            values = TREE_CHAIN (values))
9787         {
9788           decl = TREE_VALUE (values);
9789
9790           /* [dcl.enum]: Following the closing brace of an enum-specifier,
9791              each enumerator has the type of its enumeration.  Prior to the
9792              closing brace, the type of each enumerator is the type of its
9793              initializing value.  */
9794           TREE_TYPE (decl) = enumtype;
9795
9796           /* Update the minimum and maximum values, if appropriate.  */
9797           value = DECL_INITIAL (decl);
9798           if (value == error_mark_node)
9799             value = integer_zero_node;
9800           /* Figure out what the minimum and maximum values of the
9801              enumerators are.  */
9802           if (!minnode)
9803             minnode = maxnode = value;
9804           else if (tree_int_cst_lt (maxnode, value))
9805             maxnode = value;
9806           else if (tree_int_cst_lt (value, minnode))
9807             minnode = value;
9808         }
9809     }
9810   else
9811     /* [dcl.enum]
9812
9813        If the enumerator-list is empty, the underlying type is as if
9814        the enumeration had a single enumerator with value 0.  */
9815     minnode = maxnode = integer_zero_node;
9816
9817   /* Compute the number of bits require to represent all values of the
9818      enumeration.  We must do this before the type of MINNODE and
9819      MAXNODE are transformed, since min_precision relies on the
9820      TREE_TYPE of the value it is passed.  */
9821   unsignedp = tree_int_cst_sgn (minnode) >= 0;
9822   lowprec = min_precision (minnode, unsignedp);
9823   highprec = min_precision (maxnode, unsignedp);
9824   precision = MAX (lowprec, highprec);
9825
9826   /* Determine the underlying type of the enumeration.
9827
9828        [dcl.enum]
9829
9830        The underlying type of an enumeration is an integral type that
9831        can represent all the enumerator values defined in the
9832        enumeration.  It is implementation-defined which integral type is
9833        used as the underlying type for an enumeration except that the
9834        underlying type shall not be larger than int unless the value of
9835        an enumerator cannot fit in an int or unsigned int.
9836
9837      We use "int" or an "unsigned int" as the underlying type, even if
9838      a smaller integral type would work, unless the user has
9839      explicitly requested that we use the smallest possible type.  The
9840      user can request that for all enumerations with a command line
9841      flag, or for just one enumeration with an attribute.  */
9842
9843   use_short_enum = flag_short_enums
9844     || lookup_attribute ("packed", TYPE_ATTRIBUTES (enumtype));
9845
9846   for (itk = (use_short_enum ? itk_char : itk_int);
9847        itk != itk_none;
9848        itk++)
9849     {
9850       underlying_type = integer_types[itk];
9851       if (TYPE_PRECISION (underlying_type) >= precision
9852           && TYPE_UNSIGNED (underlying_type) == unsignedp)
9853         break;
9854     }
9855   if (itk == itk_none)
9856     {
9857       /* DR 377
9858
9859          IF no integral type can represent all the enumerator values, the
9860          enumeration is ill-formed.  */
9861       error ("no integral type can represent all of the enumerator values "
9862              "for %qT", enumtype);
9863       precision = TYPE_PRECISION (long_long_integer_type_node);
9864       underlying_type = integer_types[itk_unsigned_long_long];
9865     }
9866
9867   /* Compute the minium and maximum values for the type.
9868
9869      [dcl.enum]
9870
9871      For an enumeration where emin is the smallest enumerator and emax
9872      is the largest, the values of the enumeration are the values of the
9873      underlying type in the range bmin to bmax, where bmin and bmax are,
9874      respectively, the smallest and largest values of the smallest bit-
9875      field that can store emin and emax.  */
9876
9877   /* The middle-end currently assumes that types with TYPE_PRECISION
9878      narrower than their underlying type are suitably zero or sign
9879      extended to fill their mode.  g++ doesn't make these guarantees.
9880      Until the middle-end can represent such paradoxical types, we
9881      set the TYPE_PRECISION to the width of the underlying type.  */
9882   TYPE_PRECISION (enumtype) = TYPE_PRECISION (underlying_type);
9883
9884   set_min_and_max_values_for_integral_type (enumtype, precision, unsignedp);
9885
9886   /* [dcl.enum]
9887
9888      The value of sizeof() applied to an enumeration type, an object
9889      of an enumeration type, or an enumerator, is the value of sizeof()
9890      applied to the underlying type.  */
9891   TYPE_SIZE (enumtype) = TYPE_SIZE (underlying_type);
9892   TYPE_SIZE_UNIT (enumtype) = TYPE_SIZE_UNIT (underlying_type);
9893   TYPE_MODE (enumtype) = TYPE_MODE (underlying_type);
9894   TYPE_ALIGN (enumtype) = TYPE_ALIGN (underlying_type);
9895   TYPE_USER_ALIGN (enumtype) = TYPE_USER_ALIGN (underlying_type);
9896   TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (underlying_type);
9897
9898   /* Convert each of the enumerators to the type of the underlying
9899      type of the enumeration.  */
9900   for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
9901     {
9902       location_t saved_location;
9903
9904       decl = TREE_VALUE (values);
9905       saved_location = input_location;
9906       input_location = DECL_SOURCE_LOCATION (decl);
9907       value = perform_implicit_conversion (underlying_type,
9908                                            DECL_INITIAL (decl));
9909       input_location = saved_location;
9910
9911       /* Do not clobber shared ints.  */
9912       value = copy_node (value);
9913
9914       TREE_TYPE (value) = enumtype;
9915       DECL_INITIAL (decl) = value;
9916       TREE_VALUE (values) = value;
9917     }
9918
9919   /* Fix up all variant types of this enum type.  */
9920   for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
9921     {
9922       TYPE_VALUES (t) = TYPE_VALUES (enumtype);
9923       TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (enumtype);
9924       TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (enumtype);
9925       TYPE_SIZE (t) = TYPE_SIZE (enumtype);
9926       TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (enumtype);
9927       TYPE_MODE (t) = TYPE_MODE (enumtype);
9928       TYPE_PRECISION (t) = TYPE_PRECISION (enumtype);
9929       TYPE_ALIGN (t) = TYPE_ALIGN (enumtype);
9930       TYPE_USER_ALIGN (t) = TYPE_USER_ALIGN (enumtype);
9931       TYPE_UNSIGNED (t) = TYPE_UNSIGNED (enumtype);
9932     }
9933
9934   /* Finish debugging output for this type.  */
9935   rest_of_type_compilation (enumtype, namespace_bindings_p ());
9936 }
9937
9938 /* Build and install a CONST_DECL for an enumeration constant of the
9939    enumeration type ENUMTYPE whose NAME and VALUE (if any) are provided.
9940    Assignment of sequential values by default is handled here.  */
9941
9942 void
9943 build_enumerator (tree name, tree value, tree enumtype)
9944 {
9945   tree decl;
9946   tree context;
9947   tree type;
9948
9949   /* If the VALUE was erroneous, pretend it wasn't there; that will
9950      result in the enum being assigned the next value in sequence.  */
9951   if (value == error_mark_node)
9952     value = NULL_TREE;
9953
9954   /* Remove no-op casts from the value.  */
9955   if (value)
9956     STRIP_TYPE_NOPS (value);
9957
9958   if (! processing_template_decl)
9959     {
9960       /* Validate and default VALUE.  */
9961       if (value != NULL_TREE)
9962         {
9963           value = integral_constant_value (value);
9964
9965           if (TREE_CODE (value) == INTEGER_CST)
9966             {
9967               value = perform_integral_promotions (value);
9968               constant_expression_warning (value);
9969             }
9970           else
9971             {
9972               error ("enumerator value for %qD not integer constant", name);
9973               value = NULL_TREE;
9974             }
9975         }
9976
9977       /* Default based on previous value.  */
9978       if (value == NULL_TREE)
9979         {
9980           if (TYPE_VALUES (enumtype))
9981             {
9982               HOST_WIDE_INT hi;
9983               unsigned HOST_WIDE_INT lo;
9984               tree prev_value;
9985               bool overflowed;
9986
9987               /* The next value is the previous value plus one.  We can
9988                  safely assume that the previous value is an INTEGER_CST.
9989                  add_double doesn't know the type of the target expression,
9990                  so we must check with int_fits_type_p as well.  */
9991               prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype)));
9992               overflowed = add_double (TREE_INT_CST_LOW (prev_value),
9993                                        TREE_INT_CST_HIGH (prev_value),
9994                                        1, 0, &lo, &hi);
9995               value = build_int_cst_wide (TREE_TYPE (prev_value), lo, hi);
9996               overflowed |= !int_fits_type_p (value, TREE_TYPE (prev_value));
9997
9998               if (overflowed)
9999                 {
10000                   error ("overflow in enumeration values at %qD", name);
10001                   value = error_mark_node;
10002                 }
10003             }
10004           else
10005             value = integer_zero_node;
10006         }
10007
10008       /* Remove no-op casts from the value.  */
10009       STRIP_TYPE_NOPS (value);
10010     }
10011
10012   /* C++ associates enums with global, function, or class declarations.  */
10013   context = current_scope ();
10014
10015   /* Build the actual enumeration constant.  Note that the enumeration
10016     constants have the type of their initializers until the
10017     enumeration is complete:
10018
10019       [ dcl.enum ]
10020
10021       Following the closing brace of an enum-specifier, each enumer-
10022       ator has the type of its enumeration.  Prior to the closing
10023       brace, the type of each enumerator is the type of its
10024       initializing value.
10025
10026     In finish_enum we will reset the type.  Of course, if we're
10027     processing a template, there may be no value.  */
10028   type = value ? TREE_TYPE (value) : NULL_TREE;
10029
10030   if (context && context == current_class_type)
10031     /* This enum declaration is local to the class.  We need the full
10032        lang_decl so that we can record DECL_CLASS_CONTEXT, for example.  */
10033     decl = build_lang_decl (CONST_DECL, name, type);
10034   else
10035     /* It's a global enum, or it's local to a function.  (Note local to
10036       a function could mean local to a class method.  */
10037     decl = build_decl (CONST_DECL, name, type);
10038
10039   DECL_CONTEXT (decl) = FROB_CONTEXT (context);
10040   TREE_CONSTANT (decl) = 1;
10041   TREE_INVARIANT (decl) = 1;
10042   TREE_READONLY (decl) = 1;
10043   DECL_INITIAL (decl) = value;
10044
10045   if (context && context == current_class_type)
10046     /* In something like `struct S { enum E { i = 7 }; };' we put `i'
10047        on the TYPE_FIELDS list for `S'.  (That's so that you can say
10048        things like `S::i' later.)  */
10049     finish_member_declaration (decl);
10050   else
10051     pushdecl (decl);
10052
10053   /* Add this enumeration constant to the list for this type.  */
10054   TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype));
10055 }
10056
10057 \f
10058 /* We're defining DECL.  Make sure that it's type is OK.  */
10059
10060 static void
10061 check_function_type (tree decl, tree current_function_parms)
10062 {
10063   tree fntype = TREE_TYPE (decl);
10064   tree return_type = complete_type (TREE_TYPE (fntype));
10065
10066   /* In a function definition, arg types must be complete.  */
10067   require_complete_types_for_parms (current_function_parms);
10068
10069   if (dependent_type_p (return_type))
10070     return;
10071   if (!COMPLETE_OR_VOID_TYPE_P (return_type))
10072     {
10073       tree args = TYPE_ARG_TYPES (fntype);
10074           
10075       error ("return type %q#T is incomplete", return_type);
10076
10077       /* Make it return void instead.  */
10078       if (TREE_CODE (fntype) == METHOD_TYPE)
10079         fntype = build_method_type_directly (TREE_TYPE (TREE_VALUE (args)),
10080                                              void_type_node,
10081                                              TREE_CHAIN (args));
10082       else
10083         fntype = build_function_type (void_type_node, args);
10084       TREE_TYPE (decl)
10085         = build_exception_variant (fntype,
10086                                    TYPE_RAISES_EXCEPTIONS (TREE_TYPE (decl)));
10087     }
10088   else
10089     abstract_virtuals_error (decl, TREE_TYPE (fntype));
10090 }
10091
10092 /* Create the FUNCTION_DECL for a function definition.
10093    DECLSPECS and DECLARATOR are the parts of the declaration;
10094    they describe the function's name and the type it returns,
10095    but twisted together in a fashion that parallels the syntax of C.
10096
10097    FLAGS is a bitwise or of SF_PRE_PARSED (indicating that the
10098    DECLARATOR is really the DECL for the function we are about to
10099    process and that DECLSPECS should be ignored), SF_INCLASS_INLINE
10100    indicating that the function is an inline defined in-class.
10101
10102    This function creates a binding context for the function body
10103    as well as setting up the FUNCTION_DECL in current_function_decl.
10104
10105    For C++, we must first check whether that datum makes any sense.
10106    For example, "class A local_a(1,2);" means that variable local_a
10107    is an aggregate of type A, which should have a constructor
10108    applied to it with the argument list [1, 2].  */
10109
10110 void
10111 start_preparsed_function (tree decl1, tree attrs, int flags)
10112 {
10113   tree ctype = NULL_TREE;
10114   tree fntype;
10115   tree restype;
10116   int doing_friend = 0;
10117   struct cp_binding_level *bl;
10118   tree current_function_parms;
10119   struct c_fileinfo *finfo
10120     = get_fileinfo (lbasename (LOCATION_FILE (DECL_SOURCE_LOCATION (decl1))));
10121   bool honor_interface;
10122
10123   /* Sanity check.  */
10124   gcc_assert (TREE_CODE (TREE_VALUE (void_list_node)) == VOID_TYPE);
10125   gcc_assert (TREE_CHAIN (void_list_node) == NULL_TREE);
10126
10127   fntype = TREE_TYPE (decl1);
10128   if (TREE_CODE (fntype) == METHOD_TYPE)
10129     ctype = TYPE_METHOD_BASETYPE (fntype);
10130
10131   /* ISO C++ 11.4/5.  A friend function defined in a class is in
10132      the (lexical) scope of the class in which it is defined.  */
10133   if (!ctype && DECL_FRIEND_P (decl1))
10134     {
10135       ctype = DECL_FRIEND_CONTEXT (decl1);
10136
10137       /* CTYPE could be null here if we're dealing with a template;
10138          for example, `inline friend float foo()' inside a template
10139          will have no CTYPE set.  */
10140       if (ctype && TREE_CODE (ctype) != RECORD_TYPE)
10141         ctype = NULL_TREE;
10142       else
10143         doing_friend = 1;
10144     }
10145
10146   if (DECL_DECLARED_INLINE_P (decl1)
10147       && lookup_attribute ("noinline", attrs))
10148     warning (0, "inline function %q+D given attribute noinline", decl1);
10149
10150   if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl1))
10151     /* This is a constructor, we must ensure that any default args
10152        introduced by this definition are propagated to the clones
10153        now. The clones are used directly in overload resolution.  */
10154     adjust_clone_args (decl1);
10155
10156   /* Sometimes we don't notice that a function is a static member, and
10157      build a METHOD_TYPE for it.  Fix that up now.  */
10158   if (ctype != NULL_TREE && DECL_STATIC_FUNCTION_P (decl1)
10159       && TREE_CODE (TREE_TYPE (decl1)) == METHOD_TYPE)
10160     {
10161       revert_static_member_fn (decl1);
10162       ctype = NULL_TREE;
10163     }
10164
10165   /* Set up current_class_type, and enter the scope of the class, if
10166      appropriate.  */
10167   if (ctype)
10168     push_nested_class (ctype);
10169   else if (DECL_STATIC_FUNCTION_P (decl1))
10170     push_nested_class (DECL_CONTEXT (decl1));
10171
10172   /* Now that we have entered the scope of the class, we must restore
10173      the bindings for any template parameters surrounding DECL1, if it
10174      is an inline member template.  (Order is important; consider the
10175      case where a template parameter has the same name as a field of
10176      the class.)  It is not until after this point that
10177      PROCESSING_TEMPLATE_DECL is guaranteed to be set up correctly.  */
10178   if (flags & SF_INCLASS_INLINE)
10179     maybe_begin_member_template_processing (decl1);
10180
10181   /* Effective C++ rule 15.  */
10182   if (warn_ecpp
10183       && DECL_OVERLOADED_OPERATOR_P (decl1) == NOP_EXPR
10184       && TREE_CODE (TREE_TYPE (fntype)) == VOID_TYPE)
10185     warning (0, "%<operator=%> should return a reference to %<*this%>");
10186
10187   /* Make the init_value nonzero so pushdecl knows this is not tentative.
10188      error_mark_node is replaced below (in poplevel) with the BLOCK.  */
10189   if (!DECL_INITIAL (decl1))
10190     DECL_INITIAL (decl1) = error_mark_node;
10191
10192   /* This function exists in static storage.
10193      (This does not mean `static' in the C sense!)  */
10194   TREE_STATIC (decl1) = 1;
10195
10196   /* We must call push_template_decl after current_class_type is set
10197      up.  (If we are processing inline definitions after exiting a
10198      class scope, current_class_type will be NULL_TREE until set above
10199      by push_nested_class.)  */
10200   if (processing_template_decl)
10201     {
10202       /* FIXME: Handle error_mark_node more gracefully.  */
10203       tree newdecl1 = push_template_decl (decl1);
10204       if (newdecl1 != error_mark_node)
10205         decl1 = newdecl1;
10206     }
10207
10208   /* We are now in the scope of the function being defined.  */
10209   current_function_decl = decl1;
10210
10211   /* Save the parm names or decls from this function's declarator
10212      where store_parm_decls will find them.  */
10213   current_function_parms = DECL_ARGUMENTS (decl1);
10214
10215   /* Make sure the parameter and return types are reasonable.  When
10216      you declare a function, these types can be incomplete, but they
10217      must be complete when you define the function.  */
10218   check_function_type (decl1, current_function_parms);
10219
10220   /* Build the return declaration for the function.  */
10221   restype = TREE_TYPE (fntype);
10222   /* Promote the value to int before returning it.  */
10223   if (c_promoting_integer_type_p (restype))
10224     restype = type_promotes_to (restype);
10225   if (DECL_RESULT (decl1) == NULL_TREE)
10226     {
10227       tree resdecl;
10228
10229       resdecl = build_decl (RESULT_DECL, 0, TYPE_MAIN_VARIANT (restype));
10230       DECL_ARTIFICIAL (resdecl) = 1;
10231       DECL_IGNORED_P (resdecl) = 1;
10232       DECL_RESULT (decl1) = resdecl;
10233
10234       cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl);
10235     }
10236
10237   /* Initialize RTL machinery.  We cannot do this until
10238      CURRENT_FUNCTION_DECL and DECL_RESULT are set up.  We do this
10239      even when processing a template; this is how we get
10240      CFUN set up, and our per-function variables initialized.
10241      FIXME factor out the non-RTL stuff.  */
10242   bl = current_binding_level;
10243   allocate_struct_function (decl1);
10244   current_binding_level = bl;
10245
10246   /* Even though we're inside a function body, we still don't want to
10247      call expand_expr to calculate the size of a variable-sized array.
10248      We haven't necessarily assigned RTL to all variables yet, so it's
10249      not safe to try to expand expressions involving them.  */
10250   cfun->x_dont_save_pending_sizes_p = 1;
10251
10252   /* Start the statement-tree, start the tree now.  */
10253   DECL_SAVED_TREE (decl1) = push_stmt_list ();
10254
10255   /* Let the user know we're compiling this function.  */
10256   announce_function (decl1);
10257
10258   /* Record the decl so that the function name is defined.
10259      If we already have a decl for this name, and it is a FUNCTION_DECL,
10260      use the old decl.  */
10261   if (!processing_template_decl && !(flags & SF_PRE_PARSED))
10262     {
10263       /* A specialization is not used to guide overload resolution.  */
10264       if (!DECL_FUNCTION_MEMBER_P (decl1)
10265           && !(DECL_USE_TEMPLATE (decl1) &&
10266                PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl1))))
10267         {
10268           tree olddecl = pushdecl (decl1);
10269
10270           if (olddecl == error_mark_node)
10271             /* If something went wrong when registering the declaration,
10272                use DECL1; we have to have a FUNCTION_DECL to use when
10273                parsing the body of the function.  */
10274             ;
10275           else
10276             /* Otherwise, OLDDECL is either a previous declaration of
10277                the same function or DECL1 itself.  */
10278             decl1 = olddecl;
10279         }
10280       else
10281         {
10282           /* We need to set the DECL_CONTEXT.  */
10283           if (!DECL_CONTEXT (decl1) && DECL_TEMPLATE_INFO (decl1))
10284             DECL_CONTEXT (decl1) = DECL_CONTEXT (DECL_TI_TEMPLATE (decl1));
10285           /* And make sure we have enough default args.  */
10286           check_default_args (decl1);
10287         }
10288       fntype = TREE_TYPE (decl1);
10289     }
10290
10291   /* Determine the ELF visibility attribute for the function.  We must
10292      not do this before calling "pushdecl", as we must allow
10293      "duplicate_decls" to merge any attributes appropriately.  */
10294   if (!DECL_CLONED_FUNCTION_P (decl1))
10295     determine_visibility (decl1);
10296
10297   /* Reset these in case the call to pushdecl changed them.  */
10298   current_function_decl = decl1;
10299   cfun->decl = decl1;
10300
10301   /* If we are (erroneously) defining a function that we have already
10302      defined before, wipe out what we knew before.  */
10303   if (!DECL_PENDING_INLINE_P (decl1))
10304     DECL_SAVED_FUNCTION_DATA (decl1) = NULL;
10305
10306   if (ctype && !doing_friend && !DECL_STATIC_FUNCTION_P (decl1))
10307     {
10308       /* We know that this was set up by `grokclassfn'.  We do not
10309          wait until `store_parm_decls', since evil parse errors may
10310          never get us to that point.  Here we keep the consistency
10311          between `current_class_type' and `current_class_ptr'.  */
10312       tree t = DECL_ARGUMENTS (decl1);
10313
10314       gcc_assert (t != NULL_TREE && TREE_CODE (t) == PARM_DECL);
10315       gcc_assert (TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE);
10316
10317       cp_function_chain->x_current_class_ref
10318         = build_indirect_ref (t, NULL);
10319       cp_function_chain->x_current_class_ptr = t;
10320
10321       /* Constructors and destructors need to know whether they're "in
10322          charge" of initializing virtual base classes.  */
10323       t = TREE_CHAIN (t);
10324       if (DECL_HAS_IN_CHARGE_PARM_P (decl1))
10325         {
10326           current_in_charge_parm = t;
10327           t = TREE_CHAIN (t);
10328         }
10329       if (DECL_HAS_VTT_PARM_P (decl1))
10330         {
10331           gcc_assert (DECL_NAME (t) == vtt_parm_identifier);
10332           current_vtt_parm = t;
10333         }
10334     }
10335
10336   honor_interface = (!DECL_TEMPLATE_INSTANTIATION (decl1)
10337                      /* Implicitly-defined methods (like the
10338                         destructor for a class in which no destructor
10339                         is explicitly declared) must not be defined
10340                         until their definition is needed.  So, we
10341                         ignore interface specifications for
10342                         compiler-generated functions.  */
10343                      && !DECL_ARTIFICIAL (decl1));
10344                      
10345   if (DECL_INTERFACE_KNOWN (decl1))
10346     {
10347       tree ctx = decl_function_context (decl1);
10348
10349       if (DECL_NOT_REALLY_EXTERN (decl1))
10350         DECL_EXTERNAL (decl1) = 0;
10351
10352       if (ctx != NULL_TREE && DECL_DECLARED_INLINE_P (ctx)
10353           && TREE_PUBLIC (ctx))
10354         /* This is a function in a local class in an extern inline
10355            function.  */
10356         comdat_linkage (decl1);
10357     }
10358   /* If this function belongs to an interface, it is public.
10359      If it belongs to someone else's interface, it is also external.
10360      This only affects inlines and template instantiations.  */
10361   else if (!finfo->interface_unknown && honor_interface)
10362     {
10363       if (DECL_DECLARED_INLINE_P (decl1)
10364           || DECL_TEMPLATE_INSTANTIATION (decl1)
10365           || processing_template_decl)
10366         {
10367           DECL_EXTERNAL (decl1)
10368             = (finfo->interface_only
10369                || (DECL_DECLARED_INLINE_P (decl1)
10370                    && ! flag_implement_inlines
10371                    && !DECL_VINDEX (decl1)));
10372
10373           /* For WIN32 we also want to put these in linkonce sections.  */
10374           maybe_make_one_only (decl1);
10375         }
10376       else
10377         DECL_EXTERNAL (decl1) = 0;
10378       DECL_INTERFACE_KNOWN (decl1) = 1;
10379       /* If this function is in an interface implemented in this file,
10380          make sure that the backend knows to emit this function
10381          here.  */
10382       if (!DECL_EXTERNAL (decl1))
10383         mark_needed (decl1);
10384     }
10385   else if (finfo->interface_unknown && finfo->interface_only
10386            && honor_interface)
10387     {
10388       /* If MULTIPLE_SYMBOL_SPACES is defined and we saw a #pragma
10389          interface, we will have both finfo->interface_unknown and
10390          finfo->interface_only set.  In that case, we don't want to
10391          use the normal heuristics because someone will supply a
10392          #pragma implementation elsewhere, and deducing it here would
10393          produce a conflict.  */
10394       comdat_linkage (decl1);
10395       DECL_EXTERNAL (decl1) = 0;
10396       DECL_INTERFACE_KNOWN (decl1) = 1;
10397       DECL_DEFER_OUTPUT (decl1) = 1;
10398     }
10399   else
10400     {
10401       /* This is a definition, not a reference.
10402          So clear DECL_EXTERNAL.  */
10403       DECL_EXTERNAL (decl1) = 0;
10404
10405       if ((DECL_DECLARED_INLINE_P (decl1)
10406            || DECL_TEMPLATE_INSTANTIATION (decl1))
10407           && ! DECL_INTERFACE_KNOWN (decl1)
10408           /* Don't try to defer nested functions for now.  */
10409           && ! decl_function_context (decl1))
10410         DECL_DEFER_OUTPUT (decl1) = 1;
10411       else
10412         DECL_INTERFACE_KNOWN (decl1) = 1;
10413     }
10414
10415   begin_scope (sk_function_parms, decl1);
10416
10417   ++function_depth;
10418
10419   if (DECL_DESTRUCTOR_P (decl1)
10420       || (DECL_CONSTRUCTOR_P (decl1)
10421           && targetm.cxx.cdtor_returns_this ()))
10422     {
10423       cdtor_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
10424       DECL_CONTEXT (cdtor_label) = current_function_decl;
10425     }
10426
10427   start_fname_decls ();
10428
10429   store_parm_decls (current_function_parms);
10430 }
10431
10432
10433 /* Like start_preparsed_function, except that instead of a
10434    FUNCTION_DECL, this function takes DECLSPECS and DECLARATOR.
10435
10436    Returns 1 on success.  If the DECLARATOR is not suitable for a function
10437    (it defines a datum instead), we return 0, which tells
10438    yyparse to report a parse error.  */
10439
10440 int
10441 start_function (cp_decl_specifier_seq *declspecs,
10442                 const cp_declarator *declarator,
10443                 tree attrs)
10444 {
10445   tree decl1;
10446
10447   if (have_extern_spec)
10448     {
10449       declspecs->storage_class = sc_extern;
10450       /* This should only be done once on the outermost decl.  */
10451       have_extern_spec = false;
10452     }
10453
10454   decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1, &attrs);
10455   /* If the declarator is not suitable for a function definition,
10456      cause a syntax error.  */
10457   if (decl1 == NULL_TREE || TREE_CODE (decl1) != FUNCTION_DECL)
10458     return 0;
10459
10460   /* If #pragma weak was used, mark the decl weak now.  */
10461   if (global_scope_p (current_binding_level))
10462     maybe_apply_pragma_weak (decl1);
10463
10464   if (DECL_MAIN_P (decl1))
10465     /* main must return int.  grokfndecl should have corrected it
10466        (and issued a diagnostic) if the user got it wrong.  */
10467     gcc_assert (same_type_p (TREE_TYPE (TREE_TYPE (decl1)),
10468                              integer_type_node));
10469
10470   start_preparsed_function (decl1, attrs, /*flags=*/SF_DEFAULT);
10471
10472   return 1;
10473 }
10474 \f
10475 /* Returns true iff an EH_SPEC_BLOCK should be created in the body of
10476    FN.  */
10477
10478 static bool
10479 use_eh_spec_block (tree fn)
10480 {
10481   return (flag_exceptions && flag_enforce_eh_specs
10482           && !processing_template_decl
10483           && TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn))
10484           /* We insert the EH_SPEC_BLOCK only in the original
10485              function; then, it is copied automatically to the
10486              clones.  */
10487           && !DECL_CLONED_FUNCTION_P (fn)
10488           /* Implicitly-generated constructors and destructors have
10489              exception specifications.  However, those specifications
10490              are the union of the possible exceptions specified by the
10491              constructors/destructors for bases and members, so no
10492              unallowed exception will ever reach this function.  By
10493              not creating the EH_SPEC_BLOCK we save a little memory,
10494              and we avoid spurious warnings about unreachable
10495              code.  */
10496           && !DECL_ARTIFICIAL (fn));
10497 }
10498
10499 /* Store the parameter declarations into the current function declaration.
10500    This is called after parsing the parameter declarations, before
10501    digesting the body of the function.
10502
10503    Also install to binding contour return value identifier, if any.  */
10504
10505 static void
10506 store_parm_decls (tree current_function_parms)
10507 {
10508   tree fndecl = current_function_decl;
10509   tree parm;
10510
10511   /* This is a chain of any other decls that came in among the parm
10512      declarations.  If a parm is declared with  enum {foo, bar} x;
10513      then CONST_DECLs for foo and bar are put here.  */
10514   tree nonparms = NULL_TREE;
10515
10516   if (current_function_parms)
10517     {
10518       /* This case is when the function was defined with an ANSI prototype.
10519          The parms already have decls, so we need not do anything here
10520          except record them as in effect
10521          and complain if any redundant old-style parm decls were written.  */
10522
10523       tree specparms = current_function_parms;
10524       tree next;
10525
10526       /* Must clear this because it might contain TYPE_DECLs declared
10527              at class level.  */
10528       current_binding_level->names = NULL;
10529
10530       /* If we're doing semantic analysis, then we'll call pushdecl
10531              for each of these.  We must do them in reverse order so that
10532              they end in the correct forward order.  */
10533       specparms = nreverse (specparms);
10534
10535       for (parm = specparms; parm; parm = next)
10536         {
10537           next = TREE_CHAIN (parm);
10538           if (TREE_CODE (parm) == PARM_DECL)
10539             {
10540               if (DECL_NAME (parm) == NULL_TREE
10541                   || TREE_CODE (parm) != VOID_TYPE)
10542                 pushdecl (parm);
10543               else
10544                 error ("parameter %qD declared void", parm);
10545             }
10546           else
10547             {
10548               /* If we find an enum constant or a type tag,
10549                  put it aside for the moment.  */
10550               TREE_CHAIN (parm) = NULL_TREE;
10551               nonparms = chainon (nonparms, parm);
10552             }
10553         }
10554
10555       /* Get the decls in their original chain order and record in the
10556          function.  This is all and only the PARM_DECLs that were
10557          pushed into scope by the loop above.  */
10558       DECL_ARGUMENTS (fndecl) = getdecls ();
10559     }
10560   else
10561     DECL_ARGUMENTS (fndecl) = NULL_TREE;
10562
10563   /* Now store the final chain of decls for the arguments
10564      as the decl-chain of the current lexical scope.
10565      Put the enumerators in as well, at the front so that
10566      DECL_ARGUMENTS is not modified.  */
10567   current_binding_level->names = chainon (nonparms, DECL_ARGUMENTS (fndecl));
10568
10569   if (use_eh_spec_block (current_function_decl))
10570     current_eh_spec_block = begin_eh_spec_block ();
10571 }
10572
10573 \f
10574 /* We have finished doing semantic analysis on DECL, but have not yet
10575    generated RTL for its body.  Save away our current state, so that
10576    when we want to generate RTL later we know what to do.  */
10577
10578 static void
10579 save_function_data (tree decl)
10580 {
10581   struct language_function *f;
10582
10583   /* Save the language-specific per-function data so that we can
10584      get it back when we really expand this function.  */
10585   gcc_assert (!DECL_PENDING_INLINE_P (decl));
10586
10587   /* Make a copy.  */
10588   f = GGC_NEW (struct language_function);
10589   memcpy (f, cp_function_chain, sizeof (struct language_function));
10590   DECL_SAVED_FUNCTION_DATA (decl) = f;
10591
10592   /* Clear out the bits we don't need.  */
10593   f->base.x_stmt_tree.x_cur_stmt_list = NULL_TREE;
10594   f->x_named_label_uses = NULL;
10595   f->bindings = NULL;
10596   f->x_local_names = NULL;
10597 }
10598
10599
10600 /* Set the return value of the constructor (if present).  */
10601
10602 static void
10603 finish_constructor_body (void)
10604 {
10605   tree val;
10606   tree exprstmt;
10607
10608   if (targetm.cxx.cdtor_returns_this ())
10609     {
10610       /* Any return from a constructor will end up here.  */
10611       add_stmt (build_stmt (LABEL_EXPR, cdtor_label));
10612
10613       val = DECL_ARGUMENTS (current_function_decl);
10614       val = build2 (MODIFY_EXPR, TREE_TYPE (val),
10615                     DECL_RESULT (current_function_decl), val);
10616       /* Return the address of the object.  */
10617       exprstmt = build_stmt (RETURN_EXPR, val);
10618       add_stmt (exprstmt);
10619     }
10620 }
10621
10622 /* Do all the processing for the beginning of a destructor; set up the
10623    vtable pointers and cleanups for bases and members.  */
10624
10625 static void
10626 begin_destructor_body (void)
10627 {
10628   tree compound_stmt;
10629
10630   compound_stmt = begin_compound_stmt (0);
10631
10632   /* Make all virtual function table pointers in non-virtual base
10633      classes point to CURRENT_CLASS_TYPE's virtual function
10634      tables.  */
10635   initialize_vtbl_ptrs (current_class_ptr);
10636
10637   finish_compound_stmt (compound_stmt);
10638
10639   /* And insert cleanups for our bases and members so that they
10640      will be properly destroyed if we throw.  */
10641   push_base_cleanups ();
10642 }
10643
10644 /* At the end of every destructor we generate code to delete the object if
10645    necessary.  Do that now.  */
10646
10647 static void
10648 finish_destructor_body (void)
10649 {
10650   tree exprstmt;
10651
10652   /* Any return from a destructor will end up here; that way all base
10653      and member cleanups will be run when the function returns.  */
10654   add_stmt (build_stmt (LABEL_EXPR, cdtor_label));
10655
10656   /* In a virtual destructor, we must call delete.  */
10657   if (DECL_VIRTUAL_P (current_function_decl))
10658     {
10659       tree if_stmt;
10660       tree virtual_size = cxx_sizeof (current_class_type);
10661
10662       /* [class.dtor]
10663
10664       At the point of definition of a virtual destructor (including
10665       an implicit definition), non-placement operator delete shall
10666       be looked up in the scope of the destructor's class and if
10667       found shall be accessible and unambiguous.  */
10668       exprstmt = build_op_delete_call
10669         (DELETE_EXPR, current_class_ptr, virtual_size,
10670          /*global_p=*/false, NULL_TREE);
10671
10672       if_stmt = begin_if_stmt ();
10673       finish_if_stmt_cond (build2 (BIT_AND_EXPR, integer_type_node,
10674                                    current_in_charge_parm,
10675                                    integer_one_node),
10676                            if_stmt);
10677       finish_expr_stmt (exprstmt);
10678       finish_then_clause (if_stmt);
10679       finish_if_stmt (if_stmt);
10680     }
10681
10682   if (targetm.cxx.cdtor_returns_this ())
10683     {
10684       tree val;
10685
10686       val = DECL_ARGUMENTS (current_function_decl);
10687       val = build2 (MODIFY_EXPR, TREE_TYPE (val),
10688                     DECL_RESULT (current_function_decl), val);
10689       /* Return the address of the object.  */
10690       exprstmt = build_stmt (RETURN_EXPR, val);
10691       add_stmt (exprstmt);
10692     }
10693 }
10694
10695 /* Do the necessary processing for the beginning of a function body, which
10696    in this case includes member-initializers, but not the catch clauses of
10697    a function-try-block.  Currently, this means opening a binding level
10698    for the member-initializers (in a ctor) and member cleanups (in a dtor).  */
10699
10700 tree
10701 begin_function_body (void)
10702 {
10703   tree stmt;
10704
10705   if (! FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
10706     return NULL_TREE;
10707
10708   if (processing_template_decl)
10709     /* Do nothing now.  */;
10710   else
10711     /* Always keep the BLOCK node associated with the outermost pair of
10712        curly braces of a function.  These are needed for correct
10713        operation of dwarfout.c.  */
10714     keep_next_level (true);
10715
10716   stmt = begin_compound_stmt (BCS_FN_BODY);
10717
10718   if (processing_template_decl)
10719     /* Do nothing now.  */;
10720   else if (DECL_DESTRUCTOR_P (current_function_decl))
10721     begin_destructor_body ();
10722
10723   return stmt;
10724 }
10725
10726 /* Do the processing for the end of a function body.  Currently, this means
10727    closing out the cleanups for fully-constructed bases and members, and in
10728    the case of the destructor, deleting the object if desired.  Again, this
10729    is only meaningful for [cd]tors, since they are the only functions where
10730    there is a significant distinction between the main body and any
10731    function catch clauses.  Handling, say, main() return semantics here
10732    would be wrong, as flowing off the end of a function catch clause for
10733    main() would also need to return 0.  */
10734
10735 void
10736 finish_function_body (tree compstmt)
10737 {
10738   if (compstmt == NULL_TREE)
10739     return;
10740   
10741   /* Close the block.  */
10742   finish_compound_stmt (compstmt);
10743
10744   if (processing_template_decl)
10745     /* Do nothing now.  */;
10746   else if (DECL_CONSTRUCTOR_P (current_function_decl))
10747     finish_constructor_body ();
10748   else if (DECL_DESTRUCTOR_P (current_function_decl))
10749     finish_destructor_body ();
10750 }
10751
10752 /* Given a function, returns the BLOCK corresponding to the outermost level
10753    of curly braces, skipping the artificial block created for constructor
10754    initializers.  */
10755
10756 static tree
10757 outer_curly_brace_block (tree fndecl)
10758 {
10759   tree block = BLOCK_SUBBLOCKS (DECL_INITIAL (fndecl));
10760   if (FUNCTION_NEEDS_BODY_BLOCK (current_function_decl))
10761     /* Skip the artificial function body block.  */
10762     block = BLOCK_SUBBLOCKS (block);
10763   return block;
10764 }
10765
10766 /* Finish up a function declaration and compile that function
10767    all the way to assembler language output.  The free the storage
10768    for the function definition.
10769
10770    FLAGS is a bitwise or of the following values:
10771      2 - INCLASS_INLINE
10772        We just finished processing the body of an in-class inline
10773        function definition.  (This processing will have taken place
10774        after the class definition is complete.)  */
10775
10776 tree
10777 finish_function (int flags)
10778 {
10779   tree fndecl = current_function_decl;
10780   tree fntype, ctype = NULL_TREE;
10781   int inclass_inline = (flags & 2) != 0;
10782   int nested;
10783
10784   /* When we get some parse errors, we can end up without a
10785      current_function_decl, so cope.  */
10786   if (fndecl == NULL_TREE)
10787     return error_mark_node;
10788
10789   if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fndecl)
10790       && DECL_VIRTUAL_P (fndecl)
10791       && !processing_template_decl)
10792     {
10793       tree fnclass = DECL_CONTEXT (fndecl);
10794       if (fndecl == CLASSTYPE_KEY_METHOD (fnclass))
10795         keyed_classes = tree_cons (NULL_TREE, fnclass, keyed_classes);
10796     }
10797
10798   nested = function_depth > 1;
10799   fntype = TREE_TYPE (fndecl);
10800
10801   /*  TREE_READONLY (fndecl) = 1;
10802       This caused &foo to be of type ptr-to-const-function
10803       which then got a warning when stored in a ptr-to-function variable.  */
10804
10805   gcc_assert (building_stmt_tree ());
10806
10807   /* For a cloned function, we've already got all the code we need;
10808      there's no need to add any extra bits.  */
10809   if (!DECL_CLONED_FUNCTION_P (fndecl))
10810     {
10811       if (DECL_MAIN_P (current_function_decl))
10812         {
10813           tree stmt;
10814
10815           /* Make it so that `main' always returns 0 by default (or
10816              1 for VMS).  */
10817 #if VMS_TARGET
10818           stmt = finish_return_stmt (integer_one_node);
10819 #else
10820           stmt = finish_return_stmt (integer_zero_node);
10821 #endif
10822           /* Hack.  We don't want the middle-end to warn that this
10823              return is unreachable, so put the statement on the
10824              special line 0.  */
10825 #ifdef USE_MAPPED_LOCATION
10826           SET_EXPR_LOCATION (stmt, UNKNOWN_LOCATION);
10827 #else
10828           annotate_with_file_line (stmt, input_filename, 0);
10829 #endif
10830         }
10831
10832       if (use_eh_spec_block (current_function_decl))
10833         finish_eh_spec_block (TYPE_RAISES_EXCEPTIONS
10834                               (TREE_TYPE (current_function_decl)),
10835                               current_eh_spec_block);
10836     }
10837
10838   /* If we're saving up tree structure, tie off the function now.  */
10839   DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
10840
10841   finish_fname_decls ();
10842
10843   /* If this function can't throw any exceptions, remember that.  */
10844   if (!processing_template_decl
10845       && !cp_function_chain->can_throw
10846       && !flag_non_call_exceptions)
10847     TREE_NOTHROW (fndecl) = 1;
10848
10849   /* This must come after expand_function_end because cleanups might
10850      have declarations (from inline functions) that need to go into
10851      this function's blocks.  */
10852
10853   /* If the current binding level isn't the outermost binding level
10854      for this function, either there is a bug, or we have experienced
10855      syntax errors and the statement tree is malformed.  */
10856   if (current_binding_level->kind != sk_function_parms)
10857     {
10858       /* Make sure we have already experienced errors.  */
10859       gcc_assert (errorcount);
10860
10861       /* Throw away the broken statement tree and extra binding
10862          levels.  */
10863       DECL_SAVED_TREE (fndecl) = alloc_stmt_list ();
10864
10865       while (current_binding_level->kind != sk_function_parms)
10866         {
10867           if (current_binding_level->kind == sk_class)
10868             pop_nested_class ();
10869           else
10870             poplevel (0, 0, 0);
10871         }
10872     }
10873   poplevel (1, 0, 1);
10874
10875   /* Statements should always be full-expressions at the outermost set
10876      of curly braces for a function.  */
10877   gcc_assert (stmts_are_full_exprs_p ());
10878
10879   /* Set up the named return value optimization, if we can.  Candidate
10880      variables are selected in check_return_value.  */
10881   if (current_function_return_value)
10882     {
10883       tree r = current_function_return_value;
10884       tree outer;
10885
10886       if (r != error_mark_node
10887           /* This is only worth doing for fns that return in memory--and
10888              simpler, since we don't have to worry about promoted modes.  */
10889           && aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl)), fndecl)
10890           /* Only allow this for variables declared in the outer scope of
10891              the function so we know that their lifetime always ends with a
10892              return; see g++.dg/opt/nrv6.C.  We could be more flexible if
10893              we were to do this optimization in tree-ssa.  */
10894           && (outer = outer_curly_brace_block (fndecl))
10895           && chain_member (r, BLOCK_VARS (outer)))
10896         finalize_nrv (&DECL_SAVED_TREE (fndecl), r, DECL_RESULT (fndecl));
10897
10898       current_function_return_value = NULL_TREE;
10899     }
10900
10901   /* Remember that we were in class scope.  */
10902   if (current_class_name)
10903     ctype = current_class_type;
10904
10905   /* Must mark the RESULT_DECL as being in this function.  */
10906   DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
10907
10908   /* Set the BLOCK_SUPERCONTEXT of the outermost function scope to point
10909      to the FUNCTION_DECL node itself.  */
10910   BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
10911
10912   /* Save away current state, if appropriate.  */
10913   if (!processing_template_decl)
10914     save_function_data (fndecl);
10915
10916   /* Complain if there's just no return statement.  */
10917   if (warn_return_type
10918       && TREE_CODE (TREE_TYPE (fntype)) != VOID_TYPE
10919       && !dependent_type_p (TREE_TYPE (fntype))
10920       && !current_function_returns_value && !current_function_returns_null
10921       /* Don't complain if we abort or throw.  */
10922       && !current_function_returns_abnormally
10923       && !DECL_NAME (DECL_RESULT (fndecl))
10924       /* Normally, with -Wreturn-type, flow will complain.  Unless we're an
10925          inline function, as we might never be compiled separately.  */
10926       && (DECL_INLINE (fndecl) || processing_template_decl)
10927       /* Structor return values (if any) are set by the compiler.  */
10928       && !DECL_CONSTRUCTOR_P (fndecl)
10929       && !DECL_DESTRUCTOR_P (fndecl))
10930     warning (0, "no return statement in function returning non-void");
10931
10932   /* Store the end of the function, so that we get good line number
10933      info for the epilogue.  */
10934   cfun->function_end_locus = input_location;
10935
10936   /* Genericize before inlining.  */
10937   if (!processing_template_decl)
10938     {
10939       struct language_function *f = DECL_SAVED_FUNCTION_DATA (fndecl);
10940       cp_genericize (fndecl);
10941       /* Clear out the bits we don't need.  */
10942       f->x_current_class_ptr = NULL;
10943       f->x_current_class_ref = NULL;
10944       f->x_eh_spec_block = NULL;
10945       f->x_in_charge_parm = NULL;
10946       f->x_vtt_parm = NULL;
10947       f->x_return_value = NULL;
10948       f->bindings = NULL;
10949
10950       /* Handle attribute((warn_unused_result)).  Relies on gimple input.  */
10951       c_warn_unused_result (&DECL_SAVED_TREE (fndecl));
10952     }
10953   /* Clear out the bits we don't need.  */
10954   local_names = NULL;
10955   named_label_uses = NULL;
10956
10957   /* We're leaving the context of this function, so zap cfun.  It's still in
10958      DECL_STRUCT_FUNCTION, and we'll restore it in tree_rest_of_compilation.  */
10959   cfun = NULL;
10960   current_function_decl = NULL;
10961
10962   /* If this is an in-class inline definition, we may have to pop the
10963      bindings for the template parameters that we added in
10964      maybe_begin_member_template_processing when start_function was
10965      called.  */
10966   if (inclass_inline)
10967     maybe_end_member_template_processing ();
10968
10969   /* Leave the scope of the class.  */
10970   if (ctype)
10971     pop_nested_class ();
10972
10973   --function_depth;
10974
10975   /* Clean up.  */
10976   if (! nested)
10977     /* Let the error reporting routines know that we're outside a
10978        function.  For a nested function, this value is used in
10979        cxx_pop_function_context and then reset via pop_function_context.  */
10980     current_function_decl = NULL_TREE;
10981
10982   return fndecl;
10983 }
10984 \f
10985 /* Create the FUNCTION_DECL for a function definition.
10986    DECLSPECS and DECLARATOR are the parts of the declaration;
10987    they describe the return type and the name of the function,
10988    but twisted together in a fashion that parallels the syntax of C.
10989
10990    This function creates a binding context for the function body
10991    as well as setting up the FUNCTION_DECL in current_function_decl.
10992
10993    Returns a FUNCTION_DECL on success.
10994
10995    If the DECLARATOR is not suitable for a function (it defines a datum
10996    instead), we return 0, which tells yyparse to report a parse error.
10997
10998    May return void_type_node indicating that this method is actually
10999    a friend.  See grokfield for more details.
11000
11001    Came here with a `.pushlevel' .
11002
11003    DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
11004    CHANGES TO CODE IN `grokfield'.  */
11005
11006 tree
11007 start_method (cp_decl_specifier_seq *declspecs,
11008               const cp_declarator *declarator, tree attrlist)
11009 {
11010   tree fndecl = grokdeclarator (declarator, declspecs, MEMFUNCDEF, 0,
11011                                 &attrlist);
11012
11013   if (fndecl == error_mark_node)
11014     return error_mark_node;
11015
11016   if (fndecl == NULL || TREE_CODE (fndecl) != FUNCTION_DECL)
11017     {
11018       error ("invalid member function declaration");
11019       return error_mark_node;
11020     }
11021
11022   if (attrlist)
11023     cplus_decl_attributes (&fndecl, attrlist, 0);
11024
11025   /* Pass friends other than inline friend functions back.  */
11026   if (fndecl == void_type_node)
11027     return fndecl;
11028
11029   if (DECL_IN_AGGR_P (fndecl))
11030     {
11031       if (DECL_CONTEXT (fndecl)
11032           && TREE_CODE( DECL_CONTEXT (fndecl)) != NAMESPACE_DECL)
11033         error ("%qD is already defined in class %qT", fndecl,
11034                DECL_CONTEXT (fndecl));
11035       return error_mark_node;
11036     }
11037
11038   check_template_shadow (fndecl);
11039
11040   DECL_DECLARED_INLINE_P (fndecl) = 1;
11041   if (flag_default_inline)
11042     DECL_INLINE (fndecl) = 1;
11043
11044   /* We process method specializations in finish_struct_1.  */
11045   if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl))
11046     {
11047       fndecl = push_template_decl (fndecl);
11048       if (fndecl == error_mark_node)
11049         return fndecl;
11050     }
11051
11052   if (! DECL_FRIEND_P (fndecl))
11053     {
11054       if (TREE_CHAIN (fndecl))
11055         {
11056           fndecl = copy_node (fndecl);
11057           TREE_CHAIN (fndecl) = NULL_TREE;
11058         }
11059       grok_special_member_properties (fndecl);
11060     }
11061
11062   cp_finish_decl (fndecl, NULL_TREE, NULL_TREE, 0);
11063
11064   /* Make a place for the parms.  */
11065   begin_scope (sk_function_parms, fndecl);
11066
11067   DECL_IN_AGGR_P (fndecl) = 1;
11068   return fndecl;
11069 }
11070
11071 /* Go through the motions of finishing a function definition.
11072    We don't compile this method until after the whole class has
11073    been processed.
11074
11075    FINISH_METHOD must return something that looks as though it
11076    came from GROKFIELD (since we are defining a method, after all).
11077
11078    This is called after parsing the body of the function definition.
11079    STMTS is the chain of statements that makes up the function body.
11080
11081    DECL is the ..._DECL that `start_method' provided.  */
11082
11083 tree
11084 finish_method (tree decl)
11085 {
11086   tree fndecl = decl;
11087   tree old_initial;
11088
11089   tree link;
11090
11091   if (decl == void_type_node)
11092     return decl;
11093
11094   old_initial = DECL_INITIAL (fndecl);
11095
11096   /* Undo the level for the parms (from start_method).
11097      This is like poplevel, but it causes nothing to be
11098      saved.  Saving information here confuses symbol-table
11099      output routines.  Besides, this information will
11100      be correctly output when this method is actually
11101      compiled.  */
11102
11103   /* Clear out the meanings of the local variables of this level;
11104      also record in each decl which block it belongs to.  */
11105
11106   for (link = current_binding_level->names; link; link = TREE_CHAIN (link))
11107     {
11108       if (DECL_NAME (link) != NULL_TREE)
11109         pop_binding (DECL_NAME (link), link);
11110       gcc_assert (TREE_CODE (link) != FUNCTION_DECL);
11111       DECL_CONTEXT (link) = NULL_TREE;
11112     }
11113
11114   poplevel (0, 0, 0);
11115
11116   DECL_INITIAL (fndecl) = old_initial;
11117
11118   /* We used to check if the context of FNDECL was different from
11119      current_class_type as another way to get inside here.  This didn't work
11120      for String.cc in libg++.  */
11121   if (DECL_FRIEND_P (fndecl))
11122     {
11123       VEC_safe_push (tree, gc, CLASSTYPE_INLINE_FRIENDS (current_class_type),
11124                      fndecl);
11125       decl = void_type_node;
11126     }
11127
11128   return decl;
11129 }
11130 \f
11131
11132 /* VAR is a VAR_DECL.  If its type is incomplete, remember VAR so that
11133    we can lay it out later, when and if its type becomes complete.  */
11134
11135 void
11136 maybe_register_incomplete_var (tree var)
11137 {
11138   gcc_assert (TREE_CODE (var) == VAR_DECL);
11139
11140   /* Keep track of variables with incomplete types.  */
11141   if (!processing_template_decl && TREE_TYPE (var) != error_mark_node
11142       && DECL_EXTERNAL (var))
11143     {
11144       tree inner_type = TREE_TYPE (var);
11145
11146       while (TREE_CODE (inner_type) == ARRAY_TYPE)
11147         inner_type = TREE_TYPE (inner_type);
11148       inner_type = TYPE_MAIN_VARIANT (inner_type);
11149
11150       if ((!COMPLETE_TYPE_P (inner_type) && CLASS_TYPE_P (inner_type))
11151           /* RTTI TD entries are created while defining the type_info.  */
11152           || (TYPE_LANG_SPECIFIC (inner_type)
11153               && TYPE_BEING_DEFINED (inner_type)))
11154         incomplete_vars = tree_cons (inner_type, var, incomplete_vars);
11155     }
11156 }
11157
11158 /* Called when a class type (given by TYPE) is defined.  If there are
11159    any existing VAR_DECLs whose type hsa been completed by this
11160    declaration, update them now.  */
11161
11162 void
11163 complete_vars (tree type)
11164 {
11165   tree *list = &incomplete_vars;
11166
11167   gcc_assert (CLASS_TYPE_P (type));
11168   while (*list)
11169     {
11170       if (same_type_p (type, TREE_PURPOSE (*list)))
11171         {
11172           tree var = TREE_VALUE (*list);
11173           tree type = TREE_TYPE (var);
11174           /* Complete the type of the variable.  The VAR_DECL itself
11175              will be laid out in expand_expr.  */
11176           complete_type (type);
11177           cp_apply_type_quals_to_decl (cp_type_quals (type), var);
11178           /* Remove this entry from the list.  */
11179           *list = TREE_CHAIN (*list);
11180         }
11181       else
11182         list = &TREE_CHAIN (*list);
11183     }
11184
11185   /* Check for pending declarations which may have abstract type.  */
11186   complete_type_check_abstract (type);
11187 }
11188
11189 /* If DECL is of a type which needs a cleanup, build that cleanup
11190    here.  */
11191
11192 tree
11193 cxx_maybe_build_cleanup (tree decl)
11194 {
11195   tree type = TREE_TYPE (decl);
11196
11197   if (type != error_mark_node && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
11198     {
11199       int flags = LOOKUP_NORMAL|LOOKUP_DESTRUCTOR;
11200       tree rval;
11201       bool has_vbases = (TREE_CODE (type) == RECORD_TYPE
11202                          && CLASSTYPE_VBASECLASSES (type));
11203
11204       if (TREE_CODE (type) == ARRAY_TYPE)
11205         rval = decl;
11206       else
11207         {
11208           cxx_mark_addressable (decl);
11209           rval = build_unary_op (ADDR_EXPR, decl, 0);
11210         }
11211
11212       /* Optimize for space over speed here.  */
11213       if (!has_vbases || flag_expensive_optimizations)
11214         flags |= LOOKUP_NONVIRTUAL;
11215
11216       rval = build_delete (TREE_TYPE (rval), rval,
11217                            sfk_complete_destructor, flags, 0);
11218
11219       return rval;
11220     }
11221   return NULL_TREE;
11222 }
11223 \f
11224 /* When a stmt has been parsed, this function is called.  */
11225
11226 void
11227 finish_stmt (void)
11228 {
11229 }
11230
11231 /* DECL was originally constructed as a non-static member function,
11232    but turned out to be static.  Update it accordingly.  */
11233
11234 void
11235 revert_static_member_fn (tree decl)
11236 {
11237   tree tmp;
11238   tree function = TREE_TYPE (decl);
11239   tree args = TYPE_ARG_TYPES (function);
11240
11241   if (cp_type_quals (TREE_TYPE (TREE_VALUE (args)))
11242       != TYPE_UNQUALIFIED)
11243     error ("static member function %q#D declared with type qualifiers", decl);
11244
11245   args = TREE_CHAIN (args);
11246   tmp = build_function_type (TREE_TYPE (function), args);
11247   tmp = build_qualified_type (tmp, cp_type_quals (function));
11248   tmp = build_exception_variant (tmp,
11249                                  TYPE_RAISES_EXCEPTIONS (function));
11250   TREE_TYPE (decl) = tmp;
11251   if (DECL_ARGUMENTS (decl))
11252     DECL_ARGUMENTS (decl) = TREE_CHAIN (DECL_ARGUMENTS (decl));
11253   DECL_STATIC_FUNCTION_P (decl) = 1;
11254 }
11255
11256 /* Initialize the variables used during compilation of a C++
11257    function.  */
11258
11259 void
11260 cxx_push_function_context (struct function * f)
11261 {
11262   struct language_function *p = GGC_CNEW (struct language_function);
11263   f->language = p;
11264
11265   /* Whenever we start a new function, we destroy temporaries in the
11266      usual way.  */
11267   current_stmt_tree ()->stmts_are_full_exprs_p = 1;
11268
11269   if (f->decl)
11270     {
11271       tree fn = f->decl;
11272
11273       if (DECL_SAVED_FUNCTION_DATA (fn))
11274         {
11275           /* If we already parsed this function, and we're just expanding it
11276              now, restore saved state.  */
11277           *cp_function_chain = *DECL_SAVED_FUNCTION_DATA (fn);
11278
11279           /* We don't need the saved data anymore.  Unless this is an inline
11280              function; we need the named return value info for
11281              declare_return_variable.  */
11282           if (! DECL_INLINE (fn))
11283             DECL_SAVED_FUNCTION_DATA (fn) = NULL;
11284         }
11285     }
11286 }
11287
11288 /* Free the language-specific parts of F, now that we've finished
11289    compiling the function.  */
11290
11291 void
11292 cxx_pop_function_context (struct function * f)
11293 {
11294   f->language = 0;
11295 }
11296
11297 /* Return which tree structure is used by T, or TS_CP_GENERIC if T is
11298    one of the language-independent trees.  */
11299
11300 enum cp_tree_node_structure_enum
11301 cp_tree_node_structure (union lang_tree_node * t)
11302 {
11303   switch (TREE_CODE (&t->generic))
11304     {
11305     case DEFAULT_ARG:           return TS_CP_DEFAULT_ARG;
11306     case IDENTIFIER_NODE:       return TS_CP_IDENTIFIER;
11307     case OVERLOAD:              return TS_CP_OVERLOAD;
11308     case TEMPLATE_PARM_INDEX:   return TS_CP_TPI;
11309     case TINST_LEVEL:           return TS_CP_TINST_LEVEL;
11310     case PTRMEM_CST:            return TS_CP_PTRMEM;
11311     case BASELINK:              return TS_CP_BASELINK;
11312     default:                    return TS_CP_GENERIC;
11313     }
11314 }
11315
11316 /* Build the void_list_node (void_type_node having been created).  */
11317 tree
11318 build_void_list_node (void)
11319 {
11320   tree t = build_tree_list (NULL_TREE, void_type_node);
11321   return t;
11322 }
11323
11324 bool
11325 cp_missing_noreturn_ok_p (tree decl)
11326 {
11327   /* A missing noreturn is ok for the `main' function.  */
11328   return DECL_MAIN_P (decl);
11329 }
11330
11331 /* Return the COMDAT group into which DECL should be placed.  */
11332
11333 const char *
11334 cxx_comdat_group (tree decl)
11335 {
11336   tree name;
11337
11338   /* Virtual tables, construction virtual tables, and virtual table
11339      tables all go in a single COMDAT group, named after the primary
11340      virtual table.  */
11341   if (TREE_CODE (decl) == VAR_DECL && DECL_VTABLE_OR_VTT_P (decl))
11342     name = DECL_ASSEMBLER_NAME (CLASSTYPE_VTABLES (DECL_CONTEXT (decl)));
11343   /* For all other DECLs, the COMDAT group is the mangled name of the
11344      declaration itself.  */
11345   else
11346     {
11347       while (DECL_THUNK_P (decl))
11348         {
11349           /* If TARGET_USE_LOCAL_THUNK_ALIAS_P, use_thunk puts the thunk
11350              into the same section as the target function.  In that case
11351              we must return target's name.  */
11352           tree target = THUNK_TARGET (decl);
11353           if (TARGET_USE_LOCAL_THUNK_ALIAS_P (target)
11354               && DECL_SECTION_NAME (target) != NULL
11355               && DECL_ONE_ONLY (target))
11356             decl = target;
11357           else
11358             break;
11359         }
11360       name = DECL_ASSEMBLER_NAME (decl);
11361     }
11362
11363   return IDENTIFIER_POINTER (name);
11364 }
11365
11366 #include "gt-cp-decl.h"