OSDN Git Service

* c-tree.h: Add argument to c_objc_common_truthvalue_conversion,
[pf3gnuchains/gcc-fork.git] / gcc / cp / decl2.c
1 /* Process declarations and variables for C++ compiler.
2    Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008
4    Free Software Foundation, Inc.
5    Hacked by Michael Tiemann (tiemann@cygnus.com)
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
13
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3.  If not see
21 <http://www.gnu.org/licenses/>.  */
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 "decl.h"
41 #include "output.h"
42 #include "except.h"
43 #include "toplev.h"
44 #include "timevar.h"
45 #include "cpplib.h"
46 #include "target.h"
47 #include "c-common.h"
48 #include "tree-mudflap.h"
49 #include "cgraph.h"
50 #include "tree-inline.h"
51 #include "c-pragma.h"
52 #include "tree-dump.h"
53 #include "intl.h"
54 #include "gimple.h"
55
56 extern cpp_reader *parse_in;
57
58 /* This structure contains information about the initializations
59    and/or destructions required for a particular priority level.  */
60 typedef struct priority_info_s {
61   /* Nonzero if there have been any initializations at this priority
62      throughout the translation unit.  */
63   int initializations_p;
64   /* Nonzero if there have been any destructions at this priority
65      throughout the translation unit.  */
66   int destructions_p;
67 } *priority_info;
68
69 static void mark_vtable_entries (tree);
70 static bool maybe_emit_vtables (tree);
71 static bool acceptable_java_type (tree);
72 static tree start_objects (int, int);
73 static void finish_objects (int, int, tree);
74 static tree start_static_storage_duration_function (unsigned);
75 static void finish_static_storage_duration_function (tree);
76 static priority_info get_priority_info (int);
77 static void do_static_initialization_or_destruction (tree, bool);
78 static void one_static_initialization_or_destruction (tree, tree, bool);
79 static void generate_ctor_or_dtor_function (bool, int, location_t *);
80 static int generate_ctor_and_dtor_functions_for_priority (splay_tree_node,
81                                                           void *);
82 static tree prune_vars_needing_no_initialization (tree *);
83 static void write_out_vars (tree);
84 static void import_export_class (tree);
85 static tree get_guard_bits (tree);
86 static void determine_visibility_from_class (tree, tree);
87
88 /* A list of static class variables.  This is needed, because a
89    static class variable can be declared inside the class without
90    an initializer, and then initialized, statically, outside the class.  */
91 static GTY(()) VEC(tree,gc) *pending_statics;
92
93 /* A list of functions which were declared inline, but which we
94    may need to emit outline anyway.  */
95 static GTY(()) VEC(tree,gc) *deferred_fns;
96
97 /* Nonzero if we're done parsing and into end-of-file activities.  */
98
99 int at_eof;
100
101 \f
102
103 /* Return a member function type (a METHOD_TYPE), given FNTYPE (a
104    FUNCTION_TYPE), CTYPE (class type), and QUALS (the cv-qualifiers
105    that apply to the function).  */
106
107 tree
108 build_memfn_type (tree fntype, tree ctype, cp_cv_quals quals)
109 {
110   tree raises;
111   int type_quals;
112
113   if (fntype == error_mark_node || ctype == error_mark_node)
114     return error_mark_node;
115
116   type_quals = quals & ~TYPE_QUAL_RESTRICT;
117   ctype = cp_build_qualified_type (ctype, type_quals);
118   fntype = build_method_type_directly (ctype, TREE_TYPE (fntype),
119                                        (TREE_CODE (fntype) == METHOD_TYPE
120                                         ? TREE_CHAIN (TYPE_ARG_TYPES (fntype))
121                                         : TYPE_ARG_TYPES (fntype)));
122   raises = TYPE_RAISES_EXCEPTIONS (fntype);
123   if (raises)
124     fntype = build_exception_variant (fntype, raises);
125
126   return fntype;
127 }
128
129 /* Build a PARM_DECL with NAME and TYPE, and set DECL_ARG_TYPE
130    appropriately.  */
131
132 tree
133 cp_build_parm_decl (tree name, tree type)
134 {
135   tree parm = build_decl (PARM_DECL, name, type);
136   /* DECL_ARG_TYPE is only used by the back end and the back end never
137      sees templates.  */
138   if (!processing_template_decl)
139     DECL_ARG_TYPE (parm) = type_passed_as (type);
140
141   /* If the type is a pack expansion, then we have a function
142      parameter pack. */
143   if (type && TREE_CODE (type) == TYPE_PACK_EXPANSION)
144     FUNCTION_PARAMETER_PACK_P (parm) = 1;
145
146   return parm;
147 }
148
149 /* Returns a PARM_DECL for a parameter of the indicated TYPE, with the
150    indicated NAME.  */
151
152 tree
153 build_artificial_parm (tree name, tree type)
154 {
155   tree parm = cp_build_parm_decl (name, type);
156   DECL_ARTIFICIAL (parm) = 1;
157   /* All our artificial parms are implicitly `const'; they cannot be
158      assigned to.  */
159   TREE_READONLY (parm) = 1;
160   return parm;
161 }
162
163 /* Constructors for types with virtual baseclasses need an "in-charge" flag
164    saying whether this constructor is responsible for initialization of
165    virtual baseclasses or not.  All destructors also need this "in-charge"
166    flag, which additionally determines whether or not the destructor should
167    free the memory for the object.
168
169    This function adds the "in-charge" flag to member function FN if
170    appropriate.  It is called from grokclassfn and tsubst.
171    FN must be either a constructor or destructor.
172
173    The in-charge flag follows the 'this' parameter, and is followed by the
174    VTT parm (if any), then the user-written parms.  */
175
176 void
177 maybe_retrofit_in_chrg (tree fn)
178 {
179   tree basetype, arg_types, parms, parm, fntype;
180
181   /* If we've already add the in-charge parameter don't do it again.  */
182   if (DECL_HAS_IN_CHARGE_PARM_P (fn))
183     return;
184
185   /* When processing templates we can't know, in general, whether or
186      not we're going to have virtual baseclasses.  */
187   if (processing_template_decl)
188     return;
189
190   /* We don't need an in-charge parameter for constructors that don't
191      have virtual bases.  */
192   if (DECL_CONSTRUCTOR_P (fn)
193       && !CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
194     return;
195
196   arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
197   basetype = TREE_TYPE (TREE_VALUE (arg_types));
198   arg_types = TREE_CHAIN (arg_types);
199
200   parms = TREE_CHAIN (DECL_ARGUMENTS (fn));
201
202   /* If this is a subobject constructor or destructor, our caller will
203      pass us a pointer to our VTT.  */
204   if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn)))
205     {
206       parm = build_artificial_parm (vtt_parm_identifier, vtt_parm_type);
207
208       /* First add it to DECL_ARGUMENTS between 'this' and the real args...  */
209       TREE_CHAIN (parm) = parms;
210       parms = parm;
211
212       /* ...and then to TYPE_ARG_TYPES.  */
213       arg_types = hash_tree_chain (vtt_parm_type, arg_types);
214
215       DECL_HAS_VTT_PARM_P (fn) = 1;
216     }
217
218   /* Then add the in-charge parm (before the VTT parm).  */
219   parm = build_artificial_parm (in_charge_identifier, integer_type_node);
220   TREE_CHAIN (parm) = parms;
221   parms = parm;
222   arg_types = hash_tree_chain (integer_type_node, arg_types);
223
224   /* Insert our new parameter(s) into the list.  */
225   TREE_CHAIN (DECL_ARGUMENTS (fn)) = parms;
226
227   /* And rebuild the function type.  */
228   fntype = build_method_type_directly (basetype, TREE_TYPE (TREE_TYPE (fn)),
229                                        arg_types);
230   if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)))
231     fntype = build_exception_variant (fntype,
232                                       TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)));
233   TREE_TYPE (fn) = fntype;
234
235   /* Now we've got the in-charge parameter.  */
236   DECL_HAS_IN_CHARGE_PARM_P (fn) = 1;
237 }
238
239 /* Classes overload their constituent function names automatically.
240    When a function name is declared in a record structure,
241    its name is changed to it overloaded name.  Since names for
242    constructors and destructors can conflict, we place a leading
243    '$' for destructors.
244
245    CNAME is the name of the class we are grokking for.
246
247    FUNCTION is a FUNCTION_DECL.  It was created by `grokdeclarator'.
248
249    FLAGS contains bits saying what's special about today's
250    arguments.  1 == DESTRUCTOR.  2 == OPERATOR.
251
252    If FUNCTION is a destructor, then we must add the `auto-delete' field
253    as a second parameter.  There is some hair associated with the fact
254    that we must "declare" this variable in the manner consistent with the
255    way the rest of the arguments were declared.
256
257    QUALS are the qualifiers for the this pointer.  */
258
259 void
260 grokclassfn (tree ctype, tree function, enum overload_flags flags)
261 {
262   tree fn_name = DECL_NAME (function);
263
264   /* Even within an `extern "C"' block, members get C++ linkage.  See
265      [dcl.link] for details.  */
266   SET_DECL_LANGUAGE (function, lang_cplusplus);
267
268   if (fn_name == NULL_TREE)
269     {
270       error ("name missing for member function");
271       fn_name = get_identifier ("<anonymous>");
272       DECL_NAME (function) = fn_name;
273     }
274
275   DECL_CONTEXT (function) = ctype;
276
277   if (flags == DTOR_FLAG)
278     DECL_DESTRUCTOR_P (function) = 1;
279
280   if (flags == DTOR_FLAG || DECL_CONSTRUCTOR_P (function))
281     maybe_retrofit_in_chrg (function);
282 }
283
284 /* Create an ARRAY_REF, checking for the user doing things backwards
285    along the way.  */
286
287 tree
288 grok_array_decl (tree array_expr, tree index_exp)
289 {
290   tree type;
291   tree expr;
292   tree orig_array_expr = array_expr;
293   tree orig_index_exp = index_exp;
294
295   if (error_operand_p (array_expr) || error_operand_p (index_exp))
296     return error_mark_node;
297
298   if (processing_template_decl)
299     {
300       if (type_dependent_expression_p (array_expr)
301           || type_dependent_expression_p (index_exp))
302         return build_min_nt (ARRAY_REF, array_expr, index_exp,
303                              NULL_TREE, NULL_TREE);
304       array_expr = build_non_dependent_expr (array_expr);
305       index_exp = build_non_dependent_expr (index_exp);
306     }
307
308   type = TREE_TYPE (array_expr);
309   gcc_assert (type);
310   type = non_reference (type);
311
312   /* If they have an `operator[]', use that.  */
313   if (MAYBE_CLASS_TYPE_P (type) || MAYBE_CLASS_TYPE_P (TREE_TYPE (index_exp)))
314     expr = build_new_op (ARRAY_REF, LOOKUP_NORMAL,
315                          array_expr, index_exp, NULL_TREE,
316                          /*overloaded_p=*/NULL, tf_warning_or_error);
317   else
318     {
319       tree p1, p2, i1, i2;
320
321       /* Otherwise, create an ARRAY_REF for a pointer or array type.
322          It is a little-known fact that, if `a' is an array and `i' is
323          an int, you can write `i[a]', which means the same thing as
324          `a[i]'.  */
325       if (TREE_CODE (type) == ARRAY_TYPE)
326         p1 = array_expr;
327       else
328         p1 = build_expr_type_conversion (WANT_POINTER, array_expr, false);
329
330       if (TREE_CODE (TREE_TYPE (index_exp)) == ARRAY_TYPE)
331         p2 = index_exp;
332       else
333         p2 = build_expr_type_conversion (WANT_POINTER, index_exp, false);
334
335       i1 = build_expr_type_conversion (WANT_INT | WANT_ENUM, array_expr,
336                                        false);
337       i2 = build_expr_type_conversion (WANT_INT | WANT_ENUM, index_exp,
338                                        false);
339
340       if ((p1 && i2) && (i1 && p2))
341         error ("ambiguous conversion for array subscript");
342
343       if (p1 && i2)
344         array_expr = p1, index_exp = i2;
345       else if (i1 && p2)
346         array_expr = p2, index_exp = i1;
347       else
348         {
349           error ("invalid types %<%T[%T]%> for array subscript",
350                  type, TREE_TYPE (index_exp));
351           return error_mark_node;
352         }
353
354       if (array_expr == error_mark_node || index_exp == error_mark_node)
355         error ("ambiguous conversion for array subscript");
356
357       expr = build_array_ref (array_expr, index_exp, input_location);
358     }
359   if (processing_template_decl && expr != error_mark_node)
360     return build_min_non_dep (ARRAY_REF, expr, orig_array_expr, orig_index_exp,
361                               NULL_TREE, NULL_TREE);
362   return expr;
363 }
364
365 /* Given the cast expression EXP, checking out its validity.   Either return
366    an error_mark_node if there was an unavoidable error, return a cast to
367    void for trying to delete a pointer w/ the value 0, or return the
368    call to delete.  If DOING_VEC is true, we handle things differently
369    for doing an array delete.
370    Implements ARM $5.3.4.  This is called from the parser.  */
371
372 tree
373 delete_sanity (tree exp, tree size, bool doing_vec, int use_global_delete)
374 {
375   tree t, type;
376
377   if (exp == error_mark_node)
378     return exp;
379
380   if (processing_template_decl)
381     {
382       t = build_min (DELETE_EXPR, void_type_node, exp, size);
383       DELETE_EXPR_USE_GLOBAL (t) = use_global_delete;
384       DELETE_EXPR_USE_VEC (t) = doing_vec;
385       TREE_SIDE_EFFECTS (t) = 1;
386       return t;
387     }
388
389   /* An array can't have been allocated by new, so complain.  */
390   if (TREE_CODE (exp) == VAR_DECL
391       && TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
392     warning (0, "deleting array %q#D", exp);
393
394   t = build_expr_type_conversion (WANT_POINTER, exp, true);
395
396   if (t == NULL_TREE || t == error_mark_node)
397     {
398       error ("type %q#T argument given to %<delete%>, expected pointer",
399              TREE_TYPE (exp));
400       return error_mark_node;
401     }
402
403   type = TREE_TYPE (t);
404
405   /* As of Valley Forge, you can delete a pointer to const.  */
406
407   /* You can't delete functions.  */
408   if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
409     {
410       error ("cannot delete a function.  Only pointer-to-objects are "
411              "valid arguments to %<delete%>");
412       return error_mark_node;
413     }
414
415   /* Deleting ptr to void is undefined behavior [expr.delete/3].  */
416   if (TREE_CODE (TREE_TYPE (type)) == VOID_TYPE)
417     {
418       warning (0, "deleting %qT is undefined", type);
419       doing_vec = 0;
420     }
421
422   /* Deleting a pointer with the value zero is valid and has no effect.  */
423   if (integer_zerop (t))
424     return build1 (NOP_EXPR, void_type_node, t);
425
426   if (doing_vec)
427     return build_vec_delete (t, /*maxindex=*/NULL_TREE,
428                              sfk_deleting_destructor,
429                              use_global_delete);
430   else
431     return build_delete (type, t, sfk_deleting_destructor,
432                          LOOKUP_NORMAL, use_global_delete);
433 }
434
435 /* Report an error if the indicated template declaration is not the
436    sort of thing that should be a member template.  */
437
438 void
439 check_member_template (tree tmpl)
440 {
441   tree decl;
442
443   gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
444   decl = DECL_TEMPLATE_RESULT (tmpl);
445
446   if (TREE_CODE (decl) == FUNCTION_DECL
447       || (TREE_CODE (decl) == TYPE_DECL
448           && MAYBE_CLASS_TYPE_P (TREE_TYPE (decl))))
449     {
450       /* The parser rejects template declarations in local classes.  */
451       gcc_assert (!current_function_decl);
452       /* The parser rejects any use of virtual in a function template.  */
453       gcc_assert (!(TREE_CODE (decl) == FUNCTION_DECL
454                     && DECL_VIRTUAL_P (decl)));
455
456       /* The debug-information generating code doesn't know what to do
457          with member templates.  */
458       DECL_IGNORED_P (tmpl) = 1;
459     }
460   else
461     error ("template declaration of %q#D", decl);
462 }
463
464 /* Return true iff TYPE is a valid Java parameter or return type.  */
465
466 static bool
467 acceptable_java_type (tree type)
468 {
469   if (type == error_mark_node)
470     return false;
471
472   if (TREE_CODE (type) == VOID_TYPE || TYPE_FOR_JAVA (type))
473     return true;
474   if (TREE_CODE (type) == POINTER_TYPE || TREE_CODE (type) == REFERENCE_TYPE)
475     {
476       type = TREE_TYPE (type);
477       if (TREE_CODE (type) == RECORD_TYPE)
478         {
479           tree args;  int i;
480           if (! TYPE_FOR_JAVA (type))
481             return false;
482           if (! CLASSTYPE_TEMPLATE_INFO (type))
483             return true;
484           args = CLASSTYPE_TI_ARGS (type);
485           i = TREE_VEC_LENGTH (args);
486           while (--i >= 0)
487             {
488               type = TREE_VEC_ELT (args, i);
489               if (TREE_CODE (type) == POINTER_TYPE)
490                 type = TREE_TYPE (type);
491               if (! TYPE_FOR_JAVA (type))
492                 return false;
493             }
494           return true;
495         }
496     }
497   return false;
498 }
499
500 /* For a METHOD in a Java class CTYPE, return true if
501    the parameter and return types are valid Java types.
502    Otherwise, print appropriate error messages, and return false.  */
503
504 bool
505 check_java_method (tree method)
506 {
507   bool jerr = false;
508   tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (method));
509   tree ret_type = TREE_TYPE (TREE_TYPE (method));
510
511   if (!acceptable_java_type (ret_type))
512     {
513       error ("Java method %qD has non-Java return type %qT",
514              method, ret_type);
515       jerr = true;
516     }
517
518   arg_types = TREE_CHAIN (arg_types);
519   if (DECL_HAS_IN_CHARGE_PARM_P (method))
520     arg_types = TREE_CHAIN (arg_types);
521   if (DECL_HAS_VTT_PARM_P (method))
522     arg_types = TREE_CHAIN (arg_types);
523
524   for (; arg_types != NULL_TREE; arg_types = TREE_CHAIN (arg_types))
525     {
526       tree type = TREE_VALUE (arg_types);
527       if (!acceptable_java_type (type))
528         {
529           if (type != error_mark_node)
530             error ("Java method %qD has non-Java parameter type %qT",
531                    method, type);
532           jerr = true;
533         }
534     }
535   return !jerr;
536 }
537
538 /* Sanity check: report error if this function FUNCTION is not
539    really a member of the class (CTYPE) it is supposed to belong to.
540    TEMPLATE_PARMS is used to specify the template parameters of a member
541    template passed as FUNCTION_DECL. If the member template is passed as a
542    TEMPLATE_DECL, it can be NULL since the parameters can be extracted
543    from the declaration. If the function is not a function template, it
544    must be NULL.
545    It returns the original declaration for the function, NULL_TREE if
546    no declaration was found, error_mark_node if an error was emitted.  */
547
548 tree
549 check_classfn (tree ctype, tree function, tree template_parms)
550 {
551   int ix;
552   bool is_template;
553   tree pushed_scope;
554   
555   if (DECL_USE_TEMPLATE (function)
556       && !(TREE_CODE (function) == TEMPLATE_DECL
557            && DECL_TEMPLATE_SPECIALIZATION (function))
558       && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (function)))
559     /* Since this is a specialization of a member template,
560        we're not going to find the declaration in the class.
561        For example, in:
562
563          struct S { template <typename T> void f(T); };
564          template <> void S::f(int);
565
566        we're not going to find `S::f(int)', but there's no
567        reason we should, either.  We let our callers know we didn't
568        find the method, but we don't complain.  */
569     return NULL_TREE;
570
571   /* Basic sanity check: for a template function, the template parameters
572      either were not passed, or they are the same of DECL_TEMPLATE_PARMS.  */
573   if (TREE_CODE (function) == TEMPLATE_DECL)
574     {
575       gcc_assert (!template_parms
576                   || comp_template_parms (template_parms,
577                                           DECL_TEMPLATE_PARMS (function)));
578       template_parms = DECL_TEMPLATE_PARMS (function);
579     }
580
581   /* OK, is this a definition of a member template?  */
582   is_template = (template_parms != NULL_TREE);
583
584   /* We must enter the scope here, because conversion operators are
585      named by target type, and type equivalence relies on typenames
586      resolving within the scope of CTYPE.  */
587   pushed_scope = push_scope (ctype);
588   ix = class_method_index_for_fn (complete_type (ctype), function);
589   if (ix >= 0)
590     {
591       VEC(tree,gc) *methods = CLASSTYPE_METHOD_VEC (ctype);
592       tree fndecls, fndecl = 0;
593       bool is_conv_op;
594       const char *format = NULL;
595
596       for (fndecls = VEC_index (tree, methods, ix);
597            fndecls; fndecls = OVL_NEXT (fndecls))
598         {
599           tree p1, p2;
600
601           fndecl = OVL_CURRENT (fndecls);
602           p1 = TYPE_ARG_TYPES (TREE_TYPE (function));
603           p2 = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
604
605           /* We cannot simply call decls_match because this doesn't
606              work for static member functions that are pretending to
607              be methods, and because the name may have been changed by
608              asm("new_name").  */
609
610            /* Get rid of the this parameter on functions that become
611               static.  */
612           if (DECL_STATIC_FUNCTION_P (fndecl)
613               && TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
614             p1 = TREE_CHAIN (p1);
615
616           /* A member template definition only matches a member template
617              declaration.  */
618           if (is_template != (TREE_CODE (fndecl) == TEMPLATE_DECL))
619             continue;
620
621           if (same_type_p (TREE_TYPE (TREE_TYPE (function)),
622                            TREE_TYPE (TREE_TYPE (fndecl)))
623               && compparms (p1, p2)
624               && (!is_template
625                   || comp_template_parms (template_parms,
626                                           DECL_TEMPLATE_PARMS (fndecl)))
627               && (DECL_TEMPLATE_SPECIALIZATION (function)
628                   == DECL_TEMPLATE_SPECIALIZATION (fndecl))
629               && (!DECL_TEMPLATE_SPECIALIZATION (function)
630                   || (DECL_TI_TEMPLATE (function)
631                       == DECL_TI_TEMPLATE (fndecl))))
632             break;
633         }
634       if (fndecls)
635         {
636           if (pushed_scope)
637             pop_scope (pushed_scope);
638           return OVL_CURRENT (fndecls);
639         }
640       
641       error_at (DECL_SOURCE_LOCATION (function),
642                 "prototype for %q#D does not match any in class %qT",
643                 function, ctype);
644       is_conv_op = DECL_CONV_FN_P (fndecl);
645
646       if (is_conv_op)
647         ix = CLASSTYPE_FIRST_CONVERSION_SLOT;
648       fndecls = VEC_index (tree, methods, ix);
649       while (fndecls)
650         {
651           fndecl = OVL_CURRENT (fndecls);
652           fndecls = OVL_NEXT (fndecls);
653
654           if (!fndecls && is_conv_op)
655             {
656               if (VEC_length (tree, methods) > (size_t) ++ix)
657                 {
658                   fndecls = VEC_index (tree, methods, ix);
659                   if (!DECL_CONV_FN_P (OVL_CURRENT (fndecls)))
660                     {
661                       fndecls = NULL_TREE;
662                       is_conv_op = false;
663                     }
664                 }
665               else
666                 is_conv_op = false;
667             }
668           if (format)
669             format = "                %+#D";
670           else if (fndecls)
671             format = N_("candidates are: %+#D");
672           else
673             format = N_("candidate is: %+#D");
674           error (format, fndecl);
675         }
676     }
677   else if (!COMPLETE_TYPE_P (ctype))
678     cxx_incomplete_type_error (function, ctype);
679   else
680     error ("no %q#D member function declared in class %qT",
681            function, ctype);
682
683   if (pushed_scope)
684     pop_scope (pushed_scope);
685   return error_mark_node;
686 }
687
688 /* DECL is a function with vague linkage.  Remember it so that at the
689    end of the translation unit we can decide whether or not to emit
690    it.  */
691
692 void
693 note_vague_linkage_fn (tree decl)
694 {
695   if (!DECL_DEFERRED_FN (decl))
696     {
697       DECL_DEFERRED_FN (decl) = 1;
698       DECL_DEFER_OUTPUT (decl) = 1;
699       VEC_safe_push (tree, gc, deferred_fns, decl);
700     }
701 }
702
703 /* We have just processed the DECL, which is a static data member.
704    The other parameters are as for cp_finish_decl.  */
705
706 void
707 finish_static_data_member_decl (tree decl,
708                                 tree init, bool init_const_expr_p,
709                                 tree asmspec_tree,
710                                 int flags)
711 {
712   DECL_CONTEXT (decl) = current_class_type;
713
714   /* We cannot call pushdecl here, because that would fill in the
715      TREE_CHAIN of our decl.  Instead, we modify cp_finish_decl to do
716      the right thing, namely, to put this decl out straight away.  */
717
718   if (! processing_template_decl)
719     VEC_safe_push (tree, gc, pending_statics, decl);
720
721   if (LOCAL_CLASS_P (current_class_type))
722     permerror (input_location, "local class %q#T shall not have static data member %q#D",
723                current_class_type, decl);
724
725   /* Static consts need not be initialized in the class definition.  */
726   if (init != NULL_TREE && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
727     {
728       static int explained = 0;
729
730       error ("initializer invalid for static member with constructor");
731       if (!explained)
732         {
733           error ("(an out of class initialization is required)");
734           explained = 1;
735         }
736       init = NULL_TREE;
737     }
738   /* Force the compiler to know when an uninitialized static const
739      member is being used.  */
740   if (CP_TYPE_CONST_P (TREE_TYPE (decl)) && init == 0)
741     TREE_USED (decl) = 1;
742   DECL_INITIAL (decl) = init;
743   DECL_IN_AGGR_P (decl) = 1;
744
745   cp_finish_decl (decl, init, init_const_expr_p, asmspec_tree, flags);
746 }
747
748 /* DECLARATOR and DECLSPECS correspond to a class member.  The other
749    parameters are as for cp_finish_decl.  Return the DECL for the
750    class member declared.  */
751
752 tree
753 grokfield (const cp_declarator *declarator,
754            cp_decl_specifier_seq *declspecs,
755            tree init, bool init_const_expr_p,
756            tree asmspec_tree,
757            tree attrlist)
758 {
759   tree value;
760   const char *asmspec = 0;
761   int flags = LOOKUP_ONLYCONVERTING;
762
763   if (init
764       && TREE_CODE (init) == TREE_LIST
765       && TREE_VALUE (init) == error_mark_node
766       && TREE_CHAIN (init) == NULL_TREE)
767     init = NULL_TREE;
768
769   value = grokdeclarator (declarator, declspecs, FIELD, init != 0, &attrlist);
770   if (! value || error_operand_p (value))
771     /* friend or constructor went bad.  */
772     return error_mark_node;
773
774   if (TREE_CODE (value) == TYPE_DECL && init)
775     {
776       error ("typedef %qD is initialized (use __typeof__ instead)", value);
777       init = NULL_TREE;
778     }
779
780   /* Pass friendly classes back.  */
781   if (value == void_type_node)
782     return value;
783
784   /* Pass friend decls back.  */
785   if ((TREE_CODE (value) == FUNCTION_DECL
786        || TREE_CODE (value) == TEMPLATE_DECL)
787       && DECL_CONTEXT (value) != current_class_type)
788     return value;
789
790   if (DECL_NAME (value) != NULL_TREE
791       && IDENTIFIER_POINTER (DECL_NAME (value))[0] == '_'
792       && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (value)), "_vptr"))
793     error ("member %qD conflicts with virtual function table field name",
794            value);
795
796   /* Stash away type declarations.  */
797   if (TREE_CODE (value) == TYPE_DECL)
798     {
799       DECL_NONLOCAL (value) = 1;
800       DECL_CONTEXT (value) = current_class_type;
801
802       if (processing_template_decl)
803         value = push_template_decl (value);
804
805       if (attrlist)
806         cplus_decl_attributes (&value, attrlist, 0);
807
808       return value;
809     }
810
811   if (DECL_IN_AGGR_P (value))
812     {
813       error ("%qD is already defined in %qT", value, DECL_CONTEXT (value));
814       return void_type_node;
815     }
816
817   if (asmspec_tree && asmspec_tree != error_mark_node)
818     asmspec = TREE_STRING_POINTER (asmspec_tree);
819
820   if (init)
821     {
822       if (TREE_CODE (value) == FUNCTION_DECL)
823         {
824           /* Initializers for functions are rejected early in the parser.
825              If we get here, it must be a pure specifier for a method.  */
826           if (init == ridpointers[(int)RID_DELETE])
827             {
828               DECL_DELETED_FN (value) = 1;
829               DECL_DECLARED_INLINE_P (value) = 1;
830               DECL_INITIAL (value) = error_mark_node;
831             }
832           else if (init == ridpointers[(int)RID_DEFAULT])
833             {
834               if (!defaultable_fn_p (value))
835                 error ("%qD cannot be defaulted", value);
836               else
837                 {
838                   DECL_DEFAULTED_FN (value) = 1;
839                   DECL_INITIALIZED_IN_CLASS_P (value) = 1;
840                   DECL_DECLARED_INLINE_P (value) = 1;
841                 }
842             }
843           else if (TREE_CODE (TREE_TYPE (value)) == METHOD_TYPE)
844             {
845               gcc_assert (error_operand_p (init) || integer_zerop (init));
846               DECL_PURE_VIRTUAL_P (value) = 1;
847             }
848           else
849             {
850               gcc_assert (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE);
851               error ("initializer specified for static member function %qD",
852                      value);
853             }
854         }
855       else if (pedantic && TREE_CODE (value) != VAR_DECL)
856         /* Already complained in grokdeclarator.  */
857         init = NULL_TREE;
858       else if (!processing_template_decl)
859         {
860           if (TREE_CODE (init) == CONSTRUCTOR)
861             init = digest_init (TREE_TYPE (value), init);
862           else
863             init = integral_constant_value (init);
864
865           if (init != error_mark_node && !TREE_CONSTANT (init))
866             {
867               /* We can allow references to things that are effectively
868                  static, since references are initialized with the
869                  address.  */
870               if (TREE_CODE (TREE_TYPE (value)) != REFERENCE_TYPE
871                   || (TREE_STATIC (init) == 0
872                       && (!DECL_P (init) || DECL_EXTERNAL (init) == 0)))
873                 {
874                   error ("field initializer is not constant");
875                   init = error_mark_node;
876                 }
877             }
878         }
879     }
880
881   if (processing_template_decl
882       && (TREE_CODE (value) == VAR_DECL || TREE_CODE (value) == FUNCTION_DECL))
883     {
884       value = push_template_decl (value);
885       if (error_operand_p (value))
886         return error_mark_node;
887     }
888
889   if (attrlist)
890     cplus_decl_attributes (&value, attrlist, 0);
891
892   switch (TREE_CODE (value))
893     {
894     case VAR_DECL:
895       finish_static_data_member_decl (value, init, init_const_expr_p,
896                                       asmspec_tree, flags);
897       return value;
898
899     case FIELD_DECL:
900       if (asmspec)
901         error ("%<asm%> specifiers are not permitted on non-static data members");
902       if (DECL_INITIAL (value) == error_mark_node)
903         init = error_mark_node;
904       cp_finish_decl (value, init, /*init_const_expr_p=*/false,
905                       NULL_TREE, flags);
906       DECL_INITIAL (value) = init;
907       DECL_IN_AGGR_P (value) = 1;
908       return value;
909
910     case  FUNCTION_DECL:
911       if (asmspec)
912         set_user_assembler_name (value, asmspec);
913
914       cp_finish_decl (value,
915                       /*init=*/NULL_TREE,
916                       /*init_const_expr_p=*/false,
917                       asmspec_tree, flags);
918
919       /* Pass friends back this way.  */
920       if (DECL_FRIEND_P (value))
921         return void_type_node;
922
923       DECL_IN_AGGR_P (value) = 1;
924       return value;
925
926     default:
927       gcc_unreachable ();
928     }
929   return NULL_TREE;
930 }
931
932 /* Like `grokfield', but for bitfields.
933    WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.  */
934
935 tree
936 grokbitfield (const cp_declarator *declarator,
937               cp_decl_specifier_seq *declspecs, tree width,
938               tree attrlist)
939 {
940   tree value = grokdeclarator (declarator, declspecs, BITFIELD, 0, &attrlist);
941
942   if (value == error_mark_node) 
943     return NULL_TREE; /* friends went bad.  */
944
945   /* Pass friendly classes back.  */
946   if (TREE_CODE (value) == VOID_TYPE)
947     return void_type_node;
948
949   if (!INTEGRAL_TYPE_P (TREE_TYPE (value))
950       && (POINTER_TYPE_P (value)
951           || !dependent_type_p (TREE_TYPE (value))))
952     {
953       error ("bit-field %qD with non-integral type", value);
954       return error_mark_node;
955     }
956
957   if (TREE_CODE (value) == TYPE_DECL)
958     {
959       error ("cannot declare %qD to be a bit-field type", value);
960       return NULL_TREE;
961     }
962
963   /* Usually, finish_struct_1 catches bitfields with invalid types.
964      But, in the case of bitfields with function type, we confuse
965      ourselves into thinking they are member functions, so we must
966      check here.  */
967   if (TREE_CODE (value) == FUNCTION_DECL)
968     {
969       error ("cannot declare bit-field %qD with function type",
970              DECL_NAME (value));
971       return NULL_TREE;
972     }
973
974   if (DECL_IN_AGGR_P (value))
975     {
976       error ("%qD is already defined in the class %qT", value,
977              DECL_CONTEXT (value));
978       return void_type_node;
979     }
980
981   if (TREE_STATIC (value))
982     {
983       error ("static member %qD cannot be a bit-field", value);
984       return NULL_TREE;
985     }
986   finish_decl (value, NULL_TREE, NULL_TREE);
987
988   if (width != error_mark_node)
989     {
990       constant_expression_warning (width);
991       DECL_INITIAL (value) = width;
992       SET_DECL_C_BIT_FIELD (value);
993     }
994
995   DECL_IN_AGGR_P (value) = 1;
996
997   if (attrlist)
998     cplus_decl_attributes (&value, attrlist, /*flags=*/0);
999
1000   return value;
1001 }
1002
1003 \f
1004 /* Returns true iff ATTR is an attribute which needs to be applied at
1005    instantiation time rather than template definition time.  */
1006
1007 static bool
1008 is_late_template_attribute (tree attr, tree decl)
1009 {
1010   tree name = TREE_PURPOSE (attr);
1011   tree args = TREE_VALUE (attr);
1012   const struct attribute_spec *spec = lookup_attribute_spec (name);
1013   tree arg;
1014
1015   if (!spec)
1016     /* Unknown attribute.  */
1017     return false;
1018
1019   /* Attribute weak handling wants to write out assembly right away.  */
1020   if (is_attribute_p ("weak", name))
1021     return true;
1022
1023   /* If any of the arguments are dependent expressions, we can't evaluate
1024      the attribute until instantiation time.  */
1025   for (arg = args; arg; arg = TREE_CHAIN (arg))
1026     {
1027       tree t = TREE_VALUE (arg);
1028
1029       /* If the first attribute argument is an identifier, only consider
1030          second and following arguments.  Attributes like mode, format,
1031          cleanup and several target specific attributes aren't late
1032          just because they have an IDENTIFIER_NODE as first argument.  */
1033       if (arg == args && TREE_CODE (t) == IDENTIFIER_NODE)
1034         continue;
1035
1036       if (value_dependent_expression_p (t)
1037           || type_dependent_expression_p (t))
1038         return true;
1039     }
1040
1041   if (TREE_CODE (decl) == TYPE_DECL
1042       || TYPE_P (decl)
1043       || spec->type_required)
1044     {
1045       tree type = TYPE_P (decl) ? decl : TREE_TYPE (decl);
1046
1047       /* We can't apply any attributes to a completely unknown type until
1048          instantiation time.  */
1049       enum tree_code code = TREE_CODE (type);
1050       if (code == TEMPLATE_TYPE_PARM
1051           || code == BOUND_TEMPLATE_TEMPLATE_PARM
1052           || code == TYPENAME_TYPE)
1053         return true;
1054       /* Also defer most attributes on dependent types.  This is not
1055          necessary in all cases, but is the better default.  */
1056       else if (dependent_type_p (type)
1057                /* But attribute visibility specifically works on
1058                   templates.  */
1059                && !is_attribute_p ("visibility", name))
1060         return true;
1061       else
1062         return false;
1063     }
1064   else
1065     return false;
1066 }
1067
1068 /* ATTR_P is a list of attributes.  Remove any attributes which need to be
1069    applied at instantiation time and return them.  If IS_DEPENDENT is true,
1070    the declaration itself is dependent, so all attributes should be applied
1071    at instantiation time.  */
1072
1073 static tree
1074 splice_template_attributes (tree *attr_p, tree decl)
1075 {
1076   tree *p = attr_p;
1077   tree late_attrs = NULL_TREE;
1078   tree *q = &late_attrs;
1079
1080   if (!p)
1081     return NULL_TREE;
1082
1083   for (; *p; )
1084     {
1085       if (is_late_template_attribute (*p, decl))
1086         {
1087           ATTR_IS_DEPENDENT (*p) = 1;
1088           *q = *p;
1089           *p = TREE_CHAIN (*p);
1090           q = &TREE_CHAIN (*q);
1091           *q = NULL_TREE;
1092         }
1093       else
1094         p = &TREE_CHAIN (*p);
1095     }
1096
1097   return late_attrs;
1098 }
1099
1100 /* Remove any late attributes from the list in ATTR_P and attach them to
1101    DECL_P.  */
1102
1103 static void
1104 save_template_attributes (tree *attr_p, tree *decl_p)
1105 {
1106   tree late_attrs = splice_template_attributes (attr_p, *decl_p);
1107   tree *q;
1108   tree old_attrs = NULL_TREE;
1109
1110   if (!late_attrs)
1111     return;
1112
1113   /* Give this type a name so we know to look it up again at instantiation
1114      time.  */
1115   if (TREE_CODE (*decl_p) == TYPE_DECL
1116       && DECL_ORIGINAL_TYPE (*decl_p) == NULL_TREE)
1117     {
1118       tree oldt = TREE_TYPE (*decl_p);
1119       tree newt = build_variant_type_copy (oldt);
1120       DECL_ORIGINAL_TYPE (*decl_p) = oldt;
1121       TREE_TYPE (*decl_p) = newt;
1122       TYPE_NAME (newt) = *decl_p;
1123       TREE_USED (newt) = TREE_USED (*decl_p);
1124     }
1125
1126   if (DECL_P (*decl_p))
1127     q = &DECL_ATTRIBUTES (*decl_p);
1128   else
1129     q = &TYPE_ATTRIBUTES (*decl_p);
1130
1131   old_attrs = *q;
1132
1133   /* Place the late attributes at the beginning of the attribute
1134      list.  */
1135   TREE_CHAIN (tree_last (late_attrs)) = *q;
1136   *q = late_attrs;
1137
1138   if (!DECL_P (*decl_p) && *decl_p == TYPE_MAIN_VARIANT (*decl_p))
1139     {
1140       /* We've added new attributes directly to the main variant, so
1141          now we need to update all of the other variants to include
1142          these new attributes.  */
1143       tree variant;
1144       for (variant = TYPE_NEXT_VARIANT (*decl_p); variant;
1145            variant = TYPE_NEXT_VARIANT (variant))
1146         {
1147           gcc_assert (TYPE_ATTRIBUTES (variant) == old_attrs);
1148           TYPE_ATTRIBUTES (variant) = TYPE_ATTRIBUTES (*decl_p);
1149         }
1150     }
1151 }
1152
1153 /* Like reconstruct_complex_type, but handle also template trees.  */
1154
1155 tree
1156 cp_reconstruct_complex_type (tree type, tree bottom)
1157 {
1158   tree inner, outer;
1159
1160   if (TREE_CODE (type) == POINTER_TYPE)
1161     {
1162       inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1163       outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
1164                                            TYPE_REF_CAN_ALIAS_ALL (type));
1165     }
1166   else if (TREE_CODE (type) == REFERENCE_TYPE)
1167     {
1168       inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1169       outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
1170                                              TYPE_REF_CAN_ALIAS_ALL (type));
1171     }
1172   else if (TREE_CODE (type) == ARRAY_TYPE)
1173     {
1174       inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1175       outer = build_cplus_array_type (inner, TYPE_DOMAIN (type));
1176       /* Don't call cp_build_qualified_type on ARRAY_TYPEs, the
1177          element type qualification will be handled by the recursive
1178          cp_reconstruct_complex_type call and cp_build_qualified_type
1179          for ARRAY_TYPEs changes the element type.  */
1180       return outer;
1181     }
1182   else if (TREE_CODE (type) == FUNCTION_TYPE)
1183     {
1184       inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1185       outer = build_function_type (inner, TYPE_ARG_TYPES (type));
1186     }
1187   else if (TREE_CODE (type) == METHOD_TYPE)
1188     {
1189       inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1190       /* The build_method_type_directly() routine prepends 'this' to argument list,
1191          so we must compensate by getting rid of it.  */
1192       outer
1193         = build_method_type_directly
1194             (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
1195              inner,
1196              TREE_CHAIN (TYPE_ARG_TYPES (type)));
1197     }
1198   else if (TREE_CODE (type) == OFFSET_TYPE)
1199     {
1200       inner = cp_reconstruct_complex_type (TREE_TYPE (type), bottom);
1201       outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
1202     }
1203   else
1204     return bottom;
1205
1206   return cp_build_qualified_type (outer, TYPE_QUALS (type));
1207 }
1208
1209 /* Like decl_attributes, but handle C++ complexity.  */
1210
1211 void
1212 cplus_decl_attributes (tree *decl, tree attributes, int flags)
1213 {
1214   if (*decl == NULL_TREE || *decl == void_type_node
1215       || *decl == error_mark_node
1216       || attributes == NULL_TREE)
1217     return;
1218
1219   if (processing_template_decl)
1220     {
1221       if (check_for_bare_parameter_packs (attributes))
1222         return;
1223
1224       save_template_attributes (&attributes, decl);
1225       if (attributes == NULL_TREE)
1226         return;
1227     }
1228
1229   if (TREE_CODE (*decl) == TEMPLATE_DECL)
1230     decl = &DECL_TEMPLATE_RESULT (*decl);
1231
1232   decl_attributes (decl, attributes, flags);
1233
1234   if (TREE_CODE (*decl) == TYPE_DECL)
1235     SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (*decl), TREE_TYPE (*decl));
1236 }
1237 \f
1238 /* Walks through the namespace- or function-scope anonymous union
1239    OBJECT, with the indicated TYPE, building appropriate VAR_DECLs.
1240    Returns one of the fields for use in the mangled name.  */
1241
1242 static tree
1243 build_anon_union_vars (tree type, tree object)
1244 {
1245   tree main_decl = NULL_TREE;
1246   tree field;
1247
1248   /* Rather than write the code to handle the non-union case,
1249      just give an error.  */
1250   if (TREE_CODE (type) != UNION_TYPE)
1251     error ("anonymous struct not inside named type");
1252
1253   for (field = TYPE_FIELDS (type);
1254        field != NULL_TREE;
1255        field = TREE_CHAIN (field))
1256     {
1257       tree decl;
1258       tree ref;
1259
1260       if (DECL_ARTIFICIAL (field))
1261         continue;
1262       if (TREE_CODE (field) != FIELD_DECL)
1263         {
1264           permerror (input_location, "%q+#D invalid; an anonymous union can only "
1265                      "have non-static data members", field);
1266           continue;
1267         }
1268
1269       if (TREE_PRIVATE (field))
1270         permerror (input_location, "private member %q+#D in anonymous union", field);
1271       else if (TREE_PROTECTED (field))
1272         permerror (input_location, "protected member %q+#D in anonymous union", field);
1273
1274       if (processing_template_decl)
1275         ref = build_min_nt (COMPONENT_REF, object,
1276                             DECL_NAME (field), NULL_TREE);
1277       else
1278         ref = build_class_member_access_expr (object, field, NULL_TREE,
1279                                               false, tf_warning_or_error);
1280
1281       if (DECL_NAME (field))
1282         {
1283           tree base;
1284
1285           decl = build_decl (VAR_DECL, DECL_NAME (field), TREE_TYPE (field));
1286           DECL_ANON_UNION_VAR_P (decl) = 1;
1287
1288           base = get_base_address (object);
1289           TREE_PUBLIC (decl) = TREE_PUBLIC (base);
1290           TREE_STATIC (decl) = TREE_STATIC (base);
1291           DECL_EXTERNAL (decl) = DECL_EXTERNAL (base);
1292
1293           SET_DECL_VALUE_EXPR (decl, ref);
1294           DECL_HAS_VALUE_EXPR_P (decl) = 1;
1295
1296           decl = pushdecl (decl);
1297         }
1298       else if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
1299         decl = build_anon_union_vars (TREE_TYPE (field), ref);
1300       else
1301         decl = 0;
1302
1303       if (main_decl == NULL_TREE)
1304         main_decl = decl;
1305     }
1306
1307   return main_decl;
1308 }
1309
1310 /* Finish off the processing of a UNION_TYPE structure.  If the union is an
1311    anonymous union, then all members must be laid out together.  PUBLIC_P
1312    is nonzero if this union is not declared static.  */
1313
1314 void
1315 finish_anon_union (tree anon_union_decl)
1316 {
1317   tree type;
1318   tree main_decl;
1319   bool public_p;
1320
1321   if (anon_union_decl == error_mark_node)
1322     return;
1323
1324   type = TREE_TYPE (anon_union_decl);
1325   public_p = TREE_PUBLIC (anon_union_decl);
1326
1327   /* The VAR_DECL's context is the same as the TYPE's context.  */
1328   DECL_CONTEXT (anon_union_decl) = DECL_CONTEXT (TYPE_NAME (type));
1329
1330   if (TYPE_FIELDS (type) == NULL_TREE)
1331     return;
1332
1333   if (public_p)
1334     {
1335       error ("namespace-scope anonymous aggregates must be static");
1336       return;
1337     }
1338
1339   main_decl = build_anon_union_vars (type, anon_union_decl);
1340   if (main_decl == error_mark_node)
1341     return;
1342   if (main_decl == NULL_TREE)
1343     {
1344       warning (0, "anonymous union with no members");
1345       return;
1346     }
1347
1348   if (!processing_template_decl)
1349     {
1350       /* Use main_decl to set the mangled name.  */
1351       DECL_NAME (anon_union_decl) = DECL_NAME (main_decl);
1352       mangle_decl (anon_union_decl);
1353       DECL_NAME (anon_union_decl) = NULL_TREE;
1354     }
1355
1356   pushdecl (anon_union_decl);
1357   if (building_stmt_tree ()
1358       && at_function_scope_p ())
1359     add_decl_expr (anon_union_decl);
1360   else if (!processing_template_decl)
1361     rest_of_decl_compilation (anon_union_decl,
1362                               toplevel_bindings_p (), at_eof);
1363 }
1364 \f
1365 /* Auxiliary functions to make type signatures for
1366    `operator new' and `operator delete' correspond to
1367    what compiler will be expecting.  */
1368
1369 tree
1370 coerce_new_type (tree type)
1371 {
1372   int e = 0;
1373   tree args = TYPE_ARG_TYPES (type);
1374
1375   gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1376
1377   if (!same_type_p (TREE_TYPE (type), ptr_type_node))
1378     {
1379       e = 1;
1380       error ("%<operator new%> must return type %qT", ptr_type_node);
1381     }
1382
1383   if (args && args != void_list_node)
1384     {
1385       if (TREE_PURPOSE (args))
1386         {
1387           /* [basic.stc.dynamic.allocation]
1388              
1389              The first parameter shall not have an associated default
1390              argument.  */
1391           error ("the first parameter of %<operator new%> cannot "
1392                  "have a default argument");
1393           /* Throw away the default argument.  */
1394           TREE_PURPOSE (args) = NULL_TREE;
1395         }
1396
1397       if (!same_type_p (TREE_VALUE (args), size_type_node))
1398         {
1399           e = 2;
1400           args = TREE_CHAIN (args);
1401         }
1402     }
1403   else
1404     e = 2;
1405
1406   if (e == 2)
1407     permerror (input_location, "%<operator new%> takes type %<size_t%> (%qT) "
1408                "as first parameter", size_type_node);
1409
1410   switch (e)
1411   {
1412     case 2:
1413       args = tree_cons (NULL_TREE, size_type_node, args);
1414       /* Fall through.  */
1415     case 1:
1416       type = build_exception_variant
1417               (build_function_type (ptr_type_node, args),
1418                TYPE_RAISES_EXCEPTIONS (type));
1419       /* Fall through.  */
1420     default:;
1421   }
1422   return type;
1423 }
1424
1425 tree
1426 coerce_delete_type (tree type)
1427 {
1428   int e = 0;
1429   tree args = TYPE_ARG_TYPES (type);
1430
1431   gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
1432
1433   if (!same_type_p (TREE_TYPE (type), void_type_node))
1434     {
1435       e = 1;
1436       error ("%<operator delete%> must return type %qT", void_type_node);
1437     }
1438
1439   if (!args || args == void_list_node
1440       || !same_type_p (TREE_VALUE (args), ptr_type_node))
1441     {
1442       e = 2;
1443       if (args && args != void_list_node)
1444         args = TREE_CHAIN (args);
1445       error ("%<operator delete%> takes type %qT as first parameter",
1446              ptr_type_node);
1447     }
1448   switch (e)
1449   {
1450     case 2:
1451       args = tree_cons (NULL_TREE, ptr_type_node, args);
1452       /* Fall through.  */
1453     case 1:
1454       type = build_exception_variant
1455               (build_function_type (void_type_node, args),
1456                TYPE_RAISES_EXCEPTIONS (type));
1457       /* Fall through.  */
1458     default:;
1459   }
1460
1461   return type;
1462 }
1463 \f
1464 /* DECL is a VAR_DECL for a vtable: walk through the entries in the vtable
1465    and mark them as needed.  */
1466
1467 static void
1468 mark_vtable_entries (tree decl)
1469 {
1470   tree fnaddr;
1471   unsigned HOST_WIDE_INT idx;
1472
1473   FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)),
1474                               idx, fnaddr)
1475     {
1476       tree fn;
1477
1478       STRIP_NOPS (fnaddr);
1479
1480       if (TREE_CODE (fnaddr) != ADDR_EXPR
1481           && TREE_CODE (fnaddr) != FDESC_EXPR)
1482         /* This entry is an offset: a virtual base class offset, a
1483            virtual call offset, an RTTI offset, etc.  */
1484         continue;
1485
1486       fn = TREE_OPERAND (fnaddr, 0);
1487       TREE_ADDRESSABLE (fn) = 1;
1488       /* When we don't have vcall offsets, we output thunks whenever
1489          we output the vtables that contain them.  With vcall offsets,
1490          we know all the thunks we'll need when we emit a virtual
1491          function, so we emit the thunks there instead.  */
1492       if (DECL_THUNK_P (fn))
1493         use_thunk (fn, /*emit_p=*/0);
1494       mark_used (fn);
1495     }
1496 }
1497
1498 /* Set DECL up to have the closest approximation of "initialized common"
1499    linkage available.  */
1500
1501 void
1502 comdat_linkage (tree decl)
1503 {
1504   if (flag_weak)
1505     make_decl_one_only (decl);
1506   else if (TREE_CODE (decl) == FUNCTION_DECL
1507            || (TREE_CODE (decl) == VAR_DECL && DECL_ARTIFICIAL (decl)))
1508     /* We can just emit function and compiler-generated variables
1509        statically; having multiple copies is (for the most part) only
1510        a waste of space.
1511
1512        There are two correctness issues, however: the address of a
1513        template instantiation with external linkage should be the
1514        same, independent of what translation unit asks for the
1515        address, and this will not hold when we emit multiple copies of
1516        the function.  However, there's little else we can do.
1517
1518        Also, by default, the typeinfo implementation assumes that
1519        there will be only one copy of the string used as the name for
1520        each type.  Therefore, if weak symbols are unavailable, the
1521        run-time library should perform a more conservative check; it
1522        should perform a string comparison, rather than an address
1523        comparison.  */
1524     TREE_PUBLIC (decl) = 0;
1525   else
1526     {
1527       /* Static data member template instantiations, however, cannot
1528          have multiple copies.  */
1529       if (DECL_INITIAL (decl) == 0
1530           || DECL_INITIAL (decl) == error_mark_node)
1531         DECL_COMMON (decl) = 1;
1532       else if (EMPTY_CONSTRUCTOR_P (DECL_INITIAL (decl)))
1533         {
1534           DECL_COMMON (decl) = 1;
1535           DECL_INITIAL (decl) = error_mark_node;
1536         }
1537       else if (!DECL_EXPLICIT_INSTANTIATION (decl))
1538         {
1539           /* We can't do anything useful; leave vars for explicit
1540              instantiation.  */
1541           DECL_EXTERNAL (decl) = 1;
1542           DECL_NOT_REALLY_EXTERN (decl) = 0;
1543         }
1544     }
1545
1546   if (DECL_LANG_SPECIFIC (decl))
1547     DECL_COMDAT (decl) = 1;
1548 }
1549
1550 /* For win32 we also want to put explicit instantiations in
1551    linkonce sections, so that they will be merged with implicit
1552    instantiations; otherwise we get duplicate symbol errors.
1553    For Darwin we do not want explicit instantiations to be
1554    linkonce.  */
1555
1556 void
1557 maybe_make_one_only (tree decl)
1558 {
1559   /* We used to say that this was not necessary on targets that support weak
1560      symbols, because the implicit instantiations will defer to the explicit
1561      one.  However, that's not actually the case in SVR4; a strong definition
1562      after a weak one is an error.  Also, not making explicit
1563      instantiations one_only means that we can end up with two copies of
1564      some template instantiations.  */
1565   if (! flag_weak)
1566     return;
1567
1568   /* We can't set DECL_COMDAT on functions, or cp_finish_file will think
1569      we can get away with not emitting them if they aren't used.  We need
1570      to for variables so that cp_finish_decl will update their linkage,
1571      because their DECL_INITIAL may not have been set properly yet.  */
1572
1573   if (!TARGET_WEAK_NOT_IN_ARCHIVE_TOC
1574       || (! DECL_EXPLICIT_INSTANTIATION (decl)
1575           && ! DECL_TEMPLATE_SPECIALIZATION (decl)))
1576     {
1577       make_decl_one_only (decl);
1578
1579       if (TREE_CODE (decl) == VAR_DECL)
1580         {
1581           DECL_COMDAT (decl) = 1;
1582           /* Mark it needed so we don't forget to emit it.  */
1583           mark_decl_referenced (decl);
1584         }
1585     }
1586 }
1587
1588 /* Determine whether or not we want to specifically import or export CTYPE,
1589    using various heuristics.  */
1590
1591 static void
1592 import_export_class (tree ctype)
1593 {
1594   /* -1 for imported, 1 for exported.  */
1595   int import_export = 0;
1596
1597   /* It only makes sense to call this function at EOF.  The reason is
1598      that this function looks at whether or not the first non-inline
1599      non-abstract virtual member function has been defined in this
1600      translation unit.  But, we can't possibly know that until we've
1601      seen the entire translation unit.  */
1602   gcc_assert (at_eof);
1603
1604   if (CLASSTYPE_INTERFACE_KNOWN (ctype))
1605     return;
1606
1607   /* If MULTIPLE_SYMBOL_SPACES is set and we saw a #pragma interface,
1608      we will have CLASSTYPE_INTERFACE_ONLY set but not
1609      CLASSTYPE_INTERFACE_KNOWN.  In that case, we don't want to use this
1610      heuristic because someone will supply a #pragma implementation
1611      elsewhere, and deducing it here would produce a conflict.  */
1612   if (CLASSTYPE_INTERFACE_ONLY (ctype))
1613     return;
1614
1615   if (lookup_attribute ("dllimport", TYPE_ATTRIBUTES (ctype)))
1616     import_export = -1;
1617   else if (lookup_attribute ("dllexport", TYPE_ATTRIBUTES (ctype)))
1618     import_export = 1;
1619   else if (CLASSTYPE_IMPLICIT_INSTANTIATION (ctype)
1620            && !flag_implicit_templates)
1621     /* For a template class, without -fimplicit-templates, check the
1622        repository.  If the virtual table is assigned to this
1623        translation unit, then export the class; otherwise, import
1624        it.  */
1625       import_export = repo_export_class_p (ctype) ? 1 : -1;
1626   else if (TYPE_POLYMORPHIC_P (ctype))
1627     {
1628       /* The ABI specifies that the virtual table and associated
1629          information are emitted with the key method, if any.  */
1630       tree method = CLASSTYPE_KEY_METHOD (ctype);
1631       /* If weak symbol support is not available, then we must be
1632          careful not to emit the vtable when the key function is
1633          inline.  An inline function can be defined in multiple
1634          translation units.  If we were to emit the vtable in each
1635          translation unit containing a definition, we would get
1636          multiple definition errors at link-time.  */
1637       if (method && (flag_weak || ! DECL_DECLARED_INLINE_P (method)))
1638         import_export = (DECL_REALLY_EXTERN (method) ? -1 : 1);
1639     }
1640
1641   /* When MULTIPLE_SYMBOL_SPACES is set, we cannot count on seeing
1642      a definition anywhere else.  */
1643   if (MULTIPLE_SYMBOL_SPACES && import_export == -1)
1644     import_export = 0;
1645
1646   /* Allow back ends the chance to overrule the decision.  */
1647   if (targetm.cxx.import_export_class)
1648     import_export = targetm.cxx.import_export_class (ctype, import_export);
1649
1650   if (import_export)
1651     {
1652       SET_CLASSTYPE_INTERFACE_KNOWN (ctype);
1653       CLASSTYPE_INTERFACE_ONLY (ctype) = (import_export < 0);
1654     }
1655 }
1656
1657 /* Return true if VAR has already been provided to the back end; in that
1658    case VAR should not be modified further by the front end.  */
1659 static bool
1660 var_finalized_p (tree var)
1661 {
1662   return varpool_node (var)->finalized;
1663 }
1664
1665 /* DECL is a VAR_DECL or FUNCTION_DECL which, for whatever reason,
1666    must be emitted in this translation unit.  Mark it as such.  */
1667
1668 void
1669 mark_needed (tree decl)
1670 {
1671   /* It's possible that we no longer need to set
1672      TREE_SYMBOL_REFERENCED here directly, but doing so is
1673      harmless.  */
1674   TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)) = 1;
1675   mark_decl_referenced (decl);
1676 }
1677
1678 /* DECL is either a FUNCTION_DECL or a VAR_DECL.  This function
1679    returns true if a definition of this entity should be provided in
1680    this object file.  Callers use this function to determine whether
1681    or not to let the back end know that a definition of DECL is
1682    available in this translation unit.  */
1683
1684 bool
1685 decl_needed_p (tree decl)
1686 {
1687   gcc_assert (TREE_CODE (decl) == VAR_DECL
1688               || TREE_CODE (decl) == FUNCTION_DECL);
1689   /* This function should only be called at the end of the translation
1690      unit.  We cannot be sure of whether or not something will be
1691      COMDAT until that point.  */
1692   gcc_assert (at_eof);
1693
1694   /* All entities with external linkage that are not COMDAT should be
1695      emitted; they may be referred to from other object files.  */
1696   if (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
1697     return true;
1698   /* If this entity was used, let the back end see it; it will decide
1699      whether or not to emit it into the object file.  */
1700   if (TREE_USED (decl)
1701       || (DECL_ASSEMBLER_NAME_SET_P (decl)
1702           && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
1703       return true;
1704   /* Otherwise, DECL does not need to be emitted -- yet.  A subsequent
1705      reference to DECL might cause it to be emitted later.  */
1706   return false;
1707 }
1708
1709 /* If necessary, write out the vtables for the dynamic class CTYPE.
1710    Returns true if any vtables were emitted.  */
1711
1712 static bool
1713 maybe_emit_vtables (tree ctype)
1714 {
1715   tree vtbl;
1716   tree primary_vtbl;
1717   int needed = 0;
1718
1719   /* If the vtables for this class have already been emitted there is
1720      nothing more to do.  */
1721   primary_vtbl = CLASSTYPE_VTABLES (ctype);
1722   if (var_finalized_p (primary_vtbl))
1723     return false;
1724   /* Ignore dummy vtables made by get_vtable_decl.  */
1725   if (TREE_TYPE (primary_vtbl) == void_type_node)
1726     return false;
1727
1728   /* On some targets, we cannot determine the key method until the end
1729      of the translation unit -- which is when this function is
1730      called.  */
1731   if (!targetm.cxx.key_method_may_be_inline ())
1732     determine_key_method (ctype);
1733
1734   /* See if any of the vtables are needed.  */
1735   for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = TREE_CHAIN (vtbl))
1736     {
1737       import_export_decl (vtbl);
1738       if (DECL_NOT_REALLY_EXTERN (vtbl) && decl_needed_p (vtbl))
1739         needed = 1;
1740     }
1741   if (!needed)
1742     {
1743       /* If the references to this class' vtables are optimized away,
1744          still emit the appropriate debugging information.  See
1745          dfs_debug_mark.  */
1746       if (DECL_COMDAT (primary_vtbl)
1747           && CLASSTYPE_DEBUG_REQUESTED (ctype))
1748         note_debug_info_needed (ctype);
1749       return false;
1750     }
1751
1752   /* The ABI requires that we emit all of the vtables if we emit any
1753      of them.  */
1754   for (vtbl = CLASSTYPE_VTABLES (ctype); vtbl; vtbl = TREE_CHAIN (vtbl))
1755     {
1756       /* Mark entities references from the virtual table as used.  */
1757       mark_vtable_entries (vtbl);
1758
1759       if (TREE_TYPE (DECL_INITIAL (vtbl)) == 0)
1760         {
1761           tree expr = store_init_value (vtbl, DECL_INITIAL (vtbl));
1762
1763           /* It had better be all done at compile-time.  */
1764           gcc_assert (!expr);
1765         }
1766
1767       /* Write it out.  */
1768       DECL_EXTERNAL (vtbl) = 0;
1769       rest_of_decl_compilation (vtbl, 1, 1);
1770
1771       /* Because we're only doing syntax-checking, we'll never end up
1772          actually marking the variable as written.  */
1773       if (flag_syntax_only)
1774         TREE_ASM_WRITTEN (vtbl) = 1;
1775     }
1776
1777   /* Since we're writing out the vtable here, also write the debug
1778      info.  */
1779   note_debug_info_needed (ctype);
1780
1781   return true;
1782 }
1783
1784 /* A special return value from type_visibility meaning internal
1785    linkage.  */
1786
1787 enum { VISIBILITY_ANON = VISIBILITY_INTERNAL+1 };
1788
1789 /* walk_tree helper function for type_visibility.  */
1790
1791 static tree
1792 min_vis_r (tree *tp, int *walk_subtrees, void *data)
1793 {
1794   int *vis_p = (int *)data;
1795   if (! TYPE_P (*tp))
1796     {
1797       *walk_subtrees = 0;
1798     }
1799   else if (CLASS_TYPE_P (*tp))
1800     {
1801       if (!TREE_PUBLIC (TYPE_MAIN_DECL (*tp)))
1802         {
1803           *vis_p = VISIBILITY_ANON;
1804           return *tp;
1805         }
1806       else if (CLASSTYPE_VISIBILITY (*tp) > *vis_p)
1807         *vis_p = CLASSTYPE_VISIBILITY (*tp);
1808     }
1809   return NULL;
1810 }
1811
1812 /* Returns the visibility of TYPE, which is the minimum visibility of its
1813    component types.  */
1814
1815 static int
1816 type_visibility (tree type)
1817 {
1818   int vis = VISIBILITY_DEFAULT;
1819   cp_walk_tree_without_duplicates (&type, min_vis_r, &vis);
1820   return vis;
1821 }
1822
1823 /* Limit the visibility of DECL to VISIBILITY, if not explicitly
1824    specified (or if VISIBILITY is static).  */
1825
1826 static bool
1827 constrain_visibility (tree decl, int visibility)
1828 {
1829   if (visibility == VISIBILITY_ANON)
1830     {
1831       /* extern "C" declarations aren't affected by the anonymous
1832          namespace.  */
1833       if (!DECL_EXTERN_C_P (decl))
1834         {
1835           TREE_PUBLIC (decl) = 0;
1836           DECL_ONE_ONLY (decl) = 0;
1837           DECL_INTERFACE_KNOWN (decl) = 1;
1838           if (DECL_LANG_SPECIFIC (decl))
1839             DECL_NOT_REALLY_EXTERN (decl) = 1;
1840         }
1841     }
1842   else if (visibility > DECL_VISIBILITY (decl)
1843            && !DECL_VISIBILITY_SPECIFIED (decl))
1844     {
1845       DECL_VISIBILITY (decl) = visibility;
1846       return true;
1847     }
1848   return false;
1849 }
1850
1851 /* Constrain the visibility of DECL based on the visibility of its template
1852    arguments.  */
1853
1854 static void
1855 constrain_visibility_for_template (tree decl, tree targs)
1856 {
1857   /* If this is a template instantiation, check the innermost
1858      template args for visibility constraints.  The outer template
1859      args are covered by the class check.  */
1860   tree args = INNERMOST_TEMPLATE_ARGS (targs);
1861   int i;
1862   for (i = TREE_VEC_LENGTH (args); i > 0; --i)
1863     {
1864       int vis = 0;
1865
1866       tree arg = TREE_VEC_ELT (args, i-1);
1867       if (TYPE_P (arg))
1868         vis = type_visibility (arg);
1869       else if (TREE_TYPE (arg) && POINTER_TYPE_P (TREE_TYPE (arg)))
1870         {
1871           STRIP_NOPS (arg);
1872           if (TREE_CODE (arg) == ADDR_EXPR)
1873             arg = TREE_OPERAND (arg, 0);
1874           if (TREE_CODE (arg) == VAR_DECL
1875               || TREE_CODE (arg) == FUNCTION_DECL)
1876             {
1877               if (! TREE_PUBLIC (arg))
1878                 vis = VISIBILITY_ANON;
1879               else
1880                 vis = DECL_VISIBILITY (arg);
1881             }
1882         }
1883       if (vis)
1884         constrain_visibility (decl, vis);
1885     }
1886 }
1887
1888 /* Like c_determine_visibility, but with additional C++-specific
1889    behavior.
1890
1891    Function-scope entities can rely on the function's visibility because
1892    it is set in start_preparsed_function.
1893
1894    Class-scope entities cannot rely on the class's visibility until the end
1895    of the enclosing class definition.
1896
1897    Note that because namespaces have multiple independent definitions,
1898    namespace visibility is handled elsewhere using the #pragma visibility
1899    machinery rather than by decorating the namespace declaration.
1900
1901    The goal is for constraints from the type to give a diagnostic, and
1902    other constraints to be applied silently.  */
1903
1904 void
1905 determine_visibility (tree decl)
1906 {
1907   tree class_type = NULL_TREE;
1908   bool use_template;
1909
1910   /* Remember that all decls get VISIBILITY_DEFAULT when built.  */
1911
1912   /* Only relevant for names with external linkage.  */
1913   if (!TREE_PUBLIC (decl))
1914     return;
1915
1916   /* Cloned constructors and destructors get the same visibility as
1917      the underlying function.  That should be set up in
1918      maybe_clone_body.  */
1919   gcc_assert (!DECL_CLONED_FUNCTION_P (decl));
1920
1921   if (TREE_CODE (decl) == TYPE_DECL)
1922     {
1923       if (CLASS_TYPE_P (TREE_TYPE (decl)))
1924         use_template = CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl));
1925       else if (TYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
1926         use_template = 1;
1927       else
1928         use_template = 0;
1929     }
1930   else if (DECL_LANG_SPECIFIC (decl))
1931     use_template = DECL_USE_TEMPLATE (decl);
1932   else
1933     use_template = 0;
1934
1935   /* If DECL is a member of a class, visibility specifiers on the
1936      class can influence the visibility of the DECL.  */
1937   if (DECL_CLASS_SCOPE_P (decl))
1938     class_type = DECL_CONTEXT (decl);
1939   else
1940     {
1941       /* Not a class member.  */
1942
1943       /* Virtual tables have DECL_CONTEXT set to their associated class,
1944          so they are automatically handled above.  */
1945       gcc_assert (TREE_CODE (decl) != VAR_DECL
1946                   || !DECL_VTABLE_OR_VTT_P (decl));
1947
1948       if (DECL_FUNCTION_SCOPE_P (decl) && ! DECL_VISIBILITY_SPECIFIED (decl))
1949         {
1950           /* Local statics and classes get the visibility of their
1951              containing function by default, except that
1952              -fvisibility-inlines-hidden doesn't affect them.  */
1953           tree fn = DECL_CONTEXT (decl);
1954           if (DECL_VISIBILITY_SPECIFIED (fn) || ! DECL_CLASS_SCOPE_P (fn))
1955             {
1956               DECL_VISIBILITY (decl) = DECL_VISIBILITY (fn);
1957               DECL_VISIBILITY_SPECIFIED (decl) = 
1958                 DECL_VISIBILITY_SPECIFIED (fn);
1959             }
1960           else
1961             determine_visibility_from_class (decl, DECL_CONTEXT (fn));
1962
1963           /* Local classes in templates have CLASSTYPE_USE_TEMPLATE set,
1964              but have no TEMPLATE_INFO, so don't try to check it.  */
1965           use_template = 0;
1966         }
1967       else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl)
1968                && flag_visibility_ms_compat)
1969         {
1970           /* Under -fvisibility-ms-compat, types are visible by default,
1971              even though their contents aren't.  */
1972           tree underlying_type = TREE_TYPE (DECL_NAME (decl));
1973           int underlying_vis = type_visibility (underlying_type);
1974           if (underlying_vis == VISIBILITY_ANON
1975               || CLASSTYPE_VISIBILITY_SPECIFIED (underlying_type))
1976             constrain_visibility (decl, underlying_vis);
1977           else
1978             DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
1979         }
1980       else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
1981         {
1982           /* tinfo visibility is based on the type it's for.  */
1983           constrain_visibility
1984             (decl, type_visibility (TREE_TYPE (DECL_NAME (decl))));
1985
1986           /* Give the target a chance to override the visibility associated
1987              with DECL.  */
1988           if (TREE_PUBLIC (decl)
1989               && !DECL_REALLY_EXTERN (decl)
1990               && CLASS_TYPE_P (TREE_TYPE (DECL_NAME (decl)))
1991               && !CLASSTYPE_VISIBILITY_SPECIFIED (TREE_TYPE (DECL_NAME (decl))))
1992             targetm.cxx.determine_class_data_visibility (decl);
1993         }
1994       else if (use_template)
1995         /* Template instantiations and specializations get visibility based
1996            on their template unless they override it with an attribute.  */;
1997       else if (! DECL_VISIBILITY_SPECIFIED (decl))
1998         {
1999           /* Set default visibility to whatever the user supplied with
2000              #pragma GCC visibility or a namespace visibility attribute.  */
2001           DECL_VISIBILITY (decl) = default_visibility;
2002           DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
2003         }
2004     }
2005
2006   if (use_template)
2007     {
2008       /* If the specialization doesn't specify visibility, use the
2009          visibility from the template.  */
2010       tree tinfo = (TREE_CODE (decl) == TYPE_DECL
2011                     ? TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2012                     : DECL_TEMPLATE_INFO (decl));
2013       tree args = TI_ARGS (tinfo);
2014       
2015       if (args != error_mark_node)
2016         {
2017           int depth = TMPL_ARGS_DEPTH (args);
2018           tree pattern = DECL_TEMPLATE_RESULT (TI_TEMPLATE (tinfo));
2019
2020           if (!DECL_VISIBILITY_SPECIFIED (decl))
2021             {
2022               DECL_VISIBILITY (decl) = DECL_VISIBILITY (pattern);
2023               DECL_VISIBILITY_SPECIFIED (decl)
2024                 = DECL_VISIBILITY_SPECIFIED (pattern);
2025             }
2026
2027           /* FIXME should TMPL_ARGS_DEPTH really return 1 for null input? */
2028           if (args && depth > template_class_depth (class_type))
2029             /* Limit visibility based on its template arguments.  */
2030             constrain_visibility_for_template (decl, args);
2031         }
2032     }
2033
2034   if (class_type)
2035     determine_visibility_from_class (decl, class_type);
2036
2037   if (decl_anon_ns_mem_p (decl))
2038     /* Names in an anonymous namespace get internal linkage.
2039        This might change once we implement export.  */
2040     constrain_visibility (decl, VISIBILITY_ANON);
2041   else if (TREE_CODE (decl) != TYPE_DECL)
2042     {
2043       /* Propagate anonymity from type to decl.  */
2044       int tvis = type_visibility (TREE_TYPE (decl));
2045       if (tvis == VISIBILITY_ANON
2046           || ! DECL_VISIBILITY_SPECIFIED (decl))
2047         constrain_visibility (decl, tvis);
2048     }
2049 }
2050
2051 /* By default, static data members and function members receive
2052    the visibility of their containing class.  */
2053
2054 static void
2055 determine_visibility_from_class (tree decl, tree class_type)
2056 {
2057   if (DECL_VISIBILITY_SPECIFIED (decl))
2058     return;
2059
2060   if (visibility_options.inlines_hidden
2061       /* Don't do this for inline templates; specializations might not be
2062          inline, and we don't want them to inherit the hidden
2063          visibility.  We'll set it here for all inline instantiations.  */
2064       && !processing_template_decl
2065       && TREE_CODE (decl) == FUNCTION_DECL
2066       && DECL_DECLARED_INLINE_P (decl)
2067       && (! DECL_LANG_SPECIFIC (decl)
2068           || ! DECL_EXPLICIT_INSTANTIATION (decl)))
2069     DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
2070   else
2071     {
2072       /* Default to the class visibility.  */
2073       DECL_VISIBILITY (decl) = CLASSTYPE_VISIBILITY (class_type);
2074       DECL_VISIBILITY_SPECIFIED (decl)
2075         = CLASSTYPE_VISIBILITY_SPECIFIED (class_type);
2076     }
2077
2078   /* Give the target a chance to override the visibility associated
2079      with DECL.  */
2080   if (TREE_CODE (decl) == VAR_DECL
2081       && (DECL_TINFO_P (decl)
2082           || (DECL_VTABLE_OR_VTT_P (decl)
2083               /* Construction virtual tables are not exported because
2084                  they cannot be referred to from other object files;
2085                  their name is not standardized by the ABI.  */
2086               && !DECL_CONSTRUCTION_VTABLE_P (decl)))
2087       && TREE_PUBLIC (decl)
2088       && !DECL_REALLY_EXTERN (decl)
2089       && !CLASSTYPE_VISIBILITY_SPECIFIED (class_type))
2090     targetm.cxx.determine_class_data_visibility (decl);
2091 }
2092
2093 /* Constrain the visibility of a class TYPE based on the visibility of its
2094    field types.  Warn if any fields require lesser visibility.  */
2095
2096 void
2097 constrain_class_visibility (tree type)
2098 {
2099   tree binfo;
2100   tree t;
2101   int i;
2102
2103   int vis = type_visibility (type);
2104
2105   if (vis == VISIBILITY_ANON
2106       || DECL_IN_SYSTEM_HEADER (TYPE_MAIN_DECL (type)))
2107     return;
2108
2109   /* Don't warn about visibility if the class has explicit visibility.  */
2110   if (CLASSTYPE_VISIBILITY_SPECIFIED (type))
2111     vis = VISIBILITY_INTERNAL;
2112
2113   for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
2114     if (TREE_CODE (t) == FIELD_DECL && TREE_TYPE (t) != error_mark_node)
2115       {
2116         tree ftype = strip_pointer_or_array_types (TREE_TYPE (t));
2117         int subvis = type_visibility (ftype);
2118
2119         if (subvis == VISIBILITY_ANON)
2120           {
2121             if (!in_main_input_context ())
2122               warning (0, "\
2123 %qT has a field %qD whose type uses the anonymous namespace",
2124                        type, t);
2125           }
2126         else if (MAYBE_CLASS_TYPE_P (ftype)
2127                  && vis < VISIBILITY_HIDDEN
2128                  && subvis >= VISIBILITY_HIDDEN)
2129           warning (OPT_Wattributes, "\
2130 %qT declared with greater visibility than the type of its field %qD",
2131                    type, t);
2132       }
2133
2134   binfo = TYPE_BINFO (type);
2135   for (i = 0; BINFO_BASE_ITERATE (binfo, i, t); ++i)
2136     {
2137       int subvis = type_visibility (TREE_TYPE (t));
2138
2139       if (subvis == VISIBILITY_ANON)
2140         {
2141           if (!in_main_input_context())
2142             warning (0, "\
2143 %qT has a base %qT whose type uses the anonymous namespace",
2144                      type, TREE_TYPE (t));
2145         }
2146       else if (vis < VISIBILITY_HIDDEN
2147                && subvis >= VISIBILITY_HIDDEN)
2148         warning (OPT_Wattributes, "\
2149 %qT declared with greater visibility than its base %qT",
2150                  type, TREE_TYPE (t));
2151     }
2152 }
2153
2154 /* DECL is a FUNCTION_DECL or VAR_DECL.  If the object file linkage
2155    for DECL has not already been determined, do so now by setting
2156    DECL_EXTERNAL, DECL_COMDAT and other related flags.  Until this
2157    function is called entities with vague linkage whose definitions
2158    are available must have TREE_PUBLIC set.
2159
2160    If this function decides to place DECL in COMDAT, it will set
2161    appropriate flags -- but will not clear DECL_EXTERNAL.  It is up to
2162    the caller to decide whether or not to clear DECL_EXTERNAL.  Some
2163    callers defer that decision until it is clear that DECL is actually
2164    required.  */
2165
2166 void
2167 import_export_decl (tree decl)
2168 {
2169   int emit_p;
2170   bool comdat_p;
2171   bool import_p;
2172   tree class_type = NULL_TREE;
2173
2174   if (DECL_INTERFACE_KNOWN (decl))
2175     return;
2176
2177   /* We cannot determine what linkage to give to an entity with vague
2178      linkage until the end of the file.  For example, a virtual table
2179      for a class will be defined if and only if the key method is
2180      defined in this translation unit.  As a further example, consider
2181      that when compiling a translation unit that uses PCH file with
2182      "-frepo" it would be incorrect to make decisions about what
2183      entities to emit when building the PCH; those decisions must be
2184      delayed until the repository information has been processed.  */
2185   gcc_assert (at_eof);
2186   /* Object file linkage for explicit instantiations is handled in
2187      mark_decl_instantiated.  For static variables in functions with
2188      vague linkage, maybe_commonize_var is used.
2189
2190      Therefore, the only declarations that should be provided to this
2191      function are those with external linkage that are:
2192
2193      * implicit instantiations of function templates
2194
2195      * inline function
2196
2197      * implicit instantiations of static data members of class
2198        templates
2199
2200      * virtual tables
2201
2202      * typeinfo objects
2203
2204      Furthermore, all entities that reach this point must have a
2205      definition available in this translation unit.
2206
2207      The following assertions check these conditions.  */
2208   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
2209               || TREE_CODE (decl) == VAR_DECL);
2210   /* Any code that creates entities with TREE_PUBLIC cleared should
2211      also set DECL_INTERFACE_KNOWN.  */
2212   gcc_assert (TREE_PUBLIC (decl));
2213   if (TREE_CODE (decl) == FUNCTION_DECL)
2214     gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2215                 || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl)
2216                 || DECL_DECLARED_INLINE_P (decl));
2217   else
2218     gcc_assert (DECL_IMPLICIT_INSTANTIATION (decl)
2219                 || DECL_VTABLE_OR_VTT_P (decl)
2220                 || DECL_TINFO_P (decl));
2221   /* Check that a definition of DECL is available in this translation
2222      unit.  */
2223   gcc_assert (!DECL_REALLY_EXTERN (decl));
2224
2225   /* Assume that DECL will not have COMDAT linkage.  */
2226   comdat_p = false;
2227   /* Assume that DECL will not be imported into this translation
2228      unit.  */
2229   import_p = false;
2230
2231   /* See if the repository tells us whether or not to emit DECL in
2232      this translation unit.  */
2233   emit_p = repo_emit_p (decl);
2234   if (emit_p == 0)
2235     import_p = true;
2236   else if (emit_p == 1)
2237     {
2238       /* The repository indicates that this entity should be defined
2239          here.  Make sure the back end honors that request.  */
2240       if (TREE_CODE (decl) == VAR_DECL)
2241         mark_needed (decl);
2242       else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)
2243                || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
2244         {
2245           tree clone;
2246           FOR_EACH_CLONE (clone, decl)
2247             mark_needed (clone);
2248         }
2249       else
2250         mark_needed (decl);
2251       /* Output the definition as an ordinary strong definition.  */
2252       DECL_EXTERNAL (decl) = 0;
2253       DECL_INTERFACE_KNOWN (decl) = 1;
2254       return;
2255     }
2256
2257   if (import_p)
2258     /* We have already decided what to do with this DECL; there is no
2259        need to check anything further.  */
2260     ;
2261   else if (TREE_CODE (decl) == VAR_DECL && DECL_VTABLE_OR_VTT_P (decl))
2262     {
2263       class_type = DECL_CONTEXT (decl);
2264       import_export_class (class_type);
2265       if (TYPE_FOR_JAVA (class_type))
2266         import_p = true;
2267       else if (CLASSTYPE_INTERFACE_KNOWN (class_type)
2268                && CLASSTYPE_INTERFACE_ONLY (class_type))
2269         import_p = true;
2270       else if ((!flag_weak || TARGET_WEAK_NOT_IN_ARCHIVE_TOC)
2271                && !CLASSTYPE_USE_TEMPLATE (class_type)
2272                && CLASSTYPE_KEY_METHOD (class_type)
2273                && !DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type)))
2274         /* The ABI requires that all virtual tables be emitted with
2275            COMDAT linkage.  However, on systems where COMDAT symbols
2276            don't show up in the table of contents for a static
2277            archive, or on systems without weak symbols (where we
2278            approximate COMDAT linkage by using internal linkage), the
2279            linker will report errors about undefined symbols because
2280            it will not see the virtual table definition.  Therefore,
2281            in the case that we know that the virtual table will be
2282            emitted in only one translation unit, we make the virtual
2283            table an ordinary definition with external linkage.  */
2284         DECL_EXTERNAL (decl) = 0;
2285       else if (CLASSTYPE_INTERFACE_KNOWN (class_type))
2286         {
2287           /* CLASS_TYPE is being exported from this translation unit,
2288              so DECL should be defined here.  */
2289           if (!flag_weak && CLASSTYPE_EXPLICIT_INSTANTIATION (class_type))
2290             /* If a class is declared in a header with the "extern
2291                template" extension, then it will not be instantiated,
2292                even in translation units that would normally require
2293                it.  Often such classes are explicitly instantiated in
2294                one translation unit.  Therefore, the explicit
2295                instantiation must be made visible to other translation
2296                units.  */
2297             DECL_EXTERNAL (decl) = 0;
2298           else
2299             {
2300               /* The generic C++ ABI says that class data is always
2301                  COMDAT, even if there is a key function.  Some
2302                  variants (e.g., the ARM EABI) says that class data
2303                  only has COMDAT linkage if the class data might be
2304                  emitted in more than one translation unit.  When the
2305                  key method can be inline and is inline, we still have
2306                  to arrange for comdat even though
2307                  class_data_always_comdat is false.  */
2308               if (!CLASSTYPE_KEY_METHOD (class_type)
2309                   || DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (class_type))
2310                   || targetm.cxx.class_data_always_comdat ())
2311                 {
2312                   /* The ABI requires COMDAT linkage.  Normally, we
2313                      only emit COMDAT things when they are needed;
2314                      make sure that we realize that this entity is
2315                      indeed needed.  */
2316                   comdat_p = true;
2317                   mark_needed (decl);
2318                 }
2319             }
2320         }
2321       else if (!flag_implicit_templates
2322                && CLASSTYPE_IMPLICIT_INSTANTIATION (class_type))
2323         import_p = true;
2324       else
2325         comdat_p = true;
2326     }
2327   else if (TREE_CODE (decl) == VAR_DECL && DECL_TINFO_P (decl))
2328     {
2329       tree type = TREE_TYPE (DECL_NAME (decl));
2330       if (CLASS_TYPE_P (type))
2331         {
2332           class_type = type;
2333           import_export_class (type);
2334           if (CLASSTYPE_INTERFACE_KNOWN (type)
2335               && TYPE_POLYMORPHIC_P (type)
2336               && CLASSTYPE_INTERFACE_ONLY (type)
2337               /* If -fno-rtti was specified, then we cannot be sure
2338                  that RTTI information will be emitted with the
2339                  virtual table of the class, so we must emit it
2340                  wherever it is used.  */
2341               && flag_rtti)
2342             import_p = true;
2343           else
2344             {
2345               if (CLASSTYPE_INTERFACE_KNOWN (type)
2346                   && !CLASSTYPE_INTERFACE_ONLY (type))
2347                 {
2348                   comdat_p = (targetm.cxx.class_data_always_comdat ()
2349                               || (CLASSTYPE_KEY_METHOD (type)
2350                                   && DECL_DECLARED_INLINE_P (CLASSTYPE_KEY_METHOD (type))));
2351                   mark_needed (decl);
2352                   if (!flag_weak)
2353                     {
2354                       comdat_p = false;
2355                       DECL_EXTERNAL (decl) = 0;
2356                     }
2357                 }
2358               else
2359                 comdat_p = true;
2360             }
2361         }
2362       else
2363         comdat_p = true;
2364     }
2365   else if (DECL_TEMPLATE_INSTANTIATION (decl)
2366            || DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (decl))
2367     {
2368       /* DECL is an implicit instantiation of a function or static
2369          data member.  */
2370       if ((flag_implicit_templates
2371            && !flag_use_repository)
2372           || (flag_implicit_inline_templates
2373               && TREE_CODE (decl) == FUNCTION_DECL
2374               && DECL_DECLARED_INLINE_P (decl)))
2375         comdat_p = true;
2376       else
2377         /* If we are not implicitly generating templates, then mark
2378            this entity as undefined in this translation unit.  */
2379         import_p = true;
2380     }
2381   else if (DECL_FUNCTION_MEMBER_P (decl))
2382     {
2383       if (!DECL_DECLARED_INLINE_P (decl))
2384         {
2385           tree ctype = DECL_CONTEXT (decl);
2386           import_export_class (ctype);
2387           if (CLASSTYPE_INTERFACE_KNOWN (ctype))
2388             {
2389               DECL_NOT_REALLY_EXTERN (decl)
2390                 = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
2391                      || (DECL_DECLARED_INLINE_P (decl)
2392                          && ! flag_implement_inlines
2393                          && !DECL_VINDEX (decl)));
2394
2395               if (!DECL_NOT_REALLY_EXTERN (decl))
2396                 DECL_EXTERNAL (decl) = 1;
2397
2398               /* Always make artificials weak.  */
2399               if (DECL_ARTIFICIAL (decl) && flag_weak)
2400                 comdat_p = true;
2401               else
2402                 maybe_make_one_only (decl);
2403             }
2404         }
2405       else
2406         comdat_p = true;
2407     }
2408   else
2409     comdat_p = true;
2410
2411   if (import_p)
2412     {
2413       /* If we are importing DECL into this translation unit, mark is
2414          an undefined here.  */
2415       DECL_EXTERNAL (decl) = 1;
2416       DECL_NOT_REALLY_EXTERN (decl) = 0;
2417     }
2418   else if (comdat_p)
2419     {
2420       /* If we decided to put DECL in COMDAT, mark it accordingly at
2421          this point.  */
2422       comdat_linkage (decl);
2423     }
2424
2425   DECL_INTERFACE_KNOWN (decl) = 1;
2426 }
2427
2428 /* Return an expression that performs the destruction of DECL, which
2429    must be a VAR_DECL whose type has a non-trivial destructor, or is
2430    an array whose (innermost) elements have a non-trivial destructor.  */
2431
2432 tree
2433 build_cleanup (tree decl)
2434 {
2435   tree temp;
2436   tree type = TREE_TYPE (decl);
2437
2438   /* This function should only be called for declarations that really
2439      require cleanups.  */
2440   gcc_assert (!TYPE_HAS_TRIVIAL_DESTRUCTOR (type));
2441
2442   /* Treat all objects with destructors as used; the destructor may do
2443      something substantive.  */
2444   mark_used (decl);
2445
2446   if (TREE_CODE (type) == ARRAY_TYPE)
2447     temp = decl;
2448   else
2449     temp = build_address (decl);
2450   temp = build_delete (TREE_TYPE (temp), temp,
2451                        sfk_complete_destructor,
2452                        LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
2453   return temp;
2454 }
2455
2456 /* Returns the initialization guard variable for the variable DECL,
2457    which has static storage duration.  */
2458
2459 tree
2460 get_guard (tree decl)
2461 {
2462   tree sname;
2463   tree guard;
2464
2465   sname = mangle_guard_variable (decl);
2466   guard = IDENTIFIER_GLOBAL_VALUE (sname);
2467   if (! guard)
2468     {
2469       tree guard_type;
2470
2471       /* We use a type that is big enough to contain a mutex as well
2472          as an integer counter.  */
2473       guard_type = targetm.cxx.guard_type ();
2474       guard = build_decl (VAR_DECL, sname, guard_type);
2475
2476       /* The guard should have the same linkage as what it guards.  */
2477       TREE_PUBLIC (guard) = TREE_PUBLIC (decl);
2478       TREE_STATIC (guard) = TREE_STATIC (decl);
2479       DECL_COMMON (guard) = DECL_COMMON (decl);
2480       DECL_ONE_ONLY (guard) = DECL_ONE_ONLY (decl);
2481       if (TREE_PUBLIC (decl))
2482         DECL_WEAK (guard) = DECL_WEAK (decl);
2483       DECL_VISIBILITY (guard) = DECL_VISIBILITY (decl);
2484       DECL_VISIBILITY_SPECIFIED (guard) = DECL_VISIBILITY_SPECIFIED (decl);
2485
2486       DECL_ARTIFICIAL (guard) = 1;
2487       DECL_IGNORED_P (guard) = 1;
2488       TREE_USED (guard) = 1;
2489       pushdecl_top_level_and_finish (guard, NULL_TREE);
2490     }
2491   return guard;
2492 }
2493
2494 /* Return those bits of the GUARD variable that should be set when the
2495    guarded entity is actually initialized.  */
2496
2497 static tree
2498 get_guard_bits (tree guard)
2499 {
2500   if (!targetm.cxx.guard_mask_bit ())
2501     {
2502       /* We only set the first byte of the guard, in order to leave room
2503          for a mutex in the high-order bits.  */
2504       guard = build1 (ADDR_EXPR,
2505                       build_pointer_type (TREE_TYPE (guard)),
2506                       guard);
2507       guard = build1 (NOP_EXPR,
2508                       build_pointer_type (char_type_node),
2509                       guard);
2510       guard = build1 (INDIRECT_REF, char_type_node, guard);
2511     }
2512
2513   return guard;
2514 }
2515
2516 /* Return an expression which determines whether or not the GUARD
2517    variable has already been initialized.  */
2518
2519 tree
2520 get_guard_cond (tree guard)
2521 {
2522   tree guard_value;
2523
2524   /* Check to see if the GUARD is zero.  */
2525   guard = get_guard_bits (guard);
2526
2527   /* Mask off all but the low bit.  */
2528   if (targetm.cxx.guard_mask_bit ())
2529     {
2530       guard_value = integer_one_node;
2531       if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2532         guard_value = convert (TREE_TYPE (guard), guard_value);
2533       guard = cp_build_binary_op (input_location,
2534                                   BIT_AND_EXPR, guard, guard_value,
2535                                   tf_warning_or_error);
2536     }
2537
2538   guard_value = integer_zero_node;
2539   if (!same_type_p (TREE_TYPE (guard_value), TREE_TYPE (guard)))
2540     guard_value = convert (TREE_TYPE (guard), guard_value);
2541   return cp_build_binary_op (input_location,
2542                              EQ_EXPR, guard, guard_value,
2543                              tf_warning_or_error);
2544 }
2545
2546 /* Return an expression which sets the GUARD variable, indicating that
2547    the variable being guarded has been initialized.  */
2548
2549 tree
2550 set_guard (tree guard)
2551 {
2552   tree guard_init;
2553
2554   /* Set the GUARD to one.  */
2555   guard = get_guard_bits (guard);
2556   guard_init = integer_one_node;
2557   if (!same_type_p (TREE_TYPE (guard_init), TREE_TYPE (guard)))
2558     guard_init = convert (TREE_TYPE (guard), guard_init);
2559   return cp_build_modify_expr (guard, NOP_EXPR, guard_init, 
2560                                tf_warning_or_error);
2561 }
2562
2563 /* Start the process of running a particular set of global constructors
2564    or destructors.  Subroutine of do_[cd]tors.  */
2565
2566 static tree
2567 start_objects (int method_type, int initp)
2568 {
2569   tree body;
2570   tree fndecl;
2571   char type[10];
2572
2573   /* Make ctor or dtor function.  METHOD_TYPE may be 'I' or 'D'.  */
2574
2575   if (initp != DEFAULT_INIT_PRIORITY)
2576     {
2577       char joiner;
2578
2579 #ifdef JOINER
2580       joiner = JOINER;
2581 #else
2582       joiner = '_';
2583 #endif
2584
2585       sprintf (type, "%c%c%.5u", method_type, joiner, initp);
2586     }
2587   else
2588     sprintf (type, "%c", method_type);
2589
2590   fndecl = build_lang_decl (FUNCTION_DECL,
2591                             get_file_function_name (type),
2592                             build_function_type (void_type_node,
2593                                                  void_list_node));
2594   start_preparsed_function (fndecl, /*attrs=*/NULL_TREE, SF_PRE_PARSED);
2595
2596   TREE_PUBLIC (current_function_decl) = 0;
2597
2598   /* Mark as artificial because it's not explicitly in the user's
2599      source code.  */
2600   DECL_ARTIFICIAL (current_function_decl) = 1;
2601
2602   /* Mark this declaration as used to avoid spurious warnings.  */
2603   TREE_USED (current_function_decl) = 1;
2604
2605   /* Mark this function as a global constructor or destructor.  */
2606   if (method_type == 'I')
2607     DECL_GLOBAL_CTOR_P (current_function_decl) = 1;
2608   else
2609     DECL_GLOBAL_DTOR_P (current_function_decl) = 1;
2610   DECL_LANG_SPECIFIC (current_function_decl)->decl_flags.u2sel = 1;
2611
2612   body = begin_compound_stmt (BCS_FN_BODY);
2613
2614   return body;
2615 }
2616
2617 /* Finish the process of running a particular set of global constructors
2618    or destructors.  Subroutine of do_[cd]tors.  */
2619
2620 static void
2621 finish_objects (int method_type, int initp, tree body)
2622 {
2623   tree fn;
2624
2625   /* Finish up.  */
2626   finish_compound_stmt (body);
2627   fn = finish_function (0);
2628
2629   if (method_type == 'I')
2630     {
2631       DECL_STATIC_CONSTRUCTOR (fn) = 1;
2632       decl_init_priority_insert (fn, initp);
2633     }
2634   else
2635     {
2636       DECL_STATIC_DESTRUCTOR (fn) = 1;
2637       decl_fini_priority_insert (fn, initp);
2638     }
2639
2640   expand_or_defer_fn (fn);
2641 }
2642
2643 /* The names of the parameters to the function created to handle
2644    initializations and destructions for objects with static storage
2645    duration.  */
2646 #define INITIALIZE_P_IDENTIFIER "__initialize_p"
2647 #define PRIORITY_IDENTIFIER "__priority"
2648
2649 /* The name of the function we create to handle initializations and
2650    destructions for objects with static storage duration.  */
2651 #define SSDF_IDENTIFIER "__static_initialization_and_destruction"
2652
2653 /* The declaration for the __INITIALIZE_P argument.  */
2654 static GTY(()) tree initialize_p_decl;
2655
2656 /* The declaration for the __PRIORITY argument.  */
2657 static GTY(()) tree priority_decl;
2658
2659 /* The declaration for the static storage duration function.  */
2660 static GTY(()) tree ssdf_decl;
2661
2662 /* All the static storage duration functions created in this
2663    translation unit.  */
2664 static GTY(()) VEC(tree,gc) *ssdf_decls;
2665
2666 /* A map from priority levels to information about that priority
2667    level.  There may be many such levels, so efficient lookup is
2668    important.  */
2669 static splay_tree priority_info_map;
2670
2671 /* Begins the generation of the function that will handle all
2672    initialization and destruction of objects with static storage
2673    duration.  The function generated takes two parameters of type
2674    `int': __INITIALIZE_P and __PRIORITY.  If __INITIALIZE_P is
2675    nonzero, it performs initializations.  Otherwise, it performs
2676    destructions.  It only performs those initializations or
2677    destructions with the indicated __PRIORITY.  The generated function
2678    returns no value.
2679
2680    It is assumed that this function will only be called once per
2681    translation unit.  */
2682
2683 static tree
2684 start_static_storage_duration_function (unsigned count)
2685 {
2686   tree parm_types;
2687   tree type;
2688   tree body;
2689   char id[sizeof (SSDF_IDENTIFIER) + 1 /* '\0' */ + 32];
2690
2691   /* Create the identifier for this function.  It will be of the form
2692      SSDF_IDENTIFIER_<number>.  */
2693   sprintf (id, "%s_%u", SSDF_IDENTIFIER, count);
2694
2695   /* Create the parameters.  */
2696   parm_types = void_list_node;
2697   parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2698   parm_types = tree_cons (NULL_TREE, integer_type_node, parm_types);
2699   type = build_function_type (void_type_node, parm_types);
2700
2701   /* Create the FUNCTION_DECL itself.  */
2702   ssdf_decl = build_lang_decl (FUNCTION_DECL,
2703                                get_identifier (id),
2704                                type);
2705   TREE_PUBLIC (ssdf_decl) = 0;
2706   DECL_ARTIFICIAL (ssdf_decl) = 1;
2707
2708   /* Put this function in the list of functions to be called from the
2709      static constructors and destructors.  */
2710   if (!ssdf_decls)
2711     {
2712       ssdf_decls = VEC_alloc (tree, gc, 32);
2713
2714       /* Take this opportunity to initialize the map from priority
2715          numbers to information about that priority level.  */
2716       priority_info_map = splay_tree_new (splay_tree_compare_ints,
2717                                           /*delete_key_fn=*/0,
2718                                           /*delete_value_fn=*/
2719                                           (splay_tree_delete_value_fn) &free);
2720
2721       /* We always need to generate functions for the
2722          DEFAULT_INIT_PRIORITY so enter it now.  That way when we walk
2723          priorities later, we'll be sure to find the
2724          DEFAULT_INIT_PRIORITY.  */
2725       get_priority_info (DEFAULT_INIT_PRIORITY);
2726     }
2727
2728   VEC_safe_push (tree, gc, ssdf_decls, ssdf_decl);
2729
2730   /* Create the argument list.  */
2731   initialize_p_decl = cp_build_parm_decl
2732     (get_identifier (INITIALIZE_P_IDENTIFIER), integer_type_node);
2733   DECL_CONTEXT (initialize_p_decl) = ssdf_decl;
2734   TREE_USED (initialize_p_decl) = 1;
2735   priority_decl = cp_build_parm_decl
2736     (get_identifier (PRIORITY_IDENTIFIER), integer_type_node);
2737   DECL_CONTEXT (priority_decl) = ssdf_decl;
2738   TREE_USED (priority_decl) = 1;
2739
2740   TREE_CHAIN (initialize_p_decl) = priority_decl;
2741   DECL_ARGUMENTS (ssdf_decl) = initialize_p_decl;
2742
2743   /* Put the function in the global scope.  */
2744   pushdecl (ssdf_decl);
2745
2746   /* Start the function itself.  This is equivalent to declaring the
2747      function as:
2748
2749        static void __ssdf (int __initialize_p, init __priority_p);
2750
2751      It is static because we only need to call this function from the
2752      various constructor and destructor functions for this module.  */
2753   start_preparsed_function (ssdf_decl,
2754                             /*attrs=*/NULL_TREE,
2755                             SF_PRE_PARSED);
2756
2757   /* Set up the scope of the outermost block in the function.  */
2758   body = begin_compound_stmt (BCS_FN_BODY);
2759
2760   return body;
2761 }
2762
2763 /* Finish the generation of the function which performs initialization
2764    and destruction of objects with static storage duration.  After
2765    this point, no more such objects can be created.  */
2766
2767 static void
2768 finish_static_storage_duration_function (tree body)
2769 {
2770   /* Close out the function.  */
2771   finish_compound_stmt (body);
2772   expand_or_defer_fn (finish_function (0));
2773 }
2774
2775 /* Return the information about the indicated PRIORITY level.  If no
2776    code to handle this level has yet been generated, generate the
2777    appropriate prologue.  */
2778
2779 static priority_info
2780 get_priority_info (int priority)
2781 {
2782   priority_info pi;
2783   splay_tree_node n;
2784
2785   n = splay_tree_lookup (priority_info_map,
2786                          (splay_tree_key) priority);
2787   if (!n)
2788     {
2789       /* Create a new priority information structure, and insert it
2790          into the map.  */
2791       pi = XNEW (struct priority_info_s);
2792       pi->initializations_p = 0;
2793       pi->destructions_p = 0;
2794       splay_tree_insert (priority_info_map,
2795                          (splay_tree_key) priority,
2796                          (splay_tree_value) pi);
2797     }
2798   else
2799     pi = (priority_info) n->value;
2800
2801   return pi;
2802 }
2803
2804 /* The effective initialization priority of a DECL.  */
2805
2806 #define DECL_EFFECTIVE_INIT_PRIORITY(decl)                                    \
2807         ((!DECL_HAS_INIT_PRIORITY_P (decl) || DECL_INIT_PRIORITY (decl) == 0) \
2808          ? DEFAULT_INIT_PRIORITY : DECL_INIT_PRIORITY (decl))
2809
2810 /* Whether a DECL needs a guard to protect it against multiple
2811    initialization.  */
2812
2813 #define NEEDS_GUARD_P(decl) (TREE_PUBLIC (decl) && (DECL_COMMON (decl)      \
2814                                                     || DECL_ONE_ONLY (decl) \
2815                                                     || DECL_WEAK (decl)))
2816
2817 /* Called from one_static_initialization_or_destruction(),
2818    via walk_tree.
2819    Walks the initializer list of a global variable and looks for
2820    temporary variables (DECL_NAME() == NULL and DECL_ARTIFICIAL != 0)
2821    and that have their DECL_CONTEXT() == NULL.
2822    For each such temporary variable, set their DECL_CONTEXT() to
2823    the current function. This is necessary because otherwise
2824    some optimizers (enabled by -O2 -fprofile-arcs) might crash
2825    when trying to refer to a temporary variable that does not have
2826    it's DECL_CONTECT() properly set.  */
2827 static tree 
2828 fix_temporary_vars_context_r (tree *node,
2829                               int  *unused ATTRIBUTE_UNUSED,
2830                               void *unused1 ATTRIBUTE_UNUSED)
2831 {
2832   gcc_assert (current_function_decl);
2833
2834   if (TREE_CODE (*node) == BIND_EXPR)
2835     {
2836       tree var;
2837
2838       for (var = BIND_EXPR_VARS (*node); var; var = TREE_CHAIN (var))
2839         if (TREE_CODE (var) == VAR_DECL
2840           && !DECL_NAME (var)
2841           && DECL_ARTIFICIAL (var)
2842           && !DECL_CONTEXT (var))
2843           DECL_CONTEXT (var) = current_function_decl;
2844     }
2845
2846   return NULL_TREE;
2847 }
2848
2849 /* Set up to handle the initialization or destruction of DECL.  If
2850    INITP is nonzero, we are initializing the variable.  Otherwise, we
2851    are destroying it.  */
2852
2853 static void
2854 one_static_initialization_or_destruction (tree decl, tree init, bool initp)
2855 {
2856   tree guard_if_stmt = NULL_TREE;
2857   tree guard;
2858
2859   /* If we are supposed to destruct and there's a trivial destructor,
2860      nothing has to be done.  */
2861   if (!initp
2862       && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
2863     return;
2864
2865   /* Trick the compiler into thinking we are at the file and line
2866      where DECL was declared so that error-messages make sense, and so
2867      that the debugger will show somewhat sensible file and line
2868      information.  */
2869   input_location = DECL_SOURCE_LOCATION (decl);
2870
2871   /* Make sure temporary variables in the initialiser all have
2872      their DECL_CONTEXT() set to a value different from NULL_TREE.
2873      This can happen when global variables initialisers are built.
2874      In that case, the DECL_CONTEXT() of the global variables _AND_ of all 
2875      the temporary variables that might have been generated in the
2876      accompagning initialisers is NULL_TREE, meaning the variables have been
2877      declared in the global namespace.
2878      What we want to do here is to fix that and make sure the DECL_CONTEXT()
2879      of the temporaries are set to the current function decl.  */
2880   cp_walk_tree_without_duplicates (&init,
2881                                    fix_temporary_vars_context_r,
2882                                    NULL);
2883
2884   /* Because of:
2885
2886        [class.access.spec]
2887
2888        Access control for implicit calls to the constructors,
2889        the conversion functions, or the destructor called to
2890        create and destroy a static data member is performed as
2891        if these calls appeared in the scope of the member's
2892        class.
2893
2894      we pretend we are in a static member function of the class of
2895      which the DECL is a member.  */
2896   if (member_p (decl))
2897     {
2898       DECL_CONTEXT (current_function_decl) = DECL_CONTEXT (decl);
2899       DECL_STATIC_FUNCTION_P (current_function_decl) = 1;
2900     }
2901
2902   /* Assume we don't need a guard.  */
2903   guard = NULL_TREE;
2904   /* We need a guard if this is an object with external linkage that
2905      might be initialized in more than one place.  (For example, a
2906      static data member of a template, when the data member requires
2907      construction.)  */
2908   if (NEEDS_GUARD_P (decl))
2909     {
2910       tree guard_cond;
2911
2912       guard = get_guard (decl);
2913
2914       /* When using __cxa_atexit, we just check the GUARD as we would
2915          for a local static.  */
2916       if (flag_use_cxa_atexit)
2917         {
2918           /* When using __cxa_atexit, we never try to destroy
2919              anything from a static destructor.  */
2920           gcc_assert (initp);
2921           guard_cond = get_guard_cond (guard);
2922         }
2923       /* If we don't have __cxa_atexit, then we will be running
2924          destructors from .fini sections, or their equivalents.  So,
2925          we need to know how many times we've tried to initialize this
2926          object.  We do initializations only if the GUARD is zero,
2927          i.e., if we are the first to initialize the variable.  We do
2928          destructions only if the GUARD is one, i.e., if we are the
2929          last to destroy the variable.  */
2930       else if (initp)
2931         guard_cond
2932           = cp_build_binary_op (input_location,
2933                                 EQ_EXPR,
2934                                 cp_build_unary_op (PREINCREMENT_EXPR,
2935                                                    guard,
2936                                                    /*noconvert=*/1,
2937                                                    tf_warning_or_error),
2938                                 integer_one_node,
2939                                 tf_warning_or_error);
2940       else
2941         guard_cond
2942           = cp_build_binary_op (input_location,
2943                                 EQ_EXPR,
2944                                 cp_build_unary_op (PREDECREMENT_EXPR,
2945                                                    guard,
2946                                                    /*noconvert=*/1,
2947                                                    tf_warning_or_error),
2948                                 integer_zero_node,
2949                                 tf_warning_or_error);
2950
2951       guard_if_stmt = begin_if_stmt ();
2952       finish_if_stmt_cond (guard_cond, guard_if_stmt);
2953     }
2954
2955
2956   /* If we're using __cxa_atexit, we have not already set the GUARD,
2957      so we must do so now.  */
2958   if (guard && initp && flag_use_cxa_atexit)
2959     finish_expr_stmt (set_guard (guard));
2960
2961   /* Perform the initialization or destruction.  */
2962   if (initp)
2963     {
2964       if (init)
2965         finish_expr_stmt (init);
2966
2967       /* If we're using __cxa_atexit, register a function that calls the
2968          destructor for the object.  */
2969       if (flag_use_cxa_atexit)
2970         finish_expr_stmt (register_dtor_fn (decl));
2971     }
2972   else
2973     finish_expr_stmt (build_cleanup (decl));
2974
2975   /* Finish the guard if-stmt, if necessary.  */
2976   if (guard)
2977     {
2978       finish_then_clause (guard_if_stmt);
2979       finish_if_stmt (guard_if_stmt);
2980     }
2981
2982   /* Now that we're done with DECL we don't need to pretend to be a
2983      member of its class any longer.  */
2984   DECL_CONTEXT (current_function_decl) = NULL_TREE;
2985   DECL_STATIC_FUNCTION_P (current_function_decl) = 0;
2986 }
2987
2988 /* Generate code to do the initialization or destruction of the decls in VARS,
2989    a TREE_LIST of VAR_DECL with static storage duration.
2990    Whether initialization or destruction is performed is specified by INITP.  */
2991
2992 static void
2993 do_static_initialization_or_destruction (tree vars, bool initp)
2994 {
2995   tree node, init_if_stmt, cond;
2996
2997   /* Build the outer if-stmt to check for initialization or destruction.  */
2998   init_if_stmt = begin_if_stmt ();
2999   cond = initp ? integer_one_node : integer_zero_node;
3000   cond = cp_build_binary_op (input_location,
3001                              EQ_EXPR,
3002                              initialize_p_decl,
3003                              cond,
3004                              tf_warning_or_error);
3005   finish_if_stmt_cond (cond, init_if_stmt);
3006
3007   node = vars;
3008   do {
3009     tree decl = TREE_VALUE (node);
3010     tree priority_if_stmt;
3011     int priority;
3012     priority_info pi;
3013
3014     /* If we don't need a destructor, there's nothing to do.  Avoid
3015        creating a possibly empty if-stmt.  */
3016     if (!initp && TYPE_HAS_TRIVIAL_DESTRUCTOR (TREE_TYPE (decl)))
3017       {
3018         node = TREE_CHAIN (node);
3019         continue;
3020       }
3021
3022     /* Remember that we had an initialization or finalization at this
3023        priority.  */
3024     priority = DECL_EFFECTIVE_INIT_PRIORITY (decl);
3025     pi = get_priority_info (priority);
3026     if (initp)
3027       pi->initializations_p = 1;
3028     else
3029       pi->destructions_p = 1;
3030
3031     /* Conditionalize this initialization on being in the right priority
3032        and being initializing/finalizing appropriately.  */
3033     priority_if_stmt = begin_if_stmt ();
3034     cond = cp_build_binary_op (input_location,
3035                                EQ_EXPR,
3036                                priority_decl,
3037                                build_int_cst (NULL_TREE, priority),
3038                                tf_warning_or_error);
3039     finish_if_stmt_cond (cond, priority_if_stmt);
3040
3041     /* Process initializers with same priority.  */
3042     for (; node
3043            && DECL_EFFECTIVE_INIT_PRIORITY (TREE_VALUE (node)) == priority;
3044          node = TREE_CHAIN (node))
3045       /* Do one initialization or destruction.  */
3046       one_static_initialization_or_destruction (TREE_VALUE (node),
3047                                                 TREE_PURPOSE (node), initp);
3048
3049     /* Finish up the priority if-stmt body.  */
3050     finish_then_clause (priority_if_stmt);
3051     finish_if_stmt (priority_if_stmt);
3052
3053   } while (node);
3054
3055   /* Finish up the init/destruct if-stmt body.  */
3056   finish_then_clause (init_if_stmt);
3057   finish_if_stmt (init_if_stmt);
3058 }
3059
3060 /* VARS is a list of variables with static storage duration which may
3061    need initialization and/or finalization.  Remove those variables
3062    that don't really need to be initialized or finalized, and return
3063    the resulting list.  The order in which the variables appear in
3064    VARS is in reverse order of the order in which they should actually
3065    be initialized.  The list we return is in the unreversed order;
3066    i.e., the first variable should be initialized first.  */
3067
3068 static tree
3069 prune_vars_needing_no_initialization (tree *vars)
3070 {
3071   tree *var = vars;
3072   tree result = NULL_TREE;
3073
3074   while (*var)
3075     {
3076       tree t = *var;
3077       tree decl = TREE_VALUE (t);
3078       tree init = TREE_PURPOSE (t);
3079
3080       /* Deal gracefully with error.  */
3081       if (decl == error_mark_node)
3082         {
3083           var = &TREE_CHAIN (t);
3084           continue;
3085         }
3086
3087       /* The only things that can be initialized are variables.  */
3088       gcc_assert (TREE_CODE (decl) == VAR_DECL);
3089
3090       /* If this object is not defined, we don't need to do anything
3091          here.  */
3092       if (DECL_EXTERNAL (decl))
3093         {
3094           var = &TREE_CHAIN (t);
3095           continue;
3096         }
3097
3098       /* Also, if the initializer already contains errors, we can bail
3099          out now.  */
3100       if (init && TREE_CODE (init) == TREE_LIST
3101           && value_member (error_mark_node, init))
3102         {
3103           var = &TREE_CHAIN (t);
3104           continue;
3105         }
3106
3107       /* This variable is going to need initialization and/or
3108          finalization, so we add it to the list.  */
3109       *var = TREE_CHAIN (t);
3110       TREE_CHAIN (t) = result;
3111       result = t;
3112     }
3113
3114   return result;
3115 }
3116
3117 /* Make sure we have told the back end about all the variables in
3118    VARS.  */
3119
3120 static void
3121 write_out_vars (tree vars)
3122 {
3123   tree v;
3124
3125   for (v = vars; v; v = TREE_CHAIN (v))
3126     {
3127       tree var = TREE_VALUE (v);
3128       if (!var_finalized_p (var))
3129         {
3130           import_export_decl (var);
3131           rest_of_decl_compilation (var, 1, 1);
3132         }
3133     }
3134 }
3135
3136 /* Generate a static constructor (if CONSTRUCTOR_P) or destructor
3137    (otherwise) that will initialize all global objects with static
3138    storage duration having the indicated PRIORITY.  */
3139
3140 static void
3141 generate_ctor_or_dtor_function (bool constructor_p, int priority,
3142                                 location_t *locus)
3143 {
3144   char function_key;
3145   tree arguments;
3146   tree fndecl;
3147   tree body;
3148   size_t i;
3149
3150   input_location = *locus;
3151   /* ??? */
3152   /* Was: locus->line++; */
3153
3154   /* We use `I' to indicate initialization and `D' to indicate
3155      destruction.  */
3156   function_key = constructor_p ? 'I' : 'D';
3157
3158   /* We emit the function lazily, to avoid generating empty
3159      global constructors and destructors.  */
3160   body = NULL_TREE;
3161
3162   /* For Objective-C++, we may need to initialize metadata found in this module.
3163      This must be done _before_ any other static initializations.  */
3164   if (c_dialect_objc () && (priority == DEFAULT_INIT_PRIORITY)
3165       && constructor_p && objc_static_init_needed_p ())
3166     {
3167       body = start_objects (function_key, priority);
3168       objc_generate_static_init_call (NULL_TREE);
3169     }
3170
3171   /* Call the static storage duration function with appropriate
3172      arguments.  */
3173   for (i = 0; VEC_iterate (tree, ssdf_decls, i, fndecl); ++i)
3174     {
3175       /* Calls to pure or const functions will expand to nothing.  */
3176       if (! (flags_from_decl_or_type (fndecl) & (ECF_CONST | ECF_PURE)))
3177         {
3178           if (! body)
3179             body = start_objects (function_key, priority);
3180
3181           arguments = tree_cons (NULL_TREE,
3182                                  build_int_cst (NULL_TREE, priority),
3183                                  NULL_TREE);
3184           arguments = tree_cons (NULL_TREE,
3185                                  build_int_cst (NULL_TREE, constructor_p),
3186                                  arguments);
3187           finish_expr_stmt (cp_build_function_call (fndecl, arguments,
3188                                                     tf_warning_or_error));
3189         }
3190     }
3191
3192   /* Close out the function.  */
3193   if (body)
3194     finish_objects (function_key, priority, body);
3195 }
3196
3197 /* Generate constructor and destructor functions for the priority
3198    indicated by N.  */
3199
3200 static int
3201 generate_ctor_and_dtor_functions_for_priority (splay_tree_node n, void * data)
3202 {
3203   location_t *locus = (location_t *) data;
3204   int priority = (int) n->key;
3205   priority_info pi = (priority_info) n->value;
3206
3207   /* Generate the functions themselves, but only if they are really
3208      needed.  */
3209   if (pi->initializations_p)
3210     generate_ctor_or_dtor_function (/*constructor_p=*/true, priority, locus);
3211   if (pi->destructions_p)
3212     generate_ctor_or_dtor_function (/*constructor_p=*/false, priority, locus);
3213
3214   /* Keep iterating.  */
3215   return 0;
3216 }
3217
3218 /* Called via LANGHOOK_CALLGRAPH_ANALYZE_EXPR.  It is supposed to mark
3219    decls referenced from front-end specific constructs; it will be called
3220    only for language-specific tree nodes.
3221
3222    Here we must deal with member pointers.  */
3223
3224 tree
3225 cxx_callgraph_analyze_expr (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED)
3226 {
3227   tree t = *tp;
3228
3229   switch (TREE_CODE (t))
3230     {
3231     case PTRMEM_CST:
3232       if (TYPE_PTRMEMFUNC_P (TREE_TYPE (t)))
3233         cgraph_mark_needed_node (cgraph_node (PTRMEM_CST_MEMBER (t)));
3234       break;
3235     case BASELINK:
3236       if (TREE_CODE (BASELINK_FUNCTIONS (t)) == FUNCTION_DECL)
3237         cgraph_mark_needed_node (cgraph_node (BASELINK_FUNCTIONS (t)));
3238       break;
3239     case VAR_DECL:
3240       if (DECL_VTABLE_OR_VTT_P (t))
3241         {
3242           /* The ABI requires that all virtual tables be emitted
3243              whenever one of them is.  */
3244           tree vtbl;
3245           for (vtbl = CLASSTYPE_VTABLES (DECL_CONTEXT (t));
3246                vtbl;
3247                vtbl = TREE_CHAIN (vtbl))
3248             mark_decl_referenced (vtbl);
3249         }
3250       else if (DECL_CONTEXT (t)
3251                && TREE_CODE (DECL_CONTEXT (t)) == FUNCTION_DECL)
3252         /* If we need a static variable in a function, then we
3253            need the containing function.  */
3254         mark_decl_referenced (DECL_CONTEXT (t));
3255       break;
3256     default:
3257       break;
3258     }
3259
3260   return NULL;
3261 }
3262
3263 /* Java requires that we be able to reference a local address for a
3264    method, and not be confused by PLT entries.  If hidden aliases are
3265    supported, emit one for each java function that we've emitted.  */
3266
3267 static void
3268 build_java_method_aliases (void)
3269 {
3270   struct cgraph_node *node;
3271
3272 #ifndef HAVE_GAS_HIDDEN
3273   return;
3274 #endif
3275
3276   for (node = cgraph_nodes; node ; node = node->next)
3277     {
3278       tree fndecl = node->decl;
3279
3280       if (TREE_ASM_WRITTEN (fndecl)
3281           && DECL_CONTEXT (fndecl)
3282           && TYPE_P (DECL_CONTEXT (fndecl))
3283           && TYPE_FOR_JAVA (DECL_CONTEXT (fndecl))
3284           && TARGET_USE_LOCAL_THUNK_ALIAS_P (fndecl))
3285         {
3286           /* Mangle the name in a predictable way; we need to reference
3287              this from a java compiled object file.  */
3288           tree oid, nid, alias;
3289           const char *oname;
3290           char *nname;
3291
3292           oid = DECL_ASSEMBLER_NAME (fndecl);
3293           oname = IDENTIFIER_POINTER (oid);
3294           gcc_assert (oname[0] == '_' && oname[1] == 'Z');
3295           nname = ACONCAT (("_ZGA", oname+2, NULL));
3296           nid = get_identifier (nname);
3297
3298           alias = make_alias_for (fndecl, nid);
3299           TREE_PUBLIC (alias) = 1;
3300           DECL_VISIBILITY (alias) = VISIBILITY_HIDDEN;
3301
3302           assemble_alias (alias, oid);
3303         }
3304     }
3305 }
3306
3307 /* This routine is called at the end of compilation.
3308    Its job is to create all the code needed to initialize and
3309    destroy the global aggregates.  We do the destruction
3310    first, since that way we only need to reverse the decls once.  */
3311
3312 void
3313 cp_write_global_declarations (void)
3314 {
3315   tree vars;
3316   bool reconsider;
3317   size_t i;
3318   location_t locus;
3319   unsigned ssdf_count = 0;
3320   int retries = 0;
3321   tree decl;
3322
3323   locus = input_location;
3324   at_eof = 1;
3325
3326   /* Bad parse errors.  Just forget about it.  */
3327   if (! global_bindings_p () || current_class_type || decl_namespace_list)
3328     return;
3329
3330   if (pch_file)
3331     c_common_write_pch ();
3332
3333   /* FIXME - huh?  was  input_line -= 1;*/
3334
3335   /* We now have to write out all the stuff we put off writing out.
3336      These include:
3337
3338        o Template specializations that we have not yet instantiated,
3339          but which are needed.
3340        o Initialization and destruction for non-local objects with
3341          static storage duration.  (Local objects with static storage
3342          duration are initialized when their scope is first entered,
3343          and are cleaned up via atexit.)
3344        o Virtual function tables.
3345
3346      All of these may cause others to be needed.  For example,
3347      instantiating one function may cause another to be needed, and
3348      generating the initializer for an object may cause templates to be
3349      instantiated, etc., etc.  */
3350
3351   timevar_push (TV_VARCONST);
3352
3353   emit_support_tinfos ();
3354
3355   do
3356     {
3357       tree t;
3358       tree decl;
3359
3360       reconsider = false;
3361
3362       /* If there are templates that we've put off instantiating, do
3363          them now.  */
3364       instantiate_pending_templates (retries);
3365       ggc_collect ();
3366
3367       /* Write out virtual tables as required.  Note that writing out
3368          the virtual table for a template class may cause the
3369          instantiation of members of that class.  If we write out
3370          vtables then we remove the class from our list so we don't
3371          have to look at it again.  */
3372
3373       while (keyed_classes != NULL_TREE
3374              && maybe_emit_vtables (TREE_VALUE (keyed_classes)))
3375         {
3376           reconsider = true;
3377           keyed_classes = TREE_CHAIN (keyed_classes);
3378         }
3379
3380       t = keyed_classes;
3381       if (t != NULL_TREE)
3382         {
3383           tree next = TREE_CHAIN (t);
3384
3385           while (next)
3386             {
3387               if (maybe_emit_vtables (TREE_VALUE (next)))
3388                 {
3389                   reconsider = true;
3390                   TREE_CHAIN (t) = TREE_CHAIN (next);
3391                 }
3392               else
3393                 t = next;
3394
3395               next = TREE_CHAIN (t);
3396             }
3397         }
3398
3399       /* Write out needed type info variables.  We have to be careful
3400          looping through unemitted decls, because emit_tinfo_decl may
3401          cause other variables to be needed. New elements will be
3402          appended, and we remove from the vector those that actually
3403          get emitted.  */
3404       for (i = VEC_length (tree, unemitted_tinfo_decls);
3405            VEC_iterate (tree, unemitted_tinfo_decls, --i, t);)
3406         if (emit_tinfo_decl (t))
3407           {
3408             reconsider = true;
3409             VEC_unordered_remove (tree, unemitted_tinfo_decls, i);
3410           }
3411
3412       /* The list of objects with static storage duration is built up
3413          in reverse order.  We clear STATIC_AGGREGATES so that any new
3414          aggregates added during the initialization of these will be
3415          initialized in the correct order when we next come around the
3416          loop.  */
3417       vars = prune_vars_needing_no_initialization (&static_aggregates);
3418
3419       if (vars)
3420         {
3421           /* We need to start a new initialization function each time
3422              through the loop.  That's because we need to know which
3423              vtables have been referenced, and TREE_SYMBOL_REFERENCED
3424              isn't computed until a function is finished, and written
3425              out.  That's a deficiency in the back end.  When this is
3426              fixed, these initialization functions could all become
3427              inline, with resulting performance improvements.  */
3428           tree ssdf_body;
3429
3430           /* Set the line and file, so that it is obviously not from
3431              the source file.  */
3432           input_location = locus;
3433           ssdf_body = start_static_storage_duration_function (ssdf_count);
3434
3435           /* Make sure the back end knows about all the variables.  */
3436           write_out_vars (vars);
3437
3438           /* First generate code to do all the initializations.  */
3439           if (vars)
3440             do_static_initialization_or_destruction (vars, /*initp=*/true);
3441
3442           /* Then, generate code to do all the destructions.  Do these
3443              in reverse order so that the most recently constructed
3444              variable is the first destroyed.  If we're using
3445              __cxa_atexit, then we don't need to do this; functions
3446              were registered at initialization time to destroy the
3447              local statics.  */
3448           if (!flag_use_cxa_atexit && vars)
3449             {
3450               vars = nreverse (vars);
3451               do_static_initialization_or_destruction (vars, /*initp=*/false);
3452             }
3453           else
3454             vars = NULL_TREE;
3455
3456           /* Finish up the static storage duration function for this
3457              round.  */
3458           input_location = locus;
3459           finish_static_storage_duration_function (ssdf_body);
3460
3461           /* All those initializations and finalizations might cause
3462              us to need more inline functions, more template
3463              instantiations, etc.  */
3464           reconsider = true;
3465           ssdf_count++;
3466           /* ??? was:  locus.line++; */
3467         }
3468
3469       /* Go through the set of inline functions whose bodies have not
3470          been emitted yet.  If out-of-line copies of these functions
3471          are required, emit them.  */
3472       for (i = 0; VEC_iterate (tree, deferred_fns, i, decl); ++i)
3473         {
3474           /* Does it need synthesizing?  */
3475           if (DECL_ARTIFICIAL (decl) && ! DECL_INITIAL (decl)
3476               && (! DECL_REALLY_EXTERN (decl) || possibly_inlined_p (decl)))
3477             {
3478               /* Even though we're already at the top-level, we push
3479                  there again.  That way, when we pop back a few lines
3480                  hence, all of our state is restored.  Otherwise,
3481                  finish_function doesn't clean things up, and we end
3482                  up with CURRENT_FUNCTION_DECL set.  */
3483               push_to_top_level ();
3484               /* The decl's location will mark where it was first
3485                  needed.  Save that so synthesize method can indicate
3486                  where it was needed from, in case of error  */
3487               input_location = DECL_SOURCE_LOCATION (decl);
3488               synthesize_method (decl);
3489               pop_from_top_level ();
3490               reconsider = true;
3491             }
3492
3493           if (!gimple_body (decl))
3494             continue;
3495
3496           /* We lie to the back end, pretending that some functions
3497              are not defined when they really are.  This keeps these
3498              functions from being put out unnecessarily.  But, we must
3499              stop lying when the functions are referenced, or if they
3500              are not comdat since they need to be put out now.  If
3501              DECL_INTERFACE_KNOWN, then we have already set
3502              DECL_EXTERNAL appropriately, so there's no need to check
3503              again, and we do not want to clear DECL_EXTERNAL if a
3504              previous call to import_export_decl set it.
3505
3506              This is done in a separate for cycle, because if some
3507              deferred function is contained in another deferred
3508              function later in deferred_fns varray,
3509              rest_of_compilation would skip this function and we
3510              really cannot expand the same function twice.  */
3511           import_export_decl (decl);
3512           if (DECL_NOT_REALLY_EXTERN (decl)
3513               && DECL_INITIAL (decl)
3514               && decl_needed_p (decl))
3515             DECL_EXTERNAL (decl) = 0;
3516
3517           /* If we're going to need to write this function out, and
3518              there's already a body for it, create RTL for it now.
3519              (There might be no body if this is a method we haven't
3520              gotten around to synthesizing yet.)  */
3521           if (!DECL_EXTERNAL (decl)
3522               && decl_needed_p (decl)
3523               && !TREE_ASM_WRITTEN (decl)
3524               && !cgraph_node (decl)->local.finalized)
3525             {
3526               /* We will output the function; no longer consider it in this
3527                  loop.  */
3528               DECL_DEFER_OUTPUT (decl) = 0;
3529               /* Generate RTL for this function now that we know we
3530                  need it.  */
3531               expand_or_defer_fn (decl);
3532               /* If we're compiling -fsyntax-only pretend that this
3533                  function has been written out so that we don't try to
3534                  expand it again.  */
3535               if (flag_syntax_only)
3536                 TREE_ASM_WRITTEN (decl) = 1;
3537               reconsider = true;
3538             }
3539         }
3540
3541       if (walk_namespaces (wrapup_globals_for_namespace, /*data=*/0))
3542         reconsider = true;
3543
3544       /* Static data members are just like namespace-scope globals.  */
3545       for (i = 0; VEC_iterate (tree, pending_statics, i, decl); ++i)
3546         {
3547           if (var_finalized_p (decl) || DECL_REALLY_EXTERN (decl)
3548               /* Don't write it out if we haven't seen a definition.  */
3549               || DECL_IN_AGGR_P (decl))
3550             continue;
3551           import_export_decl (decl);
3552           /* If this static data member is needed, provide it to the
3553              back end.  */
3554           if (DECL_NOT_REALLY_EXTERN (decl) && decl_needed_p (decl))
3555             DECL_EXTERNAL (decl) = 0;
3556         }
3557       if (VEC_length (tree, pending_statics) != 0
3558           && wrapup_global_declarations (VEC_address (tree, pending_statics),
3559                                          VEC_length (tree, pending_statics)))
3560         reconsider = true;
3561
3562       retries++;
3563     }
3564   while (reconsider);
3565
3566   /* All used inline functions must have a definition at this point.  */
3567   for (i = 0; VEC_iterate (tree, deferred_fns, i, decl); ++i)
3568     {
3569       if (/* Check online inline functions that were actually used.  */
3570           TREE_USED (decl) && DECL_DECLARED_INLINE_P (decl)
3571           /* If the definition actually was available here, then the
3572              fact that the function was not defined merely represents
3573              that for some reason (use of a template repository,
3574              #pragma interface, etc.) we decided not to emit the
3575              definition here.  */
3576           && !DECL_INITIAL (decl)
3577           /* An explicit instantiation can be used to specify
3578              that the body is in another unit. It will have
3579              already verified there was a definition.  */
3580           && !DECL_EXPLICIT_INSTANTIATION (decl))
3581         {
3582           warning (0, "inline function %q+D used but never defined", decl);
3583           /* Avoid a duplicate warning from check_global_declaration_1.  */
3584           TREE_NO_WARNING (decl) = 1;
3585         }
3586     }
3587
3588   /* We give C linkage to static constructors and destructors.  */
3589   push_lang_context (lang_name_c);
3590
3591   /* Generate initialization and destruction functions for all
3592      priorities for which they are required.  */
3593   if (priority_info_map)
3594     splay_tree_foreach (priority_info_map,
3595                         generate_ctor_and_dtor_functions_for_priority,
3596                         /*data=*/&locus);
3597   else if (c_dialect_objc () && objc_static_init_needed_p ())
3598     /* If this is obj-c++ and we need a static init, call
3599        generate_ctor_or_dtor_function.  */
3600     generate_ctor_or_dtor_function (/*constructor_p=*/true,
3601                                     DEFAULT_INIT_PRIORITY, &locus);
3602
3603   /* We're done with the splay-tree now.  */
3604   if (priority_info_map)
3605     splay_tree_delete (priority_info_map);
3606
3607   /* Generate any missing aliases.  */
3608   maybe_apply_pending_pragma_weaks ();
3609
3610   /* We're done with static constructors, so we can go back to "C++"
3611      linkage now.  */
3612   pop_lang_context ();
3613
3614   cgraph_finalize_compilation_unit ();
3615   cgraph_optimize ();
3616
3617   /* Now, issue warnings about static, but not defined, functions,
3618      etc., and emit debugging information.  */
3619   walk_namespaces (wrapup_globals_for_namespace, /*data=*/&reconsider);
3620   if (VEC_length (tree, pending_statics) != 0)
3621     {
3622       check_global_declarations (VEC_address (tree, pending_statics),
3623                                  VEC_length (tree, pending_statics));
3624       emit_debug_global_declarations (VEC_address (tree, pending_statics),
3625                                       VEC_length (tree, pending_statics));
3626     }
3627
3628   /* Generate hidden aliases for Java.  */
3629   build_java_method_aliases ();
3630
3631   finish_repo ();
3632
3633   /* The entire file is now complete.  If requested, dump everything
3634      to a file.  */
3635   {
3636     int flags;
3637     FILE *stream = dump_begin (TDI_tu, &flags);
3638
3639     if (stream)
3640       {
3641         dump_node (global_namespace, flags & ~TDF_SLIM, stream);
3642         dump_end (TDI_tu, stream);
3643       }
3644   }
3645
3646   timevar_pop (TV_VARCONST);
3647
3648   if (flag_detailed_statistics)
3649     {
3650       dump_tree_statistics ();
3651       dump_time_statistics ();
3652     }
3653   input_location = locus;
3654
3655 #ifdef ENABLE_CHECKING
3656   validate_conversion_obstack ();
3657 #endif /* ENABLE_CHECKING */
3658 }
3659
3660 /* FN is an OFFSET_REF, DOTSTAR_EXPR or MEMBER_REF indicating the
3661    function to call in parse-tree form; it has not yet been
3662    semantically analyzed.  ARGS are the arguments to the function.
3663    They have already been semantically analyzed.  */
3664
3665 tree
3666 build_offset_ref_call_from_tree (tree fn, tree args)
3667 {
3668   tree orig_fn;
3669   tree orig_args;
3670   tree expr;
3671   tree object;
3672
3673   orig_fn = fn;
3674   orig_args = args;
3675   object = TREE_OPERAND (fn, 0);
3676
3677   if (processing_template_decl)
3678     {
3679       gcc_assert (TREE_CODE (fn) == DOTSTAR_EXPR
3680                   || TREE_CODE (fn) == MEMBER_REF);
3681       if (type_dependent_expression_p (fn)
3682           || any_type_dependent_arguments_p (args))
3683         return build_nt_call_list (fn, args);
3684
3685       /* Transform the arguments and add the implicit "this"
3686          parameter.  That must be done before the FN is transformed
3687          because we depend on the form of FN.  */
3688       args = build_non_dependent_args (args);
3689       object = build_non_dependent_expr (object);
3690       if (TREE_CODE (fn) == DOTSTAR_EXPR)
3691         object = cp_build_unary_op (ADDR_EXPR, object, 0, tf_warning_or_error);
3692       args = tree_cons (NULL_TREE, object, args);
3693       /* Now that the arguments are done, transform FN.  */
3694       fn = build_non_dependent_expr (fn);
3695     }
3696
3697   /* A qualified name corresponding to a bound pointer-to-member is
3698      represented as an OFFSET_REF:
3699
3700         struct B { void g(); };
3701         void (B::*p)();
3702         void B::g() { (this->*p)(); }  */
3703   if (TREE_CODE (fn) == OFFSET_REF)
3704     {
3705       tree object_addr = cp_build_unary_op (ADDR_EXPR, object, 0,
3706                                          tf_warning_or_error);
3707       fn = TREE_OPERAND (fn, 1);
3708       fn = get_member_function_from_ptrfunc (&object_addr, fn);
3709       args = tree_cons (NULL_TREE, object_addr, args);
3710     }
3711
3712   expr = cp_build_function_call (fn, args, tf_warning_or_error);
3713   if (processing_template_decl && expr != error_mark_node)
3714     return build_min_non_dep_call_list (expr, orig_fn, orig_args);
3715   return expr;
3716 }
3717
3718
3719 void
3720 check_default_args (tree x)
3721 {
3722   tree arg = TYPE_ARG_TYPES (TREE_TYPE (x));
3723   bool saw_def = false;
3724   int i = 0 - (TREE_CODE (TREE_TYPE (x)) == METHOD_TYPE);
3725   for (; arg && arg != void_list_node; arg = TREE_CHAIN (arg), ++i)
3726     {
3727       if (TREE_PURPOSE (arg))
3728         saw_def = true;
3729       else if (saw_def)
3730         {
3731           error ("default argument missing for parameter %P of %q+#D", i, x);
3732           TREE_PURPOSE (arg) = error_mark_node;
3733         }
3734     }
3735 }
3736
3737 /* Return true if function DECL can be inlined.  This is used to force
3738    instantiation of methods that might be interesting for inlining.  */
3739 bool
3740 possibly_inlined_p (tree decl)
3741 {
3742   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
3743   if (DECL_UNINLINABLE (decl))
3744     return false;
3745   if (!optimize)
3746     return DECL_DECLARED_INLINE_P (decl);
3747   /* When optimizing, we might inline everything when flatten
3748      attribute or heuristics inlining for size or autoinlining
3749      is used.  */
3750   return true;
3751 }
3752
3753 /* Mark DECL (either a _DECL or a BASELINK) as "used" in the program.
3754    If DECL is a specialization or implicitly declared class member,
3755    generate the actual definition.  */
3756
3757 void
3758 mark_used (tree decl)
3759 {
3760   HOST_WIDE_INT saved_processing_template_decl = 0;
3761
3762   /* If DECL is a BASELINK for a single function, then treat it just
3763      like the DECL for the function.  Otherwise, if the BASELINK is
3764      for an overloaded function, we don't know which function was
3765      actually used until after overload resolution.  */
3766   if (TREE_CODE (decl) == BASELINK)
3767     {
3768       decl = BASELINK_FUNCTIONS (decl);
3769       if (really_overloaded_fn (decl))
3770         return;
3771       decl = OVL_CURRENT (decl);
3772     }
3773
3774   TREE_USED (decl) = 1;
3775   if (DECL_CLONED_FUNCTION_P (decl))
3776     TREE_USED (DECL_CLONED_FUNCTION (decl)) = 1;
3777   if (TREE_CODE (decl) == FUNCTION_DECL
3778       && DECL_DELETED_FN (decl))
3779     {
3780       error ("deleted function %q+D", decl);
3781       error ("used here");
3782     }
3783   /* If we don't need a value, then we don't need to synthesize DECL.  */
3784   if (skip_evaluation)
3785     return;
3786
3787   /* If within finish_function, defer the rest until that function
3788      finishes, otherwise it might recurse.  */
3789   if (defer_mark_used_calls)
3790     {
3791       VEC_safe_push (tree, gc, deferred_mark_used_calls, decl);
3792       return;
3793     }
3794
3795   /* Normally, we can wait until instantiation-time to synthesize
3796      DECL.  However, if DECL is a static data member initialized with
3797      a constant, we need the value right now because a reference to
3798      such a data member is not value-dependent.  */
3799   if (TREE_CODE (decl) == VAR_DECL
3800       && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl)
3801       && DECL_CLASS_SCOPE_P (decl))
3802     {
3803       /* Don't try to instantiate members of dependent types.  We
3804          cannot just use dependent_type_p here because this function
3805          may be called from fold_non_dependent_expr, and then we may
3806          see dependent types, even though processing_template_decl
3807          will not be set.  */
3808       if (CLASSTYPE_TEMPLATE_INFO ((DECL_CONTEXT (decl)))
3809           && uses_template_parms (CLASSTYPE_TI_ARGS (DECL_CONTEXT (decl))))
3810         return;
3811       /* Pretend that we are not in a template, even if we are, so
3812          that the static data member initializer will be processed.  */
3813       saved_processing_template_decl = processing_template_decl;
3814       processing_template_decl = 0;
3815     }
3816
3817   if (processing_template_decl)
3818     return;
3819
3820   if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl)
3821       && !TREE_ASM_WRITTEN (decl))
3822     /* Remember it, so we can check it was defined.  */
3823     {
3824       if (DECL_DEFERRED_FN (decl))
3825         return;
3826
3827       /* Remember the current location for a function we will end up
3828          synthesizing.  Then we can inform the user where it was
3829          required in the case of error.  */
3830       if (DECL_ARTIFICIAL (decl) && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
3831           && !DECL_THUNK_P (decl))
3832         DECL_SOURCE_LOCATION (decl) = input_location;
3833
3834       note_vague_linkage_fn (decl);
3835     }
3836
3837   assemble_external (decl);
3838
3839   /* Is it a synthesized method that needs to be synthesized?  */
3840   if (TREE_CODE (decl) == FUNCTION_DECL
3841       && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
3842       && DECL_DEFAULTED_FN (decl)
3843       && !DECL_THUNK_P (decl)
3844       && ! DECL_INITIAL (decl)
3845       /* Kludge: don't synthesize for default args.  Unfortunately this
3846          rules out initializers of namespace-scoped objects too, but
3847          it's sort-of ok if the implicit ctor or dtor decl keeps
3848          pointing to the class location.  */
3849       && current_function_decl)
3850     {
3851       synthesize_method (decl);
3852       /* If we've already synthesized the method we don't need to
3853          do the instantiation test below.  */
3854     }
3855   else if ((DECL_NON_THUNK_FUNCTION_P (decl) || TREE_CODE (decl) == VAR_DECL)
3856            && DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
3857            && (!DECL_EXPLICIT_INSTANTIATION (decl)
3858                || (TREE_CODE (decl) == FUNCTION_DECL
3859                    && possibly_inlined_p
3860                        (DECL_TEMPLATE_RESULT (
3861                          template_for_substitution (decl))))
3862                /* We need to instantiate static data members so that there
3863                   initializers are available in integral constant
3864                   expressions.  */
3865                || (TREE_CODE (decl) == VAR_DECL
3866                    && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))))
3867     /* If this is a function or variable that is an instance of some
3868        template, we now know that we will need to actually do the
3869        instantiation. We check that DECL is not an explicit
3870        instantiation because that is not checked in instantiate_decl.
3871
3872        We put off instantiating functions in order to improve compile
3873        times.  Maintaining a stack of active functions is expensive,
3874        and the inliner knows to instantiate any functions it might
3875        need.  Therefore, we always try to defer instantiation.  */
3876     instantiate_decl (decl, /*defer_ok=*/true,
3877                       /*expl_inst_class_mem_p=*/false);
3878
3879   processing_template_decl = saved_processing_template_decl;
3880 }
3881
3882 #include "gt-cp-decl2.h"