OSDN Git Service

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