PR c++/18451
[official-gcc/constexpr.git] / gcc / cp / method.c
blob47f9e424dbde36d22d6632ca91e8d2b10395c705
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, 2007, 2008, 2009
5 Free Software Foundation, Inc.
6 Contributed by Michael Tiemann (tiemann@cygnus.com)
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3, or (at your option)
13 any later version.
15 GCC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
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 #include "cgraph.h"
43 /* Various flags to control the mangling process. */
45 enum mangling_flags
47 /* No flags. */
48 mf_none = 0,
49 /* The thing we are presently mangling is part of a template type,
50 rather than a fully instantiated type. Therefore, we may see
51 complex expressions where we would normally expect to see a
52 simple integer constant. */
53 mf_maybe_uninstantiated = 1,
54 /* When mangling a numeric value, use the form `_XX_' (instead of
55 just `XX') if the value has more than one digit. */
56 mf_use_underscores_around_value = 2
59 typedef enum mangling_flags mangling_flags;
61 static tree thunk_adjust (tree, bool, HOST_WIDE_INT, tree);
62 static void do_build_assign_ref (tree);
63 static void do_build_copy_constructor (tree);
64 static tree synthesize_exception_spec (tree, tree (*) (tree, void *), void *);
65 static tree make_alias_for_thunk (tree);
67 /* Called once to initialize method.c. */
69 void
70 init_method (void)
72 init_mangle ();
75 /* Return a this or result adjusting thunk to FUNCTION. THIS_ADJUSTING
76 indicates whether it is a this or result adjusting thunk.
77 FIXED_OFFSET and VIRTUAL_OFFSET indicate how to do the adjustment
78 (see thunk_adjust). VIRTUAL_OFFSET can be NULL, but FIXED_OFFSET
79 never is. VIRTUAL_OFFSET is the /index/ into the vtable for this
80 adjusting thunks, we scale it to a byte offset. For covariant
81 thunks VIRTUAL_OFFSET is the virtual binfo. You must post process
82 the returned thunk with finish_thunk. */
84 tree
85 make_thunk (tree function, bool this_adjusting,
86 tree fixed_offset, tree virtual_offset)
88 HOST_WIDE_INT d;
89 tree thunk;
91 gcc_assert (TREE_CODE (function) == FUNCTION_DECL);
92 /* We can have this thunks to covariant thunks, but not vice versa. */
93 gcc_assert (!DECL_THIS_THUNK_P (function));
94 gcc_assert (!DECL_RESULT_THUNK_P (function) || this_adjusting);
96 /* Scale the VIRTUAL_OFFSET to be in terms of bytes. */
97 if (this_adjusting && virtual_offset)
98 virtual_offset
99 = size_binop (MULT_EXPR,
100 virtual_offset,
101 convert (ssizetype,
102 TYPE_SIZE_UNIT (vtable_entry_type)));
104 d = tree_low_cst (fixed_offset, 0);
106 /* See if we already have the thunk in question. For this_adjusting
107 thunks VIRTUAL_OFFSET will be an INTEGER_CST, for covariant thunks it
108 will be a BINFO. */
109 for (thunk = DECL_THUNKS (function); thunk; thunk = TREE_CHAIN (thunk))
110 if (DECL_THIS_THUNK_P (thunk) == this_adjusting
111 && THUNK_FIXED_OFFSET (thunk) == d
112 && !virtual_offset == !THUNK_VIRTUAL_OFFSET (thunk)
113 && (!virtual_offset
114 || (this_adjusting
115 ? tree_int_cst_equal (THUNK_VIRTUAL_OFFSET (thunk),
116 virtual_offset)
117 : THUNK_VIRTUAL_OFFSET (thunk) == virtual_offset)))
118 return thunk;
120 /* All thunks must be created before FUNCTION is actually emitted;
121 the ABI requires that all thunks be emitted together with the
122 function to which they transfer control. */
123 gcc_assert (!TREE_ASM_WRITTEN (function));
124 /* Likewise, we can only be adding thunks to a function declared in
125 the class currently being laid out. */
126 gcc_assert (TYPE_SIZE (DECL_CONTEXT (function))
127 && TYPE_BEING_DEFINED (DECL_CONTEXT (function)));
129 thunk = build_decl (DECL_SOURCE_LOCATION (function),
130 FUNCTION_DECL, NULL_TREE, TREE_TYPE (function));
131 DECL_LANG_SPECIFIC (thunk) = DECL_LANG_SPECIFIC (function);
132 cxx_dup_lang_specific_decl (thunk);
133 DECL_THUNKS (thunk) = NULL_TREE;
135 DECL_CONTEXT (thunk) = DECL_CONTEXT (function);
136 TREE_READONLY (thunk) = TREE_READONLY (function);
137 TREE_THIS_VOLATILE (thunk) = TREE_THIS_VOLATILE (function);
138 TREE_PUBLIC (thunk) = TREE_PUBLIC (function);
139 SET_DECL_THUNK_P (thunk, this_adjusting);
140 THUNK_TARGET (thunk) = function;
141 THUNK_FIXED_OFFSET (thunk) = d;
142 THUNK_VIRTUAL_OFFSET (thunk) = virtual_offset;
143 THUNK_ALIAS (thunk) = NULL_TREE;
145 /* The thunk itself is not a constructor or destructor, even if
146 the thing it is thunking to is. */
147 DECL_INTERFACE_KNOWN (thunk) = 1;
148 DECL_NOT_REALLY_EXTERN (thunk) = 1;
149 DECL_SAVED_FUNCTION_DATA (thunk) = NULL;
150 DECL_DESTRUCTOR_P (thunk) = 0;
151 DECL_CONSTRUCTOR_P (thunk) = 0;
152 DECL_EXTERNAL (thunk) = 1;
153 DECL_ARTIFICIAL (thunk) = 1;
154 /* The THUNK is not a pending inline, even if the FUNCTION is. */
155 DECL_PENDING_INLINE_P (thunk) = 0;
156 DECL_DECLARED_INLINE_P (thunk) = 0;
157 /* Nor is it a template instantiation. */
158 DECL_USE_TEMPLATE (thunk) = 0;
159 DECL_TEMPLATE_INFO (thunk) = NULL;
161 /* Add it to the list of thunks associated with FUNCTION. */
162 TREE_CHAIN (thunk) = DECL_THUNKS (function);
163 DECL_THUNKS (function) = thunk;
165 return thunk;
168 /* Finish THUNK, a thunk decl. */
170 void
171 finish_thunk (tree thunk)
173 tree function, name;
174 tree fixed_offset = ssize_int (THUNK_FIXED_OFFSET (thunk));
175 tree virtual_offset = THUNK_VIRTUAL_OFFSET (thunk);
177 gcc_assert (!DECL_NAME (thunk) && DECL_THUNK_P (thunk));
178 if (virtual_offset && DECL_RESULT_THUNK_P (thunk))
179 virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
180 function = THUNK_TARGET (thunk);
181 name = mangle_thunk (function, DECL_THIS_THUNK_P (thunk),
182 fixed_offset, virtual_offset);
184 /* We can end up with declarations of (logically) different
185 covariant thunks, that do identical adjustments. The two thunks
186 will be adjusting between within different hierarchies, which
187 happen to have the same layout. We must nullify one of them to
188 refer to the other. */
189 if (DECL_RESULT_THUNK_P (thunk))
191 tree cov_probe;
193 for (cov_probe = DECL_THUNKS (function);
194 cov_probe; cov_probe = TREE_CHAIN (cov_probe))
195 if (DECL_NAME (cov_probe) == name)
197 gcc_assert (!DECL_THUNKS (thunk));
198 THUNK_ALIAS (thunk) = (THUNK_ALIAS (cov_probe)
199 ? THUNK_ALIAS (cov_probe) : cov_probe);
200 break;
204 DECL_NAME (thunk) = name;
205 SET_DECL_ASSEMBLER_NAME (thunk, name);
208 /* Adjust PTR by the constant FIXED_OFFSET, and by the vtable
209 offset indicated by VIRTUAL_OFFSET, if that is
210 non-null. THIS_ADJUSTING is nonzero for a this adjusting thunk and
211 zero for a result adjusting thunk. */
213 static tree
214 thunk_adjust (tree ptr, bool this_adjusting,
215 HOST_WIDE_INT fixed_offset, tree virtual_offset)
217 if (this_adjusting)
218 /* Adjust the pointer by the constant. */
219 ptr = fold_build2_loc (input_location,
220 POINTER_PLUS_EXPR, TREE_TYPE (ptr), ptr,
221 size_int (fixed_offset));
223 /* If there's a virtual offset, look up that value in the vtable and
224 adjust the pointer again. */
225 if (virtual_offset)
227 tree vtable;
229 ptr = save_expr (ptr);
230 /* The vptr is always at offset zero in the object. */
231 vtable = build1 (NOP_EXPR,
232 build_pointer_type (build_pointer_type
233 (vtable_entry_type)),
234 ptr);
235 /* Form the vtable address. */
236 vtable = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (vtable)), vtable);
237 /* Find the entry with the vcall offset. */
238 vtable = fold_build2_loc (input_location,
239 POINTER_PLUS_EXPR, TREE_TYPE (vtable), vtable,
240 fold_convert (sizetype, virtual_offset));
241 /* Get the offset itself. */
242 vtable = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (vtable)), vtable);
243 /* Adjust the `this' pointer. */
244 ptr = fold_build2_loc (input_location,
245 POINTER_PLUS_EXPR, TREE_TYPE (ptr), ptr,
246 fold_convert (sizetype, vtable));
249 if (!this_adjusting)
250 /* Adjust the pointer by the constant. */
251 ptr = fold_build2_loc (input_location,
252 POINTER_PLUS_EXPR, TREE_TYPE (ptr), ptr,
253 size_int (fixed_offset));
255 return ptr;
258 static GTY (()) int thunk_labelno;
260 /* Create a static alias to function. */
262 tree
263 make_alias_for (tree function, tree newid)
265 tree alias = build_decl (DECL_SOURCE_LOCATION (function),
266 FUNCTION_DECL, newid, TREE_TYPE (function));
267 DECL_LANG_SPECIFIC (alias) = DECL_LANG_SPECIFIC (function);
268 cxx_dup_lang_specific_decl (alias);
269 DECL_CONTEXT (alias) = NULL;
270 TREE_READONLY (alias) = TREE_READONLY (function);
271 TREE_THIS_VOLATILE (alias) = TREE_THIS_VOLATILE (function);
272 TREE_PUBLIC (alias) = 0;
273 DECL_INTERFACE_KNOWN (alias) = 1;
274 DECL_NOT_REALLY_EXTERN (alias) = 1;
275 DECL_THIS_STATIC (alias) = 1;
276 DECL_SAVED_FUNCTION_DATA (alias) = NULL;
277 DECL_DESTRUCTOR_P (alias) = 0;
278 DECL_CONSTRUCTOR_P (alias) = 0;
279 DECL_EXTERNAL (alias) = 0;
280 DECL_ARTIFICIAL (alias) = 1;
281 DECL_PENDING_INLINE_P (alias) = 0;
282 DECL_DECLARED_INLINE_P (alias) = 0;
283 DECL_USE_TEMPLATE (alias) = 0;
284 DECL_TEMPLATE_INSTANTIATED (alias) = 0;
285 DECL_TEMPLATE_INFO (alias) = NULL;
286 DECL_INITIAL (alias) = error_mark_node;
287 TREE_ADDRESSABLE (alias) = 1;
288 TREE_USED (alias) = 1;
289 SET_DECL_ASSEMBLER_NAME (alias, DECL_NAME (alias));
290 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias)) = 1;
291 return alias;
294 static tree
295 make_alias_for_thunk (tree function)
297 tree alias;
298 char buf[256];
300 ASM_GENERATE_INTERNAL_LABEL (buf, "LTHUNK", thunk_labelno);
301 thunk_labelno++;
303 alias = make_alias_for (function, get_identifier (buf));
305 if (!flag_syntax_only)
306 assemble_alias (alias, DECL_ASSEMBLER_NAME (function));
308 return alias;
311 /* Emit the definition of a C++ multiple inheritance or covariant
312 return vtable thunk. If EMIT_P is nonzero, the thunk is emitted
313 immediately. */
315 void
316 use_thunk (tree thunk_fndecl, bool emit_p)
318 tree a, t, function, alias;
319 tree virtual_offset;
320 HOST_WIDE_INT fixed_offset, virtual_value;
321 bool this_adjusting = DECL_THIS_THUNK_P (thunk_fndecl);
323 /* We should have called finish_thunk to give it a name. */
324 gcc_assert (DECL_NAME (thunk_fndecl));
326 /* We should never be using an alias, always refer to the
327 aliased thunk. */
328 gcc_assert (!THUNK_ALIAS (thunk_fndecl));
330 if (TREE_ASM_WRITTEN (thunk_fndecl))
331 return;
333 function = THUNK_TARGET (thunk_fndecl);
334 if (DECL_RESULT (thunk_fndecl))
335 /* We already turned this thunk into an ordinary function.
336 There's no need to process this thunk again. */
337 return;
339 if (DECL_THUNK_P (function))
340 /* The target is itself a thunk, process it now. */
341 use_thunk (function, emit_p);
343 /* Thunks are always addressable; they only appear in vtables. */
344 TREE_ADDRESSABLE (thunk_fndecl) = 1;
346 /* Figure out what function is being thunked to. It's referenced in
347 this translation unit. */
348 TREE_ADDRESSABLE (function) = 1;
349 mark_used (function);
350 if (!emit_p)
351 return;
353 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (function))
354 alias = make_alias_for_thunk (function);
355 else
356 alias = function;
358 fixed_offset = THUNK_FIXED_OFFSET (thunk_fndecl);
359 virtual_offset = THUNK_VIRTUAL_OFFSET (thunk_fndecl);
361 if (virtual_offset)
363 if (!this_adjusting)
364 virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
365 virtual_value = tree_low_cst (virtual_offset, /*pos=*/0);
366 gcc_assert (virtual_value);
368 else
369 virtual_value = 0;
371 /* And, if we need to emit the thunk, it's used. */
372 mark_used (thunk_fndecl);
373 /* This thunk is actually defined. */
374 DECL_EXTERNAL (thunk_fndecl) = 0;
375 /* The linkage of the function may have changed. FIXME in linkage
376 rewrite. */
377 TREE_PUBLIC (thunk_fndecl) = TREE_PUBLIC (function);
378 DECL_VISIBILITY (thunk_fndecl) = DECL_VISIBILITY (function);
379 DECL_VISIBILITY_SPECIFIED (thunk_fndecl)
380 = DECL_VISIBILITY_SPECIFIED (function);
381 if (DECL_ONE_ONLY (function) || DECL_WEAK (function))
382 make_decl_one_only (thunk_fndecl, cxx_comdat_group (thunk_fndecl));
384 if (flag_syntax_only)
386 TREE_ASM_WRITTEN (thunk_fndecl) = 1;
387 return;
390 push_to_top_level ();
392 if (TARGET_USE_LOCAL_THUNK_ALIAS_P (function)
393 && targetm.have_named_sections)
395 resolve_unique_section (function, 0, flag_function_sections);
397 if (DECL_SECTION_NAME (function) != NULL && DECL_ONE_ONLY (function))
399 resolve_unique_section (thunk_fndecl, 0, flag_function_sections);
401 /* Output the thunk into the same section as function. */
402 DECL_SECTION_NAME (thunk_fndecl) = DECL_SECTION_NAME (function);
406 /* Set up cloned argument trees for the thunk. */
407 t = NULL_TREE;
408 for (a = DECL_ARGUMENTS (function); a; a = TREE_CHAIN (a))
410 tree x = copy_node (a);
411 TREE_CHAIN (x) = t;
412 DECL_CONTEXT (x) = thunk_fndecl;
413 SET_DECL_RTL (x, NULL_RTX);
414 DECL_HAS_VALUE_EXPR_P (x) = 0;
415 t = x;
417 a = nreverse (t);
418 DECL_ARGUMENTS (thunk_fndecl) = a;
420 if (this_adjusting
421 && targetm.asm_out.can_output_mi_thunk (thunk_fndecl, fixed_offset,
422 virtual_value, alias))
424 const char *fnname;
425 tree fn_block;
427 current_function_decl = thunk_fndecl;
428 DECL_RESULT (thunk_fndecl)
429 = build_decl (DECL_SOURCE_LOCATION (thunk_fndecl),
430 RESULT_DECL, 0, integer_type_node);
431 fnname = IDENTIFIER_POINTER (DECL_NAME (thunk_fndecl));
432 /* The back end expects DECL_INITIAL to contain a BLOCK, so we
433 create one. */
434 fn_block = make_node (BLOCK);
435 BLOCK_VARS (fn_block) = a;
436 DECL_INITIAL (thunk_fndecl) = fn_block;
437 init_function_start (thunk_fndecl);
438 cfun->is_thunk = 1;
439 assemble_start_function (thunk_fndecl, fnname);
441 targetm.asm_out.output_mi_thunk (asm_out_file, thunk_fndecl,
442 fixed_offset, virtual_value, alias);
444 assemble_end_function (thunk_fndecl, fnname);
445 init_insn_lengths ();
446 free_after_compilation (cfun);
447 current_function_decl = 0;
448 set_cfun (NULL);
449 TREE_ASM_WRITTEN (thunk_fndecl) = 1;
451 else
453 int i;
454 tree *argarray = (tree *) alloca (list_length (a) * sizeof (tree));
455 /* If this is a covariant thunk, or we don't have the necessary
456 code for efficient thunks, generate a thunk function that
457 just makes a call to the real function. Unfortunately, this
458 doesn't work for varargs. */
460 if (varargs_function_p (function))
461 error ("generic thunk code fails for method %q#D which uses %<...%>",
462 function);
464 DECL_RESULT (thunk_fndecl) = NULL_TREE;
466 start_preparsed_function (thunk_fndecl, NULL_TREE, SF_PRE_PARSED);
467 /* We don't bother with a body block for thunks. */
469 /* There's no need to check accessibility inside the thunk body. */
470 push_deferring_access_checks (dk_no_check);
472 t = a;
473 if (this_adjusting)
474 t = thunk_adjust (t, /*this_adjusting=*/1,
475 fixed_offset, virtual_offset);
477 /* Build up the call to the real function. */
478 argarray[0] = t;
479 for (i = 1, a = TREE_CHAIN (a); a; a = TREE_CHAIN (a), i++)
480 argarray[i] = a;
481 t = build_call_a (alias, i, argarray);
482 CALL_FROM_THUNK_P (t) = 1;
483 CALL_CANNOT_INLINE_P (t) = 1;
485 if (VOID_TYPE_P (TREE_TYPE (t)))
486 finish_expr_stmt (t);
487 else
489 if (!this_adjusting)
491 tree cond = NULL_TREE;
493 if (TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE)
495 /* If the return type is a pointer, we need to
496 protect against NULL. We know there will be an
497 adjustment, because that's why we're emitting a
498 thunk. */
499 t = save_expr (t);
500 cond = cp_convert (boolean_type_node, t);
503 t = thunk_adjust (t, /*this_adjusting=*/0,
504 fixed_offset, virtual_offset);
505 if (cond)
506 t = build3 (COND_EXPR, TREE_TYPE (t), cond, t,
507 cp_convert (TREE_TYPE (t), integer_zero_node));
509 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (t)))
510 t = build_cplus_new (TREE_TYPE (t), t);
511 finish_return_stmt (t);
514 /* Since we want to emit the thunk, we explicitly mark its name as
515 referenced. */
516 mark_decl_referenced (thunk_fndecl);
518 /* But we don't want debugging information about it. */
519 DECL_IGNORED_P (thunk_fndecl) = 1;
521 /* Re-enable access control. */
522 pop_deferring_access_checks ();
524 thunk_fndecl = finish_function (0);
525 cgraph_add_new_function (thunk_fndecl, false);
528 pop_from_top_level ();
531 /* Code for synthesizing methods which have default semantics defined. */
533 /* Generate code for default X(X&) or X(X&&) constructor. */
535 static void
536 do_build_copy_constructor (tree fndecl)
538 tree parm = FUNCTION_FIRST_USER_PARM (fndecl);
539 bool move_p = DECL_MOVE_CONSTRUCTOR_P (fndecl);
541 parm = convert_from_reference (parm);
543 if (TYPE_HAS_TRIVIAL_INIT_REF (current_class_type)
544 && is_empty_class (current_class_type))
545 /* Don't copy the padding byte; it might not have been allocated
546 if *this is a base subobject. */;
547 else if (TYPE_HAS_TRIVIAL_INIT_REF (current_class_type))
549 tree t = build2 (INIT_EXPR, void_type_node, current_class_ref, parm);
550 finish_expr_stmt (t);
552 else
554 tree fields = TYPE_FIELDS (current_class_type);
555 tree member_init_list = NULL_TREE;
556 int cvquals = cp_type_quals (TREE_TYPE (parm));
557 int i;
558 tree binfo, base_binfo;
559 tree init;
560 VEC(tree,gc) *vbases;
562 /* Initialize all the base-classes with the parameter converted
563 to their type so that we get their copy constructor and not
564 another constructor that takes current_class_type. We must
565 deal with the binfo's directly as a direct base might be
566 inaccessible due to ambiguity. */
567 for (vbases = CLASSTYPE_VBASECLASSES (current_class_type), i = 0;
568 VEC_iterate (tree, vbases, i, binfo); i++)
570 init = build_base_path (PLUS_EXPR, parm, binfo, 1);
571 if (move_p)
572 init = move (init);
573 member_init_list
574 = tree_cons (binfo,
575 build_tree_list (NULL_TREE, init),
576 member_init_list);
579 for (binfo = TYPE_BINFO (current_class_type), i = 0;
580 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
582 if (BINFO_VIRTUAL_P (base_binfo))
583 continue;
585 init = build_base_path (PLUS_EXPR, parm, base_binfo, 1);
586 if (move_p)
587 init = move (init);
588 member_init_list
589 = tree_cons (base_binfo,
590 build_tree_list (NULL_TREE, init),
591 member_init_list);
594 for (; fields; fields = TREE_CHAIN (fields))
596 tree field = fields;
597 tree expr_type;
599 if (TREE_CODE (field) != FIELD_DECL)
600 continue;
602 expr_type = TREE_TYPE (field);
603 if (DECL_NAME (field))
605 if (VFIELD_NAME_P (DECL_NAME (field)))
606 continue;
608 else if (ANON_AGGR_TYPE_P (expr_type) && TYPE_FIELDS (expr_type))
609 /* Just use the field; anonymous types can't have
610 nontrivial copy ctors or assignment ops. */;
611 else
612 continue;
614 /* Compute the type of "init->field". If the copy-constructor
615 parameter is, for example, "const S&", and the type of
616 the field is "T", then the type will usually be "const
617 T". (There are no cv-qualified variants of reference
618 types.) */
619 if (TREE_CODE (expr_type) != REFERENCE_TYPE)
621 int quals = cvquals;
623 if (DECL_MUTABLE_P (field))
624 quals &= ~TYPE_QUAL_CONST;
625 quals |= TYPE_QUALS (expr_type);
626 expr_type = cp_build_qualified_type (expr_type, quals);
629 init = build3 (COMPONENT_REF, expr_type, parm, field, NULL_TREE);
630 if (move_p && TREE_CODE (expr_type) != REFERENCE_TYPE)
631 init = move (init);
632 init = build_tree_list (NULL_TREE, init);
634 member_init_list = tree_cons (field, init, member_init_list);
636 finish_mem_initializers (member_init_list);
640 static void
641 do_build_assign_ref (tree fndecl)
643 tree parm = TREE_CHAIN (DECL_ARGUMENTS (fndecl));
644 tree compound_stmt;
646 compound_stmt = begin_compound_stmt (0);
647 parm = convert_from_reference (parm);
649 if (TYPE_HAS_TRIVIAL_ASSIGN_REF (current_class_type)
650 && is_empty_class (current_class_type))
651 /* Don't copy the padding byte; it might not have been allocated
652 if *this is a base subobject. */;
653 else if (TYPE_HAS_TRIVIAL_ASSIGN_REF (current_class_type))
655 tree t = build2 (MODIFY_EXPR, void_type_node, current_class_ref, parm);
656 finish_expr_stmt (t);
658 else
660 tree fields;
661 int cvquals = cp_type_quals (TREE_TYPE (parm));
662 int i;
663 tree binfo, base_binfo;
665 /* Assign to each of the direct base classes. */
666 for (binfo = TYPE_BINFO (current_class_type), i = 0;
667 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
669 tree converted_parm;
670 VEC(tree,gc) *parmvec;
672 /* We must convert PARM directly to the base class
673 explicitly since the base class may be ambiguous. */
674 converted_parm = build_base_path (PLUS_EXPR, parm, base_binfo, 1);
675 /* Call the base class assignment operator. */
676 parmvec = make_tree_vector_single (converted_parm);
677 finish_expr_stmt
678 (build_special_member_call (current_class_ref,
679 ansi_assopname (NOP_EXPR),
680 &parmvec,
681 base_binfo,
682 LOOKUP_NORMAL | LOOKUP_NONVIRTUAL,
683 tf_warning_or_error));
684 release_tree_vector (parmvec);
687 /* Assign to each of the non-static data members. */
688 for (fields = TYPE_FIELDS (current_class_type);
689 fields;
690 fields = TREE_CHAIN (fields))
692 tree comp = current_class_ref;
693 tree init = parm;
694 tree field = fields;
695 tree expr_type;
696 int quals;
698 if (TREE_CODE (field) != FIELD_DECL || DECL_ARTIFICIAL (field))
699 continue;
701 expr_type = TREE_TYPE (field);
703 if (CP_TYPE_CONST_P (expr_type))
705 error ("non-static const member %q#D, can't use default "
706 "assignment operator", field);
707 continue;
709 else if (TREE_CODE (expr_type) == REFERENCE_TYPE)
711 error ("non-static reference member %q#D, can't use "
712 "default assignment operator", field);
713 continue;
716 if (DECL_NAME (field))
718 if (VFIELD_NAME_P (DECL_NAME (field)))
719 continue;
721 else if (ANON_AGGR_TYPE_P (expr_type)
722 && TYPE_FIELDS (expr_type) != NULL_TREE)
723 /* Just use the field; anonymous types can't have
724 nontrivial copy ctors or assignment ops. */;
725 else
726 continue;
728 comp = build3 (COMPONENT_REF, expr_type, comp, field, NULL_TREE);
730 /* Compute the type of init->field */
731 quals = cvquals;
732 if (DECL_MUTABLE_P (field))
733 quals &= ~TYPE_QUAL_CONST;
734 expr_type = cp_build_qualified_type (expr_type, quals);
736 init = build3 (COMPONENT_REF, expr_type, init, field, NULL_TREE);
738 if (DECL_NAME (field))
739 init = cp_build_modify_expr (comp, NOP_EXPR, init,
740 tf_warning_or_error);
741 else
742 init = build2 (MODIFY_EXPR, TREE_TYPE (comp), comp, init);
743 finish_expr_stmt (init);
746 finish_return_stmt (current_class_ref);
747 finish_compound_stmt (compound_stmt);
750 /* Synthesize FNDECL, a non-static member function. */
752 void
753 synthesize_method (tree fndecl)
755 bool nested = (current_function_decl != NULL_TREE);
756 tree context = decl_function_context (fndecl);
757 bool need_body = true;
758 tree stmt;
759 location_t save_input_location = input_location;
760 int error_count = errorcount;
761 int warning_count = warningcount;
763 /* Reset the source location, we might have been previously
764 deferred, and thus have saved where we were first needed. */
765 DECL_SOURCE_LOCATION (fndecl)
766 = DECL_SOURCE_LOCATION (TYPE_NAME (DECL_CONTEXT (fndecl)));
768 /* If we've been asked to synthesize a clone, just synthesize the
769 cloned function instead. Doing so will automatically fill in the
770 body for the clone. */
771 if (DECL_CLONED_FUNCTION_P (fndecl))
772 fndecl = DECL_CLONED_FUNCTION (fndecl);
774 /* We may be in the middle of deferred access check. Disable
775 it now. */
776 push_deferring_access_checks (dk_no_deferred);
778 if (! context)
779 push_to_top_level ();
780 else if (nested)
781 push_function_context ();
783 input_location = DECL_SOURCE_LOCATION (fndecl);
785 start_preparsed_function (fndecl, NULL_TREE, SF_DEFAULT | SF_PRE_PARSED);
786 stmt = begin_function_body ();
788 if (DECL_OVERLOADED_OPERATOR_P (fndecl) == NOP_EXPR)
790 do_build_assign_ref (fndecl);
791 need_body = false;
793 else if (DECL_CONSTRUCTOR_P (fndecl))
795 tree arg_chain = FUNCTION_FIRST_USER_PARMTYPE (fndecl);
796 if (arg_chain != void_list_node)
797 do_build_copy_constructor (fndecl);
798 else
799 finish_mem_initializers (NULL_TREE);
802 /* If we haven't yet generated the body of the function, just
803 generate an empty compound statement. */
804 if (need_body)
806 tree compound_stmt;
807 compound_stmt = begin_compound_stmt (BCS_FN_BODY);
808 finish_compound_stmt (compound_stmt);
811 finish_function_body (stmt);
812 expand_or_defer_fn (finish_function (0));
814 input_location = save_input_location;
816 if (! context)
817 pop_from_top_level ();
818 else if (nested)
819 pop_function_context ();
821 pop_deferring_access_checks ();
823 if (error_count != errorcount || warning_count != warningcount)
824 inform (input_location, "synthesized method %qD first required here ",
825 fndecl);
828 /* Use EXTRACTOR to locate the relevant function called for each base &
829 class field of TYPE. CLIENT allows additional information to be passed
830 to EXTRACTOR. Generates the union of all exceptions generated by those
831 functions. Note that we haven't updated TYPE_FIELDS and such of any
832 variants yet, so we need to look at the main one. */
834 static tree
835 synthesize_exception_spec (tree type, tree (*extractor) (tree, void*),
836 void *client)
838 tree raises = empty_except_spec;
839 tree fields = TYPE_FIELDS (type);
840 tree binfo, base_binfo;
841 int i;
843 for (binfo = TYPE_BINFO (type), i = 0;
844 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
846 tree fn = (*extractor) (BINFO_TYPE (base_binfo), client);
847 if (fn)
849 tree fn_raises = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn));
851 raises = merge_exception_specifiers (raises, fn_raises);
854 for (; fields; fields = TREE_CHAIN (fields))
856 tree type = TREE_TYPE (fields);
857 tree fn;
859 if (TREE_CODE (fields) != FIELD_DECL || DECL_ARTIFICIAL (fields))
860 continue;
861 while (TREE_CODE (type) == ARRAY_TYPE)
862 type = TREE_TYPE (type);
863 if (!CLASS_TYPE_P (type))
864 continue;
866 fn = (*extractor) (type, client);
867 if (fn)
869 tree fn_raises = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn));
871 raises = merge_exception_specifiers (raises, fn_raises);
874 return raises;
877 /* Locate the dtor of TYPE. */
879 tree
880 locate_dtor (tree type, void *client ATTRIBUTE_UNUSED)
882 return CLASSTYPE_DESTRUCTORS (type);
885 /* Locate the default ctor of TYPE. */
887 tree
888 locate_ctor (tree type, void *client ATTRIBUTE_UNUSED)
890 tree fns;
892 if (!TYPE_HAS_DEFAULT_CONSTRUCTOR (type))
893 return NULL_TREE;
895 /* Call lookup_fnfields_1 to create the constructor declarations, if
896 necessary. */
897 if (CLASSTYPE_LAZY_DEFAULT_CTOR (type))
898 return lazily_declare_fn (sfk_constructor, type);
900 for (fns = CLASSTYPE_CONSTRUCTORS (type); fns; fns = OVL_NEXT (fns))
902 tree fn = OVL_CURRENT (fns);
903 tree parms = TYPE_ARG_TYPES (TREE_TYPE (fn));
905 parms = skip_artificial_parms_for (fn, parms);
907 if (sufficient_parms_p (parms))
908 return fn;
910 gcc_unreachable ();
913 struct copy_data
915 tree name;
916 int quals;
919 /* Locate the copy ctor or copy assignment of TYPE. CLIENT_
920 points to a COPY_DATA holding the name (NULL for the ctor)
921 and desired qualifiers of the source operand. */
923 tree
924 locate_copy (tree type, void *client_)
926 struct copy_data *client = (struct copy_data *)client_;
927 tree fns;
928 tree best = NULL_TREE;
929 bool excess_p = false;
931 if (client->name)
933 int ix;
934 ix = lookup_fnfields_1 (type, client->name);
935 if (ix < 0)
936 return NULL_TREE;
937 fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), ix);
939 else if (TYPE_HAS_INIT_REF (type))
941 /* If construction of the copy constructor was postponed, create
942 it now. */
943 if (CLASSTYPE_LAZY_COPY_CTOR (type))
944 lazily_declare_fn (sfk_copy_constructor, type);
945 if (CLASSTYPE_LAZY_MOVE_CTOR (type))
946 lazily_declare_fn (sfk_move_constructor, type);
947 fns = CLASSTYPE_CONSTRUCTORS (type);
949 else
950 return NULL_TREE;
951 for (; fns; fns = OVL_NEXT (fns))
953 tree fn = OVL_CURRENT (fns);
954 tree parms = TYPE_ARG_TYPES (TREE_TYPE (fn));
955 tree src_type;
956 int excess;
957 int quals;
959 parms = skip_artificial_parms_for (fn, parms);
960 if (!parms)
961 continue;
962 src_type = non_reference (TREE_VALUE (parms));
964 if (src_type == error_mark_node)
965 return NULL_TREE;
967 if (!same_type_ignoring_top_level_qualifiers_p (src_type, type))
968 continue;
969 if (!sufficient_parms_p (TREE_CHAIN (parms)))
970 continue;
971 quals = cp_type_quals (src_type);
972 if (client->quals & ~quals)
973 continue;
974 excess = quals & ~client->quals;
975 if (!best || (excess_p && !excess))
977 best = fn;
978 excess_p = excess;
980 else
981 /* Ambiguous */
982 return NULL_TREE;
984 return best;
987 /* Implicitly declare the special function indicated by KIND, as a
988 member of TYPE. For copy constructors and assignment operators,
989 CONST_P indicates whether these functions should take a const
990 reference argument or a non-const reference. Returns the
991 FUNCTION_DECL for the implicitly declared function. */
993 static tree
994 implicitly_declare_fn (special_function_kind kind, tree type, bool const_p)
996 tree fn;
997 tree parameter_types = void_list_node;
998 tree return_type;
999 tree fn_type;
1000 tree raises = empty_except_spec;
1001 tree rhs_parm_type = NULL_TREE;
1002 tree this_parm;
1003 tree name;
1004 HOST_WIDE_INT saved_processing_template_decl;
1006 /* Because we create declarations for implicitly declared functions
1007 lazily, we may be creating the declaration for a member of TYPE
1008 while in some completely different context. However, TYPE will
1009 never be a dependent class (because we never want to do lookups
1010 for implicitly defined functions in a dependent class).
1011 Furthermore, we must set PROCESSING_TEMPLATE_DECL to zero here
1012 because we only create clones for constructors and destructors
1013 when not in a template. */
1014 gcc_assert (!dependent_type_p (type));
1015 saved_processing_template_decl = processing_template_decl;
1016 processing_template_decl = 0;
1018 type = TYPE_MAIN_VARIANT (type);
1020 if (targetm.cxx.cdtor_returns_this () && !TYPE_FOR_JAVA (type))
1022 if (kind == sfk_destructor)
1023 /* See comment in check_special_function_return_type. */
1024 return_type = build_pointer_type (void_type_node);
1025 else
1026 return_type = build_pointer_type (type);
1028 else
1029 return_type = void_type_node;
1031 switch (kind)
1033 case sfk_destructor:
1034 /* Destructor. */
1035 name = constructor_name (type);
1036 raises = synthesize_exception_spec (type, &locate_dtor, 0);
1037 break;
1039 case sfk_constructor:
1040 /* Default constructor. */
1041 name = constructor_name (type);
1042 raises = synthesize_exception_spec (type, &locate_ctor, 0);
1043 break;
1045 case sfk_copy_constructor:
1046 case sfk_assignment_operator:
1047 case sfk_move_constructor:
1049 struct copy_data data;
1051 data.name = NULL;
1052 data.quals = 0;
1053 if (kind == sfk_assignment_operator)
1055 return_type = build_reference_type (type);
1056 name = ansi_assopname (NOP_EXPR);
1057 data.name = name;
1059 else
1060 name = constructor_name (type);
1062 if (const_p)
1064 data.quals = TYPE_QUAL_CONST;
1065 rhs_parm_type = build_qualified_type (type, TYPE_QUAL_CONST);
1067 else
1068 rhs_parm_type = type;
1069 rhs_parm_type
1070 = cp_build_reference_type (rhs_parm_type,
1071 kind == sfk_move_constructor);
1072 parameter_types = tree_cons (NULL_TREE, rhs_parm_type, parameter_types);
1073 raises = synthesize_exception_spec (type, &locate_copy, &data);
1074 break;
1076 default:
1077 gcc_unreachable ();
1080 /* Create the function. */
1081 fn_type = build_method_type_directly (type, return_type, parameter_types);
1082 if (raises)
1083 fn_type = build_exception_variant (fn_type, raises);
1084 fn = build_lang_decl (FUNCTION_DECL, name, fn_type);
1085 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (TYPE_NAME (type));
1086 if (kind == sfk_constructor || kind == sfk_copy_constructor
1087 || kind == sfk_move_constructor)
1088 DECL_CONSTRUCTOR_P (fn) = 1;
1089 else if (kind == sfk_destructor)
1090 DECL_DESTRUCTOR_P (fn) = 1;
1091 else
1093 DECL_ASSIGNMENT_OPERATOR_P (fn) = 1;
1094 SET_OVERLOADED_OPERATOR_CODE (fn, NOP_EXPR);
1097 /* If pointers to member functions use the least significant bit to
1098 indicate whether a function is virtual, ensure a pointer
1099 to this function will have that bit clear. */
1100 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
1101 && DECL_ALIGN (fn) < 2 * BITS_PER_UNIT)
1102 DECL_ALIGN (fn) = 2 * BITS_PER_UNIT;
1104 /* Create the explicit arguments. */
1105 if (rhs_parm_type)
1107 /* Note that this parameter is *not* marked DECL_ARTIFICIAL; we
1108 want its type to be included in the mangled function
1109 name. */
1110 DECL_ARGUMENTS (fn) = cp_build_parm_decl (NULL_TREE, rhs_parm_type);
1111 TREE_READONLY (DECL_ARGUMENTS (fn)) = 1;
1113 /* Add the "this" parameter. */
1114 this_parm = build_this_parm (fn_type, TYPE_UNQUALIFIED);
1115 TREE_CHAIN (this_parm) = DECL_ARGUMENTS (fn);
1116 DECL_ARGUMENTS (fn) = this_parm;
1118 grokclassfn (type, fn, kind == sfk_destructor ? DTOR_FLAG : NO_SPECIAL);
1119 set_linkage_according_to_type (type, fn);
1120 rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
1121 DECL_IN_AGGR_P (fn) = 1;
1122 DECL_ARTIFICIAL (fn) = 1;
1123 DECL_DEFAULTED_FN (fn) = 1;
1124 DECL_NOT_REALLY_EXTERN (fn) = 1;
1125 DECL_DECLARED_INLINE_P (fn) = 1;
1126 gcc_assert (!TREE_USED (fn));
1128 /* Restore PROCESSING_TEMPLATE_DECL. */
1129 processing_template_decl = saved_processing_template_decl;
1131 return fn;
1134 /* Gives any errors about defaulted functions which need to be deferred
1135 until the containing class is complete. */
1137 void
1138 defaulted_late_check (tree fn)
1140 /* Complain about invalid signature for defaulted fn. */
1141 tree ctx = DECL_CONTEXT (fn);
1142 special_function_kind kind = special_function_p (fn);
1143 bool fn_const_p = (copy_fn_p (fn) == 2);
1144 tree implicit_fn = implicitly_declare_fn (kind, ctx, fn_const_p);
1146 if (!same_type_p (TREE_TYPE (TREE_TYPE (fn)),
1147 TREE_TYPE (TREE_TYPE (implicit_fn)))
1148 || !compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
1149 TYPE_ARG_TYPES (TREE_TYPE (implicit_fn))))
1151 error ("defaulted declaration %q+D", fn);
1152 error_at (DECL_SOURCE_LOCATION (fn),
1153 "does not match expected signature %qD", implicit_fn);
1157 /* Returns true iff FN can be explicitly defaulted, and gives any
1158 errors if defaulting FN is ill-formed. */
1160 bool
1161 defaultable_fn_check (tree fn)
1163 special_function_kind kind = sfk_none;
1165 if (DECL_CONSTRUCTOR_P (fn))
1167 if (FUNCTION_FIRST_USER_PARMTYPE (fn) == void_list_node)
1168 kind = sfk_constructor;
1169 else if (copy_fn_p (fn) > 0
1170 && (TREE_CHAIN (FUNCTION_FIRST_USER_PARMTYPE (fn))
1171 == void_list_node))
1172 kind = sfk_copy_constructor;
1173 else if (move_fn_p (fn))
1174 kind = sfk_move_constructor;
1176 else if (DECL_DESTRUCTOR_P (fn))
1177 kind = sfk_destructor;
1178 else if (DECL_ASSIGNMENT_OPERATOR_P (fn)
1179 && DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR
1180 && copy_fn_p (fn))
1181 kind = sfk_assignment_operator;
1183 if (kind == sfk_none)
1185 error ("%qD cannot be defaulted", fn);
1186 return false;
1188 else
1190 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
1191 for (; t && t != void_list_node; t = TREE_CHAIN (t))
1192 if (TREE_PURPOSE (t))
1194 error ("defaulted function %q+D with default argument", fn);
1195 break;
1197 if (TYPE_BEING_DEFINED (DECL_CONTEXT (fn)))
1199 if (DECL_NONCONVERTING_P (fn))
1200 error ("%qD declared explicit cannot be defaulted in the class "
1201 "body", fn);
1202 if (current_access_specifier != access_public_node)
1203 error ("%qD declared with non-public access cannot be defaulted "
1204 "in the class body", fn);
1205 if (TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn)))
1206 error ("function %q+D defaulted on its first declaration "
1207 "must not have an exception-specification", fn);
1209 else if (!processing_template_decl)
1210 defaulted_late_check (fn);
1212 return true;
1216 /* Add an implicit declaration to TYPE for the kind of function
1217 indicated by SFK. Return the FUNCTION_DECL for the new implicit
1218 declaration. */
1220 tree
1221 lazily_declare_fn (special_function_kind sfk, tree type)
1223 tree fn;
1224 bool const_p;
1226 /* Figure out whether or not the argument has a const reference
1227 type. */
1228 if (sfk == sfk_copy_constructor)
1229 const_p = TYPE_HAS_CONST_INIT_REF (type);
1230 else if (sfk == sfk_assignment_operator)
1231 const_p = TYPE_HAS_CONST_ASSIGN_REF (type);
1232 else
1233 /* In this case, CONST_P will be ignored. */
1234 const_p = false;
1235 /* Declare the function. */
1236 fn = implicitly_declare_fn (sfk, type, const_p);
1237 /* A destructor may be virtual. */
1238 if (sfk == sfk_destructor)
1239 check_for_override (fn, type);
1240 /* Add it to CLASSTYPE_METHOD_VEC. */
1241 add_method (type, fn, NULL_TREE);
1242 /* Add it to TYPE_METHODS. */
1243 if (sfk == sfk_destructor
1244 && DECL_VIRTUAL_P (fn)
1245 && abi_version_at_least (2))
1246 /* The ABI requires that a virtual destructor go at the end of the
1247 vtable. */
1248 TYPE_METHODS (type) = chainon (TYPE_METHODS (type), fn);
1249 else
1251 /* G++ 3.2 put the implicit destructor at the *beginning* of the
1252 TYPE_METHODS list, which cause the destructor to be emitted
1253 in an incorrect location in the vtable. */
1254 if (warn_abi && sfk == sfk_destructor && DECL_VIRTUAL_P (fn))
1255 warning (OPT_Wabi, "vtable layout for class %qT may not be ABI-compliant"
1256 "and may change in a future version of GCC due to "
1257 "implicit virtual destructor",
1258 type);
1259 TREE_CHAIN (fn) = TYPE_METHODS (type);
1260 TYPE_METHODS (type) = fn;
1262 maybe_add_class_template_decl_list (type, fn, /*friend_p=*/0);
1263 if (sfk == sfk_assignment_operator)
1264 CLASSTYPE_LAZY_ASSIGNMENT_OP (type) = 0;
1265 else
1267 /* Remember that the function has been created. */
1268 if (sfk == sfk_constructor)
1269 CLASSTYPE_LAZY_DEFAULT_CTOR (type) = 0;
1270 else if (sfk == sfk_copy_constructor)
1271 CLASSTYPE_LAZY_COPY_CTOR (type) = 0;
1272 else if (sfk == sfk_move_constructor)
1273 CLASSTYPE_LAZY_MOVE_CTOR (type) = 0;
1274 else if (sfk == sfk_destructor)
1275 CLASSTYPE_LAZY_DESTRUCTOR (type) = 0;
1276 /* Create appropriate clones. */
1277 clone_function_decl (fn, /*update_method_vec=*/true);
1280 return fn;
1283 /* Given a FUNCTION_DECL FN and a chain LIST, skip as many elements of LIST
1284 as there are artificial parms in FN. */
1286 tree
1287 skip_artificial_parms_for (const_tree fn, tree list)
1289 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
1290 list = TREE_CHAIN (list);
1291 else
1292 return list;
1294 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
1295 list = TREE_CHAIN (list);
1296 if (DECL_HAS_VTT_PARM_P (fn))
1297 list = TREE_CHAIN (list);
1298 return list;
1301 /* Given a FUNCTION_DECL FN and a chain LIST, return the number of
1302 artificial parms in FN. */
1305 num_artificial_parms_for (const_tree fn)
1307 int count = 0;
1309 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
1310 count++;
1311 else
1312 return 0;
1314 if (DECL_HAS_IN_CHARGE_PARM_P (fn))
1315 count++;
1316 if (DECL_HAS_VTT_PARM_P (fn))
1317 count++;
1318 return count;
1322 #include "gt-cp-method.h"