OSDN Git Service

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