OSDN Git Service

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