Merge from mainline
[official-gcc.git] / gcc / cp / method.c
blobd2bee99dc5e182c3ada1a3ee8d4433d65ea6d878
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)
7 This file is part of GCC.
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.
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.
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. */
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"
42 /* Various flags to control the mangling process. */
44 enum mangling_flags
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
58 typedef enum mangling_flags mangling_flags;
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);
69 /* Called once to initialize method.c. */
71 void
72 init_method (void)
74 init_mangle ();
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. */
86 tree
87 make_thunk (tree function, bool this_adjusting,
88 tree fixed_offset, tree virtual_offset)
90 HOST_WIDE_INT d;
91 tree thunk;
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);
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)));
106 d = tree_low_cst (fixed_offset, 0);
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;
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)));
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;
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 SET_DECL_THUNK_P (thunk, this_adjusting);
141 THUNK_TARGET (thunk) = function;
142 THUNK_FIXED_OFFSET (thunk) = d;
143 THUNK_VIRTUAL_OFFSET (thunk) = virtual_offset;
144 THUNK_ALIAS (thunk) = NULL_TREE;
146 /* The thunk itself is not a constructor or destructor, even if
147 the thing it is thunking to is. */
148 DECL_INTERFACE_KNOWN (thunk) = 1;
149 DECL_NOT_REALLY_EXTERN (thunk) = 1;
150 DECL_SAVED_FUNCTION_DATA (thunk) = NULL;
151 DECL_DESTRUCTOR_P (thunk) = 0;
152 DECL_CONSTRUCTOR_P (thunk) = 0;
153 DECL_EXTERNAL (thunk) = 1;
154 DECL_ARTIFICIAL (thunk) = 1;
155 /* Even if this thunk is a member of a local class, we don't
156 need a static chain. */
157 DECL_NO_STATIC_CHAIN (thunk) = 1;
158 /* The THUNK is not a pending inline, even if the FUNCTION is. */
159 DECL_PENDING_INLINE_P (thunk) = 0;
160 DECL_INLINE (thunk) = 0;
161 DECL_DECLARED_INLINE_P (thunk) = 0;
162 /* Nor has it been deferred. */
163 DECL_DEFERRED_FN (thunk) = 0;
165 /* Add it to the list of thunks associated with FUNCTION. */
166 TREE_CHAIN (thunk) = DECL_THUNKS (function);
167 DECL_THUNKS (function) = thunk;
169 return thunk;
172 /* Finish THUNK, a thunk decl. */
174 void
175 finish_thunk (tree thunk)
177 tree function, name;
178 tree fixed_offset = ssize_int (THUNK_FIXED_OFFSET (thunk));
179 tree virtual_offset = THUNK_VIRTUAL_OFFSET (thunk);
181 gcc_assert (!DECL_NAME (thunk) && DECL_THUNK_P (thunk));
182 if (virtual_offset && DECL_RESULT_THUNK_P (thunk))
183 virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
184 function = THUNK_TARGET (thunk);
185 name = mangle_thunk (function, DECL_THIS_THUNK_P (thunk),
186 fixed_offset, virtual_offset);
188 /* We can end up with declarations of (logically) different
189 covariant thunks, that do identical adjustments. The two thunks
190 will be adjusting between within different hierarchies, which
191 happen to have the same layout. We must nullify one of them to
192 refer to the other. */
193 if (DECL_RESULT_THUNK_P (thunk))
195 tree cov_probe;
197 for (cov_probe = DECL_THUNKS (function);
198 cov_probe; cov_probe = TREE_CHAIN (cov_probe))
199 if (DECL_NAME (cov_probe) == name)
201 gcc_assert (!DECL_THUNKS (thunk));
202 THUNK_ALIAS (thunk) = (THUNK_ALIAS (cov_probe)
203 ? THUNK_ALIAS (cov_probe) : cov_probe);
204 break;
208 DECL_NAME (thunk) = name;
209 SET_DECL_ASSEMBLER_NAME (thunk, name);
212 /* Adjust PTR by the constant FIXED_OFFSET, and by the vtable
213 offset indicated by VIRTUAL_OFFSET, if that is
214 non-null. THIS_ADJUSTING is nonzero for a this adjusting thunk and
215 zero for a result adjusting thunk. */
217 static tree
218 thunk_adjust (tree ptr, bool this_adjusting,
219 HOST_WIDE_INT fixed_offset, tree virtual_offset)
221 if (this_adjusting)
222 /* Adjust the pointer by the constant. */
223 ptr = fold_build2 (PLUS_EXPR, TREE_TYPE (ptr), ptr,
224 ssize_int (fixed_offset));
226 /* If there's a virtual offset, look up that value in the vtable and
227 adjust the pointer again. */
228 if (virtual_offset)
230 tree vtable;
232 ptr = save_expr (ptr);
233 /* The vptr is always at offset zero in the object. */
234 vtable = build1 (NOP_EXPR,
235 build_pointer_type (build_pointer_type
236 (vtable_entry_type)),
237 ptr);
238 /* Form the vtable address. */
239 vtable = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (vtable)), vtable);
240 /* Find the entry with the vcall offset. */
241 vtable = build2 (PLUS_EXPR, TREE_TYPE (vtable), vtable, virtual_offset);
242 /* Get the offset itself. */
243 vtable = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (vtable)), vtable);
244 /* Adjust the `this' pointer. */
245 ptr = fold_build2 (PLUS_EXPR, TREE_TYPE (ptr), ptr, vtable);
248 if (!this_adjusting)
249 /* Adjust the pointer by the constant. */
250 ptr = fold_build2 (PLUS_EXPR, TREE_TYPE (ptr), ptr,
251 ssize_int (fixed_offset));
253 return ptr;
256 static GTY (()) int thunk_labelno;
258 /* Create a static alias to function. */
260 tree
261 make_alias_for (tree function, tree newid)
263 tree alias = build_decl (FUNCTION_DECL, newid, TREE_TYPE (function));
264 DECL_LANG_SPECIFIC (alias) = DECL_LANG_SPECIFIC (function);
265 cxx_dup_lang_specific_decl (alias);
266 DECL_CONTEXT (alias) = NULL;
267 TREE_READONLY (alias) = TREE_READONLY (function);
268 TREE_THIS_VOLATILE (alias) = TREE_THIS_VOLATILE (function);
269 TREE_PUBLIC (alias) = 0;
270 DECL_INTERFACE_KNOWN (alias) = 1;
271 DECL_NOT_REALLY_EXTERN (alias) = 1;
272 DECL_THIS_STATIC (alias) = 1;
273 DECL_SAVED_FUNCTION_DATA (alias) = NULL;
274 DECL_DESTRUCTOR_P (alias) = 0;
275 DECL_CONSTRUCTOR_P (alias) = 0;
276 DECL_CLONED_FUNCTION (alias) = NULL_TREE;
277 DECL_EXTERNAL (alias) = 0;
278 DECL_ARTIFICIAL (alias) = 1;
279 DECL_NO_STATIC_CHAIN (alias) = 1;
280 DECL_PENDING_INLINE_P (alias) = 0;
281 DECL_INLINE (alias) = 0;
282 DECL_DECLARED_INLINE_P (alias) = 0;
283 DECL_DEFERRED_FN (alias) = 0;
284 DECL_USE_TEMPLATE (alias) = 0;
285 DECL_TEMPLATE_INSTANTIATED (alias) = 0;
286 DECL_TEMPLATE_INFO (alias) = NULL;
287 DECL_INITIAL (alias) = error_mark_node;
288 TREE_ADDRESSABLE (alias) = 1;
289 TREE_USED (alias) = 1;
290 SET_DECL_ASSEMBLER_NAME (alias, DECL_NAME (alias));
291 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias)) = 1;
292 return alias;
295 static tree
296 make_alias_for_thunk (tree function)
298 tree alias;
299 char buf[256];
301 ASM_GENERATE_INTERNAL_LABEL (buf, "LTHUNK", thunk_labelno);
302 thunk_labelno++;
304 alias = make_alias_for (function, get_identifier (buf));
306 if (!flag_syntax_only)
307 assemble_alias (alias, DECL_ASSEMBLER_NAME (function));
309 return alias;
312 /* Emit the definition of a C++ multiple inheritance or covariant
313 return vtable thunk. If EMIT_P is nonzero, the thunk is emitted
314 immediately. */
316 void
317 use_thunk (tree thunk_fndecl, bool emit_p)
319 tree a, t, function, alias;
320 tree virtual_offset;
321 HOST_WIDE_INT fixed_offset, virtual_value;
322 bool this_adjusting = DECL_THIS_THUNK_P (thunk_fndecl);
324 /* We should have called finish_thunk to give it a name. */
325 gcc_assert (DECL_NAME (thunk_fndecl));
327 /* We should never be using an alias, always refer to the
328 aliased thunk. */
329 gcc_assert (!THUNK_ALIAS (thunk_fndecl));
331 if (TREE_ASM_WRITTEN (thunk_fndecl))
332 return;
334 function = THUNK_TARGET (thunk_fndecl);
335 if (DECL_RESULT (thunk_fndecl))
336 /* We already turned this thunk into an ordinary function.
337 There's no need to process this thunk again. */
338 return;
340 if (DECL_THUNK_P (function))
341 /* The target is itself a thunk, process it now. */
342 use_thunk (function, emit_p);
344 /* Thunks are always addressable; they only appear in vtables. */
345 TREE_ADDRESSABLE (thunk_fndecl) = 1;
347 /* Figure out what function is being thunked to. It's referenced in
348 this translation unit. */
349 TREE_ADDRESSABLE (function) = 1;
350 mark_used (function);
351 if (!emit_p)
352 return;
354 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (function))
355 alias = make_alias_for_thunk (function);
356 else
357 alias = function;
359 fixed_offset = THUNK_FIXED_OFFSET (thunk_fndecl);
360 virtual_offset = THUNK_VIRTUAL_OFFSET (thunk_fndecl);
362 if (virtual_offset)
364 if (!this_adjusting)
365 virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
366 virtual_value = tree_low_cst (virtual_offset, /*pos=*/0);
367 gcc_assert (virtual_value);
369 else
370 virtual_value = 0;
372 /* And, if we need to emit the thunk, it's used. */
373 mark_used (thunk_fndecl);
374 /* This thunk is actually defined. */
375 DECL_EXTERNAL (thunk_fndecl) = 0;
376 /* The linkage of the function may have changed. FIXME in linkage
377 rewrite. */
378 TREE_PUBLIC (thunk_fndecl) = TREE_PUBLIC (function);
379 DECL_VISIBILITY (thunk_fndecl) = DECL_VISIBILITY (function);
380 DECL_VISIBILITY_SPECIFIED (thunk_fndecl)
381 = DECL_VISIBILITY_SPECIFIED (function);
382 if (DECL_ONE_ONLY (function))
383 make_decl_one_only (thunk_fndecl);
385 if (flag_syntax_only)
387 TREE_ASM_WRITTEN (thunk_fndecl) = 1;
388 return;
391 push_to_top_level ();
393 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (function)
394 && targetm.have_named_sections)
396 resolve_unique_section (function, 0, flag_function_sections);
398 if (DECL_SECTION_NAME (function) != NULL && DECL_ONE_ONLY (function))
400 resolve_unique_section (thunk_fndecl, 0, flag_function_sections);
402 /* Output the thunk into the same section as function. */
403 DECL_SECTION_NAME (thunk_fndecl) = DECL_SECTION_NAME (function);
407 /* The back-end expects DECL_INITIAL to contain a BLOCK, so we
408 create one. */
409 DECL_INITIAL (thunk_fndecl) = make_node (BLOCK);
411 /* Set up cloned argument trees for the thunk. */
412 t = NULL_TREE;
413 for (a = DECL_ARGUMENTS (function); a; a = TREE_CHAIN (a))
415 tree x = copy_node (a);
416 TREE_CHAIN (x) = t;
417 DECL_CONTEXT (x) = thunk_fndecl;
418 SET_DECL_RTL (x, NULL_RTX);
419 t = x;
421 a = nreverse (t);
422 DECL_ARGUMENTS (thunk_fndecl) = a;
423 BLOCK_VARS (DECL_INITIAL (thunk_fndecl)) = a;
425 if (this_adjusting
426 && targetm.asm_out.can_output_mi_thunk (thunk_fndecl, fixed_offset,
427 virtual_value, alias))
429 const char *fnname;
430 current_function_decl = thunk_fndecl;
431 DECL_RESULT (thunk_fndecl)
432 = build_decl (RESULT_DECL, 0, integer_type_node);
433 fnname = XSTR (XEXP (DECL_RTL (thunk_fndecl), 0), 0);
434 init_function_start (thunk_fndecl);
435 current_function_is_thunk = 1;
436 assemble_start_function (thunk_fndecl, fnname);
438 targetm.asm_out.output_mi_thunk (asm_out_file, thunk_fndecl,
439 fixed_offset, virtual_value, alias);
441 assemble_end_function (thunk_fndecl, fnname);
442 init_insn_lengths ();
443 current_function_decl = 0;
444 cfun = 0;
445 TREE_ASM_WRITTEN (thunk_fndecl) = 1;
447 else
449 /* If this is a covariant thunk, or we don't have the necessary
450 code for efficient thunks, generate a thunk function that
451 just makes a call to the real function. Unfortunately, this
452 doesn't work for varargs. */
454 if (varargs_function_p (function))
455 error ("generic thunk code fails for method %q#D which uses %<...%>",
456 function);
458 DECL_RESULT (thunk_fndecl) = NULL_TREE;
460 start_preparsed_function (thunk_fndecl, NULL_TREE, SF_PRE_PARSED);
461 /* We don't bother with a body block for thunks. */
463 /* There's no need to check accessibility inside the thunk body. */
464 push_deferring_access_checks (dk_no_check);
466 t = a;
467 if (this_adjusting)
468 t = thunk_adjust (t, /*this_adjusting=*/1,
469 fixed_offset, virtual_offset);
471 /* Build up the call to the real function. */
472 t = tree_cons (NULL_TREE, t, NULL_TREE);
473 for (a = TREE_CHAIN (a); a; a = TREE_CHAIN (a))
474 t = tree_cons (NULL_TREE, a, t);
475 t = nreverse (t);
476 t = build_call (alias, t);
477 CALL_FROM_THUNK_P (t) = 1;
479 if (VOID_TYPE_P (TREE_TYPE (t)))
480 finish_expr_stmt (t);
481 else
483 if (!this_adjusting)
485 tree cond = NULL_TREE;
487 if (TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE)
489 /* If the return type is a pointer, we need to
490 protect against NULL. We know there will be an
491 adjustment, because that's why we're emitting a
492 thunk. */
493 t = save_expr (t);
494 cond = cp_convert (boolean_type_node, t);
497 t = thunk_adjust (t, /*this_adjusting=*/0,
498 fixed_offset, virtual_offset);
499 if (cond)
500 t = build3 (COND_EXPR, TREE_TYPE (t), cond, t,
501 cp_convert (TREE_TYPE (t), integer_zero_node));
503 if (IS_AGGR_TYPE (TREE_TYPE (t)))
504 t = build_cplus_new (TREE_TYPE (t), t);
505 finish_return_stmt (t);
508 /* Since we want to emit the thunk, we explicitly mark its name as
509 referenced. */
510 mark_decl_referenced (thunk_fndecl);
512 /* But we don't want debugging information about it. */
513 DECL_IGNORED_P (thunk_fndecl) = 1;
515 /* Re-enable access control. */
516 pop_deferring_access_checks ();
518 thunk_fndecl = finish_function (0);
519 tree_lowering_passes (thunk_fndecl);
520 expand_body (thunk_fndecl);
523 pop_from_top_level ();
526 /* Code for synthesizing methods which have default semantics defined. */
528 /* Generate code for default X(X&) constructor. */
530 static void
531 do_build_copy_constructor (tree fndecl)
533 tree parm = FUNCTION_FIRST_USER_PARM (fndecl);
535 parm = convert_from_reference (parm);
537 if (TYPE_HAS_TRIVIAL_INIT_REF (current_class_type)
538 && is_empty_class (current_class_type))
539 /* Don't copy the padding byte; it might not have been allocated
540 if *this is a base subobject. */;
541 else if (TYPE_HAS_TRIVIAL_INIT_REF (current_class_type))
543 tree t = build2 (INIT_EXPR, void_type_node, current_class_ref, parm);
544 finish_expr_stmt (t);
546 else
548 tree fields = TYPE_FIELDS (current_class_type);
549 tree member_init_list = NULL_TREE;
550 int cvquals = cp_type_quals (TREE_TYPE (parm));
551 int i;
552 tree binfo, base_binfo;
553 VEC(tree,gc) *vbases;
555 /* Initialize all the base-classes with the parameter converted
556 to their type so that we get their copy constructor and not
557 another constructor that takes current_class_type. We must
558 deal with the binfo's directly as a direct base might be
559 inaccessible due to ambiguity. */
560 for (vbases = CLASSTYPE_VBASECLASSES (current_class_type), i = 0;
561 VEC_iterate (tree, vbases, i, binfo); i++)
563 member_init_list
564 = tree_cons (binfo,
565 build_tree_list (NULL_TREE,
566 build_base_path (PLUS_EXPR, parm,
567 binfo, 1)),
568 member_init_list);
571 for (binfo = TYPE_BINFO (current_class_type), i = 0;
572 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
574 if (BINFO_VIRTUAL_P (base_binfo))
575 continue;
577 member_init_list
578 = tree_cons (base_binfo,
579 build_tree_list (NULL_TREE,
580 build_base_path (PLUS_EXPR, parm,
581 base_binfo, 1)),
582 member_init_list);
585 for (; fields; fields = TREE_CHAIN (fields))
587 tree init = parm;
588 tree field = fields;
589 tree expr_type;
591 if (TREE_CODE (field) != FIELD_DECL)
592 continue;
594 expr_type = TREE_TYPE (field);
595 if (DECL_NAME (field))
597 if (VFIELD_NAME_P (DECL_NAME (field)))
598 continue;
600 else if (ANON_AGGR_TYPE_P (expr_type) && TYPE_FIELDS (expr_type))
601 /* Just use the field; anonymous types can't have
602 nontrivial copy ctors or assignment ops. */;
603 else
604 continue;
606 /* Compute the type of "init->field". If the copy-constructor
607 parameter is, for example, "const S&", and the type of
608 the field is "T", then the type will usually be "const
609 T". (There are no cv-qualified variants of reference
610 types.) */
611 if (TREE_CODE (expr_type) != REFERENCE_TYPE)
613 int quals = cvquals;
615 if (DECL_MUTABLE_P (field))
616 quals &= ~TYPE_QUAL_CONST;
617 expr_type = cp_build_qualified_type (expr_type, quals);
620 init = build3 (COMPONENT_REF, expr_type, init, field, NULL_TREE);
621 init = build_tree_list (NULL_TREE, init);
623 member_init_list = tree_cons (field, init, member_init_list);
625 finish_mem_initializers (member_init_list);
629 static void
630 do_build_assign_ref (tree fndecl)
632 tree parm = TREE_CHAIN (DECL_ARGUMENTS (fndecl));
633 tree compound_stmt;
635 compound_stmt = begin_compound_stmt (0);
636 parm = convert_from_reference (parm);
638 if (TYPE_HAS_TRIVIAL_ASSIGN_REF (current_class_type)
639 && is_empty_class (current_class_type))
640 /* Don't copy the padding byte; it might not have been allocated
641 if *this is a base subobject. */;
642 else if (TYPE_HAS_TRIVIAL_ASSIGN_REF (current_class_type))
644 tree t = build2 (MODIFY_EXPR, void_type_node, current_class_ref, parm);
645 finish_expr_stmt (t);
647 else
649 tree fields;
650 int cvquals = cp_type_quals (TREE_TYPE (parm));
651 int i;
652 tree binfo, base_binfo;
654 /* Assign to each of the direct base classes. */
655 for (binfo = TYPE_BINFO (current_class_type), i = 0;
656 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
658 tree converted_parm;
660 /* We must convert PARM directly to the base class
661 explicitly since the base class may be ambiguous. */
662 converted_parm = build_base_path (PLUS_EXPR, parm, base_binfo, 1);
663 /* Call the base class assignment operator. */
664 finish_expr_stmt
665 (build_special_member_call (current_class_ref,
666 ansi_assopname (NOP_EXPR),
667 build_tree_list (NULL_TREE,
668 converted_parm),
669 base_binfo,
670 LOOKUP_NORMAL | LOOKUP_NONVIRTUAL));
673 /* Assign to each of the non-static data members. */
674 for (fields = TYPE_FIELDS (current_class_type);
675 fields;
676 fields = TREE_CHAIN (fields))
678 tree comp = current_class_ref;
679 tree init = parm;
680 tree field = fields;
681 tree expr_type;
682 int quals;
684 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
685 continue;
687 expr_type = TREE_TYPE (field);
689 if (CP_TYPE_CONST_P (expr_type))
691 error ("non-static const member %q#D, can't use default "
692 "assignment operator", field);
693 continue;
695 else if (TREE_CODE (expr_type) == REFERENCE_TYPE)
697 error ("non-static reference member %q#D, can't use "
698 "default assignment operator", field);
699 continue;
702 if (DECL_NAME (field))
704 if (VFIELD_NAME_P (DECL_NAME (field)))
705 continue;
707 else if (ANON_AGGR_TYPE_P (expr_type)
708 && TYPE_FIELDS (expr_type) != NULL_TREE)
709 /* Just use the field; anonymous types can't have
710 nontrivial copy ctors or assignment ops. */;
711 else
712 continue;
714 comp = build3 (COMPONENT_REF, expr_type, comp, field, NULL_TREE);
716 /* Compute the type of init->field */
717 quals = cvquals;
718 if (DECL_MUTABLE_P (field))
719 quals &= ~TYPE_QUAL_CONST;
720 expr_type = cp_build_qualified_type (expr_type, quals);
722 init = build3 (COMPONENT_REF, expr_type, init, field, NULL_TREE);
724 if (DECL_NAME (field))
725 init = build_modify_expr (comp, NOP_EXPR, init);
726 else
727 init = build2 (MODIFY_EXPR, TREE_TYPE (comp), comp, init);
728 finish_expr_stmt (init);
731 finish_return_stmt (current_class_ref);
732 finish_compound_stmt (compound_stmt);
735 /* Synthesize FNDECL, a non-static member function. */
737 void
738 synthesize_method (tree fndecl)
740 bool nested = (current_function_decl != NULL_TREE);
741 tree context = decl_function_context (fndecl);
742 bool need_body = true;
743 tree stmt;
744 location_t save_input_location = input_location;
745 int error_count = errorcount;
746 int warning_count = warningcount;
748 /* Reset the source location, we might have been previously
749 deferred, and thus have saved where we were first needed. */
750 DECL_SOURCE_LOCATION (fndecl)
751 = DECL_SOURCE_LOCATION (TYPE_NAME (DECL_CONTEXT (fndecl)));
753 /* If we've been asked to synthesize a clone, just synthesize the
754 cloned function instead. Doing so will automatically fill in the
755 body for the clone. */
756 if (DECL_CLONED_FUNCTION_P (fndecl))
757 fndecl = DECL_CLONED_FUNCTION (fndecl);
759 /* We may be in the middle of deferred access check. Disable
760 it now. */
761 push_deferring_access_checks (dk_no_deferred);
763 if (! context)
764 push_to_top_level ();
765 else if (nested)
766 push_function_context_to (context);
768 input_location = DECL_SOURCE_LOCATION (fndecl);
770 start_preparsed_function (fndecl, NULL_TREE, SF_DEFAULT | SF_PRE_PARSED);
771 stmt = begin_function_body ();
773 if (DECL_OVERLOADED_OPERATOR_P (fndecl) == NOP_EXPR)
775 do_build_assign_ref (fndecl);
776 need_body = false;
778 else if (DECL_CONSTRUCTOR_P (fndecl))
780 tree arg_chain = FUNCTION_FIRST_USER_PARMTYPE (fndecl);
781 if (arg_chain != void_list_node)
782 do_build_copy_constructor (fndecl);
783 else if (TYPE_NEEDS_CONSTRUCTING (current_class_type))
784 finish_mem_initializers (NULL_TREE);
787 /* If we haven't yet generated the body of the function, just
788 generate an empty compound statement. */
789 if (need_body)
791 tree compound_stmt;
792 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
793 finish_compound_stmt (compound_stmt);
796 finish_function_body (stmt);
797 expand_or_defer_fn (finish_function (0));
799 input_location = save_input_location;
801 if (! context)
802 pop_from_top_level ();
803 else if (nested)
804 pop_function_context_from (context);
806 pop_deferring_access_checks ();
808 if (error_count != errorcount || warning_count != warningcount)
809 inform ("%Hsynthesized method %qD first required here ",
810 &input_location, fndecl);
813 /* Use EXTRACTOR to locate the relevant function called for each base &
814 class field of TYPE. CLIENT allows additional information to be passed
815 to EXTRACTOR. Generates the union of all exceptions generated by those
816 functions. Note that we haven't updated TYPE_FIELDS and such of any
817 variants yet, so we need to look at the main one. */
819 static tree
820 synthesize_exception_spec (tree type, tree (*extractor) (tree, void*),
821 void *client)
823 tree raises = empty_except_spec;
824 tree fields = TYPE_FIELDS (type);
825 tree binfo, base_binfo;
826 int i;
828 for (binfo = TYPE_BINFO (type), i = 0;
829 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
831 tree fn = (*extractor) (BINFO_TYPE (base_binfo), client);
832 if (fn)
834 tree fn_raises = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn));
836 raises = merge_exception_specifiers (raises, fn_raises);
839 for (; fields; fields = TREE_CHAIN (fields))
841 tree type = TREE_TYPE (fields);
842 tree fn;
844 if (TREE_CODE (fields) != FIELD_DECL || DECL_ARTIFICIAL (fields))
845 continue;
846 while (TREE_CODE (type) == ARRAY_TYPE)
847 type = TREE_TYPE (type);
848 if (!CLASS_TYPE_P (type))
849 continue;
851 fn = (*extractor) (type, client);
852 if (fn)
854 tree fn_raises = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn));
856 raises = merge_exception_specifiers (raises, fn_raises);
859 return raises;
862 /* Locate the dtor of TYPE. */
864 static tree
865 locate_dtor (tree type, void *client ATTRIBUTE_UNUSED)
867 return CLASSTYPE_DESTRUCTORS (type);
870 /* Locate the default ctor of TYPE. */
872 static tree
873 locate_ctor (tree type, void *client ATTRIBUTE_UNUSED)
875 tree fns;
877 if (!TYPE_HAS_DEFAULT_CONSTRUCTOR (type))
878 return NULL_TREE;
880 /* Call lookup_fnfields_1 to create the constructor declarations, if
881 necessary. */
882 if (CLASSTYPE_LAZY_DEFAULT_CTOR (type))
883 return lazily_declare_fn (sfk_constructor, type);
885 for (fns = CLASSTYPE_CONSTRUCTORS (type); fns; fns = OVL_NEXT (fns))
887 tree fn = OVL_CURRENT (fns);
888 tree parms = TYPE_ARG_TYPES (TREE_TYPE (fn));
890 parms = skip_artificial_parms_for (fn, parms);
892 if (sufficient_parms_p (parms))
893 return fn;
895 gcc_unreachable ();
898 struct copy_data
900 tree name;
901 int quals;
904 /* Locate the copy ctor or copy assignment of TYPE. CLIENT_
905 points to a COPY_DATA holding the name (NULL for the ctor)
906 and desired qualifiers of the source operand. */
908 static tree
909 locate_copy (tree type, void *client_)
911 struct copy_data *client = (struct copy_data *)client_;
912 tree fns;
913 tree best = NULL_TREE;
914 bool excess_p = false;
916 if (client->name)
918 int ix;
919 ix = lookup_fnfields_1 (type, client->name);
920 if (ix < 0)
921 return NULL_TREE;
922 fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), ix);
924 else if (TYPE_HAS_INIT_REF (type))
926 /* If construction of the copy constructor was postponed, create
927 it now. */
928 if (CLASSTYPE_LAZY_COPY_CTOR (type))
929 lazily_declare_fn (sfk_copy_constructor, type);
930 fns = CLASSTYPE_CONSTRUCTORS (type);
932 else
933 return NULL_TREE;
934 for (; fns; fns = OVL_NEXT (fns))
936 tree fn = OVL_CURRENT (fns);
937 tree parms = TYPE_ARG_TYPES (TREE_TYPE (fn));
938 tree src_type;
939 int excess;
940 int quals;
942 parms = skip_artificial_parms_for (fn, parms);
943 if (!parms)
944 continue;
945 src_type = non_reference (TREE_VALUE (parms));
946 if (!same_type_ignoring_top_level_qualifiers_p (src_type, type))
947 continue;
948 if (!sufficient_parms_p (TREE_CHAIN (parms)))
949 continue;
950 quals = cp_type_quals (src_type);
951 if (client->quals & ~quals)
952 continue;
953 excess = quals & ~client->quals;
954 if (!best || (excess_p && !excess))
956 best = fn;
957 excess_p = excess;
959 else
960 /* Ambiguous */
961 return NULL_TREE;
963 return best;
966 /* Implicitly declare the special function indicated by KIND, as a
967 member of TYPE. For copy constructors and assignment operators,
968 CONST_P indicates whether these functions should take a const
969 reference argument or a non-const reference. Returns the
970 FUNCTION_DECL for the implicitly declared function. */
972 static tree
973 implicitly_declare_fn (special_function_kind kind, tree type, bool const_p)
975 tree fn;
976 tree parameter_types = void_list_node;
977 tree return_type;
978 tree fn_type;
979 tree raises = empty_except_spec;
980 tree rhs_parm_type = NULL_TREE;
981 tree name;
982 HOST_WIDE_INT saved_processing_template_decl;
984 /* Because we create declarations for implicitly declared functions
985 lazily, we may be creating the declaration for a member of TYPE
986 while in some completely different context. However, TYPE will
987 never be a dependent class (because we never want to do lookups
988 for implicitly defined functions in a dependent class).
989 Furthermore, we must set PROCESSING_TEMPLATE_DECL to zero here
990 because we only create clones for constructors and destructors
991 when not in a template. */
992 gcc_assert (!dependent_type_p (type));
993 saved_processing_template_decl = processing_template_decl;
994 processing_template_decl = 0;
996 type = TYPE_MAIN_VARIANT (type);
998 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (type))
1000 if (kind == sfk_destructor)
1001 /* See comment in check_special_function_return_type. */
1002 return_type = build_pointer_type (void_type_node);
1003 else
1004 return_type = build_pointer_type (type);
1006 else
1007 return_type = void_type_node;
1009 switch (kind)
1011 case sfk_destructor:
1012 /* Destructor. */
1013 name = constructor_name (type);
1014 raises = synthesize_exception_spec (type, &locate_dtor, 0);
1015 break;
1017 case sfk_constructor:
1018 /* Default constructor. */
1019 name = constructor_name (type);
1020 raises = synthesize_exception_spec (type, &locate_ctor, 0);
1021 break;
1023 case sfk_copy_constructor:
1024 case sfk_assignment_operator:
1026 struct copy_data data;
1028 data.name = NULL;
1029 data.quals = 0;
1030 if (kind == sfk_assignment_operator)
1032 return_type = build_reference_type (type);
1033 name = ansi_assopname (NOP_EXPR);
1034 data.name = name;
1036 else
1037 name = constructor_name (type);
1039 if (const_p)
1041 data.quals = TYPE_QUAL_CONST;
1042 rhs_parm_type = build_qualified_type (type, TYPE_QUAL_CONST);
1044 else
1045 rhs_parm_type = type;
1046 rhs_parm_type = build_reference_type (rhs_parm_type);
1047 parameter_types = tree_cons (NULL_TREE, rhs_parm_type, parameter_types);
1048 raises = synthesize_exception_spec (type, &locate_copy, &data);
1049 break;
1051 default:
1052 gcc_unreachable ();
1055 /* Create the function. */
1056 fn_type = build_method_type_directly (type, return_type, parameter_types);
1057 if (raises)
1058 fn_type = build_exception_variant (fn_type, raises);
1059 fn = build_lang_decl (FUNCTION_DECL, name, fn_type);
1060 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (TYPE_NAME (type));
1061 if (kind == sfk_constructor || kind == sfk_copy_constructor)
1062 DECL_CONSTRUCTOR_P (fn) = 1;
1063 else if (kind == sfk_destructor)
1064 DECL_DESTRUCTOR_P (fn) = 1;
1065 else
1067 DECL_ASSIGNMENT_OPERATOR_P (fn) = 1;
1068 SET_OVERLOADED_OPERATOR_CODE (fn, NOP_EXPR);
1070 /* Create the argument list. The call to "grokclassfn" will add the
1071 "this" parameter and any other implicit parameters. */
1072 if (rhs_parm_type)
1074 /* Note that this parameter is *not* marked DECL_ARTIFICIAL; we
1075 want its type to be included in the mangled function
1076 name. */
1077 DECL_ARGUMENTS (fn) = cp_build_parm_decl (NULL_TREE, rhs_parm_type);
1078 TREE_READONLY (DECL_ARGUMENTS (fn)) = 1;
1081 grokclassfn (type, fn, kind == sfk_destructor ? DTOR_FLAG : NO_SPECIAL,
1082 TYPE_UNQUALIFIED);
1083 grok_special_member_properties (fn);
1084 set_linkage_according_to_type (type, fn);
1085 rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
1086 DECL_IN_AGGR_P (fn) = 1;
1087 DECL_ARTIFICIAL (fn) = 1;
1088 DECL_NOT_REALLY_EXTERN (fn) = 1;
1089 DECL_DECLARED_INLINE_P (fn) = 1;
1090 DECL_INLINE (fn) = 1;
1091 gcc_assert (!TREE_USED (fn));
1093 /* Restore PROCESSING_TEMPLATE_DECL. */
1094 processing_template_decl = saved_processing_template_decl;
1096 return fn;
1099 /* Add an implicit declaration to TYPE for the kind of function
1100 indicated by SFK. Return the FUNCTION_DECL for the new implicit
1101 declaration. */
1103 tree
1104 lazily_declare_fn (special_function_kind sfk, tree type)
1106 tree fn;
1107 bool const_p;
1109 /* Figure out whether or not the argument has a const reference
1110 type. */
1111 if (sfk == sfk_copy_constructor)
1112 const_p = TYPE_HAS_CONST_INIT_REF (type);
1113 else if (sfk == sfk_assignment_operator)
1114 const_p = TYPE_HAS_CONST_ASSIGN_REF (type);
1115 else
1116 /* In this case, CONST_P will be ignored. */
1117 const_p = false;
1118 /* Declare the function. */
1119 fn = implicitly_declare_fn (sfk, type, const_p);
1120 /* A destructor may be virtual. */
1121 if (sfk == sfk_destructor)
1122 check_for_override (fn, type);
1123 /* Add it to CLASSTYPE_METHOD_VEC. */
1124 add_method (type, fn, NULL_TREE);
1125 /* Add it to TYPE_METHODS. */
1126 if (sfk == sfk_destructor
1127 && DECL_VIRTUAL_P (fn)
1128 && abi_version_at_least (2))
1129 /* The ABI requires that a virtual destructor go at the end of the
1130 vtable. */
1131 TYPE_METHODS (type) = chainon (TYPE_METHODS (type), fn);
1132 else
1134 /* G++ 3.2 put the implicit destructor at the *beginning* of the
1135 TYPE_METHODS list, which cause the destructor to be emitted
1136 in an incorrect location in the vtable. */
1137 if (warn_abi && DECL_VIRTUAL_P (fn))
1138 warning (OPT_Wabi, "vtable layout for class %qT may not be ABI-compliant"
1139 "and may change in a future version of GCC due to "
1140 "implicit virtual destructor",
1141 type);
1142 TREE_CHAIN (fn) = TYPE_METHODS (type);
1143 TYPE_METHODS (type) = fn;
1145 maybe_add_class_template_decl_list (type, fn, /*friend_p=*/0);
1146 if (sfk == sfk_assignment_operator)
1147 CLASSTYPE_LAZY_ASSIGNMENT_OP (type) = 0;
1148 else
1150 /* Remember that the function has been created. */
1151 if (sfk == sfk_constructor)
1152 CLASSTYPE_LAZY_DEFAULT_CTOR (type) = 0;
1153 else if (sfk == sfk_copy_constructor)
1154 CLASSTYPE_LAZY_COPY_CTOR (type) = 0;
1155 else if (sfk == sfk_destructor)
1156 CLASSTYPE_LAZY_DESTRUCTOR (type) = 0;
1157 /* Create appropriate clones. */
1158 clone_function_decl (fn, /*update_method_vec=*/true);
1161 return fn;
1164 /* Given a FUNCTION_DECL FN and a chain LIST, skip as many elements of LIST
1165 as there are artificial parms in FN. */
1167 tree
1168 skip_artificial_parms_for (tree fn, tree list)
1170 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
1171 list = TREE_CHAIN (list);
1172 else
1173 return list;
1175 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
1176 list = TREE_CHAIN (list);
1177 if (DECL_HAS_VTT_PARM_P (fn))
1178 list = TREE_CHAIN (list);
1179 return list;
1182 #include "gt-cp-method.h"