OSDN Git Service

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