OSDN Git Service

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