OSDN Git Service

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