OSDN Git Service

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