OSDN Git Service

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