OSDN Git Service

* gfortran.dg/char_pack_2.f90: Increase the vector size.
[pf3gnuchains/gcc-fork.git] / gcc / cp / method.c
1 /* Handle the hair of processing (but not expanding) inline functions.
2    Also manage function and variable name overloading.
3    Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4    1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5    Contributed by Michael Tiemann (tiemann@cygnus.com)
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
13
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING.  If not, write to
21 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA.  */
23
24
25 /* Handle method declarations.  */
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "tm.h"
30 #include "tree.h"
31 #include "cp-tree.h"
32 #include "rtl.h"
33 #include "expr.h"
34 #include "output.h"
35 #include "flags.h"
36 #include "toplev.h"
37 #include "tm_p.h"
38 #include "target.h"
39 #include "tree-pass.h"
40 #include "diagnostic.h"
41
42 /* Various flags to control the mangling process.  */
43
44 enum mangling_flags
45 {
46   /* No flags.  */
47   mf_none = 0,
48   /* The thing we are presently mangling is part of a template type,
49      rather than a fully instantiated type.  Therefore, we may see
50      complex expressions where we would normally expect to see a
51      simple integer constant.  */
52   mf_maybe_uninstantiated = 1,
53   /* When mangling a numeric value, use the form `_XX_' (instead of
54      just `XX') if the value has more than one digit.  */
55   mf_use_underscores_around_value = 2
56 };
57
58 typedef enum mangling_flags mangling_flags;
59
60 static tree thunk_adjust (tree, bool, HOST_WIDE_INT, tree);
61 static void do_build_assign_ref (tree);
62 static void do_build_copy_constructor (tree);
63 static tree synthesize_exception_spec (tree, tree (*) (tree, void *), void *);
64 static tree locate_dtor (tree, void *);
65 static tree locate_ctor (tree, void *);
66 static tree locate_copy (tree, void *);
67 static tree make_alias_for_thunk (tree);
68
69 /* Called once to initialize method.c.  */
70
71 void
72 init_method (void)
73 {
74   init_mangle ();
75 }
76 \f
77 /* Return a this or result adjusting thunk to FUNCTION.  THIS_ADJUSTING
78    indicates whether it is a this or result adjusting thunk.
79    FIXED_OFFSET and VIRTUAL_OFFSET indicate how to do the adjustment
80    (see thunk_adjust).  VIRTUAL_OFFSET can be NULL, but FIXED_OFFSET
81    never is.  VIRTUAL_OFFSET is the /index/ into the vtable for this
82    adjusting thunks, we scale it to a byte offset. For covariant
83    thunks VIRTUAL_OFFSET is the virtual binfo.  You must post process
84    the returned thunk with finish_thunk.  */
85
86 tree
87 make_thunk (tree function, bool this_adjusting,
88             tree fixed_offset, tree virtual_offset)
89 {
90   HOST_WIDE_INT d;
91   tree thunk;
92
93   gcc_assert (TREE_CODE (function) == FUNCTION_DECL);
94   /* We can have this thunks to covariant thunks, but not vice versa.  */
95   gcc_assert (!DECL_THIS_THUNK_P (function));
96   gcc_assert (!DECL_RESULT_THUNK_P (function) || this_adjusting);
97
98   /* Scale the VIRTUAL_OFFSET to be in terms of bytes.  */
99   if (this_adjusting && virtual_offset)
100     virtual_offset
101       = size_binop (MULT_EXPR,
102                     virtual_offset,
103                     convert (ssizetype,
104                              TYPE_SIZE_UNIT (vtable_entry_type)));
105
106   d = tree_low_cst (fixed_offset, 0);
107
108   /* See if we already have the thunk in question.  For this_adjusting
109      thunks VIRTUAL_OFFSET will be an INTEGER_CST, for covariant thunks it
110      will be a BINFO.  */
111   for (thunk = DECL_THUNKS (function); thunk; thunk = TREE_CHAIN (thunk))
112     if (DECL_THIS_THUNK_P (thunk) == this_adjusting
113         && THUNK_FIXED_OFFSET (thunk) == d
114         && !virtual_offset == !THUNK_VIRTUAL_OFFSET (thunk)
115         && (!virtual_offset
116             || (this_adjusting
117                 ? tree_int_cst_equal (THUNK_VIRTUAL_OFFSET (thunk),
118                                       virtual_offset)
119                 : THUNK_VIRTUAL_OFFSET (thunk) == virtual_offset)))
120       return thunk;
121
122   /* All thunks must be created before FUNCTION is actually emitted;
123      the ABI requires that all thunks be emitted together with the
124      function to which they transfer control.  */
125   gcc_assert (!TREE_ASM_WRITTEN (function));
126   /* Likewise, we can only be adding thunks to a function declared in
127      the class currently being laid out.  */
128   gcc_assert (TYPE_SIZE (DECL_CONTEXT (function))
129               && TYPE_BEING_DEFINED (DECL_CONTEXT (function)));
130
131   thunk = build_decl (FUNCTION_DECL, NULL_TREE, TREE_TYPE (function));
132   DECL_LANG_SPECIFIC (thunk) = DECL_LANG_SPECIFIC (function);
133   cxx_dup_lang_specific_decl (thunk);
134   DECL_THUNKS (thunk) = NULL_TREE;
135
136   DECL_CONTEXT (thunk) = DECL_CONTEXT (function);
137   TREE_READONLY (thunk) = TREE_READONLY (function);
138   TREE_THIS_VOLATILE (thunk) = TREE_THIS_VOLATILE (function);
139   TREE_PUBLIC (thunk) = TREE_PUBLIC (function);
140   if (flag_weak)
141     comdat_linkage (thunk);
142   SET_DECL_THUNK_P (thunk, this_adjusting);
143   THUNK_TARGET (thunk) = function;
144   THUNK_FIXED_OFFSET (thunk) = d;
145   THUNK_VIRTUAL_OFFSET (thunk) = virtual_offset;
146   THUNK_ALIAS (thunk) = NULL_TREE;
147
148   /* The thunk itself is not a constructor or destructor, even if
149      the thing it is thunking to is.  */
150   DECL_INTERFACE_KNOWN (thunk) = 1;
151   DECL_NOT_REALLY_EXTERN (thunk) = 1;
152   DECL_SAVED_FUNCTION_DATA (thunk) = NULL;
153   DECL_DESTRUCTOR_P (thunk) = 0;
154   DECL_CONSTRUCTOR_P (thunk) = 0;
155   DECL_EXTERNAL (thunk) = 1;
156   DECL_ARTIFICIAL (thunk) = 1;
157   /* Even if this thunk is a member of a local class, we don't
158      need a static chain.  */
159   DECL_NO_STATIC_CHAIN (thunk) = 1;
160   /* The THUNK is not a pending inline, even if the FUNCTION is.  */
161   DECL_PENDING_INLINE_P (thunk) = 0;
162   DECL_INLINE (thunk) = 0;
163   DECL_DECLARED_INLINE_P (thunk) = 0;
164   /* Nor has it been deferred.  */
165   DECL_DEFERRED_FN (thunk) = 0;
166
167   /* Add it to the list of thunks associated with FUNCTION.  */
168   TREE_CHAIN (thunk) = DECL_THUNKS (function);
169   DECL_THUNKS (function) = thunk;
170
171   return thunk;
172 }
173
174 /* Finish THUNK, a thunk decl.  */
175
176 void
177 finish_thunk (tree thunk)
178 {
179   tree function, name;
180   tree fixed_offset = ssize_int (THUNK_FIXED_OFFSET (thunk));
181   tree virtual_offset = THUNK_VIRTUAL_OFFSET (thunk);
182
183   gcc_assert (!DECL_NAME (thunk) && DECL_THUNK_P (thunk));
184   if (virtual_offset && DECL_RESULT_THUNK_P (thunk))
185     virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
186   function = THUNK_TARGET (thunk);
187   name = mangle_thunk (function, DECL_THIS_THUNK_P (thunk),
188                        fixed_offset, virtual_offset);
189
190   /* We can end up with declarations of (logically) different
191      covariant thunks, that do identical adjustments.  The two thunks
192      will be adjusting between within different hierarchies, which
193      happen to have the same layout.  We must nullify one of them to
194      refer to the other.  */
195   if (DECL_RESULT_THUNK_P (thunk))
196     {
197       tree cov_probe;
198
199       for (cov_probe = DECL_THUNKS (function);
200            cov_probe; cov_probe = TREE_CHAIN (cov_probe))
201         if (DECL_NAME (cov_probe) == name)
202           {
203             gcc_assert (!DECL_THUNKS (thunk));
204             THUNK_ALIAS (thunk) = (THUNK_ALIAS (cov_probe)
205                                    ? THUNK_ALIAS (cov_probe) : cov_probe);
206             break;
207           }
208     }
209
210   DECL_NAME (thunk) = name;
211   SET_DECL_ASSEMBLER_NAME (thunk, name);
212 }
213
214 /* Adjust PTR by the constant FIXED_OFFSET, and by the vtable
215    offset indicated by VIRTUAL_OFFSET, if that is
216    non-null. THIS_ADJUSTING is nonzero for a this adjusting thunk and
217    zero for a result adjusting thunk.  */
218
219 static tree
220 thunk_adjust (tree ptr, bool this_adjusting,
221               HOST_WIDE_INT fixed_offset, tree virtual_offset)
222 {
223   if (this_adjusting)
224     /* Adjust the pointer by the constant.  */
225     ptr = fold_build2 (PLUS_EXPR, TREE_TYPE (ptr), ptr,
226                        ssize_int (fixed_offset));
227
228   /* If there's a virtual offset, look up that value in the vtable and
229      adjust the pointer again.  */
230   if (virtual_offset)
231     {
232       tree vtable;
233
234       ptr = save_expr (ptr);
235       /* The vptr is always at offset zero in the object.  */
236       vtable = build1 (NOP_EXPR,
237                        build_pointer_type (build_pointer_type
238                                            (vtable_entry_type)),
239                        ptr);
240       /* Form the vtable address.  */
241       vtable = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (vtable)), vtable);
242       /* Find the entry with the vcall offset.  */
243       vtable = build2 (PLUS_EXPR, TREE_TYPE (vtable), vtable, virtual_offset);
244       /* Get the offset itself.  */
245       vtable = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (vtable)), vtable);
246       /* Adjust the `this' pointer.  */
247       ptr = fold_build2 (PLUS_EXPR, TREE_TYPE (ptr), ptr, vtable);
248     }
249
250   if (!this_adjusting)
251     /* Adjust the pointer by the constant.  */
252     ptr = fold_build2 (PLUS_EXPR, TREE_TYPE (ptr), ptr,
253                        ssize_int (fixed_offset));
254
255   return ptr;
256 }
257
258 static GTY (()) int thunk_labelno;
259
260 /* Create a static alias to function.  */
261
262 tree
263 make_alias_for (tree function, tree newid)
264 {
265   tree alias = build_decl (FUNCTION_DECL, newid, TREE_TYPE (function));
266   DECL_LANG_SPECIFIC (alias) = DECL_LANG_SPECIFIC (function);
267   cxx_dup_lang_specific_decl (alias);
268   DECL_CONTEXT (alias) = NULL;
269   TREE_READONLY (alias) = TREE_READONLY (function);
270   TREE_THIS_VOLATILE (alias) = TREE_THIS_VOLATILE (function);
271   TREE_PUBLIC (alias) = 0;
272   DECL_INTERFACE_KNOWN (alias) = 1;
273   DECL_NOT_REALLY_EXTERN (alias) = 1;
274   DECL_THIS_STATIC (alias) = 1;
275   DECL_SAVED_FUNCTION_DATA (alias) = NULL;
276   DECL_DESTRUCTOR_P (alias) = 0;
277   DECL_CONSTRUCTOR_P (alias) = 0;
278   DECL_CLONED_FUNCTION (alias) = NULL_TREE;
279   DECL_EXTERNAL (alias) = 0;
280   DECL_ARTIFICIAL (alias) = 1;
281   DECL_NO_STATIC_CHAIN (alias) = 1;
282   DECL_PENDING_INLINE_P (alias) = 0;
283   DECL_INLINE (alias) = 0;
284   DECL_DECLARED_INLINE_P (alias) = 0;
285   DECL_DEFERRED_FN (alias) = 0;
286   DECL_USE_TEMPLATE (alias) = 0;
287   DECL_TEMPLATE_INSTANTIATED (alias) = 0;
288   DECL_TEMPLATE_INFO (alias) = NULL;
289   DECL_INITIAL (alias) = error_mark_node;
290   TREE_ADDRESSABLE (alias) = 1;
291   TREE_USED (alias) = 1;
292   SET_DECL_ASSEMBLER_NAME (alias, DECL_NAME (alias));
293   TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias)) = 1;
294   return alias;
295 }
296
297 static tree
298 make_alias_for_thunk (tree function)
299 {
300   tree alias;
301   char buf[256];
302
303   ASM_GENERATE_INTERNAL_LABEL (buf, "LTHUNK", thunk_labelno);
304   thunk_labelno++;
305
306   alias = make_alias_for (function, get_identifier (buf));
307
308   if (!flag_syntax_only)
309     assemble_alias (alias, DECL_ASSEMBLER_NAME (function));
310
311   return alias;
312 }
313
314 /* Emit the definition of a C++ multiple inheritance or covariant
315    return vtable thunk.  If EMIT_P is nonzero, the thunk is emitted
316    immediately.  */
317
318 void
319 use_thunk (tree thunk_fndecl, bool emit_p)
320 {
321   tree a, t, function, alias;
322   tree virtual_offset;
323   HOST_WIDE_INT fixed_offset, virtual_value;
324   bool this_adjusting = DECL_THIS_THUNK_P (thunk_fndecl);
325
326   /* We should have called finish_thunk to give it a name.  */
327   gcc_assert (DECL_NAME (thunk_fndecl));
328
329   /* We should never be using an alias, always refer to the
330      aliased thunk.  */
331   gcc_assert (!THUNK_ALIAS (thunk_fndecl));
332
333   if (TREE_ASM_WRITTEN (thunk_fndecl))
334     return;
335
336   function = THUNK_TARGET (thunk_fndecl);
337   if (DECL_RESULT (thunk_fndecl))
338     /* We already turned this thunk into an ordinary function.
339        There's no need to process this thunk again.  */
340     return;
341
342   if (DECL_THUNK_P (function))
343     /* The target is itself a thunk, process it now.  */
344     use_thunk (function, emit_p);
345
346   /* Thunks are always addressable; they only appear in vtables.  */
347   TREE_ADDRESSABLE (thunk_fndecl) = 1;
348
349   /* Figure out what function is being thunked to.  It's referenced in
350      this translation unit.  */
351   TREE_ADDRESSABLE (function) = 1;
352   mark_used (function);
353   if (!emit_p)
354     return;
355
356   if (TARGET_USE_LOCAL_THUNK_ALIAS_P (function))
357    alias = make_alias_for_thunk (function);
358   else
359    alias = function;
360
361   fixed_offset = THUNK_FIXED_OFFSET (thunk_fndecl);
362   virtual_offset = THUNK_VIRTUAL_OFFSET (thunk_fndecl);
363
364   if (virtual_offset)
365     {
366       if (!this_adjusting)
367         virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
368       virtual_value = tree_low_cst (virtual_offset, /*pos=*/0);
369       gcc_assert (virtual_value);
370     }
371   else
372     virtual_value = 0;
373
374   /* And, if we need to emit the thunk, it's used.  */
375   mark_used (thunk_fndecl);
376   /* This thunk is actually defined.  */
377   DECL_EXTERNAL (thunk_fndecl) = 0;
378   /* The linkage of the function may have changed.  FIXME in linkage
379      rewrite.  */
380   TREE_PUBLIC (thunk_fndecl) = TREE_PUBLIC (function);
381   DECL_VISIBILITY (thunk_fndecl) = DECL_VISIBILITY (function);
382   DECL_VISIBILITY_SPECIFIED (thunk_fndecl)
383     = DECL_VISIBILITY_SPECIFIED (function);
384   if (flag_weak && TREE_PUBLIC (thunk_fndecl))
385     comdat_linkage (thunk_fndecl);
386
387   if (flag_syntax_only)
388     {
389       TREE_ASM_WRITTEN (thunk_fndecl) = 1;
390       return;
391     }
392
393   push_to_top_level ();
394
395   if (TARGET_USE_LOCAL_THUNK_ALIAS_P (function)
396       && targetm.have_named_sections)
397     {
398       resolve_unique_section (function, 0, flag_function_sections);
399
400       if (DECL_SECTION_NAME (function) != NULL && DECL_ONE_ONLY (function))
401         {
402           resolve_unique_section (thunk_fndecl, 0, flag_function_sections);
403
404           /* Output the thunk into the same section as function.  */
405           DECL_SECTION_NAME (thunk_fndecl) = DECL_SECTION_NAME (function);
406         }
407     }
408
409   /* The back-end expects DECL_INITIAL to contain a BLOCK, so we
410      create one.  */
411   DECL_INITIAL (thunk_fndecl) = make_node (BLOCK);
412
413   /* Set up cloned argument trees for the thunk.  */
414   t = NULL_TREE;
415   for (a = DECL_ARGUMENTS (function); a; a = TREE_CHAIN (a))
416     {
417       tree x = copy_node (a);
418       TREE_CHAIN (x) = t;
419       DECL_CONTEXT (x) = thunk_fndecl;
420       SET_DECL_RTL (x, NULL_RTX);
421       t = x;
422     }
423   a = nreverse (t);
424   DECL_ARGUMENTS (thunk_fndecl) = a;
425   BLOCK_VARS (DECL_INITIAL (thunk_fndecl)) = a;
426
427   if (this_adjusting
428       && targetm.asm_out.can_output_mi_thunk (thunk_fndecl, fixed_offset,
429                                               virtual_value, alias))
430     {
431       const char *fnname;
432       current_function_decl = thunk_fndecl;
433       DECL_RESULT (thunk_fndecl)
434         = build_decl (RESULT_DECL, 0, integer_type_node);
435       fnname = XSTR (XEXP (DECL_RTL (thunk_fndecl), 0), 0);
436       init_function_start (thunk_fndecl);
437       current_function_is_thunk = 1;
438       assemble_start_function (thunk_fndecl, fnname);
439
440       targetm.asm_out.output_mi_thunk (asm_out_file, thunk_fndecl,
441                                        fixed_offset, virtual_value, alias);
442
443       assemble_end_function (thunk_fndecl, fnname);
444       init_insn_lengths ();
445       current_function_decl = 0;
446       cfun = 0;
447       TREE_ASM_WRITTEN (thunk_fndecl) = 1;
448     }
449   else
450     {
451       /* If this is a covariant thunk, or we don't have the necessary
452          code for efficient thunks, generate a thunk function that
453          just makes a call to the real function.  Unfortunately, this
454          doesn't work for varargs.  */
455
456       if (varargs_function_p (function))
457         error ("generic thunk code fails for method %q#D which uses %<...%>",
458                function);
459
460       DECL_RESULT (thunk_fndecl) = NULL_TREE;
461
462       start_preparsed_function (thunk_fndecl, NULL_TREE, SF_PRE_PARSED);
463       /* We don't bother with a body block for thunks.  */
464
465       /* There's no need to check accessibility inside the thunk body.  */
466       push_deferring_access_checks (dk_no_check);
467
468       t = a;
469       if (this_adjusting)
470         t = thunk_adjust (t, /*this_adjusting=*/1,
471                           fixed_offset, virtual_offset);
472
473       /* Build up the call to the real function.  */
474       t = tree_cons (NULL_TREE, t, NULL_TREE);
475       for (a = TREE_CHAIN (a); a; a = TREE_CHAIN (a))
476         t = tree_cons (NULL_TREE, a, t);
477       t = nreverse (t);
478       t = build_call (alias, t);
479       CALL_FROM_THUNK_P (t) = 1;
480
481       if (VOID_TYPE_P (TREE_TYPE (t)))
482         finish_expr_stmt (t);
483       else
484         {
485           if (!this_adjusting)
486             {
487               tree cond = NULL_TREE;
488
489               if (TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE)
490                 {
491                   /* If the return type is a pointer, we need to
492                      protect against NULL.  We know there will be an
493                      adjustment, because that's why we're emitting a
494                      thunk.  */
495                   t = save_expr (t);
496                   cond = cp_convert (boolean_type_node, t);
497                 }
498
499               t = thunk_adjust (t, /*this_adjusting=*/0,
500                                 fixed_offset, virtual_offset);
501               if (cond)
502                 t = build3 (COND_EXPR, TREE_TYPE (t), cond, t,
503                             cp_convert (TREE_TYPE (t), integer_zero_node));
504             }
505           t = force_target_expr (TREE_TYPE (t), t);
506           finish_return_stmt (t);
507         }
508
509       /* Since we want to emit the thunk, we explicitly mark its name as
510          referenced.  */
511       mark_decl_referenced (thunk_fndecl);
512
513       /* But we don't want debugging information about it.  */
514       DECL_IGNORED_P (thunk_fndecl) = 1;
515
516       /* Re-enable access control.  */
517       pop_deferring_access_checks ();
518
519       thunk_fndecl = finish_function (0);
520       tree_lowering_passes (thunk_fndecl);
521       expand_body (thunk_fndecl);
522     }
523
524   pop_from_top_level ();
525 }
526 \f
527 /* Code for synthesizing methods which have default semantics defined.  */
528
529 /* Generate code for default X(X&) constructor.  */
530
531 static void
532 do_build_copy_constructor (tree fndecl)
533 {
534   tree parm = FUNCTION_FIRST_USER_PARM (fndecl);
535
536   parm = convert_from_reference (parm);
537
538   if (TYPE_HAS_TRIVIAL_INIT_REF (current_class_type)
539       && is_empty_class (current_class_type))
540     /* Don't copy the padding byte; it might not have been allocated
541        if *this is a base subobject.  */;
542   else if (TYPE_HAS_TRIVIAL_INIT_REF (current_class_type))
543     {
544       tree t = build2 (INIT_EXPR, void_type_node, current_class_ref, parm);
545       finish_expr_stmt (t);
546     }
547   else
548     {
549       tree fields = TYPE_FIELDS (current_class_type);
550       tree member_init_list = NULL_TREE;
551       int cvquals = cp_type_quals (TREE_TYPE (parm));
552       int i;
553       tree binfo, base_binfo;
554       VEC(tree,gc) *vbases;
555
556       /* Initialize all the base-classes with the parameter converted
557          to their type so that we get their copy constructor and not
558          another constructor that takes current_class_type.  We must
559          deal with the binfo's directly as a direct base might be
560          inaccessible due to ambiguity.  */
561       for (vbases = CLASSTYPE_VBASECLASSES (current_class_type), i = 0;
562            VEC_iterate (tree, vbases, i, binfo); i++)
563         {
564           member_init_list
565             = tree_cons (binfo,
566                          build_tree_list (NULL_TREE,
567                                           build_base_path (PLUS_EXPR, parm,
568                                                            binfo, 1)),
569                          member_init_list);
570         }
571
572       for (binfo = TYPE_BINFO (current_class_type), i = 0;
573            BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
574         {
575           if (BINFO_VIRTUAL_P (base_binfo))
576             continue;
577
578           member_init_list
579             = tree_cons (base_binfo,
580                          build_tree_list (NULL_TREE,
581                                           build_base_path (PLUS_EXPR, parm,
582                                                            base_binfo, 1)),
583                          member_init_list);
584         }
585
586       for (; fields; fields = TREE_CHAIN (fields))
587         {
588           tree init = parm;
589           tree field = fields;
590           tree expr_type;
591
592           if (TREE_CODE (field) != FIELD_DECL)
593             continue;
594
595           expr_type = TREE_TYPE (field);
596           if (DECL_NAME (field))
597             {
598               if (VFIELD_NAME_P (DECL_NAME (field)))
599                 continue;
600             }
601           else if (ANON_AGGR_TYPE_P (expr_type) && TYPE_FIELDS (expr_type))
602             /* Just use the field; anonymous types can't have
603                nontrivial copy ctors or assignment ops.  */;
604           else
605             continue;
606
607           /* Compute the type of "init->field".  If the copy-constructor
608              parameter is, for example, "const S&", and the type of
609              the field is "T", then the type will usually be "const
610              T".  (There are no cv-qualified variants of reference
611              types.)  */
612           if (TREE_CODE (expr_type) != REFERENCE_TYPE)
613             {
614               int quals = cvquals;
615
616               if (DECL_MUTABLE_P (field))
617                 quals &= ~TYPE_QUAL_CONST;
618               expr_type = cp_build_qualified_type (expr_type, quals);
619             }
620
621           init = build3 (COMPONENT_REF, expr_type, init, field, NULL_TREE);
622           init = build_tree_list (NULL_TREE, init);
623
624           member_init_list = tree_cons (field, init, member_init_list);
625         }
626       finish_mem_initializers (member_init_list);
627     }
628 }
629
630 static void
631 do_build_assign_ref (tree fndecl)
632 {
633   tree parm = TREE_CHAIN (DECL_ARGUMENTS (fndecl));
634   tree compound_stmt;
635
636   compound_stmt = begin_compound_stmt (0);
637   parm = convert_from_reference (parm);
638
639   if (TYPE_HAS_TRIVIAL_ASSIGN_REF (current_class_type)
640       && is_empty_class (current_class_type))
641     /* Don't copy the padding byte; it might not have been allocated
642        if *this is a base subobject.  */;
643   else if (TYPE_HAS_TRIVIAL_ASSIGN_REF (current_class_type))
644     {
645       tree t = build2 (MODIFY_EXPR, void_type_node, current_class_ref, parm);
646       finish_expr_stmt (t);
647     }
648   else
649     {
650       tree fields;
651       int cvquals = cp_type_quals (TREE_TYPE (parm));
652       int i;
653       tree binfo, base_binfo;
654
655       /* Assign to each of the direct base classes.  */
656       for (binfo = TYPE_BINFO (current_class_type), i = 0;
657            BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
658         {
659           tree converted_parm;
660
661           /* We must convert PARM directly to the base class
662              explicitly since the base class may be ambiguous.  */
663           converted_parm = build_base_path (PLUS_EXPR, parm, base_binfo, 1);
664           /* Call the base class assignment operator.  */
665           finish_expr_stmt
666             (build_special_member_call (current_class_ref,
667                                         ansi_assopname (NOP_EXPR),
668                                         build_tree_list (NULL_TREE,
669                                                          converted_parm),
670                                         base_binfo,
671                                         LOOKUP_NORMAL | LOOKUP_NONVIRTUAL));
672         }
673
674       /* Assign to each of the non-static data members.  */
675       for (fields = TYPE_FIELDS (current_class_type);
676            fields;
677            fields = TREE_CHAIN (fields))
678         {
679           tree comp = current_class_ref;
680           tree init = parm;
681           tree field = fields;
682           tree expr_type;
683           int quals;
684
685           if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
686             continue;
687
688           expr_type = TREE_TYPE (field);
689
690           if (CP_TYPE_CONST_P (expr_type))
691             {
692               error ("non-static const member %q#D, can't use default "
693                      "assignment operator", field);
694               continue;
695             }
696           else if (TREE_CODE (expr_type) == REFERENCE_TYPE)
697             {
698               error ("non-static reference member %q#D, can't use "
699                      "default assignment operator", field);
700               continue;
701             }
702
703           if (DECL_NAME (field))
704             {
705               if (VFIELD_NAME_P (DECL_NAME (field)))
706                 continue;
707             }
708           else if (ANON_AGGR_TYPE_P (expr_type)
709                    && TYPE_FIELDS (expr_type) != NULL_TREE)
710             /* Just use the field; anonymous types can't have
711                nontrivial copy ctors or assignment ops.  */;
712           else
713             continue;
714
715           comp = build3 (COMPONENT_REF, expr_type, comp, field, NULL_TREE);
716
717           /* Compute the type of init->field  */
718           quals = cvquals;
719           if (DECL_MUTABLE_P (field))
720             quals &= ~TYPE_QUAL_CONST;
721           expr_type = cp_build_qualified_type (expr_type, quals);
722
723           init = build3 (COMPONENT_REF, expr_type, init, field, NULL_TREE);
724
725           if (DECL_NAME (field))
726             init = build_modify_expr (comp, NOP_EXPR, init);
727           else
728             init = build2 (MODIFY_EXPR, TREE_TYPE (comp), comp, init);
729           finish_expr_stmt (init);
730         }
731     }
732   finish_return_stmt (current_class_ref);
733   finish_compound_stmt (compound_stmt);
734 }
735
736 /* Synthesize FNDECL, a non-static member function.   */
737
738 void
739 synthesize_method (tree fndecl)
740 {
741   bool nested = (current_function_decl != NULL_TREE);
742   tree context = decl_function_context (fndecl);
743   bool need_body = true;
744   tree stmt;
745   location_t save_input_location = input_location;
746   int error_count = errorcount;
747   int warning_count = warningcount;
748
749   /* Reset the source location, we might have been previously
750      deferred, and thus have saved where we were first needed.  */
751   DECL_SOURCE_LOCATION (fndecl)
752     = DECL_SOURCE_LOCATION (TYPE_NAME (DECL_CONTEXT (fndecl)));
753
754   /* If we've been asked to synthesize a clone, just synthesize the
755      cloned function instead.  Doing so will automatically fill in the
756      body for the clone.  */
757   if (DECL_CLONED_FUNCTION_P (fndecl))
758     fndecl = DECL_CLONED_FUNCTION (fndecl);
759
760   /* We may be in the middle of deferred access check.  Disable
761      it now.  */
762   push_deferring_access_checks (dk_no_deferred);
763
764   if (! context)
765     push_to_top_level ();
766   else if (nested)
767     push_function_context_to (context);
768
769   input_location = DECL_SOURCE_LOCATION (fndecl);
770
771   start_preparsed_function (fndecl, NULL_TREE, SF_DEFAULT | SF_PRE_PARSED);
772   stmt = begin_function_body ();
773
774   if (DECL_OVERLOADED_OPERATOR_P (fndecl) == NOP_EXPR)
775     {
776       do_build_assign_ref (fndecl);
777       need_body = false;
778     }
779   else if (DECL_CONSTRUCTOR_P (fndecl))
780     {
781       tree arg_chain = FUNCTION_FIRST_USER_PARMTYPE (fndecl);
782       if (arg_chain != void_list_node)
783         do_build_copy_constructor (fndecl);
784       else if (TYPE_NEEDS_CONSTRUCTING (current_class_type))
785         finish_mem_initializers (NULL_TREE);
786     }
787
788   /* If we haven't yet generated the body of the function, just
789      generate an empty compound statement.  */
790   if (need_body)
791     {
792       tree compound_stmt;
793       compound_stmt = begin_compound_stmt (BCS_FN_BODY);
794       finish_compound_stmt (compound_stmt);
795     }
796
797   finish_function_body (stmt);
798   expand_or_defer_fn (finish_function (0));
799
800   input_location = save_input_location;
801
802   if (! context)
803     pop_from_top_level ();
804   else if (nested)
805     pop_function_context_from (context);
806
807   pop_deferring_access_checks ();
808
809   if (error_count != errorcount || warning_count != warningcount)
810     inform ("%Hsynthesized method %qD first required here ",
811             &input_location, fndecl);
812 }
813
814 /* Use EXTRACTOR to locate the relevant function called for each base &
815    class field of TYPE. CLIENT allows additional information to be passed
816    to EXTRACTOR.  Generates the union of all exceptions generated by those
817    functions.  Note that we haven't updated TYPE_FIELDS and such of any
818    variants yet, so we need to look at the main one.  */
819
820 static tree
821 synthesize_exception_spec (tree type, tree (*extractor) (tree, void*),
822                            void *client)
823 {
824   tree raises = empty_except_spec;
825   tree fields = TYPE_FIELDS (type);
826   tree binfo, base_binfo;
827   int i;
828
829   for (binfo = TYPE_BINFO (type), i = 0;
830        BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
831     {
832       tree fn = (*extractor) (BINFO_TYPE (base_binfo), client);
833       if (fn)
834         {
835           tree fn_raises = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn));
836
837           raises = merge_exception_specifiers (raises, fn_raises);
838         }
839     }
840   for (; fields; fields = TREE_CHAIN (fields))
841     {
842       tree type = TREE_TYPE (fields);
843       tree fn;
844
845       if (TREE_CODE (fields) != FIELD_DECL || DECL_ARTIFICIAL (fields))
846         continue;
847       while (TREE_CODE (type) == ARRAY_TYPE)
848         type = TREE_TYPE (type);
849       if (TREE_CODE (type) != RECORD_TYPE)
850         continue;
851
852       fn = (*extractor) (type, client);
853       if (fn)
854         {
855           tree fn_raises = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn));
856
857           raises = merge_exception_specifiers (raises, fn_raises);
858         }
859     }
860   return raises;
861 }
862
863 /* Locate the dtor of TYPE.  */
864
865 static tree
866 locate_dtor (tree type, void *client ATTRIBUTE_UNUSED)
867 {
868   return CLASSTYPE_DESTRUCTORS (type);
869 }
870
871 /* Locate the default ctor of TYPE.  */
872
873 static tree
874 locate_ctor (tree type, void *client ATTRIBUTE_UNUSED)
875 {
876   tree fns;
877
878   if (!TYPE_HAS_DEFAULT_CONSTRUCTOR (type))
879     return NULL_TREE;
880
881   /* Call lookup_fnfields_1 to create the constructor declarations, if
882      necessary.  */
883   if (CLASSTYPE_LAZY_DEFAULT_CTOR (type))
884     return lazily_declare_fn (sfk_constructor, type);
885
886   for (fns = CLASSTYPE_CONSTRUCTORS (type); fns; fns = OVL_NEXT (fns))
887     {
888       tree fn = OVL_CURRENT (fns);
889       tree parms = TYPE_ARG_TYPES (TREE_TYPE (fn));
890
891       if (sufficient_parms_p (TREE_CHAIN (parms)))
892         return fn;
893     }
894   return NULL_TREE;
895 }
896
897 struct copy_data
898 {
899   tree name;
900   int quals;
901 };
902
903 /* Locate the copy ctor or copy assignment of TYPE. CLIENT_
904    points to a COPY_DATA holding the name (NULL for the ctor)
905    and desired qualifiers of the source operand.  */
906
907 static tree
908 locate_copy (tree type, void *client_)
909 {
910   struct copy_data *client = (struct copy_data *)client_;
911   tree fns;
912   tree best = NULL_TREE;
913   bool excess_p = false;
914
915   if (client->name)
916     {
917       int ix;
918       ix = lookup_fnfields_1 (type, client->name);
919       if (ix < 0)
920         return NULL_TREE;
921       fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), ix);
922     }
923   else if (TYPE_HAS_INIT_REF (type))
924     {
925       /* If construction of the copy constructor was postponed, create
926          it now.  */
927       if (CLASSTYPE_LAZY_COPY_CTOR (type))
928         lazily_declare_fn (sfk_copy_constructor, type);
929       fns = CLASSTYPE_CONSTRUCTORS (type);
930     }
931   else
932     return NULL_TREE;
933   for (; fns; fns = OVL_NEXT (fns))
934     {
935       tree fn = OVL_CURRENT (fns);
936       tree parms = TYPE_ARG_TYPES (TREE_TYPE (fn));
937       tree src_type;
938       int excess;
939       int quals;
940
941       parms = TREE_CHAIN (parms);
942       if (!parms)
943         continue;
944       src_type = non_reference (TREE_VALUE (parms));
945       if (!same_type_ignoring_top_level_qualifiers_p (src_type, type))
946         continue;
947       if (!sufficient_parms_p (TREE_CHAIN (parms)))
948         continue;
949       quals = cp_type_quals (src_type);
950       if (client->quals & ~quals)
951         continue;
952       excess = quals & ~client->quals;
953       if (!best || (excess_p && !excess))
954         {
955           best = fn;
956           excess_p = excess;
957         }
958       else
959         /* Ambiguous */
960         return NULL_TREE;
961     }
962   return best;
963 }
964
965 /* Implicitly declare the special function indicated by KIND, as a
966    member of TYPE.  For copy constructors and assignment operators,
967    CONST_P indicates whether these functions should take a const
968    reference argument or a non-const reference.  Returns the
969    FUNCTION_DECL for the implicitly declared function.  */
970
971 tree
972 implicitly_declare_fn (special_function_kind kind, tree type, bool const_p)
973 {
974   tree fn;
975   tree parameter_types = void_list_node;
976   tree return_type;
977   tree fn_type;
978   tree raises = empty_except_spec;
979   tree rhs_parm_type = NULL_TREE;
980   tree name;
981   HOST_WIDE_INT saved_processing_template_decl;
982
983   /* Because we create declarations for implicitly declared functions
984      lazily, we may be creating the declaration for a member of TYPE
985      while in some completely different context.  However, TYPE will
986      never be a dependent class (because we never want to do lookups
987      for implicitly defined functions in a dependent class).
988      Furthermore, we must set PROCESSING_TEMPLATE_DECL to zero here
989      because we only create clones for constructors and destructors
990      when not in a template.  */
991   gcc_assert (!dependent_type_p (type));
992   saved_processing_template_decl = processing_template_decl;
993   processing_template_decl = 0;
994
995   type = TYPE_MAIN_VARIANT (type);
996
997   if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (type))
998     {
999       if (kind == sfk_destructor)
1000         /* See comment in check_special_function_return_type.  */
1001         return_type = build_pointer_type (void_type_node);
1002       else
1003         return_type = build_pointer_type (type);
1004     }
1005   else
1006     return_type = void_type_node;
1007
1008   switch (kind)
1009     {
1010     case sfk_destructor:
1011       /* Destructor.  */
1012       name = constructor_name (type);
1013       raises = synthesize_exception_spec (type, &locate_dtor, 0);
1014       break;
1015
1016     case sfk_constructor:
1017       /* Default constructor.  */
1018       name = constructor_name (type);
1019       raises = synthesize_exception_spec (type, &locate_ctor, 0);
1020       break;
1021
1022     case sfk_copy_constructor:
1023     case sfk_assignment_operator:
1024     {
1025       struct copy_data data;
1026
1027       data.name = NULL;
1028       data.quals = 0;
1029       if (kind == sfk_assignment_operator)
1030         {
1031           return_type = build_reference_type (type);
1032           name = ansi_assopname (NOP_EXPR);
1033           data.name = name;
1034         }
1035       else
1036         name = constructor_name (type);
1037
1038       if (const_p)
1039         {
1040           data.quals = TYPE_QUAL_CONST;
1041           rhs_parm_type = build_qualified_type (type, TYPE_QUAL_CONST);
1042         }
1043       else
1044         rhs_parm_type = type;
1045       rhs_parm_type = build_reference_type (rhs_parm_type);
1046       parameter_types = tree_cons (NULL_TREE, rhs_parm_type, parameter_types);
1047       raises = synthesize_exception_spec (type, &locate_copy, &data);
1048       break;
1049     }
1050     default:
1051       gcc_unreachable ();
1052     }
1053
1054   /* Create the function.  */
1055   fn_type = build_method_type_directly (type, return_type, parameter_types);
1056   if (raises)
1057     fn_type = build_exception_variant (fn_type, raises);
1058   fn = build_lang_decl (FUNCTION_DECL, name, fn_type);
1059   DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (TYPE_NAME (type));
1060   if (kind == sfk_constructor || kind == sfk_copy_constructor)
1061     DECL_CONSTRUCTOR_P (fn) = 1;
1062   else if (kind == sfk_destructor)
1063     DECL_DESTRUCTOR_P (fn) = 1;
1064   else
1065     {
1066       DECL_ASSIGNMENT_OPERATOR_P (fn) = 1;
1067       SET_OVERLOADED_OPERATOR_CODE (fn, NOP_EXPR);
1068     }
1069   /* Create the argument list.  The call to "grokclassfn" will add the
1070      "this" parameter and any other implicit parameters.  */
1071   if (rhs_parm_type)
1072     {
1073       /* Note that this parameter is *not* marked DECL_ARTIFICIAL; we
1074          want its type to be included in the mangled function
1075          name.  */
1076       DECL_ARGUMENTS (fn) = cp_build_parm_decl (NULL_TREE, rhs_parm_type);
1077       TREE_READONLY (DECL_ARGUMENTS (fn)) = 1;
1078     }
1079
1080   grokclassfn (type, fn, kind == sfk_destructor ? DTOR_FLAG : NO_SPECIAL,
1081                TYPE_UNQUALIFIED);
1082   grok_special_member_properties (fn);
1083   set_linkage_according_to_type (type, fn);
1084   rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
1085   DECL_IN_AGGR_P (fn) = 1;
1086   DECL_ARTIFICIAL (fn) = 1;
1087   DECL_NOT_REALLY_EXTERN (fn) = 1;
1088   DECL_DECLARED_INLINE_P (fn) = 1;
1089   DECL_INLINE (fn) = 1;
1090   gcc_assert (!TREE_USED (fn));
1091
1092   /* Restore PROCESSING_TEMPLATE_DECL.  */
1093   processing_template_decl = saved_processing_template_decl;
1094
1095   return fn;
1096 }
1097
1098 /* Add an implicit declaration to TYPE for the kind of function
1099    indicated by SFK.  Return the FUNCTION_DECL for the new implicit
1100    declaration.  */
1101
1102 tree
1103 lazily_declare_fn (special_function_kind sfk, tree type)
1104 {
1105   tree fn;
1106   bool const_p;
1107
1108   /* Figure out whether or not the argument has a const reference
1109      type.  */
1110   if (sfk == sfk_copy_constructor)
1111     const_p = TYPE_HAS_CONST_INIT_REF (type);
1112   else if (sfk == sfk_assignment_operator)
1113     const_p = TYPE_HAS_CONST_ASSIGN_REF (type);
1114   else
1115     /* In this case, CONST_P will be ignored.  */
1116     const_p = false;
1117   /* Declare the function.  */
1118   fn = implicitly_declare_fn (sfk, type, const_p);
1119   /* A destructor may be virtual.  */
1120   if (sfk == sfk_destructor)
1121     check_for_override (fn, type);
1122   /* Add it to CLASSTYPE_METHOD_VEC.  */
1123   add_method (type, fn, NULL_TREE);
1124   /* Add it to TYPE_METHODS.  */
1125   if (sfk == sfk_destructor
1126       && DECL_VIRTUAL_P (fn)
1127       && abi_version_at_least (2))
1128     /* The ABI requires that a virtual destructor go at the end of the
1129        vtable.  */
1130     TYPE_METHODS (type) = chainon (TYPE_METHODS (type), fn);
1131   else
1132     {
1133       /* G++ 3.2 put the implicit destructor at the *beginning* of the
1134          TYPE_METHODS list, which cause the destructor to be emitted
1135          in an incorrect location in the vtable.  */
1136       if (warn_abi && DECL_VIRTUAL_P (fn))
1137         warning (0, "vtable layout for class %qT may not be ABI-compliant"
1138                  "and may change in a future version of GCC due to "
1139                  "implicit virtual destructor",
1140                  type);
1141       TREE_CHAIN (fn) = TYPE_METHODS (type);
1142       TYPE_METHODS (type) = fn;
1143     }
1144   maybe_add_class_template_decl_list (type, fn, /*friend_p=*/0);
1145   if (sfk == sfk_assignment_operator)
1146     CLASSTYPE_LAZY_ASSIGNMENT_OP (type) = 0;
1147   else
1148     {
1149       /* Remember that the function has been created.  */
1150       if (sfk == sfk_constructor)
1151         CLASSTYPE_LAZY_DEFAULT_CTOR (type) = 0;
1152       else if (sfk == sfk_copy_constructor)
1153         CLASSTYPE_LAZY_COPY_CTOR (type) = 0;
1154       else if (sfk == sfk_destructor)
1155         CLASSTYPE_LAZY_DESTRUCTOR (type) = 0;
1156       /* Create appropriate clones.  */
1157       clone_function_decl (fn, /*update_method_vec=*/true);
1158     }
1159
1160   return fn;
1161 }
1162
1163 /* Given a FUNCTION_DECL FN and a chain LIST, skip as many elements of LIST
1164    as there are artificial parms in FN.  */
1165
1166 tree
1167 skip_artificial_parms_for (tree fn, tree list)
1168 {
1169   if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
1170     list = TREE_CHAIN (list);
1171   else
1172     return list;
1173
1174   if (DECL_HAS_IN_CHARGE_PARM_P (fn))
1175     list = TREE_CHAIN (list);
1176   if (DECL_HAS_VTT_PARM_P (fn))
1177     list = TREE_CHAIN (list);
1178   return list;
1179 }
1180
1181 #include "gt-cp-method.h"