OSDN Git Service

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