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