OSDN Git Service

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