OSDN Git Service

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