]> gcc.gnu.org Git - gcc.git/blob - gcc/cp/class.c
re PR c++/43120 (Virtual inheritance with covariant return type confuses GCC)
[gcc.git] / gcc / cp / class.c
1 /* Functions related to building classes and their related objects.
2 Copyright (C) 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
4 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 3, 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 COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
22
23
24 /* High-level class interface. */
25
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 "flags.h"
33 #include "output.h"
34 #include "toplev.h"
35 #include "target.h"
36 #include "convert.h"
37 #include "cgraph.h"
38 #include "tree-dump.h"
39 #include "splay-tree.h"
40
41 /* The number of nested classes being processed. If we are not in the
42 scope of any class, this is zero. */
43
44 int current_class_depth;
45
46 /* In order to deal with nested classes, we keep a stack of classes.
47 The topmost entry is the innermost class, and is the entry at index
48 CURRENT_CLASS_DEPTH */
49
50 typedef struct class_stack_node {
51 /* The name of the class. */
52 tree name;
53
54 /* The _TYPE node for the class. */
55 tree type;
56
57 /* The access specifier pending for new declarations in the scope of
58 this class. */
59 tree access;
60
61 /* If were defining TYPE, the names used in this class. */
62 splay_tree names_used;
63
64 /* Nonzero if this class is no longer open, because of a call to
65 push_to_top_level. */
66 size_t hidden;
67 }* class_stack_node_t;
68
69 typedef struct vtbl_init_data_s
70 {
71 /* The base for which we're building initializers. */
72 tree binfo;
73 /* The type of the most-derived type. */
74 tree derived;
75 /* The binfo for the dynamic type. This will be TYPE_BINFO (derived),
76 unless ctor_vtbl_p is true. */
77 tree rtti_binfo;
78 /* The negative-index vtable initializers built up so far. These
79 are in order from least negative index to most negative index. */
80 VEC(constructor_elt,gc) *inits;
81 /* The binfo for the virtual base for which we're building
82 vcall offset initializers. */
83 tree vbase;
84 /* The functions in vbase for which we have already provided vcall
85 offsets. */
86 VEC(tree,gc) *fns;
87 /* The vtable index of the next vcall or vbase offset. */
88 tree index;
89 /* Nonzero if we are building the initializer for the primary
90 vtable. */
91 int primary_vtbl_p;
92 /* Nonzero if we are building the initializer for a construction
93 vtable. */
94 int ctor_vtbl_p;
95 /* True when adding vcall offset entries to the vtable. False when
96 merely computing the indices. */
97 bool generate_vcall_entries;
98 } vtbl_init_data;
99
100 /* The type of a function passed to walk_subobject_offsets. */
101 typedef int (*subobject_offset_fn) (tree, tree, splay_tree);
102
103 /* The stack itself. This is a dynamically resized array. The
104 number of elements allocated is CURRENT_CLASS_STACK_SIZE. */
105 static int current_class_stack_size;
106 static class_stack_node_t current_class_stack;
107
108 /* The size of the largest empty class seen in this translation unit. */
109 static GTY (()) tree sizeof_biggest_empty_class;
110
111 /* An array of all local classes present in this translation unit, in
112 declaration order. */
113 VEC(tree,gc) *local_classes;
114
115 static tree get_vfield_name (tree);
116 static void finish_struct_anon (tree);
117 static tree get_vtable_name (tree);
118 static tree get_basefndecls (tree, tree);
119 static int build_primary_vtable (tree, tree);
120 static int build_secondary_vtable (tree);
121 static void finish_vtbls (tree);
122 static void modify_vtable_entry (tree, tree, tree, tree, tree *);
123 static void finish_struct_bits (tree);
124 static int alter_access (tree, tree, tree);
125 static void handle_using_decl (tree, tree);
126 static tree dfs_modify_vtables (tree, void *);
127 static tree modify_all_vtables (tree, tree);
128 static void determine_primary_bases (tree);
129 static void finish_struct_methods (tree);
130 static void maybe_warn_about_overly_private_class (tree);
131 static int method_name_cmp (const void *, const void *);
132 static int resort_method_name_cmp (const void *, const void *);
133 static void add_implicitly_declared_members (tree, int, int);
134 static tree fixed_type_or_null (tree, int *, int *);
135 static tree build_simple_base_path (tree expr, tree binfo);
136 static tree build_vtbl_ref_1 (tree, tree);
137 static void build_vtbl_initializer (tree, tree, tree, tree, int *,
138 VEC(constructor_elt,gc) **);
139 static int count_fields (tree);
140 static int add_fields_to_record_type (tree, struct sorted_fields_type*, int);
141 static bool check_bitfield_decl (tree);
142 static void check_field_decl (tree, tree, int *, int *, int *);
143 static void check_field_decls (tree, tree *, int *, int *);
144 static tree *build_base_field (record_layout_info, tree, splay_tree, tree *);
145 static void build_base_fields (record_layout_info, splay_tree, tree *);
146 static void check_methods (tree);
147 static void remove_zero_width_bit_fields (tree);
148 static void check_bases (tree, int *, int *);
149 static void check_bases_and_members (tree);
150 static tree create_vtable_ptr (tree, tree *);
151 static void include_empty_classes (record_layout_info);
152 static void layout_class_type (tree, tree *);
153 static void propagate_binfo_offsets (tree, tree);
154 static void layout_virtual_bases (record_layout_info, splay_tree);
155 static void build_vbase_offset_vtbl_entries (tree, vtbl_init_data *);
156 static void add_vcall_offset_vtbl_entries_r (tree, vtbl_init_data *);
157 static void add_vcall_offset_vtbl_entries_1 (tree, vtbl_init_data *);
158 static void build_vcall_offset_vtbl_entries (tree, vtbl_init_data *);
159 static void add_vcall_offset (tree, tree, vtbl_init_data *);
160 static void layout_vtable_decl (tree, int);
161 static tree dfs_find_final_overrider_pre (tree, void *);
162 static tree dfs_find_final_overrider_post (tree, void *);
163 static tree find_final_overrider (tree, tree, tree);
164 static int make_new_vtable (tree, tree);
165 static tree get_primary_binfo (tree);
166 static int maybe_indent_hierarchy (FILE *, int, int);
167 static tree dump_class_hierarchy_r (FILE *, int, tree, tree, int);
168 static void dump_class_hierarchy (tree);
169 static void dump_class_hierarchy_1 (FILE *, int, tree);
170 static void dump_array (FILE *, tree);
171 static void dump_vtable (tree, tree, tree);
172 static void dump_vtt (tree, tree);
173 static void dump_thunk (FILE *, int, tree);
174 static tree build_vtable (tree, tree, tree);
175 static void initialize_vtable (tree, VEC(constructor_elt,gc) *);
176 static void layout_nonempty_base_or_field (record_layout_info,
177 tree, tree, splay_tree);
178 static tree end_of_class (tree, int);
179 static bool layout_empty_base (record_layout_info, tree, tree, splay_tree);
180 static void accumulate_vtbl_inits (tree, tree, tree, tree, tree,
181 VEC(constructor_elt,gc) **);
182 static void dfs_accumulate_vtbl_inits (tree, tree, tree, tree, tree,
183 VEC(constructor_elt,gc) **);
184 static void build_rtti_vtbl_entries (tree, vtbl_init_data *);
185 static void build_vcall_and_vbase_vtbl_entries (tree, vtbl_init_data *);
186 static void clone_constructors_and_destructors (tree);
187 static tree build_clone (tree, tree);
188 static void update_vtable_entry_for_fn (tree, tree, tree, tree *, unsigned);
189 static void build_ctor_vtbl_group (tree, tree);
190 static void build_vtt (tree);
191 static tree binfo_ctor_vtable (tree);
192 static void build_vtt_inits (tree, tree, VEC(constructor_elt,gc) **, tree *);
193 static tree dfs_build_secondary_vptr_vtt_inits (tree, void *);
194 static tree dfs_fixup_binfo_vtbls (tree, void *);
195 static int record_subobject_offset (tree, tree, splay_tree);
196 static int check_subobject_offset (tree, tree, splay_tree);
197 static int walk_subobject_offsets (tree, subobject_offset_fn,
198 tree, splay_tree, tree, int);
199 static void record_subobject_offsets (tree, tree, splay_tree, bool);
200 static int layout_conflict_p (tree, tree, splay_tree, int);
201 static int splay_tree_compare_integer_csts (splay_tree_key k1,
202 splay_tree_key k2);
203 static void warn_about_ambiguous_bases (tree);
204 static bool type_requires_array_cookie (tree);
205 static bool contains_empty_class_p (tree);
206 static bool base_derived_from (tree, tree);
207 static int empty_base_at_nonzero_offset_p (tree, tree, splay_tree);
208 static tree end_of_base (tree);
209 static tree get_vcall_index (tree, tree);
210
211 /* Variables shared between class.c and call.c. */
212
213 #ifdef GATHER_STATISTICS
214 int n_vtables = 0;
215 int n_vtable_entries = 0;
216 int n_vtable_searches = 0;
217 int n_vtable_elems = 0;
218 int n_convert_harshness = 0;
219 int n_compute_conversion_costs = 0;
220 int n_inner_fields_searched = 0;
221 #endif
222
223 /* Convert to or from a base subobject. EXPR is an expression of type
224 `A' or `A*', an expression of type `B' or `B*' is returned. To
225 convert A to a base B, CODE is PLUS_EXPR and BINFO is the binfo for
226 the B base instance within A. To convert base A to derived B, CODE
227 is MINUS_EXPR and BINFO is the binfo for the A instance within B.
228 In this latter case, A must not be a morally virtual base of B.
229 NONNULL is true if EXPR is known to be non-NULL (this is only
230 needed when EXPR is of pointer type). CV qualifiers are preserved
231 from EXPR. */
232
233 tree
234 build_base_path (enum tree_code code,
235 tree expr,
236 tree binfo,
237 int nonnull)
238 {
239 tree v_binfo = NULL_TREE;
240 tree d_binfo = NULL_TREE;
241 tree probe;
242 tree offset;
243 tree target_type;
244 tree null_test = NULL;
245 tree ptr_target_type;
246 int fixed_type_p;
247 int want_pointer = TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE;
248 bool has_empty = false;
249 bool virtual_access;
250
251 if (expr == error_mark_node || binfo == error_mark_node || !binfo)
252 return error_mark_node;
253
254 for (probe = binfo; probe; probe = BINFO_INHERITANCE_CHAIN (probe))
255 {
256 d_binfo = probe;
257 if (is_empty_class (BINFO_TYPE (probe)))
258 has_empty = true;
259 if (!v_binfo && BINFO_VIRTUAL_P (probe))
260 v_binfo = probe;
261 }
262
263 probe = TYPE_MAIN_VARIANT (TREE_TYPE (expr));
264 if (want_pointer)
265 probe = TYPE_MAIN_VARIANT (TREE_TYPE (probe));
266
267 gcc_assert ((code == MINUS_EXPR
268 && SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), probe))
269 || (code == PLUS_EXPR
270 && SAME_BINFO_TYPE_P (BINFO_TYPE (d_binfo), probe)));
271
272 if (binfo == d_binfo)
273 /* Nothing to do. */
274 return expr;
275
276 if (code == MINUS_EXPR && v_binfo)
277 {
278 error ("cannot convert from base %qT to derived type %qT via virtual base %qT",
279 BINFO_TYPE (binfo), BINFO_TYPE (d_binfo), BINFO_TYPE (v_binfo));
280 return error_mark_node;
281 }
282
283 if (!want_pointer)
284 /* This must happen before the call to save_expr. */
285 expr = cp_build_unary_op (ADDR_EXPR, expr, 0, tf_warning_or_error);
286 else
287 expr = mark_rvalue_use (expr);
288
289 offset = BINFO_OFFSET (binfo);
290 fixed_type_p = resolves_to_fixed_type_p (expr, &nonnull);
291 target_type = code == PLUS_EXPR ? BINFO_TYPE (binfo) : BINFO_TYPE (d_binfo);
292
293 /* Do we need to look in the vtable for the real offset? */
294 virtual_access = (v_binfo && fixed_type_p <= 0);
295
296 /* Don't bother with the calculations inside sizeof; they'll ICE if the
297 source type is incomplete and the pointer value doesn't matter. */
298 if (cp_unevaluated_operand != 0)
299 {
300 expr = build_nop (build_pointer_type (target_type), expr);
301 if (!want_pointer)
302 expr = build_indirect_ref (EXPR_LOCATION (expr), expr, RO_NULL);
303 return expr;
304 }
305
306 /* Do we need to check for a null pointer? */
307 if (want_pointer && !nonnull)
308 {
309 /* If we know the conversion will not actually change the value
310 of EXPR, then we can avoid testing the expression for NULL.
311 We have to avoid generating a COMPONENT_REF for a base class
312 field, because other parts of the compiler know that such
313 expressions are always non-NULL. */
314 if (!virtual_access && integer_zerop (offset))
315 {
316 tree class_type;
317 /* TARGET_TYPE has been extracted from BINFO, and, is
318 therefore always cv-unqualified. Extract the
319 cv-qualifiers from EXPR so that the expression returned
320 matches the input. */
321 class_type = TREE_TYPE (TREE_TYPE (expr));
322 target_type
323 = cp_build_qualified_type (target_type,
324 cp_type_quals (class_type));
325 return build_nop (build_pointer_type (target_type), expr);
326 }
327 null_test = error_mark_node;
328 }
329
330 /* Protect against multiple evaluation if necessary. */
331 if (TREE_SIDE_EFFECTS (expr) && (null_test || virtual_access))
332 expr = save_expr (expr);
333
334 /* Now that we've saved expr, build the real null test. */
335 if (null_test)
336 {
337 tree zero = cp_convert (TREE_TYPE (expr), integer_zero_node);
338 null_test = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
339 expr, zero);
340 }
341
342 /* If this is a simple base reference, express it as a COMPONENT_REF. */
343 if (code == PLUS_EXPR && !virtual_access
344 /* We don't build base fields for empty bases, and they aren't very
345 interesting to the optimizers anyway. */
346 && !has_empty)
347 {
348 expr = cp_build_indirect_ref (expr, RO_NULL, tf_warning_or_error);
349 expr = build_simple_base_path (expr, binfo);
350 if (want_pointer)
351 expr = build_address (expr);
352 target_type = TREE_TYPE (expr);
353 goto out;
354 }
355
356 if (virtual_access)
357 {
358 /* Going via virtual base V_BINFO. We need the static offset
359 from V_BINFO to BINFO, and the dynamic offset from D_BINFO to
360 V_BINFO. That offset is an entry in D_BINFO's vtable. */
361 tree v_offset;
362
363 if (fixed_type_p < 0 && in_base_initializer)
364 {
365 /* In a base member initializer, we cannot rely on the
366 vtable being set up. We have to indirect via the
367 vtt_parm. */
368 tree t;
369
370 t = TREE_TYPE (TYPE_VFIELD (current_class_type));
371 t = build_pointer_type (t);
372 v_offset = convert (t, current_vtt_parm);
373 v_offset = cp_build_indirect_ref (v_offset, RO_NULL,
374 tf_warning_or_error);
375 }
376 else
377 v_offset = build_vfield_ref (cp_build_indirect_ref (expr, RO_NULL,
378 tf_warning_or_error),
379 TREE_TYPE (TREE_TYPE (expr)));
380
381 v_offset = build2 (POINTER_PLUS_EXPR, TREE_TYPE (v_offset),
382 v_offset, fold_convert (sizetype, BINFO_VPTR_FIELD (v_binfo)));
383 v_offset = build1 (NOP_EXPR,
384 build_pointer_type (ptrdiff_type_node),
385 v_offset);
386 v_offset = cp_build_indirect_ref (v_offset, RO_NULL, tf_warning_or_error);
387 TREE_CONSTANT (v_offset) = 1;
388
389 offset = convert_to_integer (ptrdiff_type_node,
390 size_diffop_loc (input_location, offset,
391 BINFO_OFFSET (v_binfo)));
392
393 if (!integer_zerop (offset))
394 v_offset = build2 (code, ptrdiff_type_node, v_offset, offset);
395
396 if (fixed_type_p < 0)
397 /* Negative fixed_type_p means this is a constructor or destructor;
398 virtual base layout is fixed in in-charge [cd]tors, but not in
399 base [cd]tors. */
400 offset = build3 (COND_EXPR, ptrdiff_type_node,
401 build2 (EQ_EXPR, boolean_type_node,
402 current_in_charge_parm, integer_zero_node),
403 v_offset,
404 convert_to_integer (ptrdiff_type_node,
405 BINFO_OFFSET (binfo)));
406 else
407 offset = v_offset;
408 }
409
410 target_type = cp_build_qualified_type
411 (target_type, cp_type_quals (TREE_TYPE (TREE_TYPE (expr))));
412 ptr_target_type = build_pointer_type (target_type);
413 if (want_pointer)
414 target_type = ptr_target_type;
415
416 expr = build1 (NOP_EXPR, ptr_target_type, expr);
417
418 if (!integer_zerop (offset))
419 {
420 offset = fold_convert (sizetype, offset);
421 if (code == MINUS_EXPR)
422 offset = fold_build1_loc (input_location, NEGATE_EXPR, sizetype, offset);
423 expr = build2 (POINTER_PLUS_EXPR, ptr_target_type, expr, offset);
424 }
425 else
426 null_test = NULL;
427
428 if (!want_pointer)
429 expr = cp_build_indirect_ref (expr, RO_NULL, tf_warning_or_error);
430
431 out:
432 if (null_test)
433 expr = fold_build3_loc (input_location, COND_EXPR, target_type, null_test, expr,
434 fold_build1_loc (input_location, NOP_EXPR, target_type,
435 integer_zero_node));
436
437 return expr;
438 }
439
440 /* Subroutine of build_base_path; EXPR and BINFO are as in that function.
441 Perform a derived-to-base conversion by recursively building up a
442 sequence of COMPONENT_REFs to the appropriate base fields. */
443
444 static tree
445 build_simple_base_path (tree expr, tree binfo)
446 {
447 tree type = BINFO_TYPE (binfo);
448 tree d_binfo = BINFO_INHERITANCE_CHAIN (binfo);
449 tree field;
450
451 if (d_binfo == NULL_TREE)
452 {
453 tree temp;
454
455 gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (expr)) == type);
456
457 /* Transform `(a, b).x' into `(*(a, &b)).x', `(a ? b : c).x'
458 into `(*(a ? &b : &c)).x', and so on. A COND_EXPR is only
459 an lvalue in the front end; only _DECLs and _REFs are lvalues
460 in the back end. */
461 temp = unary_complex_lvalue (ADDR_EXPR, expr);
462 if (temp)
463 expr = cp_build_indirect_ref (temp, RO_NULL, tf_warning_or_error);
464
465 return expr;
466 }
467
468 /* Recurse. */
469 expr = build_simple_base_path (expr, d_binfo);
470
471 for (field = TYPE_FIELDS (BINFO_TYPE (d_binfo));
472 field; field = TREE_CHAIN (field))
473 /* Is this the base field created by build_base_field? */
474 if (TREE_CODE (field) == FIELD_DECL
475 && DECL_FIELD_IS_BASE (field)
476 && TREE_TYPE (field) == type)
477 {
478 /* We don't use build_class_member_access_expr here, as that
479 has unnecessary checks, and more importantly results in
480 recursive calls to dfs_walk_once. */
481 int type_quals = cp_type_quals (TREE_TYPE (expr));
482
483 expr = build3 (COMPONENT_REF,
484 cp_build_qualified_type (type, type_quals),
485 expr, field, NULL_TREE);
486 expr = fold_if_not_in_template (expr);
487
488 /* Mark the expression const or volatile, as appropriate.
489 Even though we've dealt with the type above, we still have
490 to mark the expression itself. */
491 if (type_quals & TYPE_QUAL_CONST)
492 TREE_READONLY (expr) = 1;
493 if (type_quals & TYPE_QUAL_VOLATILE)
494 TREE_THIS_VOLATILE (expr) = 1;
495
496 return expr;
497 }
498
499 /* Didn't find the base field?!? */
500 gcc_unreachable ();
501 }
502
503 /* Convert OBJECT to the base TYPE. OBJECT is an expression whose
504 type is a class type or a pointer to a class type. In the former
505 case, TYPE is also a class type; in the latter it is another
506 pointer type. If CHECK_ACCESS is true, an error message is emitted
507 if TYPE is inaccessible. If OBJECT has pointer type, the value is
508 assumed to be non-NULL. */
509
510 tree
511 convert_to_base (tree object, tree type, bool check_access, bool nonnull,
512 tsubst_flags_t complain)
513 {
514 tree binfo;
515 tree object_type;
516 base_access access;
517
518 if (TYPE_PTR_P (TREE_TYPE (object)))
519 {
520 object_type = TREE_TYPE (TREE_TYPE (object));
521 type = TREE_TYPE (type);
522 }
523 else
524 object_type = TREE_TYPE (object);
525
526 access = check_access ? ba_check : ba_unique;
527 if (!(complain & tf_error))
528 access |= ba_quiet;
529 binfo = lookup_base (object_type, type,
530 access,
531 NULL);
532 if (!binfo || binfo == error_mark_node)
533 return error_mark_node;
534
535 return build_base_path (PLUS_EXPR, object, binfo, nonnull);
536 }
537
538 /* EXPR is an expression with unqualified class type. BASE is a base
539 binfo of that class type. Returns EXPR, converted to the BASE
540 type. This function assumes that EXPR is the most derived class;
541 therefore virtual bases can be found at their static offsets. */
542
543 tree
544 convert_to_base_statically (tree expr, tree base)
545 {
546 tree expr_type;
547
548 expr_type = TREE_TYPE (expr);
549 if (!SAME_BINFO_TYPE_P (BINFO_TYPE (base), expr_type))
550 {
551 tree pointer_type;
552
553 pointer_type = build_pointer_type (expr_type);
554
555 /* We use fold_build2 and fold_convert below to simplify the trees
556 provided to the optimizers. It is not safe to call these functions
557 when processing a template because they do not handle C++-specific
558 trees. */
559 gcc_assert (!processing_template_decl);
560 expr = cp_build_unary_op (ADDR_EXPR, expr, /*noconvert=*/1,
561 tf_warning_or_error);
562 if (!integer_zerop (BINFO_OFFSET (base)))
563 expr = fold_build2_loc (input_location,
564 POINTER_PLUS_EXPR, pointer_type, expr,
565 fold_convert (sizetype, BINFO_OFFSET (base)));
566 expr = fold_convert (build_pointer_type (BINFO_TYPE (base)), expr);
567 expr = build_fold_indirect_ref_loc (input_location, expr);
568 }
569
570 return expr;
571 }
572
573 \f
574 tree
575 build_vfield_ref (tree datum, tree type)
576 {
577 tree vfield, vcontext;
578
579 if (datum == error_mark_node)
580 return error_mark_node;
581
582 /* First, convert to the requested type. */
583 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (datum), type))
584 datum = convert_to_base (datum, type, /*check_access=*/false,
585 /*nonnull=*/true, tf_warning_or_error);
586
587 /* Second, the requested type may not be the owner of its own vptr.
588 If not, convert to the base class that owns it. We cannot use
589 convert_to_base here, because VCONTEXT may appear more than once
590 in the inheritance hierarchy of TYPE, and thus direct conversion
591 between the types may be ambiguous. Following the path back up
592 one step at a time via primary bases avoids the problem. */
593 vfield = TYPE_VFIELD (type);
594 vcontext = DECL_CONTEXT (vfield);
595 while (!same_type_ignoring_top_level_qualifiers_p (vcontext, type))
596 {
597 datum = build_simple_base_path (datum, CLASSTYPE_PRIMARY_BINFO (type));
598 type = TREE_TYPE (datum);
599 }
600
601 return build3 (COMPONENT_REF, TREE_TYPE (vfield), datum, vfield, NULL_TREE);
602 }
603
604 /* Given an object INSTANCE, return an expression which yields the
605 vtable element corresponding to INDEX. There are many special
606 cases for INSTANCE which we take care of here, mainly to avoid
607 creating extra tree nodes when we don't have to. */
608
609 static tree
610 build_vtbl_ref_1 (tree instance, tree idx)
611 {
612 tree aref;
613 tree vtbl = NULL_TREE;
614
615 /* Try to figure out what a reference refers to, and
616 access its virtual function table directly. */
617
618 int cdtorp = 0;
619 tree fixed_type = fixed_type_or_null (instance, NULL, &cdtorp);
620
621 tree basetype = non_reference (TREE_TYPE (instance));
622
623 if (fixed_type && !cdtorp)
624 {
625 tree binfo = lookup_base (fixed_type, basetype,
626 ba_unique | ba_quiet, NULL);
627 if (binfo)
628 vtbl = unshare_expr (BINFO_VTABLE (binfo));
629 }
630
631 if (!vtbl)
632 vtbl = build_vfield_ref (instance, basetype);
633
634 aref = build_array_ref (input_location, vtbl, idx);
635 TREE_CONSTANT (aref) |= TREE_CONSTANT (vtbl) && TREE_CONSTANT (idx);
636
637 return aref;
638 }
639
640 tree
641 build_vtbl_ref (tree instance, tree idx)
642 {
643 tree aref = build_vtbl_ref_1 (instance, idx);
644
645 return aref;
646 }
647
648 /* Given a stable object pointer INSTANCE_PTR, return an expression which
649 yields a function pointer corresponding to vtable element INDEX. */
650
651 tree
652 build_vfn_ref (tree instance_ptr, tree idx)
653 {
654 tree aref;
655
656 aref = build_vtbl_ref_1 (cp_build_indirect_ref (instance_ptr, RO_NULL,
657 tf_warning_or_error),
658 idx);
659
660 /* When using function descriptors, the address of the
661 vtable entry is treated as a function pointer. */
662 if (TARGET_VTABLE_USES_DESCRIPTORS)
663 aref = build1 (NOP_EXPR, TREE_TYPE (aref),
664 cp_build_unary_op (ADDR_EXPR, aref, /*noconvert=*/1,
665 tf_warning_or_error));
666
667 /* Remember this as a method reference, for later devirtualization. */
668 aref = build3 (OBJ_TYPE_REF, TREE_TYPE (aref), aref, instance_ptr, idx);
669
670 return aref;
671 }
672
673 /* Return the name of the virtual function table (as an IDENTIFIER_NODE)
674 for the given TYPE. */
675
676 static tree
677 get_vtable_name (tree type)
678 {
679 return mangle_vtbl_for_type (type);
680 }
681
682 /* DECL is an entity associated with TYPE, like a virtual table or an
683 implicitly generated constructor. Determine whether or not DECL
684 should have external or internal linkage at the object file
685 level. This routine does not deal with COMDAT linkage and other
686 similar complexities; it simply sets TREE_PUBLIC if it possible for
687 entities in other translation units to contain copies of DECL, in
688 the abstract. */
689
690 void
691 set_linkage_according_to_type (tree type, tree decl)
692 {
693 /* If TYPE involves a local class in a function with internal
694 linkage, then DECL should have internal linkage too. Other local
695 classes have no linkage -- but if their containing functions
696 have external linkage, it makes sense for DECL to have external
697 linkage too. That will allow template definitions to be merged,
698 for example. */
699 if (no_linkage_check (type, /*relaxed_p=*/true))
700 {
701 TREE_PUBLIC (decl) = 0;
702 DECL_INTERFACE_KNOWN (decl) = 1;
703 }
704 else
705 TREE_PUBLIC (decl) = 1;
706 }
707
708 /* Create a VAR_DECL for a primary or secondary vtable for CLASS_TYPE.
709 (For a secondary vtable for B-in-D, CLASS_TYPE should be D, not B.)
710 Use NAME for the name of the vtable, and VTABLE_TYPE for its type. */
711
712 static tree
713 build_vtable (tree class_type, tree name, tree vtable_type)
714 {
715 tree decl;
716
717 decl = build_lang_decl (VAR_DECL, name, vtable_type);
718 /* vtable names are already mangled; give them their DECL_ASSEMBLER_NAME
719 now to avoid confusion in mangle_decl. */
720 SET_DECL_ASSEMBLER_NAME (decl, name);
721 DECL_CONTEXT (decl) = class_type;
722 DECL_ARTIFICIAL (decl) = 1;
723 TREE_STATIC (decl) = 1;
724 TREE_READONLY (decl) = 1;
725 DECL_VIRTUAL_P (decl) = 1;
726 DECL_ALIGN (decl) = TARGET_VTABLE_ENTRY_ALIGN;
727 DECL_VTABLE_OR_VTT_P (decl) = 1;
728 /* At one time the vtable info was grabbed 2 words at a time. This
729 fails on sparc unless you have 8-byte alignment. (tiemann) */
730 DECL_ALIGN (decl) = MAX (TYPE_ALIGN (double_type_node),
731 DECL_ALIGN (decl));
732 set_linkage_according_to_type (class_type, decl);
733 /* The vtable has not been defined -- yet. */
734 DECL_EXTERNAL (decl) = 1;
735 DECL_NOT_REALLY_EXTERN (decl) = 1;
736
737 /* Mark the VAR_DECL node representing the vtable itself as a
738 "gratuitous" one, thereby forcing dwarfout.c to ignore it. It
739 is rather important that such things be ignored because any
740 effort to actually generate DWARF for them will run into
741 trouble when/if we encounter code like:
742
743 #pragma interface
744 struct S { virtual void member (); };
745
746 because the artificial declaration of the vtable itself (as
747 manufactured by the g++ front end) will say that the vtable is
748 a static member of `S' but only *after* the debug output for
749 the definition of `S' has already been output. This causes
750 grief because the DWARF entry for the definition of the vtable
751 will try to refer back to an earlier *declaration* of the
752 vtable as a static member of `S' and there won't be one. We
753 might be able to arrange to have the "vtable static member"
754 attached to the member list for `S' before the debug info for
755 `S' get written (which would solve the problem) but that would
756 require more intrusive changes to the g++ front end. */
757 DECL_IGNORED_P (decl) = 1;
758
759 return decl;
760 }
761
762 /* Get the VAR_DECL of the vtable for TYPE. TYPE need not be polymorphic,
763 or even complete. If this does not exist, create it. If COMPLETE is
764 nonzero, then complete the definition of it -- that will render it
765 impossible to actually build the vtable, but is useful to get at those
766 which are known to exist in the runtime. */
767
768 tree
769 get_vtable_decl (tree type, int complete)
770 {
771 tree decl;
772
773 if (CLASSTYPE_VTABLES (type))
774 return CLASSTYPE_VTABLES (type);
775
776 decl = build_vtable (type, get_vtable_name (type), vtbl_type_node);
777 CLASSTYPE_VTABLES (type) = decl;
778
779 if (complete)
780 {
781 DECL_EXTERNAL (decl) = 1;
782 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
783 }
784
785 return decl;
786 }
787
788 /* Build the primary virtual function table for TYPE. If BINFO is
789 non-NULL, build the vtable starting with the initial approximation
790 that it is the same as the one which is the head of the association
791 list. Returns a nonzero value if a new vtable is actually
792 created. */
793
794 static int
795 build_primary_vtable (tree binfo, tree type)
796 {
797 tree decl;
798 tree virtuals;
799
800 decl = get_vtable_decl (type, /*complete=*/0);
801
802 if (binfo)
803 {
804 if (BINFO_NEW_VTABLE_MARKED (binfo))
805 /* We have already created a vtable for this base, so there's
806 no need to do it again. */
807 return 0;
808
809 virtuals = copy_list (BINFO_VIRTUALS (binfo));
810 TREE_TYPE (decl) = TREE_TYPE (get_vtbl_decl_for_binfo (binfo));
811 DECL_SIZE (decl) = TYPE_SIZE (TREE_TYPE (decl));
812 DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (TREE_TYPE (decl));
813 }
814 else
815 {
816 gcc_assert (TREE_TYPE (decl) == vtbl_type_node);
817 virtuals = NULL_TREE;
818 }
819
820 #ifdef GATHER_STATISTICS
821 n_vtables += 1;
822 n_vtable_elems += list_length (virtuals);
823 #endif
824
825 /* Initialize the association list for this type, based
826 on our first approximation. */
827 BINFO_VTABLE (TYPE_BINFO (type)) = decl;
828 BINFO_VIRTUALS (TYPE_BINFO (type)) = virtuals;
829 SET_BINFO_NEW_VTABLE_MARKED (TYPE_BINFO (type));
830 return 1;
831 }
832
833 /* Give BINFO a new virtual function table which is initialized
834 with a skeleton-copy of its original initialization. The only
835 entry that changes is the `delta' entry, so we can really
836 share a lot of structure.
837
838 FOR_TYPE is the most derived type which caused this table to
839 be needed.
840
841 Returns nonzero if we haven't met BINFO before.
842
843 The order in which vtables are built (by calling this function) for
844 an object must remain the same, otherwise a binary incompatibility
845 can result. */
846
847 static int
848 build_secondary_vtable (tree binfo)
849 {
850 if (BINFO_NEW_VTABLE_MARKED (binfo))
851 /* We already created a vtable for this base. There's no need to
852 do it again. */
853 return 0;
854
855 /* Remember that we've created a vtable for this BINFO, so that we
856 don't try to do so again. */
857 SET_BINFO_NEW_VTABLE_MARKED (binfo);
858
859 /* Make fresh virtual list, so we can smash it later. */
860 BINFO_VIRTUALS (binfo) = copy_list (BINFO_VIRTUALS (binfo));
861
862 /* Secondary vtables are laid out as part of the same structure as
863 the primary vtable. */
864 BINFO_VTABLE (binfo) = NULL_TREE;
865 return 1;
866 }
867
868 /* Create a new vtable for BINFO which is the hierarchy dominated by
869 T. Return nonzero if we actually created a new vtable. */
870
871 static int
872 make_new_vtable (tree t, tree binfo)
873 {
874 if (binfo == TYPE_BINFO (t))
875 /* In this case, it is *type*'s vtable we are modifying. We start
876 with the approximation that its vtable is that of the
877 immediate base class. */
878 return build_primary_vtable (binfo, t);
879 else
880 /* This is our very own copy of `basetype' to play with. Later,
881 we will fill in all the virtual functions that override the
882 virtual functions in these base classes which are not defined
883 by the current type. */
884 return build_secondary_vtable (binfo);
885 }
886
887 /* Make *VIRTUALS, an entry on the BINFO_VIRTUALS list for BINFO
888 (which is in the hierarchy dominated by T) list FNDECL as its
889 BV_FN. DELTA is the required constant adjustment from the `this'
890 pointer where the vtable entry appears to the `this' required when
891 the function is actually called. */
892
893 static void
894 modify_vtable_entry (tree t,
895 tree binfo,
896 tree fndecl,
897 tree delta,
898 tree *virtuals)
899 {
900 tree v;
901
902 v = *virtuals;
903
904 if (fndecl != BV_FN (v)
905 || !tree_int_cst_equal (delta, BV_DELTA (v)))
906 {
907 /* We need a new vtable for BINFO. */
908 if (make_new_vtable (t, binfo))
909 {
910 /* If we really did make a new vtable, we also made a copy
911 of the BINFO_VIRTUALS list. Now, we have to find the
912 corresponding entry in that list. */
913 *virtuals = BINFO_VIRTUALS (binfo);
914 while (BV_FN (*virtuals) != BV_FN (v))
915 *virtuals = TREE_CHAIN (*virtuals);
916 v = *virtuals;
917 }
918
919 BV_DELTA (v) = delta;
920 BV_VCALL_INDEX (v) = NULL_TREE;
921 BV_FN (v) = fndecl;
922 }
923 }
924
925 \f
926 /* Add method METHOD to class TYPE. If USING_DECL is non-null, it is
927 the USING_DECL naming METHOD. Returns true if the method could be
928 added to the method vec. */
929
930 bool
931 add_method (tree type, tree method, tree using_decl)
932 {
933 unsigned slot;
934 tree overload;
935 bool template_conv_p = false;
936 bool conv_p;
937 VEC(tree,gc) *method_vec;
938 bool complete_p;
939 bool insert_p = false;
940 tree current_fns;
941 tree fns;
942
943 if (method == error_mark_node)
944 return false;
945
946 complete_p = COMPLETE_TYPE_P (type);
947 conv_p = DECL_CONV_FN_P (method);
948 if (conv_p)
949 template_conv_p = (TREE_CODE (method) == TEMPLATE_DECL
950 && DECL_TEMPLATE_CONV_FN_P (method));
951
952 method_vec = CLASSTYPE_METHOD_VEC (type);
953 if (!method_vec)
954 {
955 /* Make a new method vector. We start with 8 entries. We must
956 allocate at least two (for constructors and destructors), and
957 we're going to end up with an assignment operator at some
958 point as well. */
959 method_vec = VEC_alloc (tree, gc, 8);
960 /* Create slots for constructors and destructors. */
961 VEC_quick_push (tree, method_vec, NULL_TREE);
962 VEC_quick_push (tree, method_vec, NULL_TREE);
963 CLASSTYPE_METHOD_VEC (type) = method_vec;
964 }
965
966 /* Maintain TYPE_HAS_USER_CONSTRUCTOR, etc. */
967 grok_special_member_properties (method);
968
969 /* Constructors and destructors go in special slots. */
970 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (method))
971 slot = CLASSTYPE_CONSTRUCTOR_SLOT;
972 else if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (method))
973 {
974 slot = CLASSTYPE_DESTRUCTOR_SLOT;
975
976 if (TYPE_FOR_JAVA (type))
977 {
978 if (!DECL_ARTIFICIAL (method))
979 error ("Java class %qT cannot have a destructor", type);
980 else if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
981 error ("Java class %qT cannot have an implicit non-trivial "
982 "destructor",
983 type);
984 }
985 }
986 else
987 {
988 tree m;
989
990 insert_p = true;
991 /* See if we already have an entry with this name. */
992 for (slot = CLASSTYPE_FIRST_CONVERSION_SLOT;
993 VEC_iterate (tree, method_vec, slot, m);
994 ++slot)
995 {
996 m = OVL_CURRENT (m);
997 if (template_conv_p)
998 {
999 if (TREE_CODE (m) == TEMPLATE_DECL
1000 && DECL_TEMPLATE_CONV_FN_P (m))
1001 insert_p = false;
1002 break;
1003 }
1004 if (conv_p && !DECL_CONV_FN_P (m))
1005 break;
1006 if (DECL_NAME (m) == DECL_NAME (method))
1007 {
1008 insert_p = false;
1009 break;
1010 }
1011 if (complete_p
1012 && !DECL_CONV_FN_P (m)
1013 && DECL_NAME (m) > DECL_NAME (method))
1014 break;
1015 }
1016 }
1017 current_fns = insert_p ? NULL_TREE : VEC_index (tree, method_vec, slot);
1018
1019 /* Check to see if we've already got this method. */
1020 for (fns = current_fns; fns; fns = OVL_NEXT (fns))
1021 {
1022 tree fn = OVL_CURRENT (fns);
1023 tree fn_type;
1024 tree method_type;
1025 tree parms1;
1026 tree parms2;
1027
1028 if (TREE_CODE (fn) != TREE_CODE (method))
1029 continue;
1030
1031 /* [over.load] Member function declarations with the
1032 same name and the same parameter types cannot be
1033 overloaded if any of them is a static member
1034 function declaration.
1035
1036 [namespace.udecl] When a using-declaration brings names
1037 from a base class into a derived class scope, member
1038 functions in the derived class override and/or hide member
1039 functions with the same name and parameter types in a base
1040 class (rather than conflicting). */
1041 fn_type = TREE_TYPE (fn);
1042 method_type = TREE_TYPE (method);
1043 parms1 = TYPE_ARG_TYPES (fn_type);
1044 parms2 = TYPE_ARG_TYPES (method_type);
1045
1046 /* Compare the quals on the 'this' parm. Don't compare
1047 the whole types, as used functions are treated as
1048 coming from the using class in overload resolution. */
1049 if (! DECL_STATIC_FUNCTION_P (fn)
1050 && ! DECL_STATIC_FUNCTION_P (method)
1051 && TREE_TYPE (TREE_VALUE (parms1)) != error_mark_node
1052 && TREE_TYPE (TREE_VALUE (parms2)) != error_mark_node
1053 && (cp_type_quals (TREE_TYPE (TREE_VALUE (parms1)))
1054 != cp_type_quals (TREE_TYPE (TREE_VALUE (parms2)))))
1055 continue;
1056
1057 /* For templates, the return type and template parameters
1058 must be identical. */
1059 if (TREE_CODE (fn) == TEMPLATE_DECL
1060 && (!same_type_p (TREE_TYPE (fn_type),
1061 TREE_TYPE (method_type))
1062 || !comp_template_parms (DECL_TEMPLATE_PARMS (fn),
1063 DECL_TEMPLATE_PARMS (method))))
1064 continue;
1065
1066 if (! DECL_STATIC_FUNCTION_P (fn))
1067 parms1 = TREE_CHAIN (parms1);
1068 if (! DECL_STATIC_FUNCTION_P (method))
1069 parms2 = TREE_CHAIN (parms2);
1070
1071 if (compparms (parms1, parms2)
1072 && (!DECL_CONV_FN_P (fn)
1073 || same_type_p (TREE_TYPE (fn_type),
1074 TREE_TYPE (method_type))))
1075 {
1076 if (using_decl)
1077 {
1078 if (DECL_CONTEXT (fn) == type)
1079 /* Defer to the local function. */
1080 return false;
1081 if (DECL_CONTEXT (fn) == DECL_CONTEXT (method))
1082 error ("repeated using declaration %q+D", using_decl);
1083 else
1084 error ("using declaration %q+D conflicts with a previous using declaration",
1085 using_decl);
1086 }
1087 else
1088 {
1089 error ("%q+#D cannot be overloaded", method);
1090 error ("with %q+#D", fn);
1091 }
1092
1093 /* We don't call duplicate_decls here to merge the
1094 declarations because that will confuse things if the
1095 methods have inline definitions. In particular, we
1096 will crash while processing the definitions. */
1097 return false;
1098 }
1099 }
1100
1101 /* A class should never have more than one destructor. */
1102 if (current_fns && DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (method))
1103 return false;
1104
1105 /* Add the new binding. */
1106 overload = build_overload (method, current_fns);
1107
1108 if (conv_p)
1109 TYPE_HAS_CONVERSION (type) = 1;
1110 else if (slot >= CLASSTYPE_FIRST_CONVERSION_SLOT && !complete_p)
1111 push_class_level_binding (DECL_NAME (method), overload);
1112
1113 if (insert_p)
1114 {
1115 bool reallocated;
1116
1117 /* We only expect to add few methods in the COMPLETE_P case, so
1118 just make room for one more method in that case. */
1119 if (complete_p)
1120 reallocated = VEC_reserve_exact (tree, gc, method_vec, 1);
1121 else
1122 reallocated = VEC_reserve (tree, gc, method_vec, 1);
1123 if (reallocated)
1124 CLASSTYPE_METHOD_VEC (type) = method_vec;
1125 if (slot == VEC_length (tree, method_vec))
1126 VEC_quick_push (tree, method_vec, overload);
1127 else
1128 VEC_quick_insert (tree, method_vec, slot, overload);
1129 }
1130 else
1131 /* Replace the current slot. */
1132 VEC_replace (tree, method_vec, slot, overload);
1133 return true;
1134 }
1135
1136 /* Subroutines of finish_struct. */
1137
1138 /* Change the access of FDECL to ACCESS in T. Return 1 if change was
1139 legit, otherwise return 0. */
1140
1141 static int
1142 alter_access (tree t, tree fdecl, tree access)
1143 {
1144 tree elem;
1145
1146 if (!DECL_LANG_SPECIFIC (fdecl))
1147 retrofit_lang_decl (fdecl);
1148
1149 gcc_assert (!DECL_DISCRIMINATOR_P (fdecl));
1150
1151 elem = purpose_member (t, DECL_ACCESS (fdecl));
1152 if (elem)
1153 {
1154 if (TREE_VALUE (elem) != access)
1155 {
1156 if (TREE_CODE (TREE_TYPE (fdecl)) == FUNCTION_DECL)
1157 error ("conflicting access specifications for method"
1158 " %q+D, ignored", TREE_TYPE (fdecl));
1159 else
1160 error ("conflicting access specifications for field %qE, ignored",
1161 DECL_NAME (fdecl));
1162 }
1163 else
1164 {
1165 /* They're changing the access to the same thing they changed
1166 it to before. That's OK. */
1167 ;
1168 }
1169 }
1170 else
1171 {
1172 perform_or_defer_access_check (TYPE_BINFO (t), fdecl, fdecl);
1173 DECL_ACCESS (fdecl) = tree_cons (t, access, DECL_ACCESS (fdecl));
1174 return 1;
1175 }
1176 return 0;
1177 }
1178
1179 /* Process the USING_DECL, which is a member of T. */
1180
1181 static void
1182 handle_using_decl (tree using_decl, tree t)
1183 {
1184 tree decl = USING_DECL_DECLS (using_decl);
1185 tree name = DECL_NAME (using_decl);
1186 tree access
1187 = TREE_PRIVATE (using_decl) ? access_private_node
1188 : TREE_PROTECTED (using_decl) ? access_protected_node
1189 : access_public_node;
1190 tree flist = NULL_TREE;
1191 tree old_value;
1192
1193 gcc_assert (!processing_template_decl && decl);
1194
1195 old_value = lookup_member (t, name, /*protect=*/0, /*want_type=*/false);
1196 if (old_value)
1197 {
1198 if (is_overloaded_fn (old_value))
1199 old_value = OVL_CURRENT (old_value);
1200
1201 if (DECL_P (old_value) && DECL_CONTEXT (old_value) == t)
1202 /* OK */;
1203 else
1204 old_value = NULL_TREE;
1205 }
1206
1207 cp_emit_debug_info_for_using (decl, USING_DECL_SCOPE (using_decl));
1208
1209 if (is_overloaded_fn (decl))
1210 flist = decl;
1211
1212 if (! old_value)
1213 ;
1214 else if (is_overloaded_fn (old_value))
1215 {
1216 if (flist)
1217 /* It's OK to use functions from a base when there are functions with
1218 the same name already present in the current class. */;
1219 else
1220 {
1221 error ("%q+D invalid in %q#T", using_decl, t);
1222 error (" because of local method %q+#D with same name",
1223 OVL_CURRENT (old_value));
1224 return;
1225 }
1226 }
1227 else if (!DECL_ARTIFICIAL (old_value))
1228 {
1229 error ("%q+D invalid in %q#T", using_decl, t);
1230 error (" because of local member %q+#D with same name", old_value);
1231 return;
1232 }
1233
1234 /* Make type T see field decl FDECL with access ACCESS. */
1235 if (flist)
1236 for (; flist; flist = OVL_NEXT (flist))
1237 {
1238 add_method (t, OVL_CURRENT (flist), using_decl);
1239 alter_access (t, OVL_CURRENT (flist), access);
1240 }
1241 else
1242 alter_access (t, decl, access);
1243 }
1244 \f
1245 /* Run through the base classes of T, updating CANT_HAVE_CONST_CTOR_P,
1246 and NO_CONST_ASN_REF_P. Also set flag bits in T based on
1247 properties of the bases. */
1248
1249 static void
1250 check_bases (tree t,
1251 int* cant_have_const_ctor_p,
1252 int* no_const_asn_ref_p)
1253 {
1254 int i;
1255 int seen_non_virtual_nearly_empty_base_p;
1256 tree base_binfo;
1257 tree binfo;
1258 tree field = NULL_TREE;
1259
1260 seen_non_virtual_nearly_empty_base_p = 0;
1261
1262 if (!CLASSTYPE_NON_STD_LAYOUT (t))
1263 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
1264 if (TREE_CODE (field) == FIELD_DECL)
1265 break;
1266
1267 for (binfo = TYPE_BINFO (t), i = 0;
1268 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
1269 {
1270 tree basetype = TREE_TYPE (base_binfo);
1271
1272 gcc_assert (COMPLETE_TYPE_P (basetype));
1273
1274 /* Effective C++ rule 14. We only need to check TYPE_POLYMORPHIC_P
1275 here because the case of virtual functions but non-virtual
1276 dtor is handled in finish_struct_1. */
1277 if (!TYPE_POLYMORPHIC_P (basetype))
1278 warning (OPT_Weffc__,
1279 "base class %q#T has a non-virtual destructor", basetype);
1280
1281 /* If the base class doesn't have copy constructors or
1282 assignment operators that take const references, then the
1283 derived class cannot have such a member automatically
1284 generated. */
1285 if (TYPE_HAS_COPY_CTOR (basetype)
1286 && ! TYPE_HAS_CONST_COPY_CTOR (basetype))
1287 *cant_have_const_ctor_p = 1;
1288 if (TYPE_HAS_COPY_ASSIGN (basetype)
1289 && !TYPE_HAS_CONST_COPY_ASSIGN (basetype))
1290 *no_const_asn_ref_p = 1;
1291
1292 if (BINFO_VIRTUAL_P (base_binfo))
1293 /* A virtual base does not effect nearly emptiness. */
1294 ;
1295 else if (CLASSTYPE_NEARLY_EMPTY_P (basetype))
1296 {
1297 if (seen_non_virtual_nearly_empty_base_p)
1298 /* And if there is more than one nearly empty base, then the
1299 derived class is not nearly empty either. */
1300 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
1301 else
1302 /* Remember we've seen one. */
1303 seen_non_virtual_nearly_empty_base_p = 1;
1304 }
1305 else if (!is_empty_class (basetype))
1306 /* If the base class is not empty or nearly empty, then this
1307 class cannot be nearly empty. */
1308 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
1309
1310 /* A lot of properties from the bases also apply to the derived
1311 class. */
1312 TYPE_NEEDS_CONSTRUCTING (t) |= TYPE_NEEDS_CONSTRUCTING (basetype);
1313 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
1314 |= TYPE_HAS_NONTRIVIAL_DESTRUCTOR (basetype);
1315 TYPE_HAS_COMPLEX_COPY_ASSIGN (t)
1316 |= (TYPE_HAS_COMPLEX_COPY_ASSIGN (basetype)
1317 || !TYPE_HAS_COPY_ASSIGN (basetype));
1318 TYPE_HAS_COMPLEX_COPY_CTOR (t) |= (TYPE_HAS_COMPLEX_COPY_CTOR (basetype)
1319 || !TYPE_HAS_COPY_CTOR (basetype));
1320 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t)
1321 |= TYPE_HAS_COMPLEX_MOVE_ASSIGN (basetype);
1322 TYPE_HAS_COMPLEX_MOVE_CTOR (t) |= TYPE_HAS_COMPLEX_MOVE_CTOR (basetype);
1323 TYPE_POLYMORPHIC_P (t) |= TYPE_POLYMORPHIC_P (basetype);
1324 CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t)
1325 |= CLASSTYPE_CONTAINS_EMPTY_CLASS_P (basetype);
1326 TYPE_HAS_COMPLEX_DFLT (t) |= (!TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype)
1327 || TYPE_HAS_COMPLEX_DFLT (basetype));
1328
1329 /* A standard-layout class is a class that:
1330 ...
1331 * has no non-standard-layout base classes, */
1332 CLASSTYPE_NON_STD_LAYOUT (t) |= CLASSTYPE_NON_STD_LAYOUT (basetype);
1333 if (!CLASSTYPE_NON_STD_LAYOUT (t))
1334 {
1335 tree basefield;
1336 /* ...has no base classes of the same type as the first non-static
1337 data member... */
1338 if (field && DECL_CONTEXT (field) == t
1339 && (same_type_ignoring_top_level_qualifiers_p
1340 (TREE_TYPE (field), basetype)))
1341 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
1342 else
1343 /* ...either has no non-static data members in the most-derived
1344 class and at most one base class with non-static data
1345 members, or has no base classes with non-static data
1346 members */
1347 for (basefield = TYPE_FIELDS (basetype); basefield;
1348 basefield = TREE_CHAIN (basefield))
1349 if (TREE_CODE (basefield) == FIELD_DECL)
1350 {
1351 if (field)
1352 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
1353 else
1354 field = basefield;
1355 break;
1356 }
1357 }
1358 }
1359 }
1360
1361 /* Determine all the primary bases within T. Sets BINFO_PRIMARY_BASE_P for
1362 those that are primaries. Sets BINFO_LOST_PRIMARY_P for those
1363 that have had a nearly-empty virtual primary base stolen by some
1364 other base in the hierarchy. Determines CLASSTYPE_PRIMARY_BASE for
1365 T. */
1366
1367 static void
1368 determine_primary_bases (tree t)
1369 {
1370 unsigned i;
1371 tree primary = NULL_TREE;
1372 tree type_binfo = TYPE_BINFO (t);
1373 tree base_binfo;
1374
1375 /* Determine the primary bases of our bases. */
1376 for (base_binfo = TREE_CHAIN (type_binfo); base_binfo;
1377 base_binfo = TREE_CHAIN (base_binfo))
1378 {
1379 tree primary = CLASSTYPE_PRIMARY_BINFO (BINFO_TYPE (base_binfo));
1380
1381 /* See if we're the non-virtual primary of our inheritance
1382 chain. */
1383 if (!BINFO_VIRTUAL_P (base_binfo))
1384 {
1385 tree parent = BINFO_INHERITANCE_CHAIN (base_binfo);
1386 tree parent_primary = CLASSTYPE_PRIMARY_BINFO (BINFO_TYPE (parent));
1387
1388 if (parent_primary
1389 && SAME_BINFO_TYPE_P (BINFO_TYPE (base_binfo),
1390 BINFO_TYPE (parent_primary)))
1391 /* We are the primary binfo. */
1392 BINFO_PRIMARY_P (base_binfo) = 1;
1393 }
1394 /* Determine if we have a virtual primary base, and mark it so.
1395 */
1396 if (primary && BINFO_VIRTUAL_P (primary))
1397 {
1398 tree this_primary = copied_binfo (primary, base_binfo);
1399
1400 if (BINFO_PRIMARY_P (this_primary))
1401 /* Someone already claimed this base. */
1402 BINFO_LOST_PRIMARY_P (base_binfo) = 1;
1403 else
1404 {
1405 tree delta;
1406
1407 BINFO_PRIMARY_P (this_primary) = 1;
1408 BINFO_INHERITANCE_CHAIN (this_primary) = base_binfo;
1409
1410 /* A virtual binfo might have been copied from within
1411 another hierarchy. As we're about to use it as a
1412 primary base, make sure the offsets match. */
1413 delta = size_diffop_loc (input_location,
1414 convert (ssizetype,
1415 BINFO_OFFSET (base_binfo)),
1416 convert (ssizetype,
1417 BINFO_OFFSET (this_primary)));
1418
1419 propagate_binfo_offsets (this_primary, delta);
1420 }
1421 }
1422 }
1423
1424 /* First look for a dynamic direct non-virtual base. */
1425 for (i = 0; BINFO_BASE_ITERATE (type_binfo, i, base_binfo); i++)
1426 {
1427 tree basetype = BINFO_TYPE (base_binfo);
1428
1429 if (TYPE_CONTAINS_VPTR_P (basetype) && !BINFO_VIRTUAL_P (base_binfo))
1430 {
1431 primary = base_binfo;
1432 goto found;
1433 }
1434 }
1435
1436 /* A "nearly-empty" virtual base class can be the primary base
1437 class, if no non-virtual polymorphic base can be found. Look for
1438 a nearly-empty virtual dynamic base that is not already a primary
1439 base of something in the hierarchy. If there is no such base,
1440 just pick the first nearly-empty virtual base. */
1441
1442 for (base_binfo = TREE_CHAIN (type_binfo); base_binfo;
1443 base_binfo = TREE_CHAIN (base_binfo))
1444 if (BINFO_VIRTUAL_P (base_binfo)
1445 && CLASSTYPE_NEARLY_EMPTY_P (BINFO_TYPE (base_binfo)))
1446 {
1447 if (!BINFO_PRIMARY_P (base_binfo))
1448 {
1449 /* Found one that is not primary. */
1450 primary = base_binfo;
1451 goto found;
1452 }
1453 else if (!primary)
1454 /* Remember the first candidate. */
1455 primary = base_binfo;
1456 }
1457
1458 found:
1459 /* If we've got a primary base, use it. */
1460 if (primary)
1461 {
1462 tree basetype = BINFO_TYPE (primary);
1463
1464 CLASSTYPE_PRIMARY_BINFO (t) = primary;
1465 if (BINFO_PRIMARY_P (primary))
1466 /* We are stealing a primary base. */
1467 BINFO_LOST_PRIMARY_P (BINFO_INHERITANCE_CHAIN (primary)) = 1;
1468 BINFO_PRIMARY_P (primary) = 1;
1469 if (BINFO_VIRTUAL_P (primary))
1470 {
1471 tree delta;
1472
1473 BINFO_INHERITANCE_CHAIN (primary) = type_binfo;
1474 /* A virtual binfo might have been copied from within
1475 another hierarchy. As we're about to use it as a primary
1476 base, make sure the offsets match. */
1477 delta = size_diffop_loc (input_location, ssize_int (0),
1478 convert (ssizetype, BINFO_OFFSET (primary)));
1479
1480 propagate_binfo_offsets (primary, delta);
1481 }
1482
1483 primary = TYPE_BINFO (basetype);
1484
1485 TYPE_VFIELD (t) = TYPE_VFIELD (basetype);
1486 BINFO_VTABLE (type_binfo) = BINFO_VTABLE (primary);
1487 BINFO_VIRTUALS (type_binfo) = BINFO_VIRTUALS (primary);
1488 }
1489 }
1490
1491 /* Update the variant types of T. */
1492
1493 void
1494 fixup_type_variants (tree t)
1495 {
1496 tree variants;
1497
1498 if (!t)
1499 return;
1500
1501 for (variants = TYPE_NEXT_VARIANT (t);
1502 variants;
1503 variants = TYPE_NEXT_VARIANT (variants))
1504 {
1505 /* These fields are in the _TYPE part of the node, not in
1506 the TYPE_LANG_SPECIFIC component, so they are not shared. */
1507 TYPE_HAS_USER_CONSTRUCTOR (variants) = TYPE_HAS_USER_CONSTRUCTOR (t);
1508 TYPE_NEEDS_CONSTRUCTING (variants) = TYPE_NEEDS_CONSTRUCTING (t);
1509 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (variants)
1510 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t);
1511
1512 TYPE_POLYMORPHIC_P (variants) = TYPE_POLYMORPHIC_P (t);
1513
1514 TYPE_BINFO (variants) = TYPE_BINFO (t);
1515
1516 /* Copy whatever these are holding today. */
1517 TYPE_VFIELD (variants) = TYPE_VFIELD (t);
1518 TYPE_METHODS (variants) = TYPE_METHODS (t);
1519 TYPE_FIELDS (variants) = TYPE_FIELDS (t);
1520
1521 /* All variants of a class have the same attributes. */
1522 TYPE_ATTRIBUTES (variants) = TYPE_ATTRIBUTES (t);
1523 }
1524 }
1525
1526 \f
1527 /* Set memoizing fields and bits of T (and its variants) for later
1528 use. */
1529
1530 static void
1531 finish_struct_bits (tree t)
1532 {
1533 /* Fix up variants (if any). */
1534 fixup_type_variants (t);
1535
1536 if (BINFO_N_BASE_BINFOS (TYPE_BINFO (t)) && TYPE_POLYMORPHIC_P (t))
1537 /* For a class w/o baseclasses, 'finish_struct' has set
1538 CLASSTYPE_PURE_VIRTUALS correctly (by definition).
1539 Similarly for a class whose base classes do not have vtables.
1540 When neither of these is true, we might have removed abstract
1541 virtuals (by providing a definition), added some (by declaring
1542 new ones), or redeclared ones from a base class. We need to
1543 recalculate what's really an abstract virtual at this point (by
1544 looking in the vtables). */
1545 get_pure_virtuals (t);
1546
1547 /* If this type has a copy constructor or a destructor, force its
1548 mode to be BLKmode, and force its TREE_ADDRESSABLE bit to be
1549 nonzero. This will cause it to be passed by invisible reference
1550 and prevent it from being returned in a register. */
1551 if (type_has_nontrivial_copy_init (t)
1552 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t))
1553 {
1554 tree variants;
1555 DECL_MODE (TYPE_MAIN_DECL (t)) = BLKmode;
1556 for (variants = t; variants; variants = TYPE_NEXT_VARIANT (variants))
1557 {
1558 SET_TYPE_MODE (variants, BLKmode);
1559 TREE_ADDRESSABLE (variants) = 1;
1560 }
1561 }
1562 }
1563
1564 /* Issue warnings about T having private constructors, but no friends,
1565 and so forth.
1566
1567 HAS_NONPRIVATE_METHOD is nonzero if T has any non-private methods or
1568 static members. HAS_NONPRIVATE_STATIC_FN is nonzero if T has any
1569 non-private static member functions. */
1570
1571 static void
1572 maybe_warn_about_overly_private_class (tree t)
1573 {
1574 int has_member_fn = 0;
1575 int has_nonprivate_method = 0;
1576 tree fn;
1577
1578 if (!warn_ctor_dtor_privacy
1579 /* If the class has friends, those entities might create and
1580 access instances, so we should not warn. */
1581 || (CLASSTYPE_FRIEND_CLASSES (t)
1582 || DECL_FRIENDLIST (TYPE_MAIN_DECL (t)))
1583 /* We will have warned when the template was declared; there's
1584 no need to warn on every instantiation. */
1585 || CLASSTYPE_TEMPLATE_INSTANTIATION (t))
1586 /* There's no reason to even consider warning about this
1587 class. */
1588 return;
1589
1590 /* We only issue one warning, if more than one applies, because
1591 otherwise, on code like:
1592
1593 class A {
1594 // Oops - forgot `public:'
1595 A();
1596 A(const A&);
1597 ~A();
1598 };
1599
1600 we warn several times about essentially the same problem. */
1601
1602 /* Check to see if all (non-constructor, non-destructor) member
1603 functions are private. (Since there are no friends or
1604 non-private statics, we can't ever call any of the private member
1605 functions.) */
1606 for (fn = TYPE_METHODS (t); fn; fn = TREE_CHAIN (fn))
1607 /* We're not interested in compiler-generated methods; they don't
1608 provide any way to call private members. */
1609 if (!DECL_ARTIFICIAL (fn))
1610 {
1611 if (!TREE_PRIVATE (fn))
1612 {
1613 if (DECL_STATIC_FUNCTION_P (fn))
1614 /* A non-private static member function is just like a
1615 friend; it can create and invoke private member
1616 functions, and be accessed without a class
1617 instance. */
1618 return;
1619
1620 has_nonprivate_method = 1;
1621 /* Keep searching for a static member function. */
1622 }
1623 else if (!DECL_CONSTRUCTOR_P (fn) && !DECL_DESTRUCTOR_P (fn))
1624 has_member_fn = 1;
1625 }
1626
1627 if (!has_nonprivate_method && has_member_fn)
1628 {
1629 /* There are no non-private methods, and there's at least one
1630 private member function that isn't a constructor or
1631 destructor. (If all the private members are
1632 constructors/destructors we want to use the code below that
1633 issues error messages specifically referring to
1634 constructors/destructors.) */
1635 unsigned i;
1636 tree binfo = TYPE_BINFO (t);
1637
1638 for (i = 0; i != BINFO_N_BASE_BINFOS (binfo); i++)
1639 if (BINFO_BASE_ACCESS (binfo, i) != access_private_node)
1640 {
1641 has_nonprivate_method = 1;
1642 break;
1643 }
1644 if (!has_nonprivate_method)
1645 {
1646 warning (OPT_Wctor_dtor_privacy,
1647 "all member functions in class %qT are private", t);
1648 return;
1649 }
1650 }
1651
1652 /* Even if some of the member functions are non-private, the class
1653 won't be useful for much if all the constructors or destructors
1654 are private: such an object can never be created or destroyed. */
1655 fn = CLASSTYPE_DESTRUCTORS (t);
1656 if (fn && TREE_PRIVATE (fn))
1657 {
1658 warning (OPT_Wctor_dtor_privacy,
1659 "%q#T only defines a private destructor and has no friends",
1660 t);
1661 return;
1662 }
1663
1664 /* Warn about classes that have private constructors and no friends. */
1665 if (TYPE_HAS_USER_CONSTRUCTOR (t)
1666 /* Implicitly generated constructors are always public. */
1667 && (!CLASSTYPE_LAZY_DEFAULT_CTOR (t)
1668 || !CLASSTYPE_LAZY_COPY_CTOR (t)))
1669 {
1670 int nonprivate_ctor = 0;
1671
1672 /* If a non-template class does not define a copy
1673 constructor, one is defined for it, enabling it to avoid
1674 this warning. For a template class, this does not
1675 happen, and so we would normally get a warning on:
1676
1677 template <class T> class C { private: C(); };
1678
1679 To avoid this asymmetry, we check TYPE_HAS_COPY_CTOR. All
1680 complete non-template or fully instantiated classes have this
1681 flag set. */
1682 if (!TYPE_HAS_COPY_CTOR (t))
1683 nonprivate_ctor = 1;
1684 else
1685 for (fn = CLASSTYPE_CONSTRUCTORS (t); fn; fn = OVL_NEXT (fn))
1686 {
1687 tree ctor = OVL_CURRENT (fn);
1688 /* Ideally, we wouldn't count copy constructors (or, in
1689 fact, any constructor that takes an argument of the
1690 class type as a parameter) because such things cannot
1691 be used to construct an instance of the class unless
1692 you already have one. But, for now at least, we're
1693 more generous. */
1694 if (! TREE_PRIVATE (ctor))
1695 {
1696 nonprivate_ctor = 1;
1697 break;
1698 }
1699 }
1700
1701 if (nonprivate_ctor == 0)
1702 {
1703 warning (OPT_Wctor_dtor_privacy,
1704 "%q#T only defines private constructors and has no friends",
1705 t);
1706 return;
1707 }
1708 }
1709 }
1710
1711 static struct {
1712 gt_pointer_operator new_value;
1713 void *cookie;
1714 } resort_data;
1715
1716 /* Comparison function to compare two TYPE_METHOD_VEC entries by name. */
1717
1718 static int
1719 method_name_cmp (const void* m1_p, const void* m2_p)
1720 {
1721 const tree *const m1 = (const tree *) m1_p;
1722 const tree *const m2 = (const tree *) m2_p;
1723
1724 if (*m1 == NULL_TREE && *m2 == NULL_TREE)
1725 return 0;
1726 if (*m1 == NULL_TREE)
1727 return -1;
1728 if (*m2 == NULL_TREE)
1729 return 1;
1730 if (DECL_NAME (OVL_CURRENT (*m1)) < DECL_NAME (OVL_CURRENT (*m2)))
1731 return -1;
1732 return 1;
1733 }
1734
1735 /* This routine compares two fields like method_name_cmp but using the
1736 pointer operator in resort_field_decl_data. */
1737
1738 static int
1739 resort_method_name_cmp (const void* m1_p, const void* m2_p)
1740 {
1741 const tree *const m1 = (const tree *) m1_p;
1742 const tree *const m2 = (const tree *) m2_p;
1743 if (*m1 == NULL_TREE && *m2 == NULL_TREE)
1744 return 0;
1745 if (*m1 == NULL_TREE)
1746 return -1;
1747 if (*m2 == NULL_TREE)
1748 return 1;
1749 {
1750 tree d1 = DECL_NAME (OVL_CURRENT (*m1));
1751 tree d2 = DECL_NAME (OVL_CURRENT (*m2));
1752 resort_data.new_value (&d1, resort_data.cookie);
1753 resort_data.new_value (&d2, resort_data.cookie);
1754 if (d1 < d2)
1755 return -1;
1756 }
1757 return 1;
1758 }
1759
1760 /* Resort TYPE_METHOD_VEC because pointers have been reordered. */
1761
1762 void
1763 resort_type_method_vec (void* obj,
1764 void* orig_obj ATTRIBUTE_UNUSED ,
1765 gt_pointer_operator new_value,
1766 void* cookie)
1767 {
1768 VEC(tree,gc) *method_vec = (VEC(tree,gc) *) obj;
1769 int len = VEC_length (tree, method_vec);
1770 size_t slot;
1771 tree fn;
1772
1773 /* The type conversion ops have to live at the front of the vec, so we
1774 can't sort them. */
1775 for (slot = CLASSTYPE_FIRST_CONVERSION_SLOT;
1776 VEC_iterate (tree, method_vec, slot, fn);
1777 ++slot)
1778 if (!DECL_CONV_FN_P (OVL_CURRENT (fn)))
1779 break;
1780
1781 if (len - slot > 1)
1782 {
1783 resort_data.new_value = new_value;
1784 resort_data.cookie = cookie;
1785 qsort (VEC_address (tree, method_vec) + slot, len - slot, sizeof (tree),
1786 resort_method_name_cmp);
1787 }
1788 }
1789
1790 /* Warn about duplicate methods in fn_fields.
1791
1792 Sort methods that are not special (i.e., constructors, destructors,
1793 and type conversion operators) so that we can find them faster in
1794 search. */
1795
1796 static void
1797 finish_struct_methods (tree t)
1798 {
1799 tree fn_fields;
1800 VEC(tree,gc) *method_vec;
1801 int slot, len;
1802
1803 method_vec = CLASSTYPE_METHOD_VEC (t);
1804 if (!method_vec)
1805 return;
1806
1807 len = VEC_length (tree, method_vec);
1808
1809 /* Clear DECL_IN_AGGR_P for all functions. */
1810 for (fn_fields = TYPE_METHODS (t); fn_fields;
1811 fn_fields = TREE_CHAIN (fn_fields))
1812 DECL_IN_AGGR_P (fn_fields) = 0;
1813
1814 /* Issue warnings about private constructors and such. If there are
1815 no methods, then some public defaults are generated. */
1816 maybe_warn_about_overly_private_class (t);
1817
1818 /* The type conversion ops have to live at the front of the vec, so we
1819 can't sort them. */
1820 for (slot = CLASSTYPE_FIRST_CONVERSION_SLOT;
1821 VEC_iterate (tree, method_vec, slot, fn_fields);
1822 ++slot)
1823 if (!DECL_CONV_FN_P (OVL_CURRENT (fn_fields)))
1824 break;
1825 if (len - slot > 1)
1826 qsort (VEC_address (tree, method_vec) + slot,
1827 len-slot, sizeof (tree), method_name_cmp);
1828 }
1829
1830 /* Make BINFO's vtable have N entries, including RTTI entries,
1831 vbase and vcall offsets, etc. Set its type and call the back end
1832 to lay it out. */
1833
1834 static void
1835 layout_vtable_decl (tree binfo, int n)
1836 {
1837 tree atype;
1838 tree vtable;
1839
1840 atype = build_cplus_array_type (vtable_entry_type,
1841 build_index_type (size_int (n - 1)));
1842 layout_type (atype);
1843
1844 /* We may have to grow the vtable. */
1845 vtable = get_vtbl_decl_for_binfo (binfo);
1846 if (!same_type_p (TREE_TYPE (vtable), atype))
1847 {
1848 TREE_TYPE (vtable) = atype;
1849 DECL_SIZE (vtable) = DECL_SIZE_UNIT (vtable) = NULL_TREE;
1850 layout_decl (vtable, 0);
1851 }
1852 }
1853
1854 /* True iff FNDECL and BASE_FNDECL (both non-static member functions)
1855 have the same signature. */
1856
1857 int
1858 same_signature_p (const_tree fndecl, const_tree base_fndecl)
1859 {
1860 /* One destructor overrides another if they are the same kind of
1861 destructor. */
1862 if (DECL_DESTRUCTOR_P (base_fndecl) && DECL_DESTRUCTOR_P (fndecl)
1863 && special_function_p (base_fndecl) == special_function_p (fndecl))
1864 return 1;
1865 /* But a non-destructor never overrides a destructor, nor vice
1866 versa, nor do different kinds of destructors override
1867 one-another. For example, a complete object destructor does not
1868 override a deleting destructor. */
1869 if (DECL_DESTRUCTOR_P (base_fndecl) || DECL_DESTRUCTOR_P (fndecl))
1870 return 0;
1871
1872 if (DECL_NAME (fndecl) == DECL_NAME (base_fndecl)
1873 || (DECL_CONV_FN_P (fndecl)
1874 && DECL_CONV_FN_P (base_fndecl)
1875 && same_type_p (DECL_CONV_FN_TYPE (fndecl),
1876 DECL_CONV_FN_TYPE (base_fndecl))))
1877 {
1878 tree types, base_types;
1879 types = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
1880 base_types = TYPE_ARG_TYPES (TREE_TYPE (base_fndecl));
1881 if ((cp_type_quals (TREE_TYPE (TREE_VALUE (base_types)))
1882 == cp_type_quals (TREE_TYPE (TREE_VALUE (types))))
1883 && compparms (TREE_CHAIN (base_types), TREE_CHAIN (types)))
1884 return 1;
1885 }
1886 return 0;
1887 }
1888
1889 /* Returns TRUE if DERIVED is a binfo containing the binfo BASE as a
1890 subobject. */
1891
1892 static bool
1893 base_derived_from (tree derived, tree base)
1894 {
1895 tree probe;
1896
1897 for (probe = base; probe; probe = BINFO_INHERITANCE_CHAIN (probe))
1898 {
1899 if (probe == derived)
1900 return true;
1901 else if (BINFO_VIRTUAL_P (probe))
1902 /* If we meet a virtual base, we can't follow the inheritance
1903 any more. See if the complete type of DERIVED contains
1904 such a virtual base. */
1905 return (binfo_for_vbase (BINFO_TYPE (probe), BINFO_TYPE (derived))
1906 != NULL_TREE);
1907 }
1908 return false;
1909 }
1910
1911 typedef struct find_final_overrider_data_s {
1912 /* The function for which we are trying to find a final overrider. */
1913 tree fn;
1914 /* The base class in which the function was declared. */
1915 tree declaring_base;
1916 /* The candidate overriders. */
1917 tree candidates;
1918 /* Path to most derived. */
1919 VEC(tree,heap) *path;
1920 } find_final_overrider_data;
1921
1922 /* Add the overrider along the current path to FFOD->CANDIDATES.
1923 Returns true if an overrider was found; false otherwise. */
1924
1925 static bool
1926 dfs_find_final_overrider_1 (tree binfo,
1927 find_final_overrider_data *ffod,
1928 unsigned depth)
1929 {
1930 tree method;
1931
1932 /* If BINFO is not the most derived type, try a more derived class.
1933 A definition there will overrider a definition here. */
1934 if (depth)
1935 {
1936 depth--;
1937 if (dfs_find_final_overrider_1
1938 (VEC_index (tree, ffod->path, depth), ffod, depth))
1939 return true;
1940 }
1941
1942 method = look_for_overrides_here (BINFO_TYPE (binfo), ffod->fn);
1943 if (method)
1944 {
1945 tree *candidate = &ffod->candidates;
1946
1947 /* Remove any candidates overridden by this new function. */
1948 while (*candidate)
1949 {
1950 /* If *CANDIDATE overrides METHOD, then METHOD
1951 cannot override anything else on the list. */
1952 if (base_derived_from (TREE_VALUE (*candidate), binfo))
1953 return true;
1954 /* If METHOD overrides *CANDIDATE, remove *CANDIDATE. */
1955 if (base_derived_from (binfo, TREE_VALUE (*candidate)))
1956 *candidate = TREE_CHAIN (*candidate);
1957 else
1958 candidate = &TREE_CHAIN (*candidate);
1959 }
1960
1961 /* Add the new function. */
1962 ffod->candidates = tree_cons (method, binfo, ffod->candidates);
1963 return true;
1964 }
1965
1966 return false;
1967 }
1968
1969 /* Called from find_final_overrider via dfs_walk. */
1970
1971 static tree
1972 dfs_find_final_overrider_pre (tree binfo, void *data)
1973 {
1974 find_final_overrider_data *ffod = (find_final_overrider_data *) data;
1975
1976 if (binfo == ffod->declaring_base)
1977 dfs_find_final_overrider_1 (binfo, ffod, VEC_length (tree, ffod->path));
1978 VEC_safe_push (tree, heap, ffod->path, binfo);
1979
1980 return NULL_TREE;
1981 }
1982
1983 static tree
1984 dfs_find_final_overrider_post (tree binfo ATTRIBUTE_UNUSED, void *data)
1985 {
1986 find_final_overrider_data *ffod = (find_final_overrider_data *) data;
1987 VEC_pop (tree, ffod->path);
1988
1989 return NULL_TREE;
1990 }
1991
1992 /* Returns a TREE_LIST whose TREE_PURPOSE is the final overrider for
1993 FN and whose TREE_VALUE is the binfo for the base where the
1994 overriding occurs. BINFO (in the hierarchy dominated by the binfo
1995 DERIVED) is the base object in which FN is declared. */
1996
1997 static tree
1998 find_final_overrider (tree derived, tree binfo, tree fn)
1999 {
2000 find_final_overrider_data ffod;
2001
2002 /* Getting this right is a little tricky. This is valid:
2003
2004 struct S { virtual void f (); };
2005 struct T { virtual void f (); };
2006 struct U : public S, public T { };
2007
2008 even though calling `f' in `U' is ambiguous. But,
2009
2010 struct R { virtual void f(); };
2011 struct S : virtual public R { virtual void f (); };
2012 struct T : virtual public R { virtual void f (); };
2013 struct U : public S, public T { };
2014
2015 is not -- there's no way to decide whether to put `S::f' or
2016 `T::f' in the vtable for `R'.
2017
2018 The solution is to look at all paths to BINFO. If we find
2019 different overriders along any two, then there is a problem. */
2020 if (DECL_THUNK_P (fn))
2021 fn = THUNK_TARGET (fn);
2022
2023 /* Determine the depth of the hierarchy. */
2024 ffod.fn = fn;
2025 ffod.declaring_base = binfo;
2026 ffod.candidates = NULL_TREE;
2027 ffod.path = VEC_alloc (tree, heap, 30);
2028
2029 dfs_walk_all (derived, dfs_find_final_overrider_pre,
2030 dfs_find_final_overrider_post, &ffod);
2031
2032 VEC_free (tree, heap, ffod.path);
2033
2034 /* If there was no winner, issue an error message. */
2035 if (!ffod.candidates || TREE_CHAIN (ffod.candidates))
2036 return error_mark_node;
2037
2038 return ffod.candidates;
2039 }
2040
2041 /* Return the index of the vcall offset for FN when TYPE is used as a
2042 virtual base. */
2043
2044 static tree
2045 get_vcall_index (tree fn, tree type)
2046 {
2047 VEC(tree_pair_s,gc) *indices = CLASSTYPE_VCALL_INDICES (type);
2048 tree_pair_p p;
2049 unsigned ix;
2050
2051 for (ix = 0; VEC_iterate (tree_pair_s, indices, ix, p); ix++)
2052 if ((DECL_DESTRUCTOR_P (fn) && DECL_DESTRUCTOR_P (p->purpose))
2053 || same_signature_p (fn, p->purpose))
2054 return p->value;
2055
2056 /* There should always be an appropriate index. */
2057 gcc_unreachable ();
2058 }
2059
2060 /* Update an entry in the vtable for BINFO, which is in the hierarchy
2061 dominated by T. FN is the old function; VIRTUALS points to the
2062 corresponding position in the new BINFO_VIRTUALS list. IX is the index
2063 of that entry in the list. */
2064
2065 static void
2066 update_vtable_entry_for_fn (tree t, tree binfo, tree fn, tree* virtuals,
2067 unsigned ix)
2068 {
2069 tree b;
2070 tree overrider;
2071 tree delta;
2072 tree virtual_base;
2073 tree first_defn;
2074 tree overrider_fn, overrider_target;
2075 tree target_fn = DECL_THUNK_P (fn) ? THUNK_TARGET (fn) : fn;
2076 tree over_return, base_return;
2077 bool lost = false;
2078
2079 /* Find the nearest primary base (possibly binfo itself) which defines
2080 this function; this is the class the caller will convert to when
2081 calling FN through BINFO. */
2082 for (b = binfo; ; b = get_primary_binfo (b))
2083 {
2084 gcc_assert (b);
2085 if (look_for_overrides_here (BINFO_TYPE (b), target_fn))
2086 break;
2087
2088 /* The nearest definition is from a lost primary. */
2089 if (BINFO_LOST_PRIMARY_P (b))
2090 lost = true;
2091 }
2092 first_defn = b;
2093
2094 /* Find the final overrider. */
2095 overrider = find_final_overrider (TYPE_BINFO (t), b, target_fn);
2096 if (overrider == error_mark_node)
2097 {
2098 error ("no unique final overrider for %qD in %qT", target_fn, t);
2099 return;
2100 }
2101 overrider_target = overrider_fn = TREE_PURPOSE (overrider);
2102
2103 /* Check for adjusting covariant return types. */
2104 over_return = TREE_TYPE (TREE_TYPE (overrider_target));
2105 base_return = TREE_TYPE (TREE_TYPE (target_fn));
2106
2107 if (POINTER_TYPE_P (over_return)
2108 && TREE_CODE (over_return) == TREE_CODE (base_return)
2109 && CLASS_TYPE_P (TREE_TYPE (over_return))
2110 && CLASS_TYPE_P (TREE_TYPE (base_return))
2111 /* If the overrider is invalid, don't even try. */
2112 && !DECL_INVALID_OVERRIDER_P (overrider_target))
2113 {
2114 /* If FN is a covariant thunk, we must figure out the adjustment
2115 to the final base FN was converting to. As OVERRIDER_TARGET might
2116 also be converting to the return type of FN, we have to
2117 combine the two conversions here. */
2118 tree fixed_offset, virtual_offset;
2119
2120 over_return = TREE_TYPE (over_return);
2121 base_return = TREE_TYPE (base_return);
2122
2123 if (DECL_THUNK_P (fn))
2124 {
2125 gcc_assert (DECL_RESULT_THUNK_P (fn));
2126 fixed_offset = ssize_int (THUNK_FIXED_OFFSET (fn));
2127 virtual_offset = THUNK_VIRTUAL_OFFSET (fn);
2128 }
2129 else
2130 fixed_offset = virtual_offset = NULL_TREE;
2131
2132 if (virtual_offset)
2133 /* Find the equivalent binfo within the return type of the
2134 overriding function. We will want the vbase offset from
2135 there. */
2136 virtual_offset = binfo_for_vbase (BINFO_TYPE (virtual_offset),
2137 over_return);
2138 else if (!same_type_ignoring_top_level_qualifiers_p
2139 (over_return, base_return))
2140 {
2141 /* There was no existing virtual thunk (which takes
2142 precedence). So find the binfo of the base function's
2143 return type within the overriding function's return type.
2144 We cannot call lookup base here, because we're inside a
2145 dfs_walk, and will therefore clobber the BINFO_MARKED
2146 flags. Fortunately we know the covariancy is valid (it
2147 has already been checked), so we can just iterate along
2148 the binfos, which have been chained in inheritance graph
2149 order. Of course it is lame that we have to repeat the
2150 search here anyway -- we should really be caching pieces
2151 of the vtable and avoiding this repeated work. */
2152 tree thunk_binfo, base_binfo;
2153
2154 /* Find the base binfo within the overriding function's
2155 return type. We will always find a thunk_binfo, except
2156 when the covariancy is invalid (which we will have
2157 already diagnosed). */
2158 for (base_binfo = TYPE_BINFO (base_return),
2159 thunk_binfo = TYPE_BINFO (over_return);
2160 thunk_binfo;
2161 thunk_binfo = TREE_CHAIN (thunk_binfo))
2162 if (SAME_BINFO_TYPE_P (BINFO_TYPE (thunk_binfo),
2163 BINFO_TYPE (base_binfo)))
2164 break;
2165
2166 /* See if virtual inheritance is involved. */
2167 for (virtual_offset = thunk_binfo;
2168 virtual_offset;
2169 virtual_offset = BINFO_INHERITANCE_CHAIN (virtual_offset))
2170 if (BINFO_VIRTUAL_P (virtual_offset))
2171 break;
2172
2173 if (virtual_offset
2174 || (thunk_binfo && !BINFO_OFFSET_ZEROP (thunk_binfo)))
2175 {
2176 tree offset = convert (ssizetype, BINFO_OFFSET (thunk_binfo));
2177
2178 if (virtual_offset)
2179 {
2180 /* We convert via virtual base. Adjust the fixed
2181 offset to be from there. */
2182 offset =
2183 size_diffop (offset,
2184 convert (ssizetype,
2185 BINFO_OFFSET (virtual_offset)));
2186 }
2187 if (fixed_offset)
2188 /* There was an existing fixed offset, this must be
2189 from the base just converted to, and the base the
2190 FN was thunking to. */
2191 fixed_offset = size_binop (PLUS_EXPR, fixed_offset, offset);
2192 else
2193 fixed_offset = offset;
2194 }
2195 }
2196
2197 if (fixed_offset || virtual_offset)
2198 /* Replace the overriding function with a covariant thunk. We
2199 will emit the overriding function in its own slot as
2200 well. */
2201 overrider_fn = make_thunk (overrider_target, /*this_adjusting=*/0,
2202 fixed_offset, virtual_offset);
2203 }
2204 else
2205 gcc_assert (DECL_INVALID_OVERRIDER_P (overrider_target) ||
2206 !DECL_THUNK_P (fn));
2207
2208 /* Assume that we will produce a thunk that convert all the way to
2209 the final overrider, and not to an intermediate virtual base. */
2210 virtual_base = NULL_TREE;
2211
2212 /* See if we can convert to an intermediate virtual base first, and then
2213 use the vcall offset located there to finish the conversion. */
2214 for (; b; b = BINFO_INHERITANCE_CHAIN (b))
2215 {
2216 /* If we find the final overrider, then we can stop
2217 walking. */
2218 if (SAME_BINFO_TYPE_P (BINFO_TYPE (b),
2219 BINFO_TYPE (TREE_VALUE (overrider))))
2220 break;
2221
2222 /* If we find a virtual base, and we haven't yet found the
2223 overrider, then there is a virtual base between the
2224 declaring base (first_defn) and the final overrider. */
2225 if (BINFO_VIRTUAL_P (b))
2226 {
2227 virtual_base = b;
2228 break;
2229 }
2230 }
2231
2232 if (overrider_fn != overrider_target && !virtual_base)
2233 {
2234 /* The ABI specifies that a covariant thunk includes a mangling
2235 for a this pointer adjustment. This-adjusting thunks that
2236 override a function from a virtual base have a vcall
2237 adjustment. When the virtual base in question is a primary
2238 virtual base, we know the adjustments are zero, (and in the
2239 non-covariant case, we would not use the thunk).
2240 Unfortunately we didn't notice this could happen, when
2241 designing the ABI and so never mandated that such a covariant
2242 thunk should be emitted. Because we must use the ABI mandated
2243 name, we must continue searching from the binfo where we
2244 found the most recent definition of the function, towards the
2245 primary binfo which first introduced the function into the
2246 vtable. If that enters a virtual base, we must use a vcall
2247 this-adjusting thunk. Bleah! */
2248 tree probe = first_defn;
2249
2250 while ((probe = get_primary_binfo (probe))
2251 && (unsigned) list_length (BINFO_VIRTUALS (probe)) > ix)
2252 if (BINFO_VIRTUAL_P (probe))
2253 virtual_base = probe;
2254
2255 if (virtual_base)
2256 /* OK, first_defn got this function from a (possibly lost) primary
2257 virtual base, so we're going to use the vcall offset for that
2258 primary virtual base. But the caller is passing a first_defn*,
2259 not a virtual_base*, so the correct delta is the delta between
2260 first_defn* and itself, i.e. zero. */
2261 goto virtual_covariant;
2262 }
2263
2264 /* Compute the constant adjustment to the `this' pointer. The
2265 `this' pointer, when this function is called, will point at BINFO
2266 (or one of its primary bases, which are at the same offset). */
2267 if (virtual_base)
2268 /* The `this' pointer needs to be adjusted from the declaration to
2269 the nearest virtual base. */
2270 delta = size_diffop_loc (input_location,
2271 convert (ssizetype, BINFO_OFFSET (virtual_base)),
2272 convert (ssizetype, BINFO_OFFSET (first_defn)));
2273 else if (lost)
2274 /* If the nearest definition is in a lost primary, we don't need an
2275 entry in our vtable. Except possibly in a constructor vtable,
2276 if we happen to get our primary back. In that case, the offset
2277 will be zero, as it will be a primary base. */
2278 virtual_covariant:
2279 delta = size_zero_node;
2280 else
2281 /* The `this' pointer needs to be adjusted from pointing to
2282 BINFO to pointing at the base where the final overrider
2283 appears. */
2284 delta = size_diffop_loc (input_location,
2285 convert (ssizetype,
2286 BINFO_OFFSET (TREE_VALUE (overrider))),
2287 convert (ssizetype, BINFO_OFFSET (binfo)));
2288
2289 modify_vtable_entry (t, binfo, overrider_fn, delta, virtuals);
2290
2291 if (virtual_base)
2292 BV_VCALL_INDEX (*virtuals)
2293 = get_vcall_index (overrider_target, BINFO_TYPE (virtual_base));
2294 else
2295 BV_VCALL_INDEX (*virtuals) = NULL_TREE;
2296 }
2297
2298 /* Called from modify_all_vtables via dfs_walk. */
2299
2300 static tree
2301 dfs_modify_vtables (tree binfo, void* data)
2302 {
2303 tree t = (tree) data;
2304 tree virtuals;
2305 tree old_virtuals;
2306 unsigned ix;
2307
2308 if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
2309 /* A base without a vtable needs no modification, and its bases
2310 are uninteresting. */
2311 return dfs_skip_bases;
2312
2313 if (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), t)
2314 && !CLASSTYPE_HAS_PRIMARY_BASE_P (t))
2315 /* Don't do the primary vtable, if it's new. */
2316 return NULL_TREE;
2317
2318 if (BINFO_PRIMARY_P (binfo) && !BINFO_VIRTUAL_P (binfo))
2319 /* There's no need to modify the vtable for a non-virtual primary
2320 base; we're not going to use that vtable anyhow. We do still
2321 need to do this for virtual primary bases, as they could become
2322 non-primary in a construction vtable. */
2323 return NULL_TREE;
2324
2325 make_new_vtable (t, binfo);
2326
2327 /* Now, go through each of the virtual functions in the virtual
2328 function table for BINFO. Find the final overrider, and update
2329 the BINFO_VIRTUALS list appropriately. */
2330 for (ix = 0, virtuals = BINFO_VIRTUALS (binfo),
2331 old_virtuals = BINFO_VIRTUALS (TYPE_BINFO (BINFO_TYPE (binfo)));
2332 virtuals;
2333 ix++, virtuals = TREE_CHAIN (virtuals),
2334 old_virtuals = TREE_CHAIN (old_virtuals))
2335 update_vtable_entry_for_fn (t,
2336 binfo,
2337 BV_FN (old_virtuals),
2338 &virtuals, ix);
2339
2340 return NULL_TREE;
2341 }
2342
2343 /* Update all of the primary and secondary vtables for T. Create new
2344 vtables as required, and initialize their RTTI information. Each
2345 of the functions in VIRTUALS is declared in T and may override a
2346 virtual function from a base class; find and modify the appropriate
2347 entries to point to the overriding functions. Returns a list, in
2348 declaration order, of the virtual functions that are declared in T,
2349 but do not appear in the primary base class vtable, and which
2350 should therefore be appended to the end of the vtable for T. */
2351
2352 static tree
2353 modify_all_vtables (tree t, tree virtuals)
2354 {
2355 tree binfo = TYPE_BINFO (t);
2356 tree *fnsp;
2357
2358 /* Update all of the vtables. */
2359 dfs_walk_once (binfo, dfs_modify_vtables, NULL, t);
2360
2361 /* Add virtual functions not already in our primary vtable. These
2362 will be both those introduced by this class, and those overridden
2363 from secondary bases. It does not include virtuals merely
2364 inherited from secondary bases. */
2365 for (fnsp = &virtuals; *fnsp; )
2366 {
2367 tree fn = TREE_VALUE (*fnsp);
2368
2369 if (!value_member (fn, BINFO_VIRTUALS (binfo))
2370 || DECL_VINDEX (fn) == error_mark_node)
2371 {
2372 /* We don't need to adjust the `this' pointer when
2373 calling this function. */
2374 BV_DELTA (*fnsp) = integer_zero_node;
2375 BV_VCALL_INDEX (*fnsp) = NULL_TREE;
2376
2377 /* This is a function not already in our vtable. Keep it. */
2378 fnsp = &TREE_CHAIN (*fnsp);
2379 }
2380 else
2381 /* We've already got an entry for this function. Skip it. */
2382 *fnsp = TREE_CHAIN (*fnsp);
2383 }
2384
2385 return virtuals;
2386 }
2387
2388 /* Get the base virtual function declarations in T that have the
2389 indicated NAME. */
2390
2391 static tree
2392 get_basefndecls (tree name, tree t)
2393 {
2394 tree methods;
2395 tree base_fndecls = NULL_TREE;
2396 int n_baseclasses = BINFO_N_BASE_BINFOS (TYPE_BINFO (t));
2397 int i;
2398
2399 /* Find virtual functions in T with the indicated NAME. */
2400 i = lookup_fnfields_1 (t, name);
2401 if (i != -1)
2402 for (methods = VEC_index (tree, CLASSTYPE_METHOD_VEC (t), i);
2403 methods;
2404 methods = OVL_NEXT (methods))
2405 {
2406 tree method = OVL_CURRENT (methods);
2407
2408 if (TREE_CODE (method) == FUNCTION_DECL
2409 && DECL_VINDEX (method))
2410 base_fndecls = tree_cons (NULL_TREE, method, base_fndecls);
2411 }
2412
2413 if (base_fndecls)
2414 return base_fndecls;
2415
2416 for (i = 0; i < n_baseclasses; i++)
2417 {
2418 tree basetype = BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (t), i));
2419 base_fndecls = chainon (get_basefndecls (name, basetype),
2420 base_fndecls);
2421 }
2422
2423 return base_fndecls;
2424 }
2425
2426 /* If this declaration supersedes the declaration of
2427 a method declared virtual in the base class, then
2428 mark this field as being virtual as well. */
2429
2430 void
2431 check_for_override (tree decl, tree ctype)
2432 {
2433 if (TREE_CODE (decl) == TEMPLATE_DECL)
2434 /* In [temp.mem] we have:
2435
2436 A specialization of a member function template does not
2437 override a virtual function from a base class. */
2438 return;
2439 if ((DECL_DESTRUCTOR_P (decl)
2440 || IDENTIFIER_VIRTUAL_P (DECL_NAME (decl))
2441 || DECL_CONV_FN_P (decl))
2442 && look_for_overrides (ctype, decl)
2443 && !DECL_STATIC_FUNCTION_P (decl))
2444 /* Set DECL_VINDEX to a value that is neither an INTEGER_CST nor
2445 the error_mark_node so that we know it is an overriding
2446 function. */
2447 DECL_VINDEX (decl) = decl;
2448
2449 if (DECL_VIRTUAL_P (decl))
2450 {
2451 if (!DECL_VINDEX (decl))
2452 DECL_VINDEX (decl) = error_mark_node;
2453 IDENTIFIER_VIRTUAL_P (DECL_NAME (decl)) = 1;
2454 }
2455 }
2456
2457 /* Warn about hidden virtual functions that are not overridden in t.
2458 We know that constructors and destructors don't apply. */
2459
2460 static void
2461 warn_hidden (tree t)
2462 {
2463 VEC(tree,gc) *method_vec = CLASSTYPE_METHOD_VEC (t);
2464 tree fns;
2465 size_t i;
2466
2467 /* We go through each separately named virtual function. */
2468 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
2469 VEC_iterate (tree, method_vec, i, fns);
2470 ++i)
2471 {
2472 tree fn;
2473 tree name;
2474 tree fndecl;
2475 tree base_fndecls;
2476 tree base_binfo;
2477 tree binfo;
2478 int j;
2479
2480 /* All functions in this slot in the CLASSTYPE_METHOD_VEC will
2481 have the same name. Figure out what name that is. */
2482 name = DECL_NAME (OVL_CURRENT (fns));
2483 /* There are no possibly hidden functions yet. */
2484 base_fndecls = NULL_TREE;
2485 /* Iterate through all of the base classes looking for possibly
2486 hidden functions. */
2487 for (binfo = TYPE_BINFO (t), j = 0;
2488 BINFO_BASE_ITERATE (binfo, j, base_binfo); j++)
2489 {
2490 tree basetype = BINFO_TYPE (base_binfo);
2491 base_fndecls = chainon (get_basefndecls (name, basetype),
2492 base_fndecls);
2493 }
2494
2495 /* If there are no functions to hide, continue. */
2496 if (!base_fndecls)
2497 continue;
2498
2499 /* Remove any overridden functions. */
2500 for (fn = fns; fn; fn = OVL_NEXT (fn))
2501 {
2502 fndecl = OVL_CURRENT (fn);
2503 if (DECL_VINDEX (fndecl))
2504 {
2505 tree *prev = &base_fndecls;
2506
2507 while (*prev)
2508 /* If the method from the base class has the same
2509 signature as the method from the derived class, it
2510 has been overridden. */
2511 if (same_signature_p (fndecl, TREE_VALUE (*prev)))
2512 *prev = TREE_CHAIN (*prev);
2513 else
2514 prev = &TREE_CHAIN (*prev);
2515 }
2516 }
2517
2518 /* Now give a warning for all base functions without overriders,
2519 as they are hidden. */
2520 while (base_fndecls)
2521 {
2522 /* Here we know it is a hider, and no overrider exists. */
2523 warning (OPT_Woverloaded_virtual, "%q+D was hidden", TREE_VALUE (base_fndecls));
2524 warning (OPT_Woverloaded_virtual, " by %q+D", fns);
2525 base_fndecls = TREE_CHAIN (base_fndecls);
2526 }
2527 }
2528 }
2529
2530 /* Check for things that are invalid. There are probably plenty of other
2531 things we should check for also. */
2532
2533 static void
2534 finish_struct_anon (tree t)
2535 {
2536 tree field;
2537
2538 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
2539 {
2540 if (TREE_STATIC (field))
2541 continue;
2542 if (TREE_CODE (field) != FIELD_DECL)
2543 continue;
2544
2545 if (DECL_NAME (field) == NULL_TREE
2546 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
2547 {
2548 bool is_union = TREE_CODE (TREE_TYPE (field)) == UNION_TYPE;
2549 tree elt = TYPE_FIELDS (TREE_TYPE (field));
2550 for (; elt; elt = TREE_CHAIN (elt))
2551 {
2552 /* We're generally only interested in entities the user
2553 declared, but we also find nested classes by noticing
2554 the TYPE_DECL that we create implicitly. You're
2555 allowed to put one anonymous union inside another,
2556 though, so we explicitly tolerate that. We use
2557 TYPE_ANONYMOUS_P rather than ANON_AGGR_TYPE_P so that
2558 we also allow unnamed types used for defining fields. */
2559 if (DECL_ARTIFICIAL (elt)
2560 && (!DECL_IMPLICIT_TYPEDEF_P (elt)
2561 || TYPE_ANONYMOUS_P (TREE_TYPE (elt))))
2562 continue;
2563
2564 if (TREE_CODE (elt) != FIELD_DECL)
2565 {
2566 if (is_union)
2567 permerror (input_location, "%q+#D invalid; an anonymous union can "
2568 "only have non-static data members", elt);
2569 else
2570 permerror (input_location, "%q+#D invalid; an anonymous struct can "
2571 "only have non-static data members", elt);
2572 continue;
2573 }
2574
2575 if (TREE_PRIVATE (elt))
2576 {
2577 if (is_union)
2578 permerror (input_location, "private member %q+#D in anonymous union", elt);
2579 else
2580 permerror (input_location, "private member %q+#D in anonymous struct", elt);
2581 }
2582 else if (TREE_PROTECTED (elt))
2583 {
2584 if (is_union)
2585 permerror (input_location, "protected member %q+#D in anonymous union", elt);
2586 else
2587 permerror (input_location, "protected member %q+#D in anonymous struct", elt);
2588 }
2589
2590 TREE_PRIVATE (elt) = TREE_PRIVATE (field);
2591 TREE_PROTECTED (elt) = TREE_PROTECTED (field);
2592 }
2593 }
2594 }
2595 }
2596
2597 /* Add T to CLASSTYPE_DECL_LIST of current_class_type which
2598 will be used later during class template instantiation.
2599 When FRIEND_P is zero, T can be a static member data (VAR_DECL),
2600 a non-static member data (FIELD_DECL), a member function
2601 (FUNCTION_DECL), a nested type (RECORD_TYPE, ENUM_TYPE),
2602 a typedef (TYPE_DECL) or a member class template (TEMPLATE_DECL)
2603 When FRIEND_P is nonzero, T is either a friend class
2604 (RECORD_TYPE, TEMPLATE_DECL) or a friend function
2605 (FUNCTION_DECL, TEMPLATE_DECL). */
2606
2607 void
2608 maybe_add_class_template_decl_list (tree type, tree t, int friend_p)
2609 {
2610 /* Save some memory by not creating TREE_LIST if TYPE is not template. */
2611 if (CLASSTYPE_TEMPLATE_INFO (type))
2612 CLASSTYPE_DECL_LIST (type)
2613 = tree_cons (friend_p ? NULL_TREE : type,
2614 t, CLASSTYPE_DECL_LIST (type));
2615 }
2616
2617 /* Create default constructors, assignment operators, and so forth for
2618 the type indicated by T, if they are needed. CANT_HAVE_CONST_CTOR,
2619 and CANT_HAVE_CONST_ASSIGNMENT are nonzero if, for whatever reason,
2620 the class cannot have a default constructor, copy constructor
2621 taking a const reference argument, or an assignment operator taking
2622 a const reference, respectively. */
2623
2624 static void
2625 add_implicitly_declared_members (tree t,
2626 int cant_have_const_cctor,
2627 int cant_have_const_assignment)
2628 {
2629 /* Destructor. */
2630 if (!CLASSTYPE_DESTRUCTORS (t))
2631 {
2632 /* In general, we create destructors lazily. */
2633 CLASSTYPE_LAZY_DESTRUCTOR (t) = 1;
2634
2635 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
2636 && TYPE_FOR_JAVA (t))
2637 /* But if this is a Java class, any non-trivial destructor is
2638 invalid, even if compiler-generated. Therefore, if the
2639 destructor is non-trivial we create it now. */
2640 lazily_declare_fn (sfk_destructor, t);
2641 }
2642
2643 /* [class.ctor]
2644
2645 If there is no user-declared constructor for a class, a default
2646 constructor is implicitly declared. */
2647 if (! TYPE_HAS_USER_CONSTRUCTOR (t))
2648 {
2649 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 1;
2650 CLASSTYPE_LAZY_DEFAULT_CTOR (t) = 1;
2651 }
2652
2653 /* [class.ctor]
2654
2655 If a class definition does not explicitly declare a copy
2656 constructor, one is declared implicitly. */
2657 if (! TYPE_HAS_COPY_CTOR (t) && ! TYPE_FOR_JAVA (t)
2658 && !type_has_move_constructor (t))
2659 {
2660 TYPE_HAS_COPY_CTOR (t) = 1;
2661 TYPE_HAS_CONST_COPY_CTOR (t) = !cant_have_const_cctor;
2662 CLASSTYPE_LAZY_COPY_CTOR (t) = 1;
2663 if (cxx_dialect >= cxx0x)
2664 CLASSTYPE_LAZY_MOVE_CTOR (t) = 1;
2665 }
2666
2667 /* If there is no assignment operator, one will be created if and
2668 when it is needed. For now, just record whether or not the type
2669 of the parameter to the assignment operator will be a const or
2670 non-const reference. */
2671 if (!TYPE_HAS_COPY_ASSIGN (t) && !TYPE_FOR_JAVA (t)
2672 && !type_has_move_assign (t))
2673 {
2674 TYPE_HAS_COPY_ASSIGN (t) = 1;
2675 TYPE_HAS_CONST_COPY_ASSIGN (t) = !cant_have_const_assignment;
2676 CLASSTYPE_LAZY_COPY_ASSIGN (t) = 1;
2677 if (cxx_dialect >= cxx0x)
2678 CLASSTYPE_LAZY_MOVE_ASSIGN (t) = 1;
2679 }
2680
2681 /* We can't be lazy about declaring functions that might override
2682 a virtual function from a base class. */
2683 if (TYPE_POLYMORPHIC_P (t)
2684 && (CLASSTYPE_LAZY_COPY_ASSIGN (t)
2685 || CLASSTYPE_LAZY_MOVE_ASSIGN (t)
2686 || CLASSTYPE_LAZY_DESTRUCTOR (t)))
2687 {
2688 tree binfo = TYPE_BINFO (t);
2689 tree base_binfo;
2690 int ix;
2691 tree opname = ansi_assopname (NOP_EXPR);
2692 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ++ix)
2693 {
2694 tree bv;
2695 for (bv = BINFO_VIRTUALS (base_binfo); bv; bv = TREE_CHAIN (bv))
2696 {
2697 tree fn = BV_FN (bv);
2698 if (DECL_NAME (fn) == opname)
2699 {
2700 if (CLASSTYPE_LAZY_COPY_ASSIGN (t))
2701 lazily_declare_fn (sfk_copy_assignment, t);
2702 if (CLASSTYPE_LAZY_MOVE_ASSIGN (t))
2703 lazily_declare_fn (sfk_move_assignment, t);
2704 }
2705 else if (DECL_DESTRUCTOR_P (fn)
2706 && CLASSTYPE_LAZY_DESTRUCTOR (t))
2707 lazily_declare_fn (sfk_destructor, t);
2708 }
2709 }
2710 }
2711 }
2712
2713 /* Subroutine of finish_struct_1. Recursively count the number of fields
2714 in TYPE, including anonymous union members. */
2715
2716 static int
2717 count_fields (tree fields)
2718 {
2719 tree x;
2720 int n_fields = 0;
2721 for (x = fields; x; x = TREE_CHAIN (x))
2722 {
2723 if (TREE_CODE (x) == FIELD_DECL && ANON_AGGR_TYPE_P (TREE_TYPE (x)))
2724 n_fields += count_fields (TYPE_FIELDS (TREE_TYPE (x)));
2725 else
2726 n_fields += 1;
2727 }
2728 return n_fields;
2729 }
2730
2731 /* Subroutine of finish_struct_1. Recursively add all the fields in the
2732 TREE_LIST FIELDS to the SORTED_FIELDS_TYPE elts, starting at offset IDX. */
2733
2734 static int
2735 add_fields_to_record_type (tree fields, struct sorted_fields_type *field_vec, int idx)
2736 {
2737 tree x;
2738 for (x = fields; x; x = TREE_CHAIN (x))
2739 {
2740 if (TREE_CODE (x) == FIELD_DECL && ANON_AGGR_TYPE_P (TREE_TYPE (x)))
2741 idx = add_fields_to_record_type (TYPE_FIELDS (TREE_TYPE (x)), field_vec, idx);
2742 else
2743 field_vec->elts[idx++] = x;
2744 }
2745 return idx;
2746 }
2747
2748 /* FIELD is a bit-field. We are finishing the processing for its
2749 enclosing type. Issue any appropriate messages and set appropriate
2750 flags. Returns false if an error has been diagnosed. */
2751
2752 static bool
2753 check_bitfield_decl (tree field)
2754 {
2755 tree type = TREE_TYPE (field);
2756 tree w;
2757
2758 /* Extract the declared width of the bitfield, which has been
2759 temporarily stashed in DECL_INITIAL. */
2760 w = DECL_INITIAL (field);
2761 gcc_assert (w != NULL_TREE);
2762 /* Remove the bit-field width indicator so that the rest of the
2763 compiler does not treat that value as an initializer. */
2764 DECL_INITIAL (field) = NULL_TREE;
2765
2766 /* Detect invalid bit-field type. */
2767 if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
2768 {
2769 error ("bit-field %q+#D with non-integral type", field);
2770 w = error_mark_node;
2771 }
2772 else
2773 {
2774 /* Avoid the non_lvalue wrapper added by fold for PLUS_EXPRs. */
2775 STRIP_NOPS (w);
2776
2777 /* detect invalid field size. */
2778 w = integral_constant_value (w);
2779
2780 if (TREE_CODE (w) != INTEGER_CST)
2781 {
2782 error ("bit-field %q+D width not an integer constant", field);
2783 w = error_mark_node;
2784 }
2785 else if (tree_int_cst_sgn (w) < 0)
2786 {
2787 error ("negative width in bit-field %q+D", field);
2788 w = error_mark_node;
2789 }
2790 else if (integer_zerop (w) && DECL_NAME (field) != 0)
2791 {
2792 error ("zero width for bit-field %q+D", field);
2793 w = error_mark_node;
2794 }
2795 else if (compare_tree_int (w, TYPE_PRECISION (type)) > 0
2796 && TREE_CODE (type) != ENUMERAL_TYPE
2797 && TREE_CODE (type) != BOOLEAN_TYPE)
2798 warning (0, "width of %q+D exceeds its type", field);
2799 else if (TREE_CODE (type) == ENUMERAL_TYPE
2800 && (0 > (compare_tree_int
2801 (w, TYPE_PRECISION (ENUM_UNDERLYING_TYPE (type))))))
2802 warning (0, "%q+D is too small to hold all values of %q#T", field, type);
2803 }
2804
2805 if (w != error_mark_node)
2806 {
2807 DECL_SIZE (field) = convert (bitsizetype, w);
2808 DECL_BIT_FIELD (field) = 1;
2809 return true;
2810 }
2811 else
2812 {
2813 /* Non-bit-fields are aligned for their type. */
2814 DECL_BIT_FIELD (field) = 0;
2815 CLEAR_DECL_C_BIT_FIELD (field);
2816 return false;
2817 }
2818 }
2819
2820 /* FIELD is a non bit-field. We are finishing the processing for its
2821 enclosing type T. Issue any appropriate messages and set appropriate
2822 flags. */
2823
2824 static void
2825 check_field_decl (tree field,
2826 tree t,
2827 int* cant_have_const_ctor,
2828 int* no_const_asn_ref,
2829 int* any_default_members)
2830 {
2831 tree type = strip_array_types (TREE_TYPE (field));
2832
2833 /* An anonymous union cannot contain any fields which would change
2834 the settings of CANT_HAVE_CONST_CTOR and friends. */
2835 if (ANON_UNION_TYPE_P (type))
2836 ;
2837 /* And, we don't set TYPE_HAS_CONST_COPY_CTOR, etc., for anonymous
2838 structs. So, we recurse through their fields here. */
2839 else if (ANON_AGGR_TYPE_P (type))
2840 {
2841 tree fields;
2842
2843 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
2844 if (TREE_CODE (fields) == FIELD_DECL && !DECL_C_BIT_FIELD (field))
2845 check_field_decl (fields, t, cant_have_const_ctor,
2846 no_const_asn_ref, any_default_members);
2847 }
2848 /* Check members with class type for constructors, destructors,
2849 etc. */
2850 else if (CLASS_TYPE_P (type))
2851 {
2852 /* Never let anything with uninheritable virtuals
2853 make it through without complaint. */
2854 abstract_virtuals_error (field, type);
2855
2856 if (TREE_CODE (t) == UNION_TYPE)
2857 {
2858 if (TYPE_NEEDS_CONSTRUCTING (type))
2859 error ("member %q+#D with constructor not allowed in union",
2860 field);
2861 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
2862 error ("member %q+#D with destructor not allowed in union", field);
2863 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
2864 error ("member %q+#D with copy assignment operator not allowed in union",
2865 field);
2866 /* Don't bother diagnosing move assop now; C++0x has more
2867 flexible unions. */
2868 }
2869 else
2870 {
2871 TYPE_NEEDS_CONSTRUCTING (t) |= TYPE_NEEDS_CONSTRUCTING (type);
2872 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
2873 |= TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type);
2874 TYPE_HAS_COMPLEX_COPY_ASSIGN (t)
2875 |= (TYPE_HAS_COMPLEX_COPY_ASSIGN (type)
2876 || !TYPE_HAS_COPY_ASSIGN (type));
2877 TYPE_HAS_COMPLEX_COPY_CTOR (t) |= (TYPE_HAS_COMPLEX_COPY_CTOR (type)
2878 || !TYPE_HAS_COPY_CTOR (type));
2879 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t) |= TYPE_HAS_COMPLEX_MOVE_ASSIGN (type);
2880 TYPE_HAS_COMPLEX_MOVE_CTOR (t) |= TYPE_HAS_COMPLEX_MOVE_CTOR (type);
2881 TYPE_HAS_COMPLEX_DFLT (t) |= (!TYPE_HAS_DEFAULT_CONSTRUCTOR (type)
2882 || TYPE_HAS_COMPLEX_DFLT (type));
2883 }
2884
2885 if (TYPE_HAS_COPY_CTOR (type)
2886 && !TYPE_HAS_CONST_COPY_CTOR (type))
2887 *cant_have_const_ctor = 1;
2888
2889 if (TYPE_HAS_COPY_ASSIGN (type)
2890 && !TYPE_HAS_CONST_COPY_ASSIGN (type))
2891 *no_const_asn_ref = 1;
2892 }
2893 if (DECL_INITIAL (field) != NULL_TREE)
2894 {
2895 /* `build_class_init_list' does not recognize
2896 non-FIELD_DECLs. */
2897 if (TREE_CODE (t) == UNION_TYPE && any_default_members != 0)
2898 error ("multiple fields in union %qT initialized", t);
2899 *any_default_members = 1;
2900 }
2901 }
2902
2903 /* Check the data members (both static and non-static), class-scoped
2904 typedefs, etc., appearing in the declaration of T. Issue
2905 appropriate diagnostics. Sets ACCESS_DECLS to a list (in
2906 declaration order) of access declarations; each TREE_VALUE in this
2907 list is a USING_DECL.
2908
2909 In addition, set the following flags:
2910
2911 EMPTY_P
2912 The class is empty, i.e., contains no non-static data members.
2913
2914 CANT_HAVE_CONST_CTOR_P
2915 This class cannot have an implicitly generated copy constructor
2916 taking a const reference.
2917
2918 CANT_HAVE_CONST_ASN_REF
2919 This class cannot have an implicitly generated assignment
2920 operator taking a const reference.
2921
2922 All of these flags should be initialized before calling this
2923 function.
2924
2925 Returns a pointer to the end of the TYPE_FIELDs chain; additional
2926 fields can be added by adding to this chain. */
2927
2928 static void
2929 check_field_decls (tree t, tree *access_decls,
2930 int *cant_have_const_ctor_p,
2931 int *no_const_asn_ref_p)
2932 {
2933 tree *field;
2934 tree *next;
2935 bool has_pointers;
2936 int any_default_members;
2937 int cant_pack = 0;
2938 int field_access = -1;
2939
2940 /* Assume there are no access declarations. */
2941 *access_decls = NULL_TREE;
2942 /* Assume this class has no pointer members. */
2943 has_pointers = false;
2944 /* Assume none of the members of this class have default
2945 initializations. */
2946 any_default_members = 0;
2947
2948 for (field = &TYPE_FIELDS (t); *field; field = next)
2949 {
2950 tree x = *field;
2951 tree type = TREE_TYPE (x);
2952 int this_field_access;
2953
2954 next = &TREE_CHAIN (x);
2955
2956 if (TREE_CODE (x) == USING_DECL)
2957 {
2958 /* Prune the access declaration from the list of fields. */
2959 *field = TREE_CHAIN (x);
2960
2961 /* Save the access declarations for our caller. */
2962 *access_decls = tree_cons (NULL_TREE, x, *access_decls);
2963
2964 /* Since we've reset *FIELD there's no reason to skip to the
2965 next field. */
2966 next = field;
2967 continue;
2968 }
2969
2970 if (TREE_CODE (x) == TYPE_DECL
2971 || TREE_CODE (x) == TEMPLATE_DECL)
2972 continue;
2973
2974 /* If we've gotten this far, it's a data member, possibly static,
2975 or an enumerator. */
2976 DECL_CONTEXT (x) = t;
2977
2978 /* When this goes into scope, it will be a non-local reference. */
2979 DECL_NONLOCAL (x) = 1;
2980
2981 if (TREE_CODE (t) == UNION_TYPE)
2982 {
2983 /* [class.union]
2984
2985 If a union contains a static data member, or a member of
2986 reference type, the program is ill-formed. */
2987 if (TREE_CODE (x) == VAR_DECL)
2988 {
2989 error ("%q+D may not be static because it is a member of a union", x);
2990 continue;
2991 }
2992 if (TREE_CODE (type) == REFERENCE_TYPE)
2993 {
2994 error ("%q+D may not have reference type %qT because"
2995 " it is a member of a union",
2996 x, type);
2997 continue;
2998 }
2999 }
3000
3001 /* Perform error checking that did not get done in
3002 grokdeclarator. */
3003 if (TREE_CODE (type) == FUNCTION_TYPE)
3004 {
3005 error ("field %q+D invalidly declared function type", x);
3006 type = build_pointer_type (type);
3007 TREE_TYPE (x) = type;
3008 }
3009 else if (TREE_CODE (type) == METHOD_TYPE)
3010 {
3011 error ("field %q+D invalidly declared method type", x);
3012 type = build_pointer_type (type);
3013 TREE_TYPE (x) = type;
3014 }
3015
3016 if (type == error_mark_node)
3017 continue;
3018
3019 if (TREE_CODE (x) == CONST_DECL || TREE_CODE (x) == VAR_DECL)
3020 continue;
3021
3022 /* Now it can only be a FIELD_DECL. */
3023
3024 if (TREE_PRIVATE (x) || TREE_PROTECTED (x))
3025 CLASSTYPE_NON_AGGREGATE (t) = 1;
3026
3027 /* A standard-layout class is a class that:
3028 ...
3029 has the same access control (Clause 11) for all non-static data members,
3030 ... */
3031 this_field_access = TREE_PROTECTED (x) ? 1 : TREE_PRIVATE (x) ? 2 : 0;
3032 if (field_access == -1)
3033 field_access = this_field_access;
3034 else if (this_field_access != field_access)
3035 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
3036
3037 /* If this is of reference type, check if it needs an init. */
3038 if (TREE_CODE (type) == REFERENCE_TYPE)
3039 {
3040 CLASSTYPE_NON_LAYOUT_POD_P (t) = 1;
3041 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
3042 if (DECL_INITIAL (x) == NULL_TREE)
3043 SET_CLASSTYPE_REF_FIELDS_NEED_INIT (t, 1);
3044
3045 /* ARM $12.6.2: [A member initializer list] (or, for an
3046 aggregate, initialization by a brace-enclosed list) is the
3047 only way to initialize nonstatic const and reference
3048 members. */
3049 TYPE_HAS_COMPLEX_COPY_ASSIGN (t) = 1;
3050 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t) = 1;
3051 }
3052
3053 type = strip_array_types (type);
3054
3055 if (TYPE_PACKED (t))
3056 {
3057 if (!layout_pod_type_p (type) && !TYPE_PACKED (type))
3058 {
3059 warning
3060 (0,
3061 "ignoring packed attribute because of unpacked non-POD field %q+#D",
3062 x);
3063 cant_pack = 1;
3064 }
3065 else if (DECL_C_BIT_FIELD (x)
3066 || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT)
3067 DECL_PACKED (x) = 1;
3068 }
3069
3070 if (DECL_C_BIT_FIELD (x) && integer_zerop (DECL_INITIAL (x)))
3071 /* We don't treat zero-width bitfields as making a class
3072 non-empty. */
3073 ;
3074 else
3075 {
3076 /* The class is non-empty. */
3077 CLASSTYPE_EMPTY_P (t) = 0;
3078 /* The class is not even nearly empty. */
3079 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
3080 /* If one of the data members contains an empty class,
3081 so does T. */
3082 if (CLASS_TYPE_P (type)
3083 && CLASSTYPE_CONTAINS_EMPTY_CLASS_P (type))
3084 CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t) = 1;
3085 }
3086
3087 /* This is used by -Weffc++ (see below). Warn only for pointers
3088 to members which might hold dynamic memory. So do not warn
3089 for pointers to functions or pointers to members. */
3090 if (TYPE_PTR_P (type)
3091 && !TYPE_PTRFN_P (type)
3092 && !TYPE_PTR_TO_MEMBER_P (type))
3093 has_pointers = true;
3094
3095 if (CLASS_TYPE_P (type))
3096 {
3097 if (CLASSTYPE_REF_FIELDS_NEED_INIT (type))
3098 SET_CLASSTYPE_REF_FIELDS_NEED_INIT (t, 1);
3099 if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (type))
3100 SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT (t, 1);
3101 }
3102
3103 if (DECL_MUTABLE_P (x) || TYPE_HAS_MUTABLE_P (type))
3104 CLASSTYPE_HAS_MUTABLE (t) = 1;
3105
3106 if (! layout_pod_type_p (type))
3107 /* DR 148 now allows pointers to members (which are POD themselves),
3108 to be allowed in POD structs. */
3109 CLASSTYPE_NON_LAYOUT_POD_P (t) = 1;
3110
3111 if (!std_layout_type_p (type))
3112 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
3113
3114 if (! zero_init_p (type))
3115 CLASSTYPE_NON_ZERO_INIT_P (t) = 1;
3116
3117 /* We set DECL_C_BIT_FIELD in grokbitfield.
3118 If the type and width are valid, we'll also set DECL_BIT_FIELD. */
3119 if (! DECL_C_BIT_FIELD (x) || ! check_bitfield_decl (x))
3120 check_field_decl (x, t,
3121 cant_have_const_ctor_p,
3122 no_const_asn_ref_p,
3123 &any_default_members);
3124
3125 /* If any field is const, the structure type is pseudo-const. */
3126 if (CP_TYPE_CONST_P (type))
3127 {
3128 C_TYPE_FIELDS_READONLY (t) = 1;
3129 if (DECL_INITIAL (x) == NULL_TREE)
3130 SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT (t, 1);
3131
3132 /* ARM $12.6.2: [A member initializer list] (or, for an
3133 aggregate, initialization by a brace-enclosed list) is the
3134 only way to initialize nonstatic const and reference
3135 members. */
3136 TYPE_HAS_COMPLEX_COPY_ASSIGN (t) = 1;
3137 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t) = 1;
3138 }
3139 /* A field that is pseudo-const makes the structure likewise. */
3140 else if (CLASS_TYPE_P (type))
3141 {
3142 C_TYPE_FIELDS_READONLY (t) |= C_TYPE_FIELDS_READONLY (type);
3143 SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT (t,
3144 CLASSTYPE_READONLY_FIELDS_NEED_INIT (t)
3145 | CLASSTYPE_READONLY_FIELDS_NEED_INIT (type));
3146 }
3147
3148 /* Core issue 80: A nonstatic data member is required to have a
3149 different name from the class iff the class has a
3150 user-declared constructor. */
3151 if (constructor_name_p (DECL_NAME (x), t)
3152 && TYPE_HAS_USER_CONSTRUCTOR (t))
3153 permerror (input_location, "field %q+#D with same name as class", x);
3154 }
3155
3156 /* Effective C++ rule 11: if a class has dynamic memory held by pointers,
3157 it should also define a copy constructor and an assignment operator to
3158 implement the correct copy semantic (deep vs shallow, etc.). As it is
3159 not feasible to check whether the constructors do allocate dynamic memory
3160 and store it within members, we approximate the warning like this:
3161
3162 -- Warn only if there are members which are pointers
3163 -- Warn only if there is a non-trivial constructor (otherwise,
3164 there cannot be memory allocated).
3165 -- Warn only if there is a non-trivial destructor. We assume that the
3166 user at least implemented the cleanup correctly, and a destructor
3167 is needed to free dynamic memory.
3168
3169 This seems enough for practical purposes. */
3170 if (warn_ecpp
3171 && has_pointers
3172 && TYPE_HAS_USER_CONSTRUCTOR (t)
3173 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
3174 && !(TYPE_HAS_COPY_CTOR (t) && TYPE_HAS_COPY_ASSIGN (t)))
3175 {
3176 warning (OPT_Weffc__, "%q#T has pointer data members", t);
3177
3178 if (! TYPE_HAS_COPY_CTOR (t))
3179 {
3180 warning (OPT_Weffc__,
3181 " but does not override %<%T(const %T&)%>", t, t);
3182 if (!TYPE_HAS_COPY_ASSIGN (t))
3183 warning (OPT_Weffc__, " or %<operator=(const %T&)%>", t);
3184 }
3185 else if (! TYPE_HAS_COPY_ASSIGN (t))
3186 warning (OPT_Weffc__,
3187 " but does not override %<operator=(const %T&)%>", t);
3188 }
3189
3190 /* If any of the fields couldn't be packed, unset TYPE_PACKED. */
3191 if (cant_pack)
3192 TYPE_PACKED (t) = 0;
3193
3194 /* Check anonymous struct/anonymous union fields. */
3195 finish_struct_anon (t);
3196
3197 /* We've built up the list of access declarations in reverse order.
3198 Fix that now. */
3199 *access_decls = nreverse (*access_decls);
3200 }
3201
3202 /* If TYPE is an empty class type, records its OFFSET in the table of
3203 OFFSETS. */
3204
3205 static int
3206 record_subobject_offset (tree type, tree offset, splay_tree offsets)
3207 {
3208 splay_tree_node n;
3209
3210 if (!is_empty_class (type))
3211 return 0;
3212
3213 /* Record the location of this empty object in OFFSETS. */
3214 n = splay_tree_lookup (offsets, (splay_tree_key) offset);
3215 if (!n)
3216 n = splay_tree_insert (offsets,
3217 (splay_tree_key) offset,
3218 (splay_tree_value) NULL_TREE);
3219 n->value = ((splay_tree_value)
3220 tree_cons (NULL_TREE,
3221 type,
3222 (tree) n->value));
3223
3224 return 0;
3225 }
3226
3227 /* Returns nonzero if TYPE is an empty class type and there is
3228 already an entry in OFFSETS for the same TYPE as the same OFFSET. */
3229
3230 static int
3231 check_subobject_offset (tree type, tree offset, splay_tree offsets)
3232 {
3233 splay_tree_node n;
3234 tree t;
3235
3236 if (!is_empty_class (type))
3237 return 0;
3238
3239 /* Record the location of this empty object in OFFSETS. */
3240 n = splay_tree_lookup (offsets, (splay_tree_key) offset);
3241 if (!n)
3242 return 0;
3243
3244 for (t = (tree) n->value; t; t = TREE_CHAIN (t))
3245 if (same_type_p (TREE_VALUE (t), type))
3246 return 1;
3247
3248 return 0;
3249 }
3250
3251 /* Walk through all the subobjects of TYPE (located at OFFSET). Call
3252 F for every subobject, passing it the type, offset, and table of
3253 OFFSETS. If VBASES_P is one, then virtual non-primary bases should
3254 be traversed.
3255
3256 If MAX_OFFSET is non-NULL, then subobjects with an offset greater
3257 than MAX_OFFSET will not be walked.
3258
3259 If F returns a nonzero value, the traversal ceases, and that value
3260 is returned. Otherwise, returns zero. */
3261
3262 static int
3263 walk_subobject_offsets (tree type,
3264 subobject_offset_fn f,
3265 tree offset,
3266 splay_tree offsets,
3267 tree max_offset,
3268 int vbases_p)
3269 {
3270 int r = 0;
3271 tree type_binfo = NULL_TREE;
3272
3273 /* If this OFFSET is bigger than the MAX_OFFSET, then we should
3274 stop. */
3275 if (max_offset && INT_CST_LT (max_offset, offset))
3276 return 0;
3277
3278 if (type == error_mark_node)
3279 return 0;
3280
3281 if (!TYPE_P (type))
3282 {
3283 if (abi_version_at_least (2))
3284 type_binfo = type;
3285 type = BINFO_TYPE (type);
3286 }
3287
3288 if (CLASS_TYPE_P (type))
3289 {
3290 tree field;
3291 tree binfo;
3292 int i;
3293
3294 /* Avoid recursing into objects that are not interesting. */
3295 if (!CLASSTYPE_CONTAINS_EMPTY_CLASS_P (type))
3296 return 0;
3297
3298 /* Record the location of TYPE. */
3299 r = (*f) (type, offset, offsets);
3300 if (r)
3301 return r;
3302
3303 /* Iterate through the direct base classes of TYPE. */
3304 if (!type_binfo)
3305 type_binfo = TYPE_BINFO (type);
3306 for (i = 0; BINFO_BASE_ITERATE (type_binfo, i, binfo); i++)
3307 {
3308 tree binfo_offset;
3309
3310 if (abi_version_at_least (2)
3311 && BINFO_VIRTUAL_P (binfo))
3312 continue;
3313
3314 if (!vbases_p
3315 && BINFO_VIRTUAL_P (binfo)
3316 && !BINFO_PRIMARY_P (binfo))
3317 continue;
3318
3319 if (!abi_version_at_least (2))
3320 binfo_offset = size_binop (PLUS_EXPR,
3321 offset,
3322 BINFO_OFFSET (binfo));
3323 else
3324 {
3325 tree orig_binfo;
3326 /* We cannot rely on BINFO_OFFSET being set for the base
3327 class yet, but the offsets for direct non-virtual
3328 bases can be calculated by going back to the TYPE. */
3329 orig_binfo = BINFO_BASE_BINFO (TYPE_BINFO (type), i);
3330 binfo_offset = size_binop (PLUS_EXPR,
3331 offset,
3332 BINFO_OFFSET (orig_binfo));
3333 }
3334
3335 r = walk_subobject_offsets (binfo,
3336 f,
3337 binfo_offset,
3338 offsets,
3339 max_offset,
3340 (abi_version_at_least (2)
3341 ? /*vbases_p=*/0 : vbases_p));
3342 if (r)
3343 return r;
3344 }
3345
3346 if (abi_version_at_least (2) && CLASSTYPE_VBASECLASSES (type))
3347 {
3348 unsigned ix;
3349 VEC(tree,gc) *vbases;
3350
3351 /* Iterate through the virtual base classes of TYPE. In G++
3352 3.2, we included virtual bases in the direct base class
3353 loop above, which results in incorrect results; the
3354 correct offsets for virtual bases are only known when
3355 working with the most derived type. */
3356 if (vbases_p)
3357 for (vbases = CLASSTYPE_VBASECLASSES (type), ix = 0;
3358 VEC_iterate (tree, vbases, ix, binfo); ix++)
3359 {
3360 r = walk_subobject_offsets (binfo,
3361 f,
3362 size_binop (PLUS_EXPR,
3363 offset,
3364 BINFO_OFFSET (binfo)),
3365 offsets,
3366 max_offset,
3367 /*vbases_p=*/0);
3368 if (r)
3369 return r;
3370 }
3371 else
3372 {
3373 /* We still have to walk the primary base, if it is
3374 virtual. (If it is non-virtual, then it was walked
3375 above.) */
3376 tree vbase = get_primary_binfo (type_binfo);
3377
3378 if (vbase && BINFO_VIRTUAL_P (vbase)
3379 && BINFO_PRIMARY_P (vbase)
3380 && BINFO_INHERITANCE_CHAIN (vbase) == type_binfo)
3381 {
3382 r = (walk_subobject_offsets
3383 (vbase, f, offset,
3384 offsets, max_offset, /*vbases_p=*/0));
3385 if (r)
3386 return r;
3387 }
3388 }
3389 }
3390
3391 /* Iterate through the fields of TYPE. */
3392 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
3393 if (TREE_CODE (field) == FIELD_DECL && !DECL_ARTIFICIAL (field))
3394 {
3395 tree field_offset;
3396
3397 if (abi_version_at_least (2))
3398 field_offset = byte_position (field);
3399 else
3400 /* In G++ 3.2, DECL_FIELD_OFFSET was used. */
3401 field_offset = DECL_FIELD_OFFSET (field);
3402
3403 r = walk_subobject_offsets (TREE_TYPE (field),
3404 f,
3405 size_binop (PLUS_EXPR,
3406 offset,
3407 field_offset),
3408 offsets,
3409 max_offset,
3410 /*vbases_p=*/1);
3411 if (r)
3412 return r;
3413 }
3414 }
3415 else if (TREE_CODE (type) == ARRAY_TYPE)
3416 {
3417 tree element_type = strip_array_types (type);
3418 tree domain = TYPE_DOMAIN (type);
3419 tree index;
3420
3421 /* Avoid recursing into objects that are not interesting. */
3422 if (!CLASS_TYPE_P (element_type)
3423 || !CLASSTYPE_CONTAINS_EMPTY_CLASS_P (element_type))
3424 return 0;
3425
3426 /* Step through each of the elements in the array. */
3427 for (index = size_zero_node;
3428 /* G++ 3.2 had an off-by-one error here. */
3429 (abi_version_at_least (2)
3430 ? !INT_CST_LT (TYPE_MAX_VALUE (domain), index)
3431 : INT_CST_LT (index, TYPE_MAX_VALUE (domain)));
3432 index = size_binop (PLUS_EXPR, index, size_one_node))
3433 {
3434 r = walk_subobject_offsets (TREE_TYPE (type),
3435 f,
3436 offset,
3437 offsets,
3438 max_offset,
3439 /*vbases_p=*/1);
3440 if (r)
3441 return r;
3442 offset = size_binop (PLUS_EXPR, offset,
3443 TYPE_SIZE_UNIT (TREE_TYPE (type)));
3444 /* If this new OFFSET is bigger than the MAX_OFFSET, then
3445 there's no point in iterating through the remaining
3446 elements of the array. */
3447 if (max_offset && INT_CST_LT (max_offset, offset))
3448 break;
3449 }
3450 }
3451
3452 return 0;
3453 }
3454
3455 /* Record all of the empty subobjects of TYPE (either a type or a
3456 binfo). If IS_DATA_MEMBER is true, then a non-static data member
3457 is being placed at OFFSET; otherwise, it is a base class that is
3458 being placed at OFFSET. */
3459
3460 static void
3461 record_subobject_offsets (tree type,
3462 tree offset,
3463 splay_tree offsets,
3464 bool is_data_member)
3465 {
3466 tree max_offset;
3467 /* If recording subobjects for a non-static data member or a
3468 non-empty base class , we do not need to record offsets beyond
3469 the size of the biggest empty class. Additional data members
3470 will go at the end of the class. Additional base classes will go
3471 either at offset zero (if empty, in which case they cannot
3472 overlap with offsets past the size of the biggest empty class) or
3473 at the end of the class.
3474
3475 However, if we are placing an empty base class, then we must record
3476 all offsets, as either the empty class is at offset zero (where
3477 other empty classes might later be placed) or at the end of the
3478 class (where other objects might then be placed, so other empty
3479 subobjects might later overlap). */
3480 if (is_data_member
3481 || !is_empty_class (BINFO_TYPE (type)))
3482 max_offset = sizeof_biggest_empty_class;
3483 else
3484 max_offset = NULL_TREE;
3485 walk_subobject_offsets (type, record_subobject_offset, offset,
3486 offsets, max_offset, is_data_member);
3487 }
3488
3489 /* Returns nonzero if any of the empty subobjects of TYPE (located at
3490 OFFSET) conflict with entries in OFFSETS. If VBASES_P is nonzero,
3491 virtual bases of TYPE are examined. */
3492
3493 static int
3494 layout_conflict_p (tree type,
3495 tree offset,
3496 splay_tree offsets,
3497 int vbases_p)
3498 {
3499 splay_tree_node max_node;
3500
3501 /* Get the node in OFFSETS that indicates the maximum offset where
3502 an empty subobject is located. */
3503 max_node = splay_tree_max (offsets);
3504 /* If there aren't any empty subobjects, then there's no point in
3505 performing this check. */
3506 if (!max_node)
3507 return 0;
3508
3509 return walk_subobject_offsets (type, check_subobject_offset, offset,
3510 offsets, (tree) (max_node->key),
3511 vbases_p);
3512 }
3513
3514 /* DECL is a FIELD_DECL corresponding either to a base subobject of a
3515 non-static data member of the type indicated by RLI. BINFO is the
3516 binfo corresponding to the base subobject, OFFSETS maps offsets to
3517 types already located at those offsets. This function determines
3518 the position of the DECL. */
3519
3520 static void
3521 layout_nonempty_base_or_field (record_layout_info rli,
3522 tree decl,
3523 tree binfo,
3524 splay_tree offsets)
3525 {
3526 tree offset = NULL_TREE;
3527 bool field_p;
3528 tree type;
3529
3530 if (binfo)
3531 {
3532 /* For the purposes of determining layout conflicts, we want to
3533 use the class type of BINFO; TREE_TYPE (DECL) will be the
3534 CLASSTYPE_AS_BASE version, which does not contain entries for
3535 zero-sized bases. */
3536 type = TREE_TYPE (binfo);
3537 field_p = false;
3538 }
3539 else
3540 {
3541 type = TREE_TYPE (decl);
3542 field_p = true;
3543 }
3544
3545 /* Try to place the field. It may take more than one try if we have
3546 a hard time placing the field without putting two objects of the
3547 same type at the same address. */
3548 while (1)
3549 {
3550 struct record_layout_info_s old_rli = *rli;
3551
3552 /* Place this field. */
3553 place_field (rli, decl);
3554 offset = byte_position (decl);
3555
3556 /* We have to check to see whether or not there is already
3557 something of the same type at the offset we're about to use.
3558 For example, consider:
3559
3560 struct S {};
3561 struct T : public S { int i; };
3562 struct U : public S, public T {};
3563
3564 Here, we put S at offset zero in U. Then, we can't put T at
3565 offset zero -- its S component would be at the same address
3566 as the S we already allocated. So, we have to skip ahead.
3567 Since all data members, including those whose type is an
3568 empty class, have nonzero size, any overlap can happen only
3569 with a direct or indirect base-class -- it can't happen with
3570 a data member. */
3571 /* In a union, overlap is permitted; all members are placed at
3572 offset zero. */
3573 if (TREE_CODE (rli->t) == UNION_TYPE)
3574 break;
3575 /* G++ 3.2 did not check for overlaps when placing a non-empty
3576 virtual base. */
3577 if (!abi_version_at_least (2) && binfo && BINFO_VIRTUAL_P (binfo))
3578 break;
3579 if (layout_conflict_p (field_p ? type : binfo, offset,
3580 offsets, field_p))
3581 {
3582 /* Strip off the size allocated to this field. That puts us
3583 at the first place we could have put the field with
3584 proper alignment. */
3585 *rli = old_rli;
3586
3587 /* Bump up by the alignment required for the type. */
3588 rli->bitpos
3589 = size_binop (PLUS_EXPR, rli->bitpos,
3590 bitsize_int (binfo
3591 ? CLASSTYPE_ALIGN (type)
3592 : TYPE_ALIGN (type)));
3593 normalize_rli (rli);
3594 }
3595 else
3596 /* There was no conflict. We're done laying out this field. */
3597 break;
3598 }
3599
3600 /* Now that we know where it will be placed, update its
3601 BINFO_OFFSET. */
3602 if (binfo && CLASS_TYPE_P (BINFO_TYPE (binfo)))
3603 /* Indirect virtual bases may have a nonzero BINFO_OFFSET at
3604 this point because their BINFO_OFFSET is copied from another
3605 hierarchy. Therefore, we may not need to add the entire
3606 OFFSET. */
3607 propagate_binfo_offsets (binfo,
3608 size_diffop_loc (input_location,
3609 convert (ssizetype, offset),
3610 convert (ssizetype,
3611 BINFO_OFFSET (binfo))));
3612 }
3613
3614 /* Returns true if TYPE is empty and OFFSET is nonzero. */
3615
3616 static int
3617 empty_base_at_nonzero_offset_p (tree type,
3618 tree offset,
3619 splay_tree offsets ATTRIBUTE_UNUSED)
3620 {
3621 return is_empty_class (type) && !integer_zerop (offset);
3622 }
3623
3624 /* Layout the empty base BINFO. EOC indicates the byte currently just
3625 past the end of the class, and should be correctly aligned for a
3626 class of the type indicated by BINFO; OFFSETS gives the offsets of
3627 the empty bases allocated so far. T is the most derived
3628 type. Return nonzero iff we added it at the end. */
3629
3630 static bool
3631 layout_empty_base (record_layout_info rli, tree binfo,
3632 tree eoc, splay_tree offsets)
3633 {
3634 tree alignment;
3635 tree basetype = BINFO_TYPE (binfo);
3636 bool atend = false;
3637
3638 /* This routine should only be used for empty classes. */
3639 gcc_assert (is_empty_class (basetype));
3640 alignment = ssize_int (CLASSTYPE_ALIGN_UNIT (basetype));
3641
3642 if (!integer_zerop (BINFO_OFFSET (binfo)))
3643 {
3644 if (abi_version_at_least (2))
3645 propagate_binfo_offsets
3646 (binfo, size_diffop_loc (input_location,
3647 size_zero_node, BINFO_OFFSET (binfo)));
3648 else
3649 warning (OPT_Wabi,
3650 "offset of empty base %qT may not be ABI-compliant and may"
3651 "change in a future version of GCC",
3652 BINFO_TYPE (binfo));
3653 }
3654
3655 /* This is an empty base class. We first try to put it at offset
3656 zero. */
3657 if (layout_conflict_p (binfo,
3658 BINFO_OFFSET (binfo),
3659 offsets,
3660 /*vbases_p=*/0))
3661 {
3662 /* That didn't work. Now, we move forward from the next
3663 available spot in the class. */
3664 atend = true;
3665 propagate_binfo_offsets (binfo, convert (ssizetype, eoc));
3666 while (1)
3667 {
3668 if (!layout_conflict_p (binfo,
3669 BINFO_OFFSET (binfo),
3670 offsets,
3671 /*vbases_p=*/0))
3672 /* We finally found a spot where there's no overlap. */
3673 break;
3674
3675 /* There's overlap here, too. Bump along to the next spot. */
3676 propagate_binfo_offsets (binfo, alignment);
3677 }
3678 }
3679
3680 if (CLASSTYPE_USER_ALIGN (basetype))
3681 {
3682 rli->record_align = MAX (rli->record_align, CLASSTYPE_ALIGN (basetype));
3683 if (warn_packed)
3684 rli->unpacked_align = MAX (rli->unpacked_align, CLASSTYPE_ALIGN (basetype));
3685 TYPE_USER_ALIGN (rli->t) = 1;
3686 }
3687
3688 return atend;
3689 }
3690
3691 /* Layout the base given by BINFO in the class indicated by RLI.
3692 *BASE_ALIGN is a running maximum of the alignments of
3693 any base class. OFFSETS gives the location of empty base
3694 subobjects. T is the most derived type. Return nonzero if the new
3695 object cannot be nearly-empty. A new FIELD_DECL is inserted at
3696 *NEXT_FIELD, unless BINFO is for an empty base class.
3697
3698 Returns the location at which the next field should be inserted. */
3699
3700 static tree *
3701 build_base_field (record_layout_info rli, tree binfo,
3702 splay_tree offsets, tree *next_field)
3703 {
3704 tree t = rli->t;
3705 tree basetype = BINFO_TYPE (binfo);
3706
3707 if (!COMPLETE_TYPE_P (basetype))
3708 /* This error is now reported in xref_tag, thus giving better
3709 location information. */
3710 return next_field;
3711
3712 /* Place the base class. */
3713 if (!is_empty_class (basetype))
3714 {
3715 tree decl;
3716
3717 /* The containing class is non-empty because it has a non-empty
3718 base class. */
3719 CLASSTYPE_EMPTY_P (t) = 0;
3720
3721 /* Create the FIELD_DECL. */
3722 decl = build_decl (input_location,
3723 FIELD_DECL, NULL_TREE, CLASSTYPE_AS_BASE (basetype));
3724 DECL_ARTIFICIAL (decl) = 1;
3725 DECL_IGNORED_P (decl) = 1;
3726 DECL_FIELD_CONTEXT (decl) = t;
3727 if (CLASSTYPE_AS_BASE (basetype))
3728 {
3729 DECL_SIZE (decl) = CLASSTYPE_SIZE (basetype);
3730 DECL_SIZE_UNIT (decl) = CLASSTYPE_SIZE_UNIT (basetype);
3731 DECL_ALIGN (decl) = CLASSTYPE_ALIGN (basetype);
3732 DECL_USER_ALIGN (decl) = CLASSTYPE_USER_ALIGN (basetype);
3733 DECL_MODE (decl) = TYPE_MODE (basetype);
3734 DECL_FIELD_IS_BASE (decl) = 1;
3735
3736 /* Try to place the field. It may take more than one try if we
3737 have a hard time placing the field without putting two
3738 objects of the same type at the same address. */
3739 layout_nonempty_base_or_field (rli, decl, binfo, offsets);
3740 /* Add the new FIELD_DECL to the list of fields for T. */
3741 TREE_CHAIN (decl) = *next_field;
3742 *next_field = decl;
3743 next_field = &TREE_CHAIN (decl);
3744 }
3745 }
3746 else
3747 {
3748 tree eoc;
3749 bool atend;
3750
3751 /* On some platforms (ARM), even empty classes will not be
3752 byte-aligned. */
3753 eoc = round_up_loc (input_location,
3754 rli_size_unit_so_far (rli),
3755 CLASSTYPE_ALIGN_UNIT (basetype));
3756 atend = layout_empty_base (rli, binfo, eoc, offsets);
3757 /* A nearly-empty class "has no proper base class that is empty,
3758 not morally virtual, and at an offset other than zero." */
3759 if (!BINFO_VIRTUAL_P (binfo) && CLASSTYPE_NEARLY_EMPTY_P (t))
3760 {
3761 if (atend)
3762 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
3763 /* The check above (used in G++ 3.2) is insufficient because
3764 an empty class placed at offset zero might itself have an
3765 empty base at a nonzero offset. */
3766 else if (walk_subobject_offsets (basetype,
3767 empty_base_at_nonzero_offset_p,
3768 size_zero_node,
3769 /*offsets=*/NULL,
3770 /*max_offset=*/NULL_TREE,
3771 /*vbases_p=*/true))
3772 {
3773 if (abi_version_at_least (2))
3774 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
3775 else
3776 warning (OPT_Wabi,
3777 "class %qT will be considered nearly empty in a "
3778 "future version of GCC", t);
3779 }
3780 }
3781
3782 /* We do not create a FIELD_DECL for empty base classes because
3783 it might overlap some other field. We want to be able to
3784 create CONSTRUCTORs for the class by iterating over the
3785 FIELD_DECLs, and the back end does not handle overlapping
3786 FIELD_DECLs. */
3787
3788 /* An empty virtual base causes a class to be non-empty
3789 -- but in that case we do not need to clear CLASSTYPE_EMPTY_P
3790 here because that was already done when the virtual table
3791 pointer was created. */
3792 }
3793
3794 /* Record the offsets of BINFO and its base subobjects. */
3795 record_subobject_offsets (binfo,
3796 BINFO_OFFSET (binfo),
3797 offsets,
3798 /*is_data_member=*/false);
3799
3800 return next_field;
3801 }
3802
3803 /* Layout all of the non-virtual base classes. Record empty
3804 subobjects in OFFSETS. T is the most derived type. Return nonzero
3805 if the type cannot be nearly empty. The fields created
3806 corresponding to the base classes will be inserted at
3807 *NEXT_FIELD. */
3808
3809 static void
3810 build_base_fields (record_layout_info rli,
3811 splay_tree offsets, tree *next_field)
3812 {
3813 /* Chain to hold all the new FIELD_DECLs which stand in for base class
3814 subobjects. */
3815 tree t = rli->t;
3816 int n_baseclasses = BINFO_N_BASE_BINFOS (TYPE_BINFO (t));
3817 int i;
3818
3819 /* The primary base class is always allocated first. */
3820 if (CLASSTYPE_HAS_PRIMARY_BASE_P (t))
3821 next_field = build_base_field (rli, CLASSTYPE_PRIMARY_BINFO (t),
3822 offsets, next_field);
3823
3824 /* Now allocate the rest of the bases. */
3825 for (i = 0; i < n_baseclasses; ++i)
3826 {
3827 tree base_binfo;
3828
3829 base_binfo = BINFO_BASE_BINFO (TYPE_BINFO (t), i);
3830
3831 /* The primary base was already allocated above, so we don't
3832 need to allocate it again here. */
3833 if (base_binfo == CLASSTYPE_PRIMARY_BINFO (t))
3834 continue;
3835
3836 /* Virtual bases are added at the end (a primary virtual base
3837 will have already been added). */
3838 if (BINFO_VIRTUAL_P (base_binfo))
3839 continue;
3840
3841 next_field = build_base_field (rli, base_binfo,
3842 offsets, next_field);
3843 }
3844 }
3845
3846 /* Go through the TYPE_METHODS of T issuing any appropriate
3847 diagnostics, figuring out which methods override which other
3848 methods, and so forth. */
3849
3850 static void
3851 check_methods (tree t)
3852 {
3853 tree x;
3854
3855 for (x = TYPE_METHODS (t); x; x = TREE_CHAIN (x))
3856 {
3857 check_for_override (x, t);
3858 if (DECL_PURE_VIRTUAL_P (x) && ! DECL_VINDEX (x))
3859 error ("initializer specified for non-virtual method %q+D", x);
3860 /* The name of the field is the original field name
3861 Save this in auxiliary field for later overloading. */
3862 if (DECL_VINDEX (x))
3863 {
3864 TYPE_POLYMORPHIC_P (t) = 1;
3865 if (DECL_PURE_VIRTUAL_P (x))
3866 VEC_safe_push (tree, gc, CLASSTYPE_PURE_VIRTUALS (t), x);
3867 }
3868 /* All user-provided destructors are non-trivial.
3869 Constructors and assignment ops are handled in
3870 grok_special_member_properties. */
3871 if (DECL_DESTRUCTOR_P (x) && user_provided_p (x))
3872 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t) = 1;
3873 }
3874 }
3875
3876 /* FN is a constructor or destructor. Clone the declaration to create
3877 a specialized in-charge or not-in-charge version, as indicated by
3878 NAME. */
3879
3880 static tree
3881 build_clone (tree fn, tree name)
3882 {
3883 tree parms;
3884 tree clone;
3885
3886 /* Copy the function. */
3887 clone = copy_decl (fn);
3888 /* Reset the function name. */
3889 DECL_NAME (clone) = name;
3890 SET_DECL_ASSEMBLER_NAME (clone, NULL_TREE);
3891 /* Remember where this function came from. */
3892 DECL_ABSTRACT_ORIGIN (clone) = fn;
3893 /* Make it easy to find the CLONE given the FN. */
3894 TREE_CHAIN (clone) = TREE_CHAIN (fn);
3895 TREE_CHAIN (fn) = clone;
3896
3897 /* If this is a template, do the rest on the DECL_TEMPLATE_RESULT. */
3898 if (TREE_CODE (clone) == TEMPLATE_DECL)
3899 {
3900 tree result = build_clone (DECL_TEMPLATE_RESULT (clone), name);
3901 DECL_TEMPLATE_RESULT (clone) = result;
3902 DECL_TEMPLATE_INFO (result) = copy_node (DECL_TEMPLATE_INFO (result));
3903 DECL_TI_TEMPLATE (result) = clone;
3904 TREE_TYPE (clone) = TREE_TYPE (result);
3905 return clone;
3906 }
3907
3908 DECL_CLONED_FUNCTION (clone) = fn;
3909 /* There's no pending inline data for this function. */
3910 DECL_PENDING_INLINE_INFO (clone) = NULL;
3911 DECL_PENDING_INLINE_P (clone) = 0;
3912
3913 /* The base-class destructor is not virtual. */
3914 if (name == base_dtor_identifier)
3915 {
3916 DECL_VIRTUAL_P (clone) = 0;
3917 if (TREE_CODE (clone) != TEMPLATE_DECL)
3918 DECL_VINDEX (clone) = NULL_TREE;
3919 }
3920
3921 /* If there was an in-charge parameter, drop it from the function
3922 type. */
3923 if (DECL_HAS_IN_CHARGE_PARM_P (clone))
3924 {
3925 tree basetype;
3926 tree parmtypes;
3927 tree exceptions;
3928
3929 exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (clone));
3930 basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (clone));
3931 parmtypes = TYPE_ARG_TYPES (TREE_TYPE (clone));
3932 /* Skip the `this' parameter. */
3933 parmtypes = TREE_CHAIN (parmtypes);
3934 /* Skip the in-charge parameter. */
3935 parmtypes = TREE_CHAIN (parmtypes);
3936 /* And the VTT parm, in a complete [cd]tor. */
3937 if (DECL_HAS_VTT_PARM_P (fn)
3938 && ! DECL_NEEDS_VTT_PARM_P (clone))
3939 parmtypes = TREE_CHAIN (parmtypes);
3940 /* If this is subobject constructor or destructor, add the vtt
3941 parameter. */
3942 TREE_TYPE (clone)
3943 = build_method_type_directly (basetype,
3944 TREE_TYPE (TREE_TYPE (clone)),
3945 parmtypes);
3946 if (exceptions)
3947 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone),
3948 exceptions);
3949 TREE_TYPE (clone)
3950 = cp_build_type_attribute_variant (TREE_TYPE (clone),
3951 TYPE_ATTRIBUTES (TREE_TYPE (fn)));
3952 }
3953
3954 /* Copy the function parameters. */
3955 DECL_ARGUMENTS (clone) = copy_list (DECL_ARGUMENTS (clone));
3956 /* Remove the in-charge parameter. */
3957 if (DECL_HAS_IN_CHARGE_PARM_P (clone))
3958 {
3959 TREE_CHAIN (DECL_ARGUMENTS (clone))
3960 = TREE_CHAIN (TREE_CHAIN (DECL_ARGUMENTS (clone)));
3961 DECL_HAS_IN_CHARGE_PARM_P (clone) = 0;
3962 }
3963 /* And the VTT parm, in a complete [cd]tor. */
3964 if (DECL_HAS_VTT_PARM_P (fn))
3965 {
3966 if (DECL_NEEDS_VTT_PARM_P (clone))
3967 DECL_HAS_VTT_PARM_P (clone) = 1;
3968 else
3969 {
3970 TREE_CHAIN (DECL_ARGUMENTS (clone))
3971 = TREE_CHAIN (TREE_CHAIN (DECL_ARGUMENTS (clone)));
3972 DECL_HAS_VTT_PARM_P (clone) = 0;
3973 }
3974 }
3975
3976 for (parms = DECL_ARGUMENTS (clone); parms; parms = TREE_CHAIN (parms))
3977 {
3978 DECL_CONTEXT (parms) = clone;
3979 cxx_dup_lang_specific_decl (parms);
3980 }
3981
3982 /* Create the RTL for this function. */
3983 SET_DECL_RTL (clone, NULL);
3984 rest_of_decl_compilation (clone, /*top_level=*/1, at_eof);
3985
3986 if (pch_file)
3987 note_decl_for_pch (clone);
3988
3989 return clone;
3990 }
3991
3992 /* Implementation of DECL_CLONED_FUNCTION and DECL_CLONED_FUNCTION_P, do
3993 not invoke this function directly.
3994
3995 For a non-thunk function, returns the address of the slot for storing
3996 the function it is a clone of. Otherwise returns NULL_TREE.
3997
3998 If JUST_TESTING, looks through TEMPLATE_DECL and returns NULL if
3999 cloned_function is unset. This is to support the separate
4000 DECL_CLONED_FUNCTION and DECL_CLONED_FUNCTION_P modes; using the latter
4001 on a template makes sense, but not the former. */
4002
4003 tree *
4004 decl_cloned_function_p (const_tree decl, bool just_testing)
4005 {
4006 tree *ptr;
4007 if (just_testing)
4008 decl = STRIP_TEMPLATE (decl);
4009
4010 if (TREE_CODE (decl) != FUNCTION_DECL
4011 || !DECL_LANG_SPECIFIC (decl)
4012 || DECL_LANG_SPECIFIC (decl)->u.fn.thunk_p)
4013 {
4014 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
4015 if (!just_testing)
4016 lang_check_failed (__FILE__, __LINE__, __FUNCTION__);
4017 else
4018 #endif
4019 return NULL;
4020 }
4021
4022 ptr = &DECL_LANG_SPECIFIC (decl)->u.fn.u5.cloned_function;
4023 if (just_testing && *ptr == NULL_TREE)
4024 return NULL;
4025 else
4026 return ptr;
4027 }
4028
4029 /* Produce declarations for all appropriate clones of FN. If
4030 UPDATE_METHOD_VEC_P is nonzero, the clones are added to the
4031 CLASTYPE_METHOD_VEC as well. */
4032
4033 void
4034 clone_function_decl (tree fn, int update_method_vec_p)
4035 {
4036 tree clone;
4037
4038 /* Avoid inappropriate cloning. */
4039 if (TREE_CHAIN (fn)
4040 && DECL_CLONED_FUNCTION_P (TREE_CHAIN (fn)))
4041 return;
4042
4043 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn))
4044 {
4045 /* For each constructor, we need two variants: an in-charge version
4046 and a not-in-charge version. */
4047 clone = build_clone (fn, complete_ctor_identifier);
4048 if (update_method_vec_p)
4049 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4050 clone = build_clone (fn, base_ctor_identifier);
4051 if (update_method_vec_p)
4052 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4053 }
4054 else
4055 {
4056 gcc_assert (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (fn));
4057
4058 /* For each destructor, we need three variants: an in-charge
4059 version, a not-in-charge version, and an in-charge deleting
4060 version. We clone the deleting version first because that
4061 means it will go second on the TYPE_METHODS list -- and that
4062 corresponds to the correct layout order in the virtual
4063 function table.
4064
4065 For a non-virtual destructor, we do not build a deleting
4066 destructor. */
4067 if (DECL_VIRTUAL_P (fn))
4068 {
4069 clone = build_clone (fn, deleting_dtor_identifier);
4070 if (update_method_vec_p)
4071 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4072 }
4073 clone = build_clone (fn, complete_dtor_identifier);
4074 if (update_method_vec_p)
4075 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4076 clone = build_clone (fn, base_dtor_identifier);
4077 if (update_method_vec_p)
4078 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4079 }
4080
4081 /* Note that this is an abstract function that is never emitted. */
4082 DECL_ABSTRACT (fn) = 1;
4083 }
4084
4085 /* DECL is an in charge constructor, which is being defined. This will
4086 have had an in class declaration, from whence clones were
4087 declared. An out-of-class definition can specify additional default
4088 arguments. As it is the clones that are involved in overload
4089 resolution, we must propagate the information from the DECL to its
4090 clones. */
4091
4092 void
4093 adjust_clone_args (tree decl)
4094 {
4095 tree clone;
4096
4097 for (clone = TREE_CHAIN (decl); clone && DECL_CLONED_FUNCTION_P (clone);
4098 clone = TREE_CHAIN (clone))
4099 {
4100 tree orig_clone_parms = TYPE_ARG_TYPES (TREE_TYPE (clone));
4101 tree orig_decl_parms = TYPE_ARG_TYPES (TREE_TYPE (decl));
4102 tree decl_parms, clone_parms;
4103
4104 clone_parms = orig_clone_parms;
4105
4106 /* Skip the 'this' parameter. */
4107 orig_clone_parms = TREE_CHAIN (orig_clone_parms);
4108 orig_decl_parms = TREE_CHAIN (orig_decl_parms);
4109
4110 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
4111 orig_decl_parms = TREE_CHAIN (orig_decl_parms);
4112 if (DECL_HAS_VTT_PARM_P (decl))
4113 orig_decl_parms = TREE_CHAIN (orig_decl_parms);
4114
4115 clone_parms = orig_clone_parms;
4116 if (DECL_HAS_VTT_PARM_P (clone))
4117 clone_parms = TREE_CHAIN (clone_parms);
4118
4119 for (decl_parms = orig_decl_parms; decl_parms;
4120 decl_parms = TREE_CHAIN (decl_parms),
4121 clone_parms = TREE_CHAIN (clone_parms))
4122 {
4123 gcc_assert (same_type_p (TREE_TYPE (decl_parms),
4124 TREE_TYPE (clone_parms)));
4125
4126 if (TREE_PURPOSE (decl_parms) && !TREE_PURPOSE (clone_parms))
4127 {
4128 /* A default parameter has been added. Adjust the
4129 clone's parameters. */
4130 tree exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (clone));
4131 tree attrs = TYPE_ATTRIBUTES (TREE_TYPE (clone));
4132 tree basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (clone));
4133 tree type;
4134
4135 clone_parms = orig_decl_parms;
4136
4137 if (DECL_HAS_VTT_PARM_P (clone))
4138 {
4139 clone_parms = tree_cons (TREE_PURPOSE (orig_clone_parms),
4140 TREE_VALUE (orig_clone_parms),
4141 clone_parms);
4142 TREE_TYPE (clone_parms) = TREE_TYPE (orig_clone_parms);
4143 }
4144 type = build_method_type_directly (basetype,
4145 TREE_TYPE (TREE_TYPE (clone)),
4146 clone_parms);
4147 if (exceptions)
4148 type = build_exception_variant (type, exceptions);
4149 if (attrs)
4150 type = cp_build_type_attribute_variant (type, attrs);
4151 TREE_TYPE (clone) = type;
4152
4153 clone_parms = NULL_TREE;
4154 break;
4155 }
4156 }
4157 gcc_assert (!clone_parms);
4158 }
4159 }
4160
4161 /* For each of the constructors and destructors in T, create an
4162 in-charge and not-in-charge variant. */
4163
4164 static void
4165 clone_constructors_and_destructors (tree t)
4166 {
4167 tree fns;
4168
4169 /* If for some reason we don't have a CLASSTYPE_METHOD_VEC, we bail
4170 out now. */
4171 if (!CLASSTYPE_METHOD_VEC (t))
4172 return;
4173
4174 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4175 clone_function_decl (OVL_CURRENT (fns), /*update_method_vec_p=*/1);
4176 for (fns = CLASSTYPE_DESTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4177 clone_function_decl (OVL_CURRENT (fns), /*update_method_vec_p=*/1);
4178 }
4179
4180 /* Returns true iff class T has a user-defined constructor other than
4181 the default constructor. */
4182
4183 bool
4184 type_has_user_nondefault_constructor (tree t)
4185 {
4186 tree fns;
4187
4188 if (!TYPE_HAS_USER_CONSTRUCTOR (t))
4189 return false;
4190
4191 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4192 {
4193 tree fn = OVL_CURRENT (fns);
4194 if (!DECL_ARTIFICIAL (fn)
4195 && (TREE_CODE (fn) == TEMPLATE_DECL
4196 || (skip_artificial_parms_for (fn, DECL_ARGUMENTS (fn))
4197 != NULL_TREE)))
4198 return true;
4199 }
4200
4201 return false;
4202 }
4203
4204 /* Returns the defaulted constructor if T has one. Otherwise, returns
4205 NULL_TREE. */
4206
4207 tree
4208 in_class_defaulted_default_constructor (tree t)
4209 {
4210 tree fns, args;
4211
4212 if (!TYPE_HAS_USER_CONSTRUCTOR (t))
4213 return NULL_TREE;
4214
4215 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4216 {
4217 tree fn = OVL_CURRENT (fns);
4218
4219 if (DECL_DEFAULTED_IN_CLASS_P (fn))
4220 {
4221 args = FUNCTION_FIRST_USER_PARMTYPE (fn);
4222 while (args && TREE_PURPOSE (args))
4223 args = TREE_CHAIN (args);
4224 if (!args || args == void_list_node)
4225 return fn;
4226 }
4227 }
4228
4229 return NULL_TREE;
4230 }
4231
4232 /* Returns true iff FN is a user-provided function, i.e. user-declared
4233 and not defaulted at its first declaration; or explicit, private,
4234 protected, or non-const. */
4235
4236 bool
4237 user_provided_p (tree fn)
4238 {
4239 if (TREE_CODE (fn) == TEMPLATE_DECL)
4240 return true;
4241 else
4242 return (!DECL_ARTIFICIAL (fn)
4243 && !DECL_DEFAULTED_IN_CLASS_P (fn));
4244 }
4245
4246 /* Returns true iff class T has a user-provided constructor. */
4247
4248 bool
4249 type_has_user_provided_constructor (tree t)
4250 {
4251 tree fns;
4252
4253 if (!CLASS_TYPE_P (t))
4254 return false;
4255
4256 if (!TYPE_HAS_USER_CONSTRUCTOR (t))
4257 return false;
4258
4259 /* This can happen in error cases; avoid crashing. */
4260 if (!CLASSTYPE_METHOD_VEC (t))
4261 return false;
4262
4263 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4264 if (user_provided_p (OVL_CURRENT (fns)))
4265 return true;
4266
4267 return false;
4268 }
4269
4270 /* Returns true iff class T has a user-provided default constructor. */
4271
4272 bool
4273 type_has_user_provided_default_constructor (tree t)
4274 {
4275 tree fns;
4276
4277 if (!TYPE_HAS_USER_CONSTRUCTOR (t))
4278 return false;
4279
4280 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4281 {
4282 tree fn = OVL_CURRENT (fns);
4283 if (TREE_CODE (fn) == FUNCTION_DECL
4284 && user_provided_p (fn)
4285 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)))
4286 return true;
4287 }
4288
4289 return false;
4290 }
4291
4292 /* Returns true iff class TYPE has a virtual destructor. */
4293
4294 bool
4295 type_has_virtual_destructor (tree type)
4296 {
4297 tree dtor;
4298
4299 if (!CLASS_TYPE_P (type))
4300 return false;
4301
4302 gcc_assert (COMPLETE_TYPE_P (type));
4303 dtor = CLASSTYPE_DESTRUCTORS (type);
4304 return (dtor && DECL_VIRTUAL_P (dtor));
4305 }
4306
4307 /* Returns true iff class T has a move constructor. */
4308
4309 bool
4310 type_has_move_constructor (tree t)
4311 {
4312 tree fns;
4313
4314 if (CLASSTYPE_LAZY_MOVE_CTOR (t))
4315 {
4316 gcc_assert (COMPLETE_TYPE_P (t));
4317 lazily_declare_fn (sfk_move_constructor, t);
4318 }
4319
4320 if (!CLASSTYPE_METHOD_VEC (t))
4321 return false;
4322
4323 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4324 if (move_fn_p (OVL_CURRENT (fns)))
4325 return true;
4326
4327 return false;
4328 }
4329
4330 /* Returns true iff class T has a move assignment operator. */
4331
4332 bool
4333 type_has_move_assign (tree t)
4334 {
4335 tree fns;
4336
4337 if (CLASSTYPE_LAZY_MOVE_ASSIGN (t))
4338 {
4339 gcc_assert (COMPLETE_TYPE_P (t));
4340 lazily_declare_fn (sfk_move_assignment, t);
4341 }
4342
4343 for (fns = lookup_fnfields_slot (t, ansi_assopname (NOP_EXPR));
4344 fns; fns = OVL_NEXT (fns))
4345 if (move_fn_p (OVL_CURRENT (fns)))
4346 return true;
4347
4348 return false;
4349 }
4350
4351 /* Remove all zero-width bit-fields from T. */
4352
4353 static void
4354 remove_zero_width_bit_fields (tree t)
4355 {
4356 tree *fieldsp;
4357
4358 fieldsp = &TYPE_FIELDS (t);
4359 while (*fieldsp)
4360 {
4361 if (TREE_CODE (*fieldsp) == FIELD_DECL
4362 && DECL_C_BIT_FIELD (*fieldsp)
4363 /* We should not be confused by the fact that grokbitfield
4364 temporarily sets the width of the bit field into
4365 DECL_INITIAL (*fieldsp).
4366 check_bitfield_decl eventually sets DECL_SIZE (*fieldsp)
4367 to that width. */
4368 && integer_zerop (DECL_SIZE (*fieldsp)))
4369 *fieldsp = TREE_CHAIN (*fieldsp);
4370 else
4371 fieldsp = &TREE_CHAIN (*fieldsp);
4372 }
4373 }
4374
4375 /* Returns TRUE iff we need a cookie when dynamically allocating an
4376 array whose elements have the indicated class TYPE. */
4377
4378 static bool
4379 type_requires_array_cookie (tree type)
4380 {
4381 tree fns;
4382 bool has_two_argument_delete_p = false;
4383
4384 gcc_assert (CLASS_TYPE_P (type));
4385
4386 /* If there's a non-trivial destructor, we need a cookie. In order
4387 to iterate through the array calling the destructor for each
4388 element, we'll have to know how many elements there are. */
4389 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4390 return true;
4391
4392 /* If the usual deallocation function is a two-argument whose second
4393 argument is of type `size_t', then we have to pass the size of
4394 the array to the deallocation function, so we will need to store
4395 a cookie. */
4396 fns = lookup_fnfields (TYPE_BINFO (type),
4397 ansi_opname (VEC_DELETE_EXPR),
4398 /*protect=*/0);
4399 /* If there are no `operator []' members, or the lookup is
4400 ambiguous, then we don't need a cookie. */
4401 if (!fns || fns == error_mark_node)
4402 return false;
4403 /* Loop through all of the functions. */
4404 for (fns = BASELINK_FUNCTIONS (fns); fns; fns = OVL_NEXT (fns))
4405 {
4406 tree fn;
4407 tree second_parm;
4408
4409 /* Select the current function. */
4410 fn = OVL_CURRENT (fns);
4411 /* See if this function is a one-argument delete function. If
4412 it is, then it will be the usual deallocation function. */
4413 second_parm = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (fn)));
4414 if (second_parm == void_list_node)
4415 return false;
4416 /* Do not consider this function if its second argument is an
4417 ellipsis. */
4418 if (!second_parm)
4419 continue;
4420 /* Otherwise, if we have a two-argument function and the second
4421 argument is `size_t', it will be the usual deallocation
4422 function -- unless there is one-argument function, too. */
4423 if (TREE_CHAIN (second_parm) == void_list_node
4424 && same_type_p (TREE_VALUE (second_parm), size_type_node))
4425 has_two_argument_delete_p = true;
4426 }
4427
4428 return has_two_argument_delete_p;
4429 }
4430
4431 /* Check the validity of the bases and members declared in T. Add any
4432 implicitly-generated functions (like copy-constructors and
4433 assignment operators). Compute various flag bits (like
4434 CLASSTYPE_NON_LAYOUT_POD_T) for T. This routine works purely at the C++
4435 level: i.e., independently of the ABI in use. */
4436
4437 static void
4438 check_bases_and_members (tree t)
4439 {
4440 /* Nonzero if the implicitly generated copy constructor should take
4441 a non-const reference argument. */
4442 int cant_have_const_ctor;
4443 /* Nonzero if the implicitly generated assignment operator
4444 should take a non-const reference argument. */
4445 int no_const_asn_ref;
4446 tree access_decls;
4447 bool saved_complex_asn_ref;
4448 bool saved_nontrivial_dtor;
4449 tree fn;
4450
4451 /* By default, we use const reference arguments and generate default
4452 constructors. */
4453 cant_have_const_ctor = 0;
4454 no_const_asn_ref = 0;
4455
4456 /* Check all the base-classes. */
4457 check_bases (t, &cant_have_const_ctor,
4458 &no_const_asn_ref);
4459
4460 /* Check all the method declarations. */
4461 check_methods (t);
4462
4463 /* Save the initial values of these flags which only indicate whether
4464 or not the class has user-provided functions. As we analyze the
4465 bases and members we can set these flags for other reasons. */
4466 saved_complex_asn_ref = TYPE_HAS_COMPLEX_COPY_ASSIGN (t);
4467 saved_nontrivial_dtor = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t);
4468
4469 /* Check all the data member declarations. We cannot call
4470 check_field_decls until we have called check_bases check_methods,
4471 as check_field_decls depends on TYPE_HAS_NONTRIVIAL_DESTRUCTOR
4472 being set appropriately. */
4473 check_field_decls (t, &access_decls,
4474 &cant_have_const_ctor,
4475 &no_const_asn_ref);
4476
4477 /* A nearly-empty class has to be vptr-containing; a nearly empty
4478 class contains just a vptr. */
4479 if (!TYPE_CONTAINS_VPTR_P (t))
4480 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
4481
4482 /* Do some bookkeeping that will guide the generation of implicitly
4483 declared member functions. */
4484 TYPE_HAS_COMPLEX_COPY_CTOR (t) |= TYPE_CONTAINS_VPTR_P (t);
4485 TYPE_HAS_COMPLEX_MOVE_CTOR (t) |= TYPE_CONTAINS_VPTR_P (t);
4486 /* We need to call a constructor for this class if it has a
4487 user-provided constructor, or if the default constructor is going
4488 to initialize the vptr. (This is not an if-and-only-if;
4489 TYPE_NEEDS_CONSTRUCTING is set elsewhere if bases or members
4490 themselves need constructing.) */
4491 TYPE_NEEDS_CONSTRUCTING (t)
4492 |= (type_has_user_provided_constructor (t) || TYPE_CONTAINS_VPTR_P (t));
4493 /* [dcl.init.aggr]
4494
4495 An aggregate is an array or a class with no user-provided
4496 constructors ... and no virtual functions.
4497
4498 Again, other conditions for being an aggregate are checked
4499 elsewhere. */
4500 CLASSTYPE_NON_AGGREGATE (t)
4501 |= (type_has_user_provided_constructor (t) || TYPE_POLYMORPHIC_P (t));
4502 /* This is the C++98/03 definition of POD; it changed in C++0x, but we
4503 retain the old definition internally for ABI reasons. */
4504 CLASSTYPE_NON_LAYOUT_POD_P (t)
4505 |= (CLASSTYPE_NON_AGGREGATE (t)
4506 || saved_nontrivial_dtor || saved_complex_asn_ref);
4507 CLASSTYPE_NON_STD_LAYOUT (t) |= TYPE_CONTAINS_VPTR_P (t);
4508 TYPE_HAS_COMPLEX_COPY_ASSIGN (t) |= TYPE_CONTAINS_VPTR_P (t);
4509 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t) |= TYPE_CONTAINS_VPTR_P (t);
4510 TYPE_HAS_COMPLEX_DFLT (t) |= TYPE_CONTAINS_VPTR_P (t);
4511
4512 /* If the class has no user-declared constructor, but does have
4513 non-static const or reference data members that can never be
4514 initialized, issue a warning. */
4515 if (warn_uninitialized
4516 /* Classes with user-declared constructors are presumed to
4517 initialize these members. */
4518 && !TYPE_HAS_USER_CONSTRUCTOR (t)
4519 /* Aggregates can be initialized with brace-enclosed
4520 initializers. */
4521 && CLASSTYPE_NON_AGGREGATE (t))
4522 {
4523 tree field;
4524
4525 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
4526 {
4527 tree type;
4528
4529 if (TREE_CODE (field) != FIELD_DECL)
4530 continue;
4531
4532 type = TREE_TYPE (field);
4533 if (TREE_CODE (type) == REFERENCE_TYPE)
4534 warning (OPT_Wuninitialized, "non-static reference %q+#D "
4535 "in class without a constructor", field);
4536 else if (CP_TYPE_CONST_P (type)
4537 && (!CLASS_TYPE_P (type)
4538 || !TYPE_HAS_DEFAULT_CONSTRUCTOR (type)))
4539 warning (OPT_Wuninitialized, "non-static const member %q+#D "
4540 "in class without a constructor", field);
4541 }
4542 }
4543
4544 /* Synthesize any needed methods. */
4545 add_implicitly_declared_members (t,
4546 cant_have_const_ctor,
4547 no_const_asn_ref);
4548
4549 /* Check defaulted declarations here so we have cant_have_const_ctor
4550 and don't need to worry about clones. */
4551 for (fn = TYPE_METHODS (t); fn; fn = TREE_CHAIN (fn))
4552 if (DECL_DEFAULTED_IN_CLASS_P (fn))
4553 {
4554 int copy = copy_fn_p (fn);
4555 if (copy > 0)
4556 {
4557 bool imp_const_p
4558 = (DECL_CONSTRUCTOR_P (fn) ? !cant_have_const_ctor
4559 : !no_const_asn_ref);
4560 bool fn_const_p = (copy == 2);
4561
4562 if (fn_const_p && !imp_const_p)
4563 /* If the function is defaulted outside the class, we just
4564 give the synthesis error. */
4565 error ("%q+D declared to take const reference, but implicit "
4566 "declaration would take non-const", fn);
4567 else if (imp_const_p && !fn_const_p)
4568 error ("%q+D declared to take non-const reference cannot be "
4569 "defaulted in the class body", fn);
4570 }
4571 defaulted_late_check (fn);
4572 }
4573
4574 if (LAMBDA_TYPE_P (t))
4575 {
4576 /* "The closure type associated with a lambda-expression has a deleted
4577 default constructor and a deleted copy assignment operator." */
4578 TYPE_NEEDS_CONSTRUCTING (t) = 1;
4579 TYPE_HAS_COMPLEX_DFLT (t) = 1;
4580 TYPE_HAS_COMPLEX_COPY_ASSIGN (t) = 1;
4581 CLASSTYPE_LAZY_MOVE_ASSIGN (t) = 0;
4582
4583 /* "This class type is not an aggregate." */
4584 CLASSTYPE_NON_AGGREGATE (t) = 1;
4585 }
4586
4587 /* Create the in-charge and not-in-charge variants of constructors
4588 and destructors. */
4589 clone_constructors_and_destructors (t);
4590
4591 /* Process the using-declarations. */
4592 for (; access_decls; access_decls = TREE_CHAIN (access_decls))
4593 handle_using_decl (TREE_VALUE (access_decls), t);
4594
4595 /* Build and sort the CLASSTYPE_METHOD_VEC. */
4596 finish_struct_methods (t);
4597
4598 /* Figure out whether or not we will need a cookie when dynamically
4599 allocating an array of this type. */
4600 TYPE_LANG_SPECIFIC (t)->u.c.vec_new_uses_cookie
4601 = type_requires_array_cookie (t);
4602 }
4603
4604 /* If T needs a pointer to its virtual function table, set TYPE_VFIELD
4605 accordingly. If a new vfield was created (because T doesn't have a
4606 primary base class), then the newly created field is returned. It
4607 is not added to the TYPE_FIELDS list; it is the caller's
4608 responsibility to do that. Accumulate declared virtual functions
4609 on VIRTUALS_P. */
4610
4611 static tree
4612 create_vtable_ptr (tree t, tree* virtuals_p)
4613 {
4614 tree fn;
4615
4616 /* Collect the virtual functions declared in T. */
4617 for (fn = TYPE_METHODS (t); fn; fn = TREE_CHAIN (fn))
4618 if (DECL_VINDEX (fn) && !DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (fn)
4619 && TREE_CODE (DECL_VINDEX (fn)) != INTEGER_CST)
4620 {
4621 tree new_virtual = make_node (TREE_LIST);
4622
4623 BV_FN (new_virtual) = fn;
4624 BV_DELTA (new_virtual) = integer_zero_node;
4625 BV_VCALL_INDEX (new_virtual) = NULL_TREE;
4626
4627 TREE_CHAIN (new_virtual) = *virtuals_p;
4628 *virtuals_p = new_virtual;
4629 }
4630
4631 /* If we couldn't find an appropriate base class, create a new field
4632 here. Even if there weren't any new virtual functions, we might need a
4633 new virtual function table if we're supposed to include vptrs in
4634 all classes that need them. */
4635 if (!TYPE_VFIELD (t) && (*virtuals_p || TYPE_CONTAINS_VPTR_P (t)))
4636 {
4637 /* We build this decl with vtbl_ptr_type_node, which is a
4638 `vtable_entry_type*'. It might seem more precise to use
4639 `vtable_entry_type (*)[N]' where N is the number of virtual
4640 functions. However, that would require the vtable pointer in
4641 base classes to have a different type than the vtable pointer
4642 in derived classes. We could make that happen, but that
4643 still wouldn't solve all the problems. In particular, the
4644 type-based alias analysis code would decide that assignments
4645 to the base class vtable pointer can't alias assignments to
4646 the derived class vtable pointer, since they have different
4647 types. Thus, in a derived class destructor, where the base
4648 class constructor was inlined, we could generate bad code for
4649 setting up the vtable pointer.
4650
4651 Therefore, we use one type for all vtable pointers. We still
4652 use a type-correct type; it's just doesn't indicate the array
4653 bounds. That's better than using `void*' or some such; it's
4654 cleaner, and it let's the alias analysis code know that these
4655 stores cannot alias stores to void*! */
4656 tree field;
4657
4658 field = build_decl (input_location,
4659 FIELD_DECL, get_vfield_name (t), vtbl_ptr_type_node);
4660 DECL_VIRTUAL_P (field) = 1;
4661 DECL_ARTIFICIAL (field) = 1;
4662 DECL_FIELD_CONTEXT (field) = t;
4663 DECL_FCONTEXT (field) = t;
4664 if (TYPE_PACKED (t))
4665 DECL_PACKED (field) = 1;
4666
4667 TYPE_VFIELD (t) = field;
4668
4669 /* This class is non-empty. */
4670 CLASSTYPE_EMPTY_P (t) = 0;
4671
4672 return field;
4673 }
4674
4675 return NULL_TREE;
4676 }
4677
4678 /* Add OFFSET to all base types of BINFO which is a base in the
4679 hierarchy dominated by T.
4680
4681 OFFSET, which is a type offset, is number of bytes. */
4682
4683 static void
4684 propagate_binfo_offsets (tree binfo, tree offset)
4685 {
4686 int i;
4687 tree primary_binfo;
4688 tree base_binfo;
4689
4690 /* Update BINFO's offset. */
4691 BINFO_OFFSET (binfo)
4692 = convert (sizetype,
4693 size_binop (PLUS_EXPR,
4694 convert (ssizetype, BINFO_OFFSET (binfo)),
4695 offset));
4696
4697 /* Find the primary base class. */
4698 primary_binfo = get_primary_binfo (binfo);
4699
4700 if (primary_binfo && BINFO_INHERITANCE_CHAIN (primary_binfo) == binfo)
4701 propagate_binfo_offsets (primary_binfo, offset);
4702
4703 /* Scan all of the bases, pushing the BINFO_OFFSET adjust
4704 downwards. */
4705 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
4706 {
4707 /* Don't do the primary base twice. */
4708 if (base_binfo == primary_binfo)
4709 continue;
4710
4711 if (BINFO_VIRTUAL_P (base_binfo))
4712 continue;
4713
4714 propagate_binfo_offsets (base_binfo, offset);
4715 }
4716 }
4717
4718 /* Set BINFO_OFFSET for all of the virtual bases for RLI->T. Update
4719 TYPE_ALIGN and TYPE_SIZE for T. OFFSETS gives the location of
4720 empty subobjects of T. */
4721
4722 static void
4723 layout_virtual_bases (record_layout_info rli, splay_tree offsets)
4724 {
4725 tree vbase;
4726 tree t = rli->t;
4727 bool first_vbase = true;
4728 tree *next_field;
4729
4730 if (BINFO_N_BASE_BINFOS (TYPE_BINFO (t)) == 0)
4731 return;
4732
4733 if (!abi_version_at_least(2))
4734 {
4735 /* In G++ 3.2, we incorrectly rounded the size before laying out
4736 the virtual bases. */
4737 finish_record_layout (rli, /*free_p=*/false);
4738 #ifdef STRUCTURE_SIZE_BOUNDARY
4739 /* Packed structures don't need to have minimum size. */
4740 if (! TYPE_PACKED (t))
4741 TYPE_ALIGN (t) = MAX (TYPE_ALIGN (t), (unsigned) STRUCTURE_SIZE_BOUNDARY);
4742 #endif
4743 rli->offset = TYPE_SIZE_UNIT (t);
4744 rli->bitpos = bitsize_zero_node;
4745 rli->record_align = TYPE_ALIGN (t);
4746 }
4747
4748 /* Find the last field. The artificial fields created for virtual
4749 bases will go after the last extant field to date. */
4750 next_field = &TYPE_FIELDS (t);
4751 while (*next_field)
4752 next_field = &TREE_CHAIN (*next_field);
4753
4754 /* Go through the virtual bases, allocating space for each virtual
4755 base that is not already a primary base class. These are
4756 allocated in inheritance graph order. */
4757 for (vbase = TYPE_BINFO (t); vbase; vbase = TREE_CHAIN (vbase))
4758 {
4759 if (!BINFO_VIRTUAL_P (vbase))
4760 continue;
4761
4762 if (!BINFO_PRIMARY_P (vbase))
4763 {
4764 tree basetype = TREE_TYPE (vbase);
4765
4766 /* This virtual base is not a primary base of any class in the
4767 hierarchy, so we have to add space for it. */
4768 next_field = build_base_field (rli, vbase,
4769 offsets, next_field);
4770
4771 /* If the first virtual base might have been placed at a
4772 lower address, had we started from CLASSTYPE_SIZE, rather
4773 than TYPE_SIZE, issue a warning. There can be both false
4774 positives and false negatives from this warning in rare
4775 cases; to deal with all the possibilities would probably
4776 require performing both layout algorithms and comparing
4777 the results which is not particularly tractable. */
4778 if (warn_abi
4779 && first_vbase
4780 && (tree_int_cst_lt
4781 (size_binop (CEIL_DIV_EXPR,
4782 round_up_loc (input_location,
4783 CLASSTYPE_SIZE (t),
4784 CLASSTYPE_ALIGN (basetype)),
4785 bitsize_unit_node),
4786 BINFO_OFFSET (vbase))))
4787 warning (OPT_Wabi,
4788 "offset of virtual base %qT is not ABI-compliant and "
4789 "may change in a future version of GCC",
4790 basetype);
4791
4792 first_vbase = false;
4793 }
4794 }
4795 }
4796
4797 /* Returns the offset of the byte just past the end of the base class
4798 BINFO. */
4799
4800 static tree
4801 end_of_base (tree binfo)
4802 {
4803 tree size;
4804
4805 if (!CLASSTYPE_AS_BASE (BINFO_TYPE (binfo)))
4806 size = TYPE_SIZE_UNIT (char_type_node);
4807 else if (is_empty_class (BINFO_TYPE (binfo)))
4808 /* An empty class has zero CLASSTYPE_SIZE_UNIT, but we need to
4809 allocate some space for it. It cannot have virtual bases, so
4810 TYPE_SIZE_UNIT is fine. */
4811 size = TYPE_SIZE_UNIT (BINFO_TYPE (binfo));
4812 else
4813 size = CLASSTYPE_SIZE_UNIT (BINFO_TYPE (binfo));
4814
4815 return size_binop (PLUS_EXPR, BINFO_OFFSET (binfo), size);
4816 }
4817
4818 /* Returns the offset of the byte just past the end of the base class
4819 with the highest offset in T. If INCLUDE_VIRTUALS_P is zero, then
4820 only non-virtual bases are included. */
4821
4822 static tree
4823 end_of_class (tree t, int include_virtuals_p)
4824 {
4825 tree result = size_zero_node;
4826 VEC(tree,gc) *vbases;
4827 tree binfo;
4828 tree base_binfo;
4829 tree offset;
4830 int i;
4831
4832 for (binfo = TYPE_BINFO (t), i = 0;
4833 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
4834 {
4835 if (!include_virtuals_p
4836 && BINFO_VIRTUAL_P (base_binfo)
4837 && (!BINFO_PRIMARY_P (base_binfo)
4838 || BINFO_INHERITANCE_CHAIN (base_binfo) != TYPE_BINFO (t)))
4839 continue;
4840
4841 offset = end_of_base (base_binfo);
4842 if (INT_CST_LT_UNSIGNED (result, offset))
4843 result = offset;
4844 }
4845
4846 /* G++ 3.2 did not check indirect virtual bases. */
4847 if (abi_version_at_least (2) && include_virtuals_p)
4848 for (vbases = CLASSTYPE_VBASECLASSES (t), i = 0;
4849 VEC_iterate (tree, vbases, i, base_binfo); i++)
4850 {
4851 offset = end_of_base (base_binfo);
4852 if (INT_CST_LT_UNSIGNED (result, offset))
4853 result = offset;
4854 }
4855
4856 return result;
4857 }
4858
4859 /* Warn about bases of T that are inaccessible because they are
4860 ambiguous. For example:
4861
4862 struct S {};
4863 struct T : public S {};
4864 struct U : public S, public T {};
4865
4866 Here, `(S*) new U' is not allowed because there are two `S'
4867 subobjects of U. */
4868
4869 static void
4870 warn_about_ambiguous_bases (tree t)
4871 {
4872 int i;
4873 VEC(tree,gc) *vbases;
4874 tree basetype;
4875 tree binfo;
4876 tree base_binfo;
4877
4878 /* If there are no repeated bases, nothing can be ambiguous. */
4879 if (!CLASSTYPE_REPEATED_BASE_P (t))
4880 return;
4881
4882 /* Check direct bases. */
4883 for (binfo = TYPE_BINFO (t), i = 0;
4884 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
4885 {
4886 basetype = BINFO_TYPE (base_binfo);
4887
4888 if (!lookup_base (t, basetype, ba_unique | ba_quiet, NULL))
4889 warning (0, "direct base %qT inaccessible in %qT due to ambiguity",
4890 basetype, t);
4891 }
4892
4893 /* Check for ambiguous virtual bases. */
4894 if (extra_warnings)
4895 for (vbases = CLASSTYPE_VBASECLASSES (t), i = 0;
4896 VEC_iterate (tree, vbases, i, binfo); i++)
4897 {
4898 basetype = BINFO_TYPE (binfo);
4899
4900 if (!lookup_base (t, basetype, ba_unique | ba_quiet, NULL))
4901 warning (OPT_Wextra, "virtual base %qT inaccessible in %qT due to ambiguity",
4902 basetype, t);
4903 }
4904 }
4905
4906 /* Compare two INTEGER_CSTs K1 and K2. */
4907
4908 static int
4909 splay_tree_compare_integer_csts (splay_tree_key k1, splay_tree_key k2)
4910 {
4911 return tree_int_cst_compare ((tree) k1, (tree) k2);
4912 }
4913
4914 /* Increase the size indicated in RLI to account for empty classes
4915 that are "off the end" of the class. */
4916
4917 static void
4918 include_empty_classes (record_layout_info rli)
4919 {
4920 tree eoc;
4921 tree rli_size;
4922
4923 /* It might be the case that we grew the class to allocate a
4924 zero-sized base class. That won't be reflected in RLI, yet,
4925 because we are willing to overlay multiple bases at the same
4926 offset. However, now we need to make sure that RLI is big enough
4927 to reflect the entire class. */
4928 eoc = end_of_class (rli->t,
4929 CLASSTYPE_AS_BASE (rli->t) != NULL_TREE);
4930 rli_size = rli_size_unit_so_far (rli);
4931 if (TREE_CODE (rli_size) == INTEGER_CST
4932 && INT_CST_LT_UNSIGNED (rli_size, eoc))
4933 {
4934 if (!abi_version_at_least (2))
4935 /* In version 1 of the ABI, the size of a class that ends with
4936 a bitfield was not rounded up to a whole multiple of a
4937 byte. Because rli_size_unit_so_far returns only the number
4938 of fully allocated bytes, any extra bits were not included
4939 in the size. */
4940 rli->bitpos = round_down (rli->bitpos, BITS_PER_UNIT);
4941 else
4942 /* The size should have been rounded to a whole byte. */
4943 gcc_assert (tree_int_cst_equal
4944 (rli->bitpos, round_down (rli->bitpos, BITS_PER_UNIT)));
4945 rli->bitpos
4946 = size_binop (PLUS_EXPR,
4947 rli->bitpos,
4948 size_binop (MULT_EXPR,
4949 convert (bitsizetype,
4950 size_binop (MINUS_EXPR,
4951 eoc, rli_size)),
4952 bitsize_int (BITS_PER_UNIT)));
4953 normalize_rli (rli);
4954 }
4955 }
4956
4957 /* Calculate the TYPE_SIZE, TYPE_ALIGN, etc for T. Calculate
4958 BINFO_OFFSETs for all of the base-classes. Position the vtable
4959 pointer. Accumulate declared virtual functions on VIRTUALS_P. */
4960
4961 static void
4962 layout_class_type (tree t, tree *virtuals_p)
4963 {
4964 tree non_static_data_members;
4965 tree field;
4966 tree vptr;
4967 record_layout_info rli;
4968 /* Maps offsets (represented as INTEGER_CSTs) to a TREE_LIST of
4969 types that appear at that offset. */
4970 splay_tree empty_base_offsets;
4971 /* True if the last field layed out was a bit-field. */
4972 bool last_field_was_bitfield = false;
4973 /* The location at which the next field should be inserted. */
4974 tree *next_field;
4975 /* T, as a base class. */
4976 tree base_t;
4977
4978 /* Keep track of the first non-static data member. */
4979 non_static_data_members = TYPE_FIELDS (t);
4980
4981 /* Start laying out the record. */
4982 rli = start_record_layout (t);
4983
4984 /* Mark all the primary bases in the hierarchy. */
4985 determine_primary_bases (t);
4986
4987 /* Create a pointer to our virtual function table. */
4988 vptr = create_vtable_ptr (t, virtuals_p);
4989
4990 /* The vptr is always the first thing in the class. */
4991 if (vptr)
4992 {
4993 TREE_CHAIN (vptr) = TYPE_FIELDS (t);
4994 TYPE_FIELDS (t) = vptr;
4995 next_field = &TREE_CHAIN (vptr);
4996 place_field (rli, vptr);
4997 }
4998 else
4999 next_field = &TYPE_FIELDS (t);
5000
5001 /* Build FIELD_DECLs for all of the non-virtual base-types. */
5002 empty_base_offsets = splay_tree_new (splay_tree_compare_integer_csts,
5003 NULL, NULL);
5004 build_base_fields (rli, empty_base_offsets, next_field);
5005
5006 /* Layout the non-static data members. */
5007 for (field = non_static_data_members; field; field = TREE_CHAIN (field))
5008 {
5009 tree type;
5010 tree padding;
5011
5012 /* We still pass things that aren't non-static data members to
5013 the back end, in case it wants to do something with them. */
5014 if (TREE_CODE (field) != FIELD_DECL)
5015 {
5016 place_field (rli, field);
5017 /* If the static data member has incomplete type, keep track
5018 of it so that it can be completed later. (The handling
5019 of pending statics in finish_record_layout is
5020 insufficient; consider:
5021
5022 struct S1;
5023 struct S2 { static S1 s1; };
5024
5025 At this point, finish_record_layout will be called, but
5026 S1 is still incomplete.) */
5027 if (TREE_CODE (field) == VAR_DECL)
5028 {
5029 maybe_register_incomplete_var (field);
5030 /* The visibility of static data members is determined
5031 at their point of declaration, not their point of
5032 definition. */
5033 determine_visibility (field);
5034 }
5035 continue;
5036 }
5037
5038 type = TREE_TYPE (field);
5039 if (type == error_mark_node)
5040 continue;
5041
5042 padding = NULL_TREE;
5043
5044 /* If this field is a bit-field whose width is greater than its
5045 type, then there are some special rules for allocating
5046 it. */
5047 if (DECL_C_BIT_FIELD (field)
5048 && INT_CST_LT (TYPE_SIZE (type), DECL_SIZE (field)))
5049 {
5050 unsigned int itk;
5051 tree integer_type;
5052 bool was_unnamed_p = false;
5053 /* We must allocate the bits as if suitably aligned for the
5054 longest integer type that fits in this many bits. type
5055 of the field. Then, we are supposed to use the left over
5056 bits as additional padding. */
5057 for (itk = itk_char; itk != itk_none; ++itk)
5058 if (integer_types[itk] != NULL_TREE
5059 && (INT_CST_LT (size_int (MAX_FIXED_MODE_SIZE),
5060 TYPE_SIZE (integer_types[itk]))
5061 || INT_CST_LT (DECL_SIZE (field),
5062 TYPE_SIZE (integer_types[itk]))))
5063 break;
5064
5065 /* ITK now indicates a type that is too large for the
5066 field. We have to back up by one to find the largest
5067 type that fits. */
5068 do
5069 {
5070 --itk;
5071 integer_type = integer_types[itk];
5072 } while (itk > 0 && integer_type == NULL_TREE);
5073
5074 /* Figure out how much additional padding is required. GCC
5075 3.2 always created a padding field, even if it had zero
5076 width. */
5077 if (!abi_version_at_least (2)
5078 || INT_CST_LT (TYPE_SIZE (integer_type), DECL_SIZE (field)))
5079 {
5080 if (abi_version_at_least (2) && TREE_CODE (t) == UNION_TYPE)
5081 /* In a union, the padding field must have the full width
5082 of the bit-field; all fields start at offset zero. */
5083 padding = DECL_SIZE (field);
5084 else
5085 {
5086 if (TREE_CODE (t) == UNION_TYPE)
5087 warning (OPT_Wabi, "size assigned to %qT may not be "
5088 "ABI-compliant and may change in a future "
5089 "version of GCC",
5090 t);
5091 padding = size_binop (MINUS_EXPR, DECL_SIZE (field),
5092 TYPE_SIZE (integer_type));
5093 }
5094 }
5095 #ifdef PCC_BITFIELD_TYPE_MATTERS
5096 /* An unnamed bitfield does not normally affect the
5097 alignment of the containing class on a target where
5098 PCC_BITFIELD_TYPE_MATTERS. But, the C++ ABI does not
5099 make any exceptions for unnamed bitfields when the
5100 bitfields are longer than their types. Therefore, we
5101 temporarily give the field a name. */
5102 if (PCC_BITFIELD_TYPE_MATTERS && !DECL_NAME (field))
5103 {
5104 was_unnamed_p = true;
5105 DECL_NAME (field) = make_anon_name ();
5106 }
5107 #endif
5108 DECL_SIZE (field) = TYPE_SIZE (integer_type);
5109 DECL_ALIGN (field) = TYPE_ALIGN (integer_type);
5110 DECL_USER_ALIGN (field) = TYPE_USER_ALIGN (integer_type);
5111 layout_nonempty_base_or_field (rli, field, NULL_TREE,
5112 empty_base_offsets);
5113 if (was_unnamed_p)
5114 DECL_NAME (field) = NULL_TREE;
5115 /* Now that layout has been performed, set the size of the
5116 field to the size of its declared type; the rest of the
5117 field is effectively invisible. */
5118 DECL_SIZE (field) = TYPE_SIZE (type);
5119 /* We must also reset the DECL_MODE of the field. */
5120 if (abi_version_at_least (2))
5121 DECL_MODE (field) = TYPE_MODE (type);
5122 else if (warn_abi
5123 && DECL_MODE (field) != TYPE_MODE (type))
5124 /* Versions of G++ before G++ 3.4 did not reset the
5125 DECL_MODE. */
5126 warning (OPT_Wabi,
5127 "the offset of %qD may not be ABI-compliant and may "
5128 "change in a future version of GCC", field);
5129 }
5130 else
5131 layout_nonempty_base_or_field (rli, field, NULL_TREE,
5132 empty_base_offsets);
5133
5134 /* Remember the location of any empty classes in FIELD. */
5135 if (abi_version_at_least (2))
5136 record_subobject_offsets (TREE_TYPE (field),
5137 byte_position(field),
5138 empty_base_offsets,
5139 /*is_data_member=*/true);
5140
5141 /* If a bit-field does not immediately follow another bit-field,
5142 and yet it starts in the middle of a byte, we have failed to
5143 comply with the ABI. */
5144 if (warn_abi
5145 && DECL_C_BIT_FIELD (field)
5146 /* The TREE_NO_WARNING flag gets set by Objective-C when
5147 laying out an Objective-C class. The ObjC ABI differs
5148 from the C++ ABI, and so we do not want a warning
5149 here. */
5150 && !TREE_NO_WARNING (field)
5151 && !last_field_was_bitfield
5152 && !integer_zerop (size_binop (TRUNC_MOD_EXPR,
5153 DECL_FIELD_BIT_OFFSET (field),
5154 bitsize_unit_node)))
5155 warning (OPT_Wabi, "offset of %q+D is not ABI-compliant and may "
5156 "change in a future version of GCC", field);
5157
5158 /* G++ used to use DECL_FIELD_OFFSET as if it were the byte
5159 offset of the field. */
5160 if (warn_abi
5161 && !abi_version_at_least (2)
5162 && !tree_int_cst_equal (DECL_FIELD_OFFSET (field),
5163 byte_position (field))
5164 && contains_empty_class_p (TREE_TYPE (field)))
5165 warning (OPT_Wabi, "%q+D contains empty classes which may cause base "
5166 "classes to be placed at different locations in a "
5167 "future version of GCC", field);
5168
5169 /* The middle end uses the type of expressions to determine the
5170 possible range of expression values. In order to optimize
5171 "x.i > 7" to "false" for a 2-bit bitfield "i", the middle end
5172 must be made aware of the width of "i", via its type.
5173
5174 Because C++ does not have integer types of arbitrary width,
5175 we must (for the purposes of the front end) convert from the
5176 type assigned here to the declared type of the bitfield
5177 whenever a bitfield expression is used as an rvalue.
5178 Similarly, when assigning a value to a bitfield, the value
5179 must be converted to the type given the bitfield here. */
5180 if (DECL_C_BIT_FIELD (field))
5181 {
5182 unsigned HOST_WIDE_INT width;
5183 tree ftype = TREE_TYPE (field);
5184 width = tree_low_cst (DECL_SIZE (field), /*unsignedp=*/1);
5185 if (width != TYPE_PRECISION (ftype))
5186 {
5187 TREE_TYPE (field)
5188 = c_build_bitfield_integer_type (width,
5189 TYPE_UNSIGNED (ftype));
5190 TREE_TYPE (field)
5191 = cp_build_qualified_type (TREE_TYPE (field),
5192 cp_type_quals (ftype));
5193 }
5194 }
5195
5196 /* If we needed additional padding after this field, add it
5197 now. */
5198 if (padding)
5199 {
5200 tree padding_field;
5201
5202 padding_field = build_decl (input_location,
5203 FIELD_DECL,
5204 NULL_TREE,
5205 char_type_node);
5206 DECL_BIT_FIELD (padding_field) = 1;
5207 DECL_SIZE (padding_field) = padding;
5208 DECL_CONTEXT (padding_field) = t;
5209 DECL_ARTIFICIAL (padding_field) = 1;
5210 DECL_IGNORED_P (padding_field) = 1;
5211 layout_nonempty_base_or_field (rli, padding_field,
5212 NULL_TREE,
5213 empty_base_offsets);
5214 }
5215
5216 last_field_was_bitfield = DECL_C_BIT_FIELD (field);
5217 }
5218
5219 if (abi_version_at_least (2) && !integer_zerop (rli->bitpos))
5220 {
5221 /* Make sure that we are on a byte boundary so that the size of
5222 the class without virtual bases will always be a round number
5223 of bytes. */
5224 rli->bitpos = round_up_loc (input_location, rli->bitpos, BITS_PER_UNIT);
5225 normalize_rli (rli);
5226 }
5227
5228 /* G++ 3.2 does not allow virtual bases to be overlaid with tail
5229 padding. */
5230 if (!abi_version_at_least (2))
5231 include_empty_classes(rli);
5232
5233 /* Delete all zero-width bit-fields from the list of fields. Now
5234 that the type is laid out they are no longer important. */
5235 remove_zero_width_bit_fields (t);
5236
5237 /* Create the version of T used for virtual bases. We do not use
5238 make_class_type for this version; this is an artificial type. For
5239 a POD type, we just reuse T. */
5240 if (CLASSTYPE_NON_LAYOUT_POD_P (t) || CLASSTYPE_EMPTY_P (t))
5241 {
5242 base_t = make_node (TREE_CODE (t));
5243
5244 /* Set the size and alignment for the new type. In G++ 3.2, all
5245 empty classes were considered to have size zero when used as
5246 base classes. */
5247 if (!abi_version_at_least (2) && CLASSTYPE_EMPTY_P (t))
5248 {
5249 TYPE_SIZE (base_t) = bitsize_zero_node;
5250 TYPE_SIZE_UNIT (base_t) = size_zero_node;
5251 if (warn_abi && !integer_zerop (rli_size_unit_so_far (rli)))
5252 warning (OPT_Wabi,
5253 "layout of classes derived from empty class %qT "
5254 "may change in a future version of GCC",
5255 t);
5256 }
5257 else
5258 {
5259 tree eoc;
5260
5261 /* If the ABI version is not at least two, and the last
5262 field was a bit-field, RLI may not be on a byte
5263 boundary. In particular, rli_size_unit_so_far might
5264 indicate the last complete byte, while rli_size_so_far
5265 indicates the total number of bits used. Therefore,
5266 rli_size_so_far, rather than rli_size_unit_so_far, is
5267 used to compute TYPE_SIZE_UNIT. */
5268 eoc = end_of_class (t, /*include_virtuals_p=*/0);
5269 TYPE_SIZE_UNIT (base_t)
5270 = size_binop (MAX_EXPR,
5271 convert (sizetype,
5272 size_binop (CEIL_DIV_EXPR,
5273 rli_size_so_far (rli),
5274 bitsize_int (BITS_PER_UNIT))),
5275 eoc);
5276 TYPE_SIZE (base_t)
5277 = size_binop (MAX_EXPR,
5278 rli_size_so_far (rli),
5279 size_binop (MULT_EXPR,
5280 convert (bitsizetype, eoc),
5281 bitsize_int (BITS_PER_UNIT)));
5282 }
5283 TYPE_ALIGN (base_t) = rli->record_align;
5284 TYPE_USER_ALIGN (base_t) = TYPE_USER_ALIGN (t);
5285
5286 /* Copy the fields from T. */
5287 next_field = &TYPE_FIELDS (base_t);
5288 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
5289 if (TREE_CODE (field) == FIELD_DECL)
5290 {
5291 *next_field = build_decl (input_location,
5292 FIELD_DECL,
5293 DECL_NAME (field),
5294 TREE_TYPE (field));
5295 DECL_CONTEXT (*next_field) = base_t;
5296 DECL_FIELD_OFFSET (*next_field) = DECL_FIELD_OFFSET (field);
5297 DECL_FIELD_BIT_OFFSET (*next_field)
5298 = DECL_FIELD_BIT_OFFSET (field);
5299 DECL_SIZE (*next_field) = DECL_SIZE (field);
5300 DECL_MODE (*next_field) = DECL_MODE (field);
5301 next_field = &TREE_CHAIN (*next_field);
5302 }
5303
5304 /* Record the base version of the type. */
5305 CLASSTYPE_AS_BASE (t) = base_t;
5306 TYPE_CONTEXT (base_t) = t;
5307 }
5308 else
5309 CLASSTYPE_AS_BASE (t) = t;
5310
5311 /* Every empty class contains an empty class. */
5312 if (CLASSTYPE_EMPTY_P (t))
5313 CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t) = 1;
5314
5315 /* Set the TYPE_DECL for this type to contain the right
5316 value for DECL_OFFSET, so that we can use it as part
5317 of a COMPONENT_REF for multiple inheritance. */
5318 layout_decl (TYPE_MAIN_DECL (t), 0);
5319
5320 /* Now fix up any virtual base class types that we left lying
5321 around. We must get these done before we try to lay out the
5322 virtual function table. As a side-effect, this will remove the
5323 base subobject fields. */
5324 layout_virtual_bases (rli, empty_base_offsets);
5325
5326 /* Make sure that empty classes are reflected in RLI at this
5327 point. */
5328 include_empty_classes(rli);
5329
5330 /* Make sure not to create any structures with zero size. */
5331 if (integer_zerop (rli_size_unit_so_far (rli)) && CLASSTYPE_EMPTY_P (t))
5332 place_field (rli,
5333 build_decl (input_location,
5334 FIELD_DECL, NULL_TREE, char_type_node));
5335
5336 /* If this is a non-POD, declaring it packed makes a difference to how it
5337 can be used as a field; don't let finalize_record_size undo it. */
5338 if (TYPE_PACKED (t) && !layout_pod_type_p (t))
5339 rli->packed_maybe_necessary = true;
5340
5341 /* Let the back end lay out the type. */
5342 finish_record_layout (rli, /*free_p=*/true);
5343
5344 /* Warn about bases that can't be talked about due to ambiguity. */
5345 warn_about_ambiguous_bases (t);
5346
5347 /* Now that we're done with layout, give the base fields the real types. */
5348 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
5349 if (DECL_ARTIFICIAL (field) && IS_FAKE_BASE_TYPE (TREE_TYPE (field)))
5350 TREE_TYPE (field) = TYPE_CONTEXT (TREE_TYPE (field));
5351
5352 /* Clean up. */
5353 splay_tree_delete (empty_base_offsets);
5354
5355 if (CLASSTYPE_EMPTY_P (t)
5356 && tree_int_cst_lt (sizeof_biggest_empty_class,
5357 TYPE_SIZE_UNIT (t)))
5358 sizeof_biggest_empty_class = TYPE_SIZE_UNIT (t);
5359 }
5360
5361 /* Determine the "key method" for the class type indicated by TYPE,
5362 and set CLASSTYPE_KEY_METHOD accordingly. */
5363
5364 void
5365 determine_key_method (tree type)
5366 {
5367 tree method;
5368
5369 if (TYPE_FOR_JAVA (type)
5370 || processing_template_decl
5371 || CLASSTYPE_TEMPLATE_INSTANTIATION (type)
5372 || CLASSTYPE_INTERFACE_KNOWN (type))
5373 return;
5374
5375 /* The key method is the first non-pure virtual function that is not
5376 inline at the point of class definition. On some targets the
5377 key function may not be inline; those targets should not call
5378 this function until the end of the translation unit. */
5379 for (method = TYPE_METHODS (type); method != NULL_TREE;
5380 method = TREE_CHAIN (method))
5381 if (DECL_VINDEX (method) != NULL_TREE
5382 && ! DECL_DECLARED_INLINE_P (method)
5383 && ! DECL_PURE_VIRTUAL_P (method))
5384 {
5385 CLASSTYPE_KEY_METHOD (type) = method;
5386 break;
5387 }
5388
5389 return;
5390 }
5391
5392 /* Perform processing required when the definition of T (a class type)
5393 is complete. */
5394
5395 void
5396 finish_struct_1 (tree t)
5397 {
5398 tree x;
5399 /* A TREE_LIST. The TREE_VALUE of each node is a FUNCTION_DECL. */
5400 tree virtuals = NULL_TREE;
5401 int n_fields = 0;
5402
5403 if (COMPLETE_TYPE_P (t))
5404 {
5405 gcc_assert (MAYBE_CLASS_TYPE_P (t));
5406 error ("redefinition of %q#T", t);
5407 popclass ();
5408 return;
5409 }
5410
5411 /* If this type was previously laid out as a forward reference,
5412 make sure we lay it out again. */
5413 TYPE_SIZE (t) = NULL_TREE;
5414 CLASSTYPE_PRIMARY_BINFO (t) = NULL_TREE;
5415
5416 /* Make assumptions about the class; we'll reset the flags if
5417 necessary. */
5418 CLASSTYPE_EMPTY_P (t) = 1;
5419 CLASSTYPE_NEARLY_EMPTY_P (t) = 1;
5420 CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t) = 0;
5421
5422 /* Do end-of-class semantic processing: checking the validity of the
5423 bases and members and add implicitly generated methods. */
5424 check_bases_and_members (t);
5425
5426 /* Find the key method. */
5427 if (TYPE_CONTAINS_VPTR_P (t))
5428 {
5429 /* The Itanium C++ ABI permits the key method to be chosen when
5430 the class is defined -- even though the key method so
5431 selected may later turn out to be an inline function. On
5432 some systems (such as ARM Symbian OS) the key method cannot
5433 be determined until the end of the translation unit. On such
5434 systems, we leave CLASSTYPE_KEY_METHOD set to NULL, which
5435 will cause the class to be added to KEYED_CLASSES. Then, in
5436 finish_file we will determine the key method. */
5437 if (targetm.cxx.key_method_may_be_inline ())
5438 determine_key_method (t);
5439
5440 /* If a polymorphic class has no key method, we may emit the vtable
5441 in every translation unit where the class definition appears. */
5442 if (CLASSTYPE_KEY_METHOD (t) == NULL_TREE)
5443 keyed_classes = tree_cons (NULL_TREE, t, keyed_classes);
5444 }
5445
5446 /* Layout the class itself. */
5447 layout_class_type (t, &virtuals);
5448 if (CLASSTYPE_AS_BASE (t) != t)
5449 /* We use the base type for trivial assignments, and hence it
5450 needs a mode. */
5451 compute_record_mode (CLASSTYPE_AS_BASE (t));
5452
5453 virtuals = modify_all_vtables (t, nreverse (virtuals));
5454
5455 /* If necessary, create the primary vtable for this class. */
5456 if (virtuals || TYPE_CONTAINS_VPTR_P (t))
5457 {
5458 /* We must enter these virtuals into the table. */
5459 if (!CLASSTYPE_HAS_PRIMARY_BASE_P (t))
5460 build_primary_vtable (NULL_TREE, t);
5461 else if (! BINFO_NEW_VTABLE_MARKED (TYPE_BINFO (t)))
5462 /* Here we know enough to change the type of our virtual
5463 function table, but we will wait until later this function. */
5464 build_primary_vtable (CLASSTYPE_PRIMARY_BINFO (t), t);
5465 }
5466
5467 if (TYPE_CONTAINS_VPTR_P (t))
5468 {
5469 int vindex;
5470 tree fn;
5471
5472 if (BINFO_VTABLE (TYPE_BINFO (t)))
5473 gcc_assert (DECL_VIRTUAL_P (BINFO_VTABLE (TYPE_BINFO (t))));
5474 if (!CLASSTYPE_HAS_PRIMARY_BASE_P (t))
5475 gcc_assert (BINFO_VIRTUALS (TYPE_BINFO (t)) == NULL_TREE);
5476
5477 /* Add entries for virtual functions introduced by this class. */
5478 BINFO_VIRTUALS (TYPE_BINFO (t))
5479 = chainon (BINFO_VIRTUALS (TYPE_BINFO (t)), virtuals);
5480
5481 /* Set DECL_VINDEX for all functions declared in this class. */
5482 for (vindex = 0, fn = BINFO_VIRTUALS (TYPE_BINFO (t));
5483 fn;
5484 fn = TREE_CHAIN (fn),
5485 vindex += (TARGET_VTABLE_USES_DESCRIPTORS
5486 ? TARGET_VTABLE_USES_DESCRIPTORS : 1))
5487 {
5488 tree fndecl = BV_FN (fn);
5489
5490 if (DECL_THUNK_P (fndecl))
5491 /* A thunk. We should never be calling this entry directly
5492 from this vtable -- we'd use the entry for the non
5493 thunk base function. */
5494 DECL_VINDEX (fndecl) = NULL_TREE;
5495 else if (TREE_CODE (DECL_VINDEX (fndecl)) != INTEGER_CST)
5496 DECL_VINDEX (fndecl) = build_int_cst (NULL_TREE, vindex);
5497 }
5498 }
5499
5500 finish_struct_bits (t);
5501
5502 /* Complete the rtl for any static member objects of the type we're
5503 working on. */
5504 for (x = TYPE_FIELDS (t); x; x = TREE_CHAIN (x))
5505 if (TREE_CODE (x) == VAR_DECL && TREE_STATIC (x)
5506 && TREE_TYPE (x) != error_mark_node
5507 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (x)), t))
5508 DECL_MODE (x) = TYPE_MODE (t);
5509
5510 /* Done with FIELDS...now decide whether to sort these for
5511 faster lookups later.
5512
5513 We use a small number because most searches fail (succeeding
5514 ultimately as the search bores through the inheritance
5515 hierarchy), and we want this failure to occur quickly. */
5516
5517 n_fields = count_fields (TYPE_FIELDS (t));
5518 if (n_fields > 7)
5519 {
5520 struct sorted_fields_type *field_vec = ggc_alloc_sorted_fields_type
5521 (sizeof (struct sorted_fields_type) + n_fields * sizeof (tree));
5522 field_vec->len = n_fields;
5523 add_fields_to_record_type (TYPE_FIELDS (t), field_vec, 0);
5524 qsort (field_vec->elts, n_fields, sizeof (tree),
5525 field_decl_cmp);
5526 CLASSTYPE_SORTED_FIELDS (t) = field_vec;
5527 }
5528
5529 /* Complain if one of the field types requires lower visibility. */
5530 constrain_class_visibility (t);
5531
5532 /* Make the rtl for any new vtables we have created, and unmark
5533 the base types we marked. */
5534 finish_vtbls (t);
5535
5536 /* Build the VTT for T. */
5537 build_vtt (t);
5538
5539 /* This warning does not make sense for Java classes, since they
5540 cannot have destructors. */
5541 if (!TYPE_FOR_JAVA (t) && warn_nonvdtor && TYPE_POLYMORPHIC_P (t))
5542 {
5543 tree dtor;
5544
5545 dtor = CLASSTYPE_DESTRUCTORS (t);
5546 if (/* An implicitly declared destructor is always public. And,
5547 if it were virtual, we would have created it by now. */
5548 !dtor
5549 || (!DECL_VINDEX (dtor)
5550 && (/* public non-virtual */
5551 (!TREE_PRIVATE (dtor) && !TREE_PROTECTED (dtor))
5552 || (/* non-public non-virtual with friends */
5553 (TREE_PRIVATE (dtor) || TREE_PROTECTED (dtor))
5554 && (CLASSTYPE_FRIEND_CLASSES (t)
5555 || DECL_FRIENDLIST (TYPE_MAIN_DECL (t)))))))
5556 warning (OPT_Wnon_virtual_dtor,
5557 "%q#T has virtual functions and accessible"
5558 " non-virtual destructor", t);
5559 }
5560
5561 complete_vars (t);
5562
5563 if (warn_overloaded_virtual)
5564 warn_hidden (t);
5565
5566 /* Class layout, assignment of virtual table slots, etc., is now
5567 complete. Give the back end a chance to tweak the visibility of
5568 the class or perform any other required target modifications. */
5569 targetm.cxx.adjust_class_at_definition (t);
5570
5571 maybe_suppress_debug_info (t);
5572
5573 dump_class_hierarchy (t);
5574
5575 /* Finish debugging output for this type. */
5576 rest_of_type_compilation (t, ! LOCAL_CLASS_P (t));
5577 }
5578
5579 /* When T was built up, the member declarations were added in reverse
5580 order. Rearrange them to declaration order. */
5581
5582 void
5583 unreverse_member_declarations (tree t)
5584 {
5585 tree next;
5586 tree prev;
5587 tree x;
5588
5589 /* The following lists are all in reverse order. Put them in
5590 declaration order now. */
5591 TYPE_METHODS (t) = nreverse (TYPE_METHODS (t));
5592 CLASSTYPE_DECL_LIST (t) = nreverse (CLASSTYPE_DECL_LIST (t));
5593
5594 /* Actually, for the TYPE_FIELDS, only the non TYPE_DECLs are in
5595 reverse order, so we can't just use nreverse. */
5596 prev = NULL_TREE;
5597 for (x = TYPE_FIELDS (t);
5598 x && TREE_CODE (x) != TYPE_DECL;
5599 x = next)
5600 {
5601 next = TREE_CHAIN (x);
5602 TREE_CHAIN (x) = prev;
5603 prev = x;
5604 }
5605 if (prev)
5606 {
5607 TREE_CHAIN (TYPE_FIELDS (t)) = x;
5608 if (prev)
5609 TYPE_FIELDS (t) = prev;
5610 }
5611 }
5612
5613 tree
5614 finish_struct (tree t, tree attributes)
5615 {
5616 location_t saved_loc = input_location;
5617
5618 /* Now that we've got all the field declarations, reverse everything
5619 as necessary. */
5620 unreverse_member_declarations (t);
5621
5622 cplus_decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5623
5624 /* Nadger the current location so that diagnostics point to the start of
5625 the struct, not the end. */
5626 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (t));
5627
5628 if (processing_template_decl)
5629 {
5630 tree x;
5631
5632 finish_struct_methods (t);
5633 TYPE_SIZE (t) = bitsize_zero_node;
5634 TYPE_SIZE_UNIT (t) = size_zero_node;
5635
5636 /* We need to emit an error message if this type was used as a parameter
5637 and it is an abstract type, even if it is a template. We construct
5638 a simple CLASSTYPE_PURE_VIRTUALS list without taking bases into
5639 account and we call complete_vars with this type, which will check
5640 the PARM_DECLS. Note that while the type is being defined,
5641 CLASSTYPE_PURE_VIRTUALS contains the list of the inline friends
5642 (see CLASSTYPE_INLINE_FRIENDS) so we need to clear it. */
5643 CLASSTYPE_PURE_VIRTUALS (t) = NULL;
5644 for (x = TYPE_METHODS (t); x; x = TREE_CHAIN (x))
5645 if (DECL_PURE_VIRTUAL_P (x))
5646 VEC_safe_push (tree, gc, CLASSTYPE_PURE_VIRTUALS (t), x);
5647 complete_vars (t);
5648
5649 /* Remember current #pragma pack value. */
5650 TYPE_PRECISION (t) = maximum_field_alignment;
5651 }
5652 else
5653 finish_struct_1 (t);
5654
5655 input_location = saved_loc;
5656
5657 TYPE_BEING_DEFINED (t) = 0;
5658
5659 if (current_class_type)
5660 popclass ();
5661 else
5662 error ("trying to finish struct, but kicked out due to previous parse errors");
5663
5664 if (processing_template_decl && at_function_scope_p ())
5665 add_stmt (build_min (TAG_DEFN, t));
5666
5667 return t;
5668 }
5669 \f
5670 /* Return the dynamic type of INSTANCE, if known.
5671 Used to determine whether the virtual function table is needed
5672 or not.
5673
5674 *NONNULL is set iff INSTANCE can be known to be nonnull, regardless
5675 of our knowledge of its type. *NONNULL should be initialized
5676 before this function is called. */
5677
5678 static tree
5679 fixed_type_or_null (tree instance, int *nonnull, int *cdtorp)
5680 {
5681 #define RECUR(T) fixed_type_or_null((T), nonnull, cdtorp)
5682
5683 switch (TREE_CODE (instance))
5684 {
5685 case INDIRECT_REF:
5686 if (POINTER_TYPE_P (TREE_TYPE (instance)))
5687 return NULL_TREE;
5688 else
5689 return RECUR (TREE_OPERAND (instance, 0));
5690
5691 case CALL_EXPR:
5692 /* This is a call to a constructor, hence it's never zero. */
5693 if (TREE_HAS_CONSTRUCTOR (instance))
5694 {
5695 if (nonnull)
5696 *nonnull = 1;
5697 return TREE_TYPE (instance);
5698 }
5699 return NULL_TREE;
5700
5701 case SAVE_EXPR:
5702 /* This is a call to a constructor, hence it's never zero. */
5703 if (TREE_HAS_CONSTRUCTOR (instance))
5704 {
5705 if (nonnull)
5706 *nonnull = 1;
5707 return TREE_TYPE (instance);
5708 }
5709 return RECUR (TREE_OPERAND (instance, 0));
5710
5711 case POINTER_PLUS_EXPR:
5712 case PLUS_EXPR:
5713 case MINUS_EXPR:
5714 if (TREE_CODE (TREE_OPERAND (instance, 0)) == ADDR_EXPR)
5715 return RECUR (TREE_OPERAND (instance, 0));
5716 if (TREE_CODE (TREE_OPERAND (instance, 1)) == INTEGER_CST)
5717 /* Propagate nonnull. */
5718 return RECUR (TREE_OPERAND (instance, 0));
5719
5720 return NULL_TREE;
5721
5722 CASE_CONVERT:
5723 return RECUR (TREE_OPERAND (instance, 0));
5724
5725 case ADDR_EXPR:
5726 instance = TREE_OPERAND (instance, 0);
5727 if (nonnull)
5728 {
5729 /* Just because we see an ADDR_EXPR doesn't mean we're dealing
5730 with a real object -- given &p->f, p can still be null. */
5731 tree t = get_base_address (instance);
5732 /* ??? Probably should check DECL_WEAK here. */
5733 if (t && DECL_P (t))
5734 *nonnull = 1;
5735 }
5736 return RECUR (instance);
5737
5738 case COMPONENT_REF:
5739 /* If this component is really a base class reference, then the field
5740 itself isn't definitive. */
5741 if (DECL_FIELD_IS_BASE (TREE_OPERAND (instance, 1)))
5742 return RECUR (TREE_OPERAND (instance, 0));
5743 return RECUR (TREE_OPERAND (instance, 1));
5744
5745 case VAR_DECL:
5746 case FIELD_DECL:
5747 if (TREE_CODE (TREE_TYPE (instance)) == ARRAY_TYPE
5748 && MAYBE_CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (instance))))
5749 {
5750 if (nonnull)
5751 *nonnull = 1;
5752 return TREE_TYPE (TREE_TYPE (instance));
5753 }
5754 /* fall through... */
5755 case TARGET_EXPR:
5756 case PARM_DECL:
5757 case RESULT_DECL:
5758 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (instance)))
5759 {
5760 if (nonnull)
5761 *nonnull = 1;
5762 return TREE_TYPE (instance);
5763 }
5764 else if (instance == current_class_ptr)
5765 {
5766 if (nonnull)
5767 *nonnull = 1;
5768
5769 /* if we're in a ctor or dtor, we know our type. */
5770 if (DECL_LANG_SPECIFIC (current_function_decl)
5771 && (DECL_CONSTRUCTOR_P (current_function_decl)
5772 || DECL_DESTRUCTOR_P (current_function_decl)))
5773 {
5774 if (cdtorp)
5775 *cdtorp = 1;
5776 return TREE_TYPE (TREE_TYPE (instance));
5777 }
5778 }
5779 else if (TREE_CODE (TREE_TYPE (instance)) == REFERENCE_TYPE)
5780 {
5781 /* We only need one hash table because it is always left empty. */
5782 static htab_t ht;
5783 if (!ht)
5784 ht = htab_create (37,
5785 htab_hash_pointer,
5786 htab_eq_pointer,
5787 /*htab_del=*/NULL);
5788
5789 /* Reference variables should be references to objects. */
5790 if (nonnull)
5791 *nonnull = 1;
5792
5793 /* Enter the INSTANCE in a table to prevent recursion; a
5794 variable's initializer may refer to the variable
5795 itself. */
5796 if (TREE_CODE (instance) == VAR_DECL
5797 && DECL_INITIAL (instance)
5798 && !htab_find (ht, instance))
5799 {
5800 tree type;
5801 void **slot;
5802
5803 slot = htab_find_slot (ht, instance, INSERT);
5804 *slot = instance;
5805 type = RECUR (DECL_INITIAL (instance));
5806 htab_remove_elt (ht, instance);
5807
5808 return type;
5809 }
5810 }
5811 return NULL_TREE;
5812
5813 default:
5814 return NULL_TREE;
5815 }
5816 #undef RECUR
5817 }
5818
5819 /* Return nonzero if the dynamic type of INSTANCE is known, and
5820 equivalent to the static type. We also handle the case where
5821 INSTANCE is really a pointer. Return negative if this is a
5822 ctor/dtor. There the dynamic type is known, but this might not be
5823 the most derived base of the original object, and hence virtual
5824 bases may not be layed out according to this type.
5825
5826 Used to determine whether the virtual function table is needed
5827 or not.
5828
5829 *NONNULL is set iff INSTANCE can be known to be nonnull, regardless
5830 of our knowledge of its type. *NONNULL should be initialized
5831 before this function is called. */
5832
5833 int
5834 resolves_to_fixed_type_p (tree instance, int* nonnull)
5835 {
5836 tree t = TREE_TYPE (instance);
5837 int cdtorp = 0;
5838 tree fixed = fixed_type_or_null (instance, nonnull, &cdtorp);
5839 if (fixed == NULL_TREE)
5840 return 0;
5841 if (POINTER_TYPE_P (t))
5842 t = TREE_TYPE (t);
5843 if (!same_type_ignoring_top_level_qualifiers_p (t, fixed))
5844 return 0;
5845 return cdtorp ? -1 : 1;
5846 }
5847
5848 \f
5849 void
5850 init_class_processing (void)
5851 {
5852 current_class_depth = 0;
5853 current_class_stack_size = 10;
5854 current_class_stack
5855 = XNEWVEC (struct class_stack_node, current_class_stack_size);
5856 local_classes = VEC_alloc (tree, gc, 8);
5857 sizeof_biggest_empty_class = size_zero_node;
5858
5859 ridpointers[(int) RID_PUBLIC] = access_public_node;
5860 ridpointers[(int) RID_PRIVATE] = access_private_node;
5861 ridpointers[(int) RID_PROTECTED] = access_protected_node;
5862 }
5863
5864 /* Restore the cached PREVIOUS_CLASS_LEVEL. */
5865
5866 static void
5867 restore_class_cache (void)
5868 {
5869 tree type;
5870
5871 /* We are re-entering the same class we just left, so we don't
5872 have to search the whole inheritance matrix to find all the
5873 decls to bind again. Instead, we install the cached
5874 class_shadowed list and walk through it binding names. */
5875 push_binding_level (previous_class_level);
5876 class_binding_level = previous_class_level;
5877 /* Restore IDENTIFIER_TYPE_VALUE. */
5878 for (type = class_binding_level->type_shadowed;
5879 type;
5880 type = TREE_CHAIN (type))
5881 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (type), TREE_TYPE (type));
5882 }
5883
5884 /* Set global variables CURRENT_CLASS_NAME and CURRENT_CLASS_TYPE as
5885 appropriate for TYPE.
5886
5887 So that we may avoid calls to lookup_name, we cache the _TYPE
5888 nodes of local TYPE_DECLs in the TREE_TYPE field of the name.
5889
5890 For multiple inheritance, we perform a two-pass depth-first search
5891 of the type lattice. */
5892
5893 void
5894 pushclass (tree type)
5895 {
5896 class_stack_node_t csn;
5897
5898 type = TYPE_MAIN_VARIANT (type);
5899
5900 /* Make sure there is enough room for the new entry on the stack. */
5901 if (current_class_depth + 1 >= current_class_stack_size)
5902 {
5903 current_class_stack_size *= 2;
5904 current_class_stack
5905 = XRESIZEVEC (struct class_stack_node, current_class_stack,
5906 current_class_stack_size);
5907 }
5908
5909 /* Insert a new entry on the class stack. */
5910 csn = current_class_stack + current_class_depth;
5911 csn->name = current_class_name;
5912 csn->type = current_class_type;
5913 csn->access = current_access_specifier;
5914 csn->names_used = 0;
5915 csn->hidden = 0;
5916 current_class_depth++;
5917
5918 /* Now set up the new type. */
5919 current_class_name = TYPE_NAME (type);
5920 if (TREE_CODE (current_class_name) == TYPE_DECL)
5921 current_class_name = DECL_NAME (current_class_name);
5922 current_class_type = type;
5923
5924 /* By default, things in classes are private, while things in
5925 structures or unions are public. */
5926 current_access_specifier = (CLASSTYPE_DECLARED_CLASS (type)
5927 ? access_private_node
5928 : access_public_node);
5929
5930 if (previous_class_level
5931 && type != previous_class_level->this_entity
5932 && current_class_depth == 1)
5933 {
5934 /* Forcibly remove any old class remnants. */
5935 invalidate_class_lookup_cache ();
5936 }
5937
5938 if (!previous_class_level
5939 || type != previous_class_level->this_entity
5940 || current_class_depth > 1)
5941 pushlevel_class ();
5942 else
5943 restore_class_cache ();
5944 }
5945
5946 /* When we exit a toplevel class scope, we save its binding level so
5947 that we can restore it quickly. Here, we've entered some other
5948 class, so we must invalidate our cache. */
5949
5950 void
5951 invalidate_class_lookup_cache (void)
5952 {
5953 previous_class_level = NULL;
5954 }
5955
5956 /* Get out of the current class scope. If we were in a class scope
5957 previously, that is the one popped to. */
5958
5959 void
5960 popclass (void)
5961 {
5962 poplevel_class ();
5963
5964 current_class_depth--;
5965 current_class_name = current_class_stack[current_class_depth].name;
5966 current_class_type = current_class_stack[current_class_depth].type;
5967 current_access_specifier = current_class_stack[current_class_depth].access;
5968 if (current_class_stack[current_class_depth].names_used)
5969 splay_tree_delete (current_class_stack[current_class_depth].names_used);
5970 }
5971
5972 /* Mark the top of the class stack as hidden. */
5973
5974 void
5975 push_class_stack (void)
5976 {
5977 if (current_class_depth)
5978 ++current_class_stack[current_class_depth - 1].hidden;
5979 }
5980
5981 /* Mark the top of the class stack as un-hidden. */
5982
5983 void
5984 pop_class_stack (void)
5985 {
5986 if (current_class_depth)
5987 --current_class_stack[current_class_depth - 1].hidden;
5988 }
5989
5990 /* Returns 1 if the class type currently being defined is either T or
5991 a nested type of T. */
5992
5993 bool
5994 currently_open_class (tree t)
5995 {
5996 int i;
5997
5998 if (!CLASS_TYPE_P (t))
5999 return false;
6000
6001 t = TYPE_MAIN_VARIANT (t);
6002
6003 /* We start looking from 1 because entry 0 is from global scope,
6004 and has no type. */
6005 for (i = current_class_depth; i > 0; --i)
6006 {
6007 tree c;
6008 if (i == current_class_depth)
6009 c = current_class_type;
6010 else
6011 {
6012 if (current_class_stack[i].hidden)
6013 break;
6014 c = current_class_stack[i].type;
6015 }
6016 if (!c)
6017 continue;
6018 if (same_type_p (c, t))
6019 return true;
6020 }
6021 return false;
6022 }
6023
6024 /* If either current_class_type or one of its enclosing classes are derived
6025 from T, return the appropriate type. Used to determine how we found
6026 something via unqualified lookup. */
6027
6028 tree
6029 currently_open_derived_class (tree t)
6030 {
6031 int i;
6032
6033 /* The bases of a dependent type are unknown. */
6034 if (dependent_type_p (t))
6035 return NULL_TREE;
6036
6037 if (!current_class_type)
6038 return NULL_TREE;
6039
6040 if (DERIVED_FROM_P (t, current_class_type))
6041 return current_class_type;
6042
6043 for (i = current_class_depth - 1; i > 0; --i)
6044 {
6045 if (current_class_stack[i].hidden)
6046 break;
6047 if (DERIVED_FROM_P (t, current_class_stack[i].type))
6048 return current_class_stack[i].type;
6049 }
6050
6051 return NULL_TREE;
6052 }
6053
6054 /* Returns the innermost class type which is not a lambda closure type. */
6055
6056 tree
6057 current_nonlambda_class_type (void)
6058 {
6059 int i;
6060
6061 /* We start looking from 1 because entry 0 is from global scope,
6062 and has no type. */
6063 for (i = current_class_depth; i > 0; --i)
6064 {
6065 tree c;
6066 if (i == current_class_depth)
6067 c = current_class_type;
6068 else
6069 {
6070 if (current_class_stack[i].hidden)
6071 break;
6072 c = current_class_stack[i].type;
6073 }
6074 if (!c)
6075 continue;
6076 if (!LAMBDA_TYPE_P (c))
6077 return c;
6078 }
6079 return NULL_TREE;
6080 }
6081
6082 /* When entering a class scope, all enclosing class scopes' names with
6083 static meaning (static variables, static functions, types and
6084 enumerators) have to be visible. This recursive function calls
6085 pushclass for all enclosing class contexts until global or a local
6086 scope is reached. TYPE is the enclosed class. */
6087
6088 void
6089 push_nested_class (tree type)
6090 {
6091 /* A namespace might be passed in error cases, like A::B:C. */
6092 if (type == NULL_TREE
6093 || !CLASS_TYPE_P (type))
6094 return;
6095
6096 push_nested_class (DECL_CONTEXT (TYPE_MAIN_DECL (type)));
6097
6098 pushclass (type);
6099 }
6100
6101 /* Undoes a push_nested_class call. */
6102
6103 void
6104 pop_nested_class (void)
6105 {
6106 tree context = DECL_CONTEXT (TYPE_MAIN_DECL (current_class_type));
6107
6108 popclass ();
6109 if (context && CLASS_TYPE_P (context))
6110 pop_nested_class ();
6111 }
6112
6113 /* Returns the number of extern "LANG" blocks we are nested within. */
6114
6115 int
6116 current_lang_depth (void)
6117 {
6118 return VEC_length (tree, current_lang_base);
6119 }
6120
6121 /* Set global variables CURRENT_LANG_NAME to appropriate value
6122 so that behavior of name-mangling machinery is correct. */
6123
6124 void
6125 push_lang_context (tree name)
6126 {
6127 VEC_safe_push (tree, gc, current_lang_base, current_lang_name);
6128
6129 if (name == lang_name_cplusplus)
6130 {
6131 current_lang_name = name;
6132 }
6133 else if (name == lang_name_java)
6134 {
6135 current_lang_name = name;
6136 /* DECL_IGNORED_P is initially set for these types, to avoid clutter.
6137 (See record_builtin_java_type in decl.c.) However, that causes
6138 incorrect debug entries if these types are actually used.
6139 So we re-enable debug output after extern "Java". */
6140 DECL_IGNORED_P (TYPE_NAME (java_byte_type_node)) = 0;
6141 DECL_IGNORED_P (TYPE_NAME (java_short_type_node)) = 0;
6142 DECL_IGNORED_P (TYPE_NAME (java_int_type_node)) = 0;
6143 DECL_IGNORED_P (TYPE_NAME (java_long_type_node)) = 0;
6144 DECL_IGNORED_P (TYPE_NAME (java_float_type_node)) = 0;
6145 DECL_IGNORED_P (TYPE_NAME (java_double_type_node)) = 0;
6146 DECL_IGNORED_P (TYPE_NAME (java_char_type_node)) = 0;
6147 DECL_IGNORED_P (TYPE_NAME (java_boolean_type_node)) = 0;
6148 }
6149 else if (name == lang_name_c)
6150 {
6151 current_lang_name = name;
6152 }
6153 else
6154 error ("language string %<\"%E\"%> not recognized", name);
6155 }
6156
6157 /* Get out of the current language scope. */
6158
6159 void
6160 pop_lang_context (void)
6161 {
6162 current_lang_name = VEC_pop (tree, current_lang_base);
6163 }
6164 \f
6165 /* Type instantiation routines. */
6166
6167 /* Given an OVERLOAD and a TARGET_TYPE, return the function that
6168 matches the TARGET_TYPE. If there is no satisfactory match, return
6169 error_mark_node, and issue an error & warning messages under
6170 control of FLAGS. Permit pointers to member function if FLAGS
6171 permits. If TEMPLATE_ONLY, the name of the overloaded function was
6172 a template-id, and EXPLICIT_TARGS are the explicitly provided
6173 template arguments.
6174
6175 If OVERLOAD is for one or more member functions, then ACCESS_PATH
6176 is the base path used to reference those member functions. If
6177 TF_NO_ACCESS_CONTROL is not set in FLAGS, and the address is
6178 resolved to a member function, access checks will be performed and
6179 errors issued if appropriate. */
6180
6181 static tree
6182 resolve_address_of_overloaded_function (tree target_type,
6183 tree overload,
6184 tsubst_flags_t flags,
6185 bool template_only,
6186 tree explicit_targs,
6187 tree access_path)
6188 {
6189 /* Here's what the standard says:
6190
6191 [over.over]
6192
6193 If the name is a function template, template argument deduction
6194 is done, and if the argument deduction succeeds, the deduced
6195 arguments are used to generate a single template function, which
6196 is added to the set of overloaded functions considered.
6197
6198 Non-member functions and static member functions match targets of
6199 type "pointer-to-function" or "reference-to-function." Nonstatic
6200 member functions match targets of type "pointer-to-member
6201 function;" the function type of the pointer to member is used to
6202 select the member function from the set of overloaded member
6203 functions. If a nonstatic member function is selected, the
6204 reference to the overloaded function name is required to have the
6205 form of a pointer to member as described in 5.3.1.
6206
6207 If more than one function is selected, any template functions in
6208 the set are eliminated if the set also contains a non-template
6209 function, and any given template function is eliminated if the
6210 set contains a second template function that is more specialized
6211 than the first according to the partial ordering rules 14.5.5.2.
6212 After such eliminations, if any, there shall remain exactly one
6213 selected function. */
6214
6215 int is_ptrmem = 0;
6216 /* We store the matches in a TREE_LIST rooted here. The functions
6217 are the TREE_PURPOSE, not the TREE_VALUE, in this list, for easy
6218 interoperability with most_specialized_instantiation. */
6219 tree matches = NULL_TREE;
6220 tree fn;
6221 tree target_fn_type;
6222
6223 /* By the time we get here, we should be seeing only real
6224 pointer-to-member types, not the internal POINTER_TYPE to
6225 METHOD_TYPE representation. */
6226 gcc_assert (TREE_CODE (target_type) != POINTER_TYPE
6227 || TREE_CODE (TREE_TYPE (target_type)) != METHOD_TYPE);
6228
6229 gcc_assert (is_overloaded_fn (overload));
6230
6231 /* Check that the TARGET_TYPE is reasonable. */
6232 if (TYPE_PTRFN_P (target_type))
6233 /* This is OK. */;
6234 else if (TYPE_PTRMEMFUNC_P (target_type))
6235 /* This is OK, too. */
6236 is_ptrmem = 1;
6237 else if (TREE_CODE (target_type) == FUNCTION_TYPE)
6238 /* This is OK, too. This comes from a conversion to reference
6239 type. */
6240 target_type = build_reference_type (target_type);
6241 else
6242 {
6243 if (flags & tf_error)
6244 error ("cannot resolve overloaded function %qD based on"
6245 " conversion to type %qT",
6246 DECL_NAME (OVL_FUNCTION (overload)), target_type);
6247 return error_mark_node;
6248 }
6249
6250 /* Non-member functions and static member functions match targets of type
6251 "pointer-to-function" or "reference-to-function." Nonstatic member
6252 functions match targets of type "pointer-to-member-function;" the
6253 function type of the pointer to member is used to select the member
6254 function from the set of overloaded member functions.
6255
6256 So figure out the FUNCTION_TYPE that we want to match against. */
6257 target_fn_type = static_fn_type (target_type);
6258
6259 /* If we can find a non-template function that matches, we can just
6260 use it. There's no point in generating template instantiations
6261 if we're just going to throw them out anyhow. But, of course, we
6262 can only do this when we don't *need* a template function. */
6263 if (!template_only)
6264 {
6265 tree fns;
6266
6267 for (fns = overload; fns; fns = OVL_NEXT (fns))
6268 {
6269 tree fn = OVL_CURRENT (fns);
6270
6271 if (TREE_CODE (fn) == TEMPLATE_DECL)
6272 /* We're not looking for templates just yet. */
6273 continue;
6274
6275 if ((TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
6276 != is_ptrmem)
6277 /* We're looking for a non-static member, and this isn't
6278 one, or vice versa. */
6279 continue;
6280
6281 /* Ignore functions which haven't been explicitly
6282 declared. */
6283 if (DECL_ANTICIPATED (fn))
6284 continue;
6285
6286 /* See if there's a match. */
6287 if (same_type_p (target_fn_type, static_fn_type (fn)))
6288 matches = tree_cons (fn, NULL_TREE, matches);
6289 }
6290 }
6291
6292 /* Now, if we've already got a match (or matches), there's no need
6293 to proceed to the template functions. But, if we don't have a
6294 match we need to look at them, too. */
6295 if (!matches)
6296 {
6297 tree target_arg_types;
6298 tree target_ret_type;
6299 tree fns;
6300 tree *args;
6301 unsigned int nargs, ia;
6302 tree arg;
6303
6304 target_arg_types = TYPE_ARG_TYPES (target_fn_type);
6305 target_ret_type = TREE_TYPE (target_fn_type);
6306
6307 nargs = list_length (target_arg_types);
6308 args = XALLOCAVEC (tree, nargs);
6309 for (arg = target_arg_types, ia = 0;
6310 arg != NULL_TREE && arg != void_list_node;
6311 arg = TREE_CHAIN (arg), ++ia)
6312 args[ia] = TREE_VALUE (arg);
6313 nargs = ia;
6314
6315 for (fns = overload; fns; fns = OVL_NEXT (fns))
6316 {
6317 tree fn = OVL_CURRENT (fns);
6318 tree instantiation;
6319 tree targs;
6320
6321 if (TREE_CODE (fn) != TEMPLATE_DECL)
6322 /* We're only looking for templates. */
6323 continue;
6324
6325 if ((TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
6326 != is_ptrmem)
6327 /* We're not looking for a non-static member, and this is
6328 one, or vice versa. */
6329 continue;
6330
6331 /* Try to do argument deduction. */
6332 targs = make_tree_vec (DECL_NTPARMS (fn));
6333 if (fn_type_unification (fn, explicit_targs, targs, args, nargs,
6334 target_ret_type, DEDUCE_EXACT,
6335 LOOKUP_NORMAL))
6336 /* Argument deduction failed. */
6337 continue;
6338
6339 /* Instantiate the template. */
6340 instantiation = instantiate_template (fn, targs, flags);
6341 if (instantiation == error_mark_node)
6342 /* Instantiation failed. */
6343 continue;
6344
6345 /* See if there's a match. */
6346 if (same_type_p (target_fn_type, static_fn_type (instantiation)))
6347 matches = tree_cons (instantiation, fn, matches);
6348 }
6349
6350 /* Now, remove all but the most specialized of the matches. */
6351 if (matches)
6352 {
6353 tree match = most_specialized_instantiation (matches);
6354
6355 if (match != error_mark_node)
6356 matches = tree_cons (TREE_PURPOSE (match),
6357 NULL_TREE,
6358 NULL_TREE);
6359 }
6360 }
6361
6362 /* Now we should have exactly one function in MATCHES. */
6363 if (matches == NULL_TREE)
6364 {
6365 /* There were *no* matches. */
6366 if (flags & tf_error)
6367 {
6368 error ("no matches converting function %qD to type %q#T",
6369 DECL_NAME (OVL_CURRENT (overload)),
6370 target_type);
6371
6372 /* print_candidates expects a chain with the functions in
6373 TREE_VALUE slots, so we cons one up here (we're losing anyway,
6374 so why be clever?). */
6375 for (; overload; overload = OVL_NEXT (overload))
6376 matches = tree_cons (NULL_TREE, OVL_CURRENT (overload),
6377 matches);
6378
6379 print_candidates (matches);
6380 }
6381 return error_mark_node;
6382 }
6383 else if (TREE_CHAIN (matches))
6384 {
6385 /* There were too many matches. First check if they're all
6386 the same function. */
6387 tree match;
6388
6389 fn = TREE_PURPOSE (matches);
6390 for (match = TREE_CHAIN (matches); match; match = TREE_CHAIN (match))
6391 if (!decls_match (fn, TREE_PURPOSE (match)))
6392 break;
6393
6394 if (match)
6395 {
6396 if (flags & tf_error)
6397 {
6398 error ("converting overloaded function %qD to type %q#T is ambiguous",
6399 DECL_NAME (OVL_FUNCTION (overload)),
6400 target_type);
6401
6402 /* Since print_candidates expects the functions in the
6403 TREE_VALUE slot, we flip them here. */
6404 for (match = matches; match; match = TREE_CHAIN (match))
6405 TREE_VALUE (match) = TREE_PURPOSE (match);
6406
6407 print_candidates (matches);
6408 }
6409
6410 return error_mark_node;
6411 }
6412 }
6413
6414 /* Good, exactly one match. Now, convert it to the correct type. */
6415 fn = TREE_PURPOSE (matches);
6416
6417 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
6418 && !(flags & tf_ptrmem_ok) && !flag_ms_extensions)
6419 {
6420 static int explained;
6421
6422 if (!(flags & tf_error))
6423 return error_mark_node;
6424
6425 permerror (input_location, "assuming pointer to member %qD", fn);
6426 if (!explained)
6427 {
6428 inform (input_location, "(a pointer to member can only be formed with %<&%E%>)", fn);
6429 explained = 1;
6430 }
6431 }
6432
6433 /* If we're doing overload resolution purely for the purpose of
6434 determining conversion sequences, we should not consider the
6435 function used. If this conversion sequence is selected, the
6436 function will be marked as used at this point. */
6437 if (!(flags & tf_conv))
6438 {
6439 /* Make =delete work with SFINAE. */
6440 if (DECL_DELETED_FN (fn) && !(flags & tf_error))
6441 return error_mark_node;
6442
6443 mark_used (fn);
6444 }
6445
6446 /* We could not check access to member functions when this
6447 expression was originally created since we did not know at that
6448 time to which function the expression referred. */
6449 if (!(flags & tf_no_access_control)
6450 && DECL_FUNCTION_MEMBER_P (fn))
6451 {
6452 gcc_assert (access_path);
6453 perform_or_defer_access_check (access_path, fn, fn);
6454 }
6455
6456 if (TYPE_PTRFN_P (target_type) || TYPE_PTRMEMFUNC_P (target_type))
6457 return cp_build_unary_op (ADDR_EXPR, fn, 0, flags);
6458 else
6459 {
6460 /* The target must be a REFERENCE_TYPE. Above, cp_build_unary_op
6461 will mark the function as addressed, but here we must do it
6462 explicitly. */
6463 cxx_mark_addressable (fn);
6464
6465 return fn;
6466 }
6467 }
6468
6469 /* This function will instantiate the type of the expression given in
6470 RHS to match the type of LHSTYPE. If errors exist, then return
6471 error_mark_node. FLAGS is a bit mask. If TF_ERROR is set, then
6472 we complain on errors. If we are not complaining, never modify rhs,
6473 as overload resolution wants to try many possible instantiations, in
6474 the hope that at least one will work.
6475
6476 For non-recursive calls, LHSTYPE should be a function, pointer to
6477 function, or a pointer to member function. */
6478
6479 tree
6480 instantiate_type (tree lhstype, tree rhs, tsubst_flags_t flags)
6481 {
6482 tsubst_flags_t flags_in = flags;
6483 tree access_path = NULL_TREE;
6484
6485 flags &= ~tf_ptrmem_ok;
6486
6487 if (lhstype == unknown_type_node)
6488 {
6489 if (flags & tf_error)
6490 error ("not enough type information");
6491 return error_mark_node;
6492 }
6493
6494 if (TREE_TYPE (rhs) != NULL_TREE && ! (type_unknown_p (rhs)))
6495 {
6496 if (same_type_p (lhstype, TREE_TYPE (rhs)))
6497 return rhs;
6498 if (flag_ms_extensions
6499 && TYPE_PTRMEMFUNC_P (lhstype)
6500 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (rhs)))
6501 /* Microsoft allows `A::f' to be resolved to a
6502 pointer-to-member. */
6503 ;
6504 else
6505 {
6506 if (flags & tf_error)
6507 error ("argument of type %qT does not match %qT",
6508 TREE_TYPE (rhs), lhstype);
6509 return error_mark_node;
6510 }
6511 }
6512
6513 if (TREE_CODE (rhs) == BASELINK)
6514 {
6515 access_path = BASELINK_ACCESS_BINFO (rhs);
6516 rhs = BASELINK_FUNCTIONS (rhs);
6517 }
6518
6519 /* If we are in a template, and have a NON_DEPENDENT_EXPR, we cannot
6520 deduce any type information. */
6521 if (TREE_CODE (rhs) == NON_DEPENDENT_EXPR)
6522 {
6523 if (flags & tf_error)
6524 error ("not enough type information");
6525 return error_mark_node;
6526 }
6527
6528 /* There only a few kinds of expressions that may have a type
6529 dependent on overload resolution. */
6530 gcc_assert (TREE_CODE (rhs) == ADDR_EXPR
6531 || TREE_CODE (rhs) == COMPONENT_REF
6532 || really_overloaded_fn (rhs)
6533 || (flag_ms_extensions && TREE_CODE (rhs) == FUNCTION_DECL));
6534
6535 /* This should really only be used when attempting to distinguish
6536 what sort of a pointer to function we have. For now, any
6537 arithmetic operation which is not supported on pointers
6538 is rejected as an error. */
6539
6540 switch (TREE_CODE (rhs))
6541 {
6542 case COMPONENT_REF:
6543 {
6544 tree member = TREE_OPERAND (rhs, 1);
6545
6546 member = instantiate_type (lhstype, member, flags);
6547 if (member != error_mark_node
6548 && TREE_SIDE_EFFECTS (TREE_OPERAND (rhs, 0)))
6549 /* Do not lose object's side effects. */
6550 return build2 (COMPOUND_EXPR, TREE_TYPE (member),
6551 TREE_OPERAND (rhs, 0), member);
6552 return member;
6553 }
6554
6555 case OFFSET_REF:
6556 rhs = TREE_OPERAND (rhs, 1);
6557 if (BASELINK_P (rhs))
6558 return instantiate_type (lhstype, rhs, flags_in);
6559
6560 /* This can happen if we are forming a pointer-to-member for a
6561 member template. */
6562 gcc_assert (TREE_CODE (rhs) == TEMPLATE_ID_EXPR);
6563
6564 /* Fall through. */
6565
6566 case TEMPLATE_ID_EXPR:
6567 {
6568 tree fns = TREE_OPERAND (rhs, 0);
6569 tree args = TREE_OPERAND (rhs, 1);
6570
6571 return
6572 resolve_address_of_overloaded_function (lhstype, fns, flags_in,
6573 /*template_only=*/true,
6574 args, access_path);
6575 }
6576
6577 case OVERLOAD:
6578 case FUNCTION_DECL:
6579 return
6580 resolve_address_of_overloaded_function (lhstype, rhs, flags_in,
6581 /*template_only=*/false,
6582 /*explicit_targs=*/NULL_TREE,
6583 access_path);
6584
6585 case ADDR_EXPR:
6586 {
6587 if (PTRMEM_OK_P (rhs))
6588 flags |= tf_ptrmem_ok;
6589
6590 return instantiate_type (lhstype, TREE_OPERAND (rhs, 0), flags);
6591 }
6592
6593 case ERROR_MARK:
6594 return error_mark_node;
6595
6596 default:
6597 gcc_unreachable ();
6598 }
6599 return error_mark_node;
6600 }
6601 \f
6602 /* Return the name of the virtual function pointer field
6603 (as an IDENTIFIER_NODE) for the given TYPE. Note that
6604 this may have to look back through base types to find the
6605 ultimate field name. (For single inheritance, these could
6606 all be the same name. Who knows for multiple inheritance). */
6607
6608 static tree
6609 get_vfield_name (tree type)
6610 {
6611 tree binfo, base_binfo;
6612 char *buf;
6613
6614 for (binfo = TYPE_BINFO (type);
6615 BINFO_N_BASE_BINFOS (binfo);
6616 binfo = base_binfo)
6617 {
6618 base_binfo = BINFO_BASE_BINFO (binfo, 0);
6619
6620 if (BINFO_VIRTUAL_P (base_binfo)
6621 || !TYPE_CONTAINS_VPTR_P (BINFO_TYPE (base_binfo)))
6622 break;
6623 }
6624
6625 type = BINFO_TYPE (binfo);
6626 buf = (char *) alloca (sizeof (VFIELD_NAME_FORMAT)
6627 + TYPE_NAME_LENGTH (type) + 2);
6628 sprintf (buf, VFIELD_NAME_FORMAT,
6629 IDENTIFIER_POINTER (constructor_name (type)));
6630 return get_identifier (buf);
6631 }
6632
6633 void
6634 print_class_statistics (void)
6635 {
6636 #ifdef GATHER_STATISTICS
6637 fprintf (stderr, "convert_harshness = %d\n", n_convert_harshness);
6638 fprintf (stderr, "compute_conversion_costs = %d\n", n_compute_conversion_costs);
6639 if (n_vtables)
6640 {
6641 fprintf (stderr, "vtables = %d; vtable searches = %d\n",
6642 n_vtables, n_vtable_searches);
6643 fprintf (stderr, "vtable entries = %d; vtable elems = %d\n",
6644 n_vtable_entries, n_vtable_elems);
6645 }
6646 #endif
6647 }
6648
6649 /* Build a dummy reference to ourselves so Derived::Base (and A::A) works,
6650 according to [class]:
6651 The class-name is also inserted
6652 into the scope of the class itself. For purposes of access checking,
6653 the inserted class name is treated as if it were a public member name. */
6654
6655 void
6656 build_self_reference (void)
6657 {
6658 tree name = constructor_name (current_class_type);
6659 tree value = build_lang_decl (TYPE_DECL, name, current_class_type);
6660 tree saved_cas;
6661
6662 DECL_NONLOCAL (value) = 1;
6663 DECL_CONTEXT (value) = current_class_type;
6664 DECL_ARTIFICIAL (value) = 1;
6665 SET_DECL_SELF_REFERENCE_P (value);
6666 cp_set_underlying_type (value);
6667
6668 if (processing_template_decl)
6669 value = push_template_decl (value);
6670
6671 saved_cas = current_access_specifier;
6672 current_access_specifier = access_public_node;
6673 finish_member_declaration (value);
6674 current_access_specifier = saved_cas;
6675 }
6676
6677 /* Returns 1 if TYPE contains only padding bytes. */
6678
6679 int
6680 is_empty_class (tree type)
6681 {
6682 if (type == error_mark_node)
6683 return 0;
6684
6685 if (! CLASS_TYPE_P (type))
6686 return 0;
6687
6688 /* In G++ 3.2, whether or not a class was empty was determined by
6689 looking at its size. */
6690 if (abi_version_at_least (2))
6691 return CLASSTYPE_EMPTY_P (type);
6692 else
6693 return integer_zerop (CLASSTYPE_SIZE (type));
6694 }
6695
6696 /* Returns true if TYPE contains an empty class. */
6697
6698 static bool
6699 contains_empty_class_p (tree type)
6700 {
6701 if (is_empty_class (type))
6702 return true;
6703 if (CLASS_TYPE_P (type))
6704 {
6705 tree field;
6706 tree binfo;
6707 tree base_binfo;
6708 int i;
6709
6710 for (binfo = TYPE_BINFO (type), i = 0;
6711 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
6712 if (contains_empty_class_p (BINFO_TYPE (base_binfo)))
6713 return true;
6714 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
6715 if (TREE_CODE (field) == FIELD_DECL
6716 && !DECL_ARTIFICIAL (field)
6717 && is_empty_class (TREE_TYPE (field)))
6718 return true;
6719 }
6720 else if (TREE_CODE (type) == ARRAY_TYPE)
6721 return contains_empty_class_p (TREE_TYPE (type));
6722 return false;
6723 }
6724
6725 /* Returns true if TYPE contains no actual data, just various
6726 possible combinations of empty classes. */
6727
6728 bool
6729 is_really_empty_class (tree type)
6730 {
6731 if (is_empty_class (type))
6732 return true;
6733 if (CLASS_TYPE_P (type))
6734 {
6735 tree field;
6736 tree binfo;
6737 tree base_binfo;
6738 int i;
6739
6740 for (binfo = TYPE_BINFO (type), i = 0;
6741 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
6742 if (!is_really_empty_class (BINFO_TYPE (base_binfo)))
6743 return false;
6744 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
6745 if (TREE_CODE (field) == FIELD_DECL
6746 && !DECL_ARTIFICIAL (field)
6747 && !is_really_empty_class (TREE_TYPE (field)))
6748 return false;
6749 return true;
6750 }
6751 else if (TREE_CODE (type) == ARRAY_TYPE)
6752 return is_really_empty_class (TREE_TYPE (type));
6753 return false;
6754 }
6755
6756 /* Note that NAME was looked up while the current class was being
6757 defined and that the result of that lookup was DECL. */
6758
6759 void
6760 maybe_note_name_used_in_class (tree name, tree decl)
6761 {
6762 splay_tree names_used;
6763
6764 /* If we're not defining a class, there's nothing to do. */
6765 if (!(innermost_scope_kind() == sk_class
6766 && TYPE_BEING_DEFINED (current_class_type)
6767 && !LAMBDA_TYPE_P (current_class_type)))
6768 return;
6769
6770 /* If there's already a binding for this NAME, then we don't have
6771 anything to worry about. */
6772 if (lookup_member (current_class_type, name,
6773 /*protect=*/0, /*want_type=*/false))
6774 return;
6775
6776 if (!current_class_stack[current_class_depth - 1].names_used)
6777 current_class_stack[current_class_depth - 1].names_used
6778 = splay_tree_new (splay_tree_compare_pointers, 0, 0);
6779 names_used = current_class_stack[current_class_depth - 1].names_used;
6780
6781 splay_tree_insert (names_used,
6782 (splay_tree_key) name,
6783 (splay_tree_value) decl);
6784 }
6785
6786 /* Note that NAME was declared (as DECL) in the current class. Check
6787 to see that the declaration is valid. */
6788
6789 void
6790 note_name_declared_in_class (tree name, tree decl)
6791 {
6792 splay_tree names_used;
6793 splay_tree_node n;
6794
6795 /* Look to see if we ever used this name. */
6796 names_used
6797 = current_class_stack[current_class_depth - 1].names_used;
6798 if (!names_used)
6799 return;
6800
6801 n = splay_tree_lookup (names_used, (splay_tree_key) name);
6802 if (n)
6803 {
6804 /* [basic.scope.class]
6805
6806 A name N used in a class S shall refer to the same declaration
6807 in its context and when re-evaluated in the completed scope of
6808 S. */
6809 permerror (input_location, "declaration of %q#D", decl);
6810 permerror (input_location, "changes meaning of %qD from %q+#D",
6811 DECL_NAME (OVL_CURRENT (decl)), (tree) n->value);
6812 }
6813 }
6814
6815 /* Returns the VAR_DECL for the complete vtable associated with BINFO.
6816 Secondary vtables are merged with primary vtables; this function
6817 will return the VAR_DECL for the primary vtable. */
6818
6819 tree
6820 get_vtbl_decl_for_binfo (tree binfo)
6821 {
6822 tree decl;
6823
6824 decl = BINFO_VTABLE (binfo);
6825 if (decl && TREE_CODE (decl) == POINTER_PLUS_EXPR)
6826 {
6827 gcc_assert (TREE_CODE (TREE_OPERAND (decl, 0)) == ADDR_EXPR);
6828 decl = TREE_OPERAND (TREE_OPERAND (decl, 0), 0);
6829 }
6830 if (decl)
6831 gcc_assert (TREE_CODE (decl) == VAR_DECL);
6832 return decl;
6833 }
6834
6835
6836 /* Returns the binfo for the primary base of BINFO. If the resulting
6837 BINFO is a virtual base, and it is inherited elsewhere in the
6838 hierarchy, then the returned binfo might not be the primary base of
6839 BINFO in the complete object. Check BINFO_PRIMARY_P or
6840 BINFO_LOST_PRIMARY_P to be sure. */
6841
6842 static tree
6843 get_primary_binfo (tree binfo)
6844 {
6845 tree primary_base;
6846
6847 primary_base = CLASSTYPE_PRIMARY_BINFO (BINFO_TYPE (binfo));
6848 if (!primary_base)
6849 return NULL_TREE;
6850
6851 return copied_binfo (primary_base, binfo);
6852 }
6853
6854 /* If INDENTED_P is zero, indent to INDENT. Return nonzero. */
6855
6856 static int
6857 maybe_indent_hierarchy (FILE * stream, int indent, int indented_p)
6858 {
6859 if (!indented_p)
6860 fprintf (stream, "%*s", indent, "");
6861 return 1;
6862 }
6863
6864 /* Dump the offsets of all the bases rooted at BINFO to STREAM.
6865 INDENT should be zero when called from the top level; it is
6866 incremented recursively. IGO indicates the next expected BINFO in
6867 inheritance graph ordering. */
6868
6869 static tree
6870 dump_class_hierarchy_r (FILE *stream,
6871 int flags,
6872 tree binfo,
6873 tree igo,
6874 int indent)
6875 {
6876 int indented = 0;
6877 tree base_binfo;
6878 int i;
6879
6880 indented = maybe_indent_hierarchy (stream, indent, 0);
6881 fprintf (stream, "%s (0x%lx) ",
6882 type_as_string (BINFO_TYPE (binfo), TFF_PLAIN_IDENTIFIER),
6883 (unsigned long) binfo);
6884 if (binfo != igo)
6885 {
6886 fprintf (stream, "alternative-path\n");
6887 return igo;
6888 }
6889 igo = TREE_CHAIN (binfo);
6890
6891 fprintf (stream, HOST_WIDE_INT_PRINT_DEC,
6892 tree_low_cst (BINFO_OFFSET (binfo), 0));
6893 if (is_empty_class (BINFO_TYPE (binfo)))
6894 fprintf (stream, " empty");
6895 else if (CLASSTYPE_NEARLY_EMPTY_P (BINFO_TYPE (binfo)))
6896 fprintf (stream, " nearly-empty");
6897 if (BINFO_VIRTUAL_P (binfo))
6898 fprintf (stream, " virtual");
6899 fprintf (stream, "\n");
6900
6901 indented = 0;
6902 if (BINFO_PRIMARY_P (binfo))
6903 {
6904 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
6905 fprintf (stream, " primary-for %s (0x%lx)",
6906 type_as_string (BINFO_TYPE (BINFO_INHERITANCE_CHAIN (binfo)),
6907 TFF_PLAIN_IDENTIFIER),
6908 (unsigned long)BINFO_INHERITANCE_CHAIN (binfo));
6909 }
6910 if (BINFO_LOST_PRIMARY_P (binfo))
6911 {
6912 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
6913 fprintf (stream, " lost-primary");
6914 }
6915 if (indented)
6916 fprintf (stream, "\n");
6917
6918 if (!(flags & TDF_SLIM))
6919 {
6920 int indented = 0;
6921
6922 if (BINFO_SUBVTT_INDEX (binfo))
6923 {
6924 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
6925 fprintf (stream, " subvttidx=%s",
6926 expr_as_string (BINFO_SUBVTT_INDEX (binfo),
6927 TFF_PLAIN_IDENTIFIER));
6928 }
6929 if (BINFO_VPTR_INDEX (binfo))
6930 {
6931 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
6932 fprintf (stream, " vptridx=%s",
6933 expr_as_string (BINFO_VPTR_INDEX (binfo),
6934 TFF_PLAIN_IDENTIFIER));
6935 }
6936 if (BINFO_VPTR_FIELD (binfo))
6937 {
6938 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
6939 fprintf (stream, " vbaseoffset=%s",
6940 expr_as_string (BINFO_VPTR_FIELD (binfo),
6941 TFF_PLAIN_IDENTIFIER));
6942 }
6943 if (BINFO_VTABLE (binfo))
6944 {
6945 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
6946 fprintf (stream, " vptr=%s",
6947 expr_as_string (BINFO_VTABLE (binfo),
6948 TFF_PLAIN_IDENTIFIER));
6949 }
6950
6951 if (indented)
6952 fprintf (stream, "\n");
6953 }
6954
6955 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
6956 igo = dump_class_hierarchy_r (stream, flags, base_binfo, igo, indent + 2);
6957
6958 return igo;
6959 }
6960
6961 /* Dump the BINFO hierarchy for T. */
6962
6963 static void
6964 dump_class_hierarchy_1 (FILE *stream, int flags, tree t)
6965 {
6966 fprintf (stream, "Class %s\n", type_as_string (t, TFF_PLAIN_IDENTIFIER));
6967 fprintf (stream, " size=%lu align=%lu\n",
6968 (unsigned long)(tree_low_cst (TYPE_SIZE (t), 0) / BITS_PER_UNIT),
6969 (unsigned long)(TYPE_ALIGN (t) / BITS_PER_UNIT));
6970 fprintf (stream, " base size=%lu base align=%lu\n",
6971 (unsigned long)(tree_low_cst (TYPE_SIZE (CLASSTYPE_AS_BASE (t)), 0)
6972 / BITS_PER_UNIT),
6973 (unsigned long)(TYPE_ALIGN (CLASSTYPE_AS_BASE (t))
6974 / BITS_PER_UNIT));
6975 dump_class_hierarchy_r (stream, flags, TYPE_BINFO (t), TYPE_BINFO (t), 0);
6976 fprintf (stream, "\n");
6977 }
6978
6979 /* Debug interface to hierarchy dumping. */
6980
6981 void
6982 debug_class (tree t)
6983 {
6984 dump_class_hierarchy_1 (stderr, TDF_SLIM, t);
6985 }
6986
6987 static void
6988 dump_class_hierarchy (tree t)
6989 {
6990 int flags;
6991 FILE *stream = dump_begin (TDI_class, &flags);
6992
6993 if (stream)
6994 {
6995 dump_class_hierarchy_1 (stream, flags, t);
6996 dump_end (TDI_class, stream);
6997 }
6998 }
6999
7000 static void
7001 dump_array (FILE * stream, tree decl)
7002 {
7003 tree value;
7004 unsigned HOST_WIDE_INT ix;
7005 HOST_WIDE_INT elt;
7006 tree size = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (decl)));
7007
7008 elt = (tree_low_cst (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl))), 0)
7009 / BITS_PER_UNIT);
7010 fprintf (stream, "%s:", decl_as_string (decl, TFF_PLAIN_IDENTIFIER));
7011 fprintf (stream, " %s entries",
7012 expr_as_string (size_binop (PLUS_EXPR, size, size_one_node),
7013 TFF_PLAIN_IDENTIFIER));
7014 fprintf (stream, "\n");
7015
7016 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)),
7017 ix, value)
7018 fprintf (stream, "%-4ld %s\n", (long)(ix * elt),
7019 expr_as_string (value, TFF_PLAIN_IDENTIFIER));
7020 }
7021
7022 static void
7023 dump_vtable (tree t, tree binfo, tree vtable)
7024 {
7025 int flags;
7026 FILE *stream = dump_begin (TDI_class, &flags);
7027
7028 if (!stream)
7029 return;
7030
7031 if (!(flags & TDF_SLIM))
7032 {
7033 int ctor_vtbl_p = TYPE_BINFO (t) != binfo;
7034
7035 fprintf (stream, "%s for %s",
7036 ctor_vtbl_p ? "Construction vtable" : "Vtable",
7037 type_as_string (BINFO_TYPE (binfo), TFF_PLAIN_IDENTIFIER));
7038 if (ctor_vtbl_p)
7039 {
7040 if (!BINFO_VIRTUAL_P (binfo))
7041 fprintf (stream, " (0x%lx instance)", (unsigned long)binfo);
7042 fprintf (stream, " in %s", type_as_string (t, TFF_PLAIN_IDENTIFIER));
7043 }
7044 fprintf (stream, "\n");
7045 dump_array (stream, vtable);
7046 fprintf (stream, "\n");
7047 }
7048
7049 dump_end (TDI_class, stream);
7050 }
7051
7052 static void
7053 dump_vtt (tree t, tree vtt)
7054 {
7055 int flags;
7056 FILE *stream = dump_begin (TDI_class, &flags);
7057
7058 if (!stream)
7059 return;
7060
7061 if (!(flags & TDF_SLIM))
7062 {
7063 fprintf (stream, "VTT for %s\n",
7064 type_as_string (t, TFF_PLAIN_IDENTIFIER));
7065 dump_array (stream, vtt);
7066 fprintf (stream, "\n");
7067 }
7068
7069 dump_end (TDI_class, stream);
7070 }
7071
7072 /* Dump a function or thunk and its thunkees. */
7073
7074 static void
7075 dump_thunk (FILE *stream, int indent, tree thunk)
7076 {
7077 static const char spaces[] = " ";
7078 tree name = DECL_NAME (thunk);
7079 tree thunks;
7080
7081 fprintf (stream, "%.*s%p %s %s", indent, spaces,
7082 (void *)thunk,
7083 !DECL_THUNK_P (thunk) ? "function"
7084 : DECL_THIS_THUNK_P (thunk) ? "this-thunk" : "covariant-thunk",
7085 name ? IDENTIFIER_POINTER (name) : "<unset>");
7086 if (DECL_THUNK_P (thunk))
7087 {
7088 HOST_WIDE_INT fixed_adjust = THUNK_FIXED_OFFSET (thunk);
7089 tree virtual_adjust = THUNK_VIRTUAL_OFFSET (thunk);
7090
7091 fprintf (stream, " fixed=" HOST_WIDE_INT_PRINT_DEC, fixed_adjust);
7092 if (!virtual_adjust)
7093 /*NOP*/;
7094 else if (DECL_THIS_THUNK_P (thunk))
7095 fprintf (stream, " vcall=" HOST_WIDE_INT_PRINT_DEC,
7096 tree_low_cst (virtual_adjust, 0));
7097 else
7098 fprintf (stream, " vbase=" HOST_WIDE_INT_PRINT_DEC "(%s)",
7099 tree_low_cst (BINFO_VPTR_FIELD (virtual_adjust), 0),
7100 type_as_string (BINFO_TYPE (virtual_adjust), TFF_SCOPE));
7101 if (THUNK_ALIAS (thunk))
7102 fprintf (stream, " alias to %p", (void *)THUNK_ALIAS (thunk));
7103 }
7104 fprintf (stream, "\n");
7105 for (thunks = DECL_THUNKS (thunk); thunks; thunks = TREE_CHAIN (thunks))
7106 dump_thunk (stream, indent + 2, thunks);
7107 }
7108
7109 /* Dump the thunks for FN. */
7110
7111 void
7112 debug_thunks (tree fn)
7113 {
7114 dump_thunk (stderr, 0, fn);
7115 }
7116
7117 /* Virtual function table initialization. */
7118
7119 /* Create all the necessary vtables for T and its base classes. */
7120
7121 static void
7122 finish_vtbls (tree t)
7123 {
7124 tree vbase;
7125 VEC(constructor_elt,gc) *v = NULL;
7126 tree vtable = BINFO_VTABLE (TYPE_BINFO (t));
7127
7128 /* We lay out the primary and secondary vtables in one contiguous
7129 vtable. The primary vtable is first, followed by the non-virtual
7130 secondary vtables in inheritance graph order. */
7131 accumulate_vtbl_inits (TYPE_BINFO (t), TYPE_BINFO (t), TYPE_BINFO (t),
7132 vtable, t, &v);
7133
7134 /* Then come the virtual bases, also in inheritance graph order. */
7135 for (vbase = TYPE_BINFO (t); vbase; vbase = TREE_CHAIN (vbase))
7136 {
7137 if (!BINFO_VIRTUAL_P (vbase))
7138 continue;
7139 accumulate_vtbl_inits (vbase, vbase, TYPE_BINFO (t), vtable, t, &v);
7140 }
7141
7142 if (BINFO_VTABLE (TYPE_BINFO (t)))
7143 initialize_vtable (TYPE_BINFO (t), v);
7144 }
7145
7146 /* Initialize the vtable for BINFO with the INITS. */
7147
7148 static void
7149 initialize_vtable (tree binfo, VEC(constructor_elt,gc) *inits)
7150 {
7151 tree decl;
7152
7153 layout_vtable_decl (binfo, VEC_length (constructor_elt, inits));
7154 decl = get_vtbl_decl_for_binfo (binfo);
7155 initialize_artificial_var (decl, inits);
7156 dump_vtable (BINFO_TYPE (binfo), binfo, decl);
7157 }
7158
7159 /* Build the VTT (virtual table table) for T.
7160 A class requires a VTT if it has virtual bases.
7161
7162 This holds
7163 1 - primary virtual pointer for complete object T
7164 2 - secondary VTTs for each direct non-virtual base of T which requires a
7165 VTT
7166 3 - secondary virtual pointers for each direct or indirect base of T which
7167 has virtual bases or is reachable via a virtual path from T.
7168 4 - secondary VTTs for each direct or indirect virtual base of T.
7169
7170 Secondary VTTs look like complete object VTTs without part 4. */
7171
7172 static void
7173 build_vtt (tree t)
7174 {
7175 tree type;
7176 tree vtt;
7177 tree index;
7178 VEC(constructor_elt,gc) *inits;
7179
7180 /* Build up the initializers for the VTT. */
7181 inits = NULL;
7182 index = size_zero_node;
7183 build_vtt_inits (TYPE_BINFO (t), t, &inits, &index);
7184
7185 /* If we didn't need a VTT, we're done. */
7186 if (!inits)
7187 return;
7188
7189 /* Figure out the type of the VTT. */
7190 type = build_index_type (size_int (VEC_length (constructor_elt, inits) - 1));
7191 type = build_cplus_array_type (const_ptr_type_node, type);
7192
7193 /* Now, build the VTT object itself. */
7194 vtt = build_vtable (t, mangle_vtt_for_type (t), type);
7195 initialize_artificial_var (vtt, inits);
7196 /* Add the VTT to the vtables list. */
7197 TREE_CHAIN (vtt) = TREE_CHAIN (CLASSTYPE_VTABLES (t));
7198 TREE_CHAIN (CLASSTYPE_VTABLES (t)) = vtt;
7199
7200 dump_vtt (t, vtt);
7201 }
7202
7203 /* When building a secondary VTT, BINFO_VTABLE is set to a TREE_LIST with
7204 PURPOSE the RTTI_BINFO, VALUE the real vtable pointer for this binfo,
7205 and CHAIN the vtable pointer for this binfo after construction is
7206 complete. VALUE can also be another BINFO, in which case we recurse. */
7207
7208 static tree
7209 binfo_ctor_vtable (tree binfo)
7210 {
7211 tree vt;
7212
7213 while (1)
7214 {
7215 vt = BINFO_VTABLE (binfo);
7216 if (TREE_CODE (vt) == TREE_LIST)
7217 vt = TREE_VALUE (vt);
7218 if (TREE_CODE (vt) == TREE_BINFO)
7219 binfo = vt;
7220 else
7221 break;
7222 }
7223
7224 return vt;
7225 }
7226
7227 /* Data for secondary VTT initialization. */
7228 typedef struct secondary_vptr_vtt_init_data_s
7229 {
7230 /* Is this the primary VTT? */
7231 bool top_level_p;
7232
7233 /* Current index into the VTT. */
7234 tree index;
7235
7236 /* Vector of initializers built up. */
7237 VEC(constructor_elt,gc) *inits;
7238
7239 /* The type being constructed by this secondary VTT. */
7240 tree type_being_constructed;
7241 } secondary_vptr_vtt_init_data;
7242
7243 /* Recursively build the VTT-initializer for BINFO (which is in the
7244 hierarchy dominated by T). INITS points to the end of the initializer
7245 list to date. INDEX is the VTT index where the next element will be
7246 replaced. Iff BINFO is the binfo for T, this is the top level VTT (i.e.
7247 not a subvtt for some base of T). When that is so, we emit the sub-VTTs
7248 for virtual bases of T. When it is not so, we build the constructor
7249 vtables for the BINFO-in-T variant. */
7250
7251 static void
7252 build_vtt_inits (tree binfo, tree t, VEC(constructor_elt,gc) **inits, tree *index)
7253 {
7254 int i;
7255 tree b;
7256 tree init;
7257 secondary_vptr_vtt_init_data data;
7258 int top_level_p = SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), t);
7259
7260 /* We only need VTTs for subobjects with virtual bases. */
7261 if (!CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo)))
7262 return;
7263
7264 /* We need to use a construction vtable if this is not the primary
7265 VTT. */
7266 if (!top_level_p)
7267 {
7268 build_ctor_vtbl_group (binfo, t);
7269
7270 /* Record the offset in the VTT where this sub-VTT can be found. */
7271 BINFO_SUBVTT_INDEX (binfo) = *index;
7272 }
7273
7274 /* Add the address of the primary vtable for the complete object. */
7275 init = binfo_ctor_vtable (binfo);
7276 CONSTRUCTOR_APPEND_ELT (*inits, NULL_TREE, init);
7277 if (top_level_p)
7278 {
7279 gcc_assert (!BINFO_VPTR_INDEX (binfo));
7280 BINFO_VPTR_INDEX (binfo) = *index;
7281 }
7282 *index = size_binop (PLUS_EXPR, *index, TYPE_SIZE_UNIT (ptr_type_node));
7283
7284 /* Recursively add the secondary VTTs for non-virtual bases. */
7285 for (i = 0; BINFO_BASE_ITERATE (binfo, i, b); ++i)
7286 if (!BINFO_VIRTUAL_P (b))
7287 build_vtt_inits (b, t, inits, index);
7288
7289 /* Add secondary virtual pointers for all subobjects of BINFO with
7290 either virtual bases or reachable along a virtual path, except
7291 subobjects that are non-virtual primary bases. */
7292 data.top_level_p = top_level_p;
7293 data.index = *index;
7294 data.inits = *inits;
7295 data.type_being_constructed = BINFO_TYPE (binfo);
7296
7297 dfs_walk_once (binfo, dfs_build_secondary_vptr_vtt_inits, NULL, &data);
7298
7299 *index = data.index;
7300
7301 /* data.inits might have grown as we added secondary virtual pointers.
7302 Make sure our caller knows about the new vector. */
7303 *inits = data.inits;
7304
7305 if (top_level_p)
7306 /* Add the secondary VTTs for virtual bases in inheritance graph
7307 order. */
7308 for (b = TYPE_BINFO (BINFO_TYPE (binfo)); b; b = TREE_CHAIN (b))
7309 {
7310 if (!BINFO_VIRTUAL_P (b))
7311 continue;
7312
7313 build_vtt_inits (b, t, inits, index);
7314 }
7315 else
7316 /* Remove the ctor vtables we created. */
7317 dfs_walk_all (binfo, dfs_fixup_binfo_vtbls, NULL, binfo);
7318 }
7319
7320 /* Called from build_vtt_inits via dfs_walk. BINFO is the binfo for the base
7321 in most derived. DATA is a SECONDARY_VPTR_VTT_INIT_DATA structure. */
7322
7323 static tree
7324 dfs_build_secondary_vptr_vtt_inits (tree binfo, void *data_)
7325 {
7326 secondary_vptr_vtt_init_data *data = (secondary_vptr_vtt_init_data *)data_;
7327
7328 /* We don't care about bases that don't have vtables. */
7329 if (!TYPE_VFIELD (BINFO_TYPE (binfo)))
7330 return dfs_skip_bases;
7331
7332 /* We're only interested in proper subobjects of the type being
7333 constructed. */
7334 if (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), data->type_being_constructed))
7335 return NULL_TREE;
7336
7337 /* We're only interested in bases with virtual bases or reachable
7338 via a virtual path from the type being constructed. */
7339 if (!(CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo))
7340 || binfo_via_virtual (binfo, data->type_being_constructed)))
7341 return dfs_skip_bases;
7342
7343 /* We're not interested in non-virtual primary bases. */
7344 if (!BINFO_VIRTUAL_P (binfo) && BINFO_PRIMARY_P (binfo))
7345 return NULL_TREE;
7346
7347 /* Record the index where this secondary vptr can be found. */
7348 if (data->top_level_p)
7349 {
7350 gcc_assert (!BINFO_VPTR_INDEX (binfo));
7351 BINFO_VPTR_INDEX (binfo) = data->index;
7352
7353 if (BINFO_VIRTUAL_P (binfo))
7354 {
7355 /* It's a primary virtual base, and this is not a
7356 construction vtable. Find the base this is primary of in
7357 the inheritance graph, and use that base's vtable
7358 now. */
7359 while (BINFO_PRIMARY_P (binfo))
7360 binfo = BINFO_INHERITANCE_CHAIN (binfo);
7361 }
7362 }
7363
7364 /* Add the initializer for the secondary vptr itself. */
7365 CONSTRUCTOR_APPEND_ELT (data->inits, NULL_TREE, binfo_ctor_vtable (binfo));
7366
7367 /* Advance the vtt index. */
7368 data->index = size_binop (PLUS_EXPR, data->index,
7369 TYPE_SIZE_UNIT (ptr_type_node));
7370
7371 return NULL_TREE;
7372 }
7373
7374 /* Called from build_vtt_inits via dfs_walk. After building
7375 constructor vtables and generating the sub-vtt from them, we need
7376 to restore the BINFO_VTABLES that were scribbled on. DATA is the
7377 binfo of the base whose sub vtt was generated. */
7378
7379 static tree
7380 dfs_fixup_binfo_vtbls (tree binfo, void* data)
7381 {
7382 tree vtable = BINFO_VTABLE (binfo);
7383
7384 if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
7385 /* If this class has no vtable, none of its bases do. */
7386 return dfs_skip_bases;
7387
7388 if (!vtable)
7389 /* This might be a primary base, so have no vtable in this
7390 hierarchy. */
7391 return NULL_TREE;
7392
7393 /* If we scribbled the construction vtable vptr into BINFO, clear it
7394 out now. */
7395 if (TREE_CODE (vtable) == TREE_LIST
7396 && (TREE_PURPOSE (vtable) == (tree) data))
7397 BINFO_VTABLE (binfo) = TREE_CHAIN (vtable);
7398
7399 return NULL_TREE;
7400 }
7401
7402 /* Build the construction vtable group for BINFO which is in the
7403 hierarchy dominated by T. */
7404
7405 static void
7406 build_ctor_vtbl_group (tree binfo, tree t)
7407 {
7408 tree type;
7409 tree vtbl;
7410 tree id;
7411 tree vbase;
7412 VEC(constructor_elt,gc) *v;
7413
7414 /* See if we've already created this construction vtable group. */
7415 id = mangle_ctor_vtbl_for_type (t, binfo);
7416 if (IDENTIFIER_GLOBAL_VALUE (id))
7417 return;
7418
7419 gcc_assert (!SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), t));
7420 /* Build a version of VTBL (with the wrong type) for use in
7421 constructing the addresses of secondary vtables in the
7422 construction vtable group. */
7423 vtbl = build_vtable (t, id, ptr_type_node);
7424 DECL_CONSTRUCTION_VTABLE_P (vtbl) = 1;
7425
7426 v = NULL;
7427 accumulate_vtbl_inits (binfo, TYPE_BINFO (TREE_TYPE (binfo)),
7428 binfo, vtbl, t, &v);
7429
7430 /* Add the vtables for each of our virtual bases using the vbase in T
7431 binfo. */
7432 for (vbase = TYPE_BINFO (BINFO_TYPE (binfo));
7433 vbase;
7434 vbase = TREE_CHAIN (vbase))
7435 {
7436 tree b;
7437
7438 if (!BINFO_VIRTUAL_P (vbase))
7439 continue;
7440 b = copied_binfo (vbase, binfo);
7441
7442 accumulate_vtbl_inits (b, vbase, binfo, vtbl, t, &v);
7443 }
7444
7445 /* Figure out the type of the construction vtable. */
7446 type = build_index_type (size_int (VEC_length (constructor_elt, v) - 1));
7447 type = build_cplus_array_type (vtable_entry_type, type);
7448 layout_type (type);
7449 TREE_TYPE (vtbl) = type;
7450 DECL_SIZE (vtbl) = DECL_SIZE_UNIT (vtbl) = NULL_TREE;
7451 layout_decl (vtbl, 0);
7452
7453 /* Initialize the construction vtable. */
7454 CLASSTYPE_VTABLES (t) = chainon (CLASSTYPE_VTABLES (t), vtbl);
7455 initialize_artificial_var (vtbl, v);
7456 dump_vtable (t, binfo, vtbl);
7457 }
7458
7459 /* Add the vtbl initializers for BINFO (and its bases other than
7460 non-virtual primaries) to the list of INITS. BINFO is in the
7461 hierarchy dominated by T. RTTI_BINFO is the binfo within T of
7462 the constructor the vtbl inits should be accumulated for. (If this
7463 is the complete object vtbl then RTTI_BINFO will be TYPE_BINFO (T).)
7464 ORIG_BINFO is the binfo for this object within BINFO_TYPE (RTTI_BINFO).
7465 BINFO is the active base equivalent of ORIG_BINFO in the inheritance
7466 graph of T. Both BINFO and ORIG_BINFO will have the same BINFO_TYPE,
7467 but are not necessarily the same in terms of layout. */
7468
7469 static void
7470 accumulate_vtbl_inits (tree binfo,
7471 tree orig_binfo,
7472 tree rtti_binfo,
7473 tree vtbl,
7474 tree t,
7475 VEC(constructor_elt,gc) **inits)
7476 {
7477 int i;
7478 tree base_binfo;
7479 int ctor_vtbl_p = !SAME_BINFO_TYPE_P (BINFO_TYPE (rtti_binfo), t);
7480
7481 gcc_assert (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), BINFO_TYPE (orig_binfo)));
7482
7483 /* If it doesn't have a vptr, we don't do anything. */
7484 if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
7485 return;
7486
7487 /* If we're building a construction vtable, we're not interested in
7488 subobjects that don't require construction vtables. */
7489 if (ctor_vtbl_p
7490 && !CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo))
7491 && !binfo_via_virtual (orig_binfo, BINFO_TYPE (rtti_binfo)))
7492 return;
7493
7494 /* Build the initializers for the BINFO-in-T vtable. */
7495 dfs_accumulate_vtbl_inits (binfo, orig_binfo, rtti_binfo, vtbl, t, inits);
7496
7497 /* Walk the BINFO and its bases. We walk in preorder so that as we
7498 initialize each vtable we can figure out at what offset the
7499 secondary vtable lies from the primary vtable. We can't use
7500 dfs_walk here because we need to iterate through bases of BINFO
7501 and RTTI_BINFO simultaneously. */
7502 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
7503 {
7504 /* Skip virtual bases. */
7505 if (BINFO_VIRTUAL_P (base_binfo))
7506 continue;
7507 accumulate_vtbl_inits (base_binfo,
7508 BINFO_BASE_BINFO (orig_binfo, i),
7509 rtti_binfo, vtbl, t,
7510 inits);
7511 }
7512 }
7513
7514 /* Called from accumulate_vtbl_inits. Adds the initializers for the
7515 BINFO vtable to L. */
7516
7517 static void
7518 dfs_accumulate_vtbl_inits (tree binfo,
7519 tree orig_binfo,
7520 tree rtti_binfo,
7521 tree orig_vtbl,
7522 tree t,
7523 VEC(constructor_elt,gc) **l)
7524 {
7525 tree vtbl = NULL_TREE;
7526 int ctor_vtbl_p = !SAME_BINFO_TYPE_P (BINFO_TYPE (rtti_binfo), t);
7527 int n_inits;
7528
7529 if (ctor_vtbl_p
7530 && BINFO_VIRTUAL_P (orig_binfo) && BINFO_PRIMARY_P (orig_binfo))
7531 {
7532 /* In the hierarchy of BINFO_TYPE (RTTI_BINFO), this is a
7533 primary virtual base. If it is not the same primary in
7534 the hierarchy of T, we'll need to generate a ctor vtable
7535 for it, to place at its location in T. If it is the same
7536 primary, we still need a VTT entry for the vtable, but it
7537 should point to the ctor vtable for the base it is a
7538 primary for within the sub-hierarchy of RTTI_BINFO.
7539
7540 There are three possible cases:
7541
7542 1) We are in the same place.
7543 2) We are a primary base within a lost primary virtual base of
7544 RTTI_BINFO.
7545 3) We are primary to something not a base of RTTI_BINFO. */
7546
7547 tree b;
7548 tree last = NULL_TREE;
7549
7550 /* First, look through the bases we are primary to for RTTI_BINFO
7551 or a virtual base. */
7552 b = binfo;
7553 while (BINFO_PRIMARY_P (b))
7554 {
7555 b = BINFO_INHERITANCE_CHAIN (b);
7556 last = b;
7557 if (BINFO_VIRTUAL_P (b) || b == rtti_binfo)
7558 goto found;
7559 }
7560 /* If we run out of primary links, keep looking down our
7561 inheritance chain; we might be an indirect primary. */
7562 for (b = last; b; b = BINFO_INHERITANCE_CHAIN (b))
7563 if (BINFO_VIRTUAL_P (b) || b == rtti_binfo)
7564 break;
7565 found:
7566
7567 /* If we found RTTI_BINFO, this is case 1. If we found a virtual
7568 base B and it is a base of RTTI_BINFO, this is case 2. In
7569 either case, we share our vtable with LAST, i.e. the
7570 derived-most base within B of which we are a primary. */
7571 if (b == rtti_binfo
7572 || (b && binfo_for_vbase (BINFO_TYPE (b), BINFO_TYPE (rtti_binfo))))
7573 /* Just set our BINFO_VTABLE to point to LAST, as we may not have
7574 set LAST's BINFO_VTABLE yet. We'll extract the actual vptr in
7575 binfo_ctor_vtable after everything's been set up. */
7576 vtbl = last;
7577
7578 /* Otherwise, this is case 3 and we get our own. */
7579 }
7580 else if (!BINFO_NEW_VTABLE_MARKED (orig_binfo))
7581 return;
7582
7583 n_inits = VEC_length (constructor_elt, *l);
7584
7585 if (!vtbl)
7586 {
7587 tree index;
7588 int non_fn_entries;
7589
7590 /* Add the initializer for this vtable. */
7591 build_vtbl_initializer (binfo, orig_binfo, t, rtti_binfo,
7592 &non_fn_entries, l);
7593
7594 /* Figure out the position to which the VPTR should point. */
7595 vtbl = build1 (ADDR_EXPR, vtbl_ptr_type_node, orig_vtbl);
7596 index = size_binop (PLUS_EXPR,
7597 size_int (non_fn_entries),
7598 size_int (n_inits));
7599 index = size_binop (MULT_EXPR,
7600 TYPE_SIZE_UNIT (vtable_entry_type),
7601 index);
7602 vtbl = build2 (POINTER_PLUS_EXPR, TREE_TYPE (vtbl), vtbl, index);
7603 }
7604
7605 if (ctor_vtbl_p)
7606 /* For a construction vtable, we can't overwrite BINFO_VTABLE.
7607 So, we make a TREE_LIST. Later, dfs_fixup_binfo_vtbls will
7608 straighten this out. */
7609 BINFO_VTABLE (binfo) = tree_cons (rtti_binfo, vtbl, BINFO_VTABLE (binfo));
7610 else if (BINFO_PRIMARY_P (binfo) && BINFO_VIRTUAL_P (binfo))
7611 /* Throw away any unneeded intializers. */
7612 VEC_truncate (constructor_elt, *l, n_inits);
7613 else
7614 /* For an ordinary vtable, set BINFO_VTABLE. */
7615 BINFO_VTABLE (binfo) = vtbl;
7616 }
7617
7618 static GTY(()) tree abort_fndecl_addr;
7619
7620 /* Construct the initializer for BINFO's virtual function table. BINFO
7621 is part of the hierarchy dominated by T. If we're building a
7622 construction vtable, the ORIG_BINFO is the binfo we should use to
7623 find the actual function pointers to put in the vtable - but they
7624 can be overridden on the path to most-derived in the graph that
7625 ORIG_BINFO belongs. Otherwise,
7626 ORIG_BINFO should be the same as BINFO. The RTTI_BINFO is the
7627 BINFO that should be indicated by the RTTI information in the
7628 vtable; it will be a base class of T, rather than T itself, if we
7629 are building a construction vtable.
7630
7631 The value returned is a TREE_LIST suitable for wrapping in a
7632 CONSTRUCTOR to use as the DECL_INITIAL for a vtable. If
7633 NON_FN_ENTRIES_P is not NULL, *NON_FN_ENTRIES_P is set to the
7634 number of non-function entries in the vtable.
7635
7636 It might seem that this function should never be called with a
7637 BINFO for which BINFO_PRIMARY_P holds, the vtable for such a
7638 base is always subsumed by a derived class vtable. However, when
7639 we are building construction vtables, we do build vtables for
7640 primary bases; we need these while the primary base is being
7641 constructed. */
7642
7643 static void
7644 build_vtbl_initializer (tree binfo,
7645 tree orig_binfo,
7646 tree t,
7647 tree rtti_binfo,
7648 int* non_fn_entries_p,
7649 VEC(constructor_elt,gc) **inits)
7650 {
7651 tree v, b;
7652 vtbl_init_data vid;
7653 unsigned ix, jx;
7654 tree vbinfo;
7655 VEC(tree,gc) *vbases;
7656 constructor_elt *e;
7657
7658 /* Initialize VID. */
7659 memset (&vid, 0, sizeof (vid));
7660 vid.binfo = binfo;
7661 vid.derived = t;
7662 vid.rtti_binfo = rtti_binfo;
7663 vid.primary_vtbl_p = SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), t);
7664 vid.ctor_vtbl_p = !SAME_BINFO_TYPE_P (BINFO_TYPE (rtti_binfo), t);
7665 vid.generate_vcall_entries = true;
7666 /* The first vbase or vcall offset is at index -3 in the vtable. */
7667 vid.index = ssize_int(-3 * TARGET_VTABLE_DATA_ENTRY_DISTANCE);
7668
7669 /* Add entries to the vtable for RTTI. */
7670 build_rtti_vtbl_entries (binfo, &vid);
7671
7672 /* Create an array for keeping track of the functions we've
7673 processed. When we see multiple functions with the same
7674 signature, we share the vcall offsets. */
7675 vid.fns = VEC_alloc (tree, gc, 32);
7676 /* Add the vcall and vbase offset entries. */
7677 build_vcall_and_vbase_vtbl_entries (binfo, &vid);
7678
7679 /* Clear BINFO_VTABLE_PATH_MARKED; it's set by
7680 build_vbase_offset_vtbl_entries. */
7681 for (vbases = CLASSTYPE_VBASECLASSES (t), ix = 0;
7682 VEC_iterate (tree, vbases, ix, vbinfo); ix++)
7683 BINFO_VTABLE_PATH_MARKED (vbinfo) = 0;
7684
7685 /* If the target requires padding between data entries, add that now. */
7686 if (TARGET_VTABLE_DATA_ENTRY_DISTANCE > 1)
7687 {
7688 int n_entries = VEC_length (constructor_elt, vid.inits);
7689
7690 VEC_safe_grow (constructor_elt, gc, vid.inits,
7691 TARGET_VTABLE_DATA_ENTRY_DISTANCE * n_entries);
7692
7693 /* Move data entries into their new positions and add padding
7694 after the new positions. Iterate backwards so we don't
7695 overwrite entries that we would need to process later. */
7696 for (ix = n_entries - 1;
7697 VEC_iterate (constructor_elt, vid.inits, ix, e);
7698 ix--)
7699 {
7700 int j;
7701 int new_position = (TARGET_VTABLE_DATA_ENTRY_DISTANCE * ix
7702 + (TARGET_VTABLE_DATA_ENTRY_DISTANCE - 1));
7703
7704 VEC_replace (constructor_elt, vid.inits, new_position, e);
7705
7706 for (j = 1; j < TARGET_VTABLE_DATA_ENTRY_DISTANCE; ++j)
7707 {
7708 constructor_elt *f = VEC_index (constructor_elt, vid.inits,
7709 new_position - j);
7710 f->index = NULL_TREE;
7711 f->value = build1 (NOP_EXPR, vtable_entry_type,
7712 null_pointer_node);
7713 }
7714 }
7715 }
7716
7717 if (non_fn_entries_p)
7718 *non_fn_entries_p = VEC_length (constructor_elt, vid.inits);
7719
7720 /* The initializers for virtual functions were built up in reverse
7721 order. Straighten them out and add them to the running list in one
7722 step. */
7723 jx = VEC_length (constructor_elt, *inits);
7724 VEC_safe_grow (constructor_elt, gc, *inits,
7725 (jx + VEC_length (constructor_elt, vid.inits)));
7726
7727 for (ix = VEC_length (constructor_elt, vid.inits) - 1;
7728 VEC_iterate (constructor_elt, vid.inits, ix, e);
7729 ix--, jx++)
7730 VEC_replace (constructor_elt, *inits, jx, e);
7731
7732 /* Go through all the ordinary virtual functions, building up
7733 initializers. */
7734 for (v = BINFO_VIRTUALS (orig_binfo); v; v = TREE_CHAIN (v))
7735 {
7736 tree delta;
7737 tree vcall_index;
7738 tree fn, fn_original;
7739 tree init = NULL_TREE;
7740
7741 fn = BV_FN (v);
7742 fn_original = fn;
7743 if (DECL_THUNK_P (fn))
7744 {
7745 if (!DECL_NAME (fn))
7746 finish_thunk (fn);
7747 if (THUNK_ALIAS (fn))
7748 {
7749 fn = THUNK_ALIAS (fn);
7750 BV_FN (v) = fn;
7751 }
7752 fn_original = THUNK_TARGET (fn);
7753 }
7754
7755 /* If the only definition of this function signature along our
7756 primary base chain is from a lost primary, this vtable slot will
7757 never be used, so just zero it out. This is important to avoid
7758 requiring extra thunks which cannot be generated with the function.
7759
7760 We first check this in update_vtable_entry_for_fn, so we handle
7761 restored primary bases properly; we also need to do it here so we
7762 zero out unused slots in ctor vtables, rather than filling them
7763 with erroneous values (though harmless, apart from relocation
7764 costs). */
7765 for (b = binfo; ; b = get_primary_binfo (b))
7766 {
7767 /* We found a defn before a lost primary; go ahead as normal. */
7768 if (look_for_overrides_here (BINFO_TYPE (b), fn_original))
7769 break;
7770
7771 /* The nearest definition is from a lost primary; clear the
7772 slot. */
7773 if (BINFO_LOST_PRIMARY_P (b))
7774 {
7775 init = size_zero_node;
7776 break;
7777 }
7778 }
7779
7780 if (! init)
7781 {
7782 /* Pull the offset for `this', and the function to call, out of
7783 the list. */
7784 delta = BV_DELTA (v);
7785 vcall_index = BV_VCALL_INDEX (v);
7786
7787 gcc_assert (TREE_CODE (delta) == INTEGER_CST);
7788 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
7789
7790 /* You can't call an abstract virtual function; it's abstract.
7791 So, we replace these functions with __pure_virtual. */
7792 if (DECL_PURE_VIRTUAL_P (fn_original))
7793 {
7794 fn = abort_fndecl;
7795 if (abort_fndecl_addr == NULL)
7796 abort_fndecl_addr = build1 (ADDR_EXPR, vfunc_ptr_type_node, fn);
7797 init = abort_fndecl_addr;
7798 }
7799 else
7800 {
7801 if (!integer_zerop (delta) || vcall_index)
7802 {
7803 fn = make_thunk (fn, /*this_adjusting=*/1, delta, vcall_index);
7804 if (!DECL_NAME (fn))
7805 finish_thunk (fn);
7806 }
7807 /* Take the address of the function, considering it to be of an
7808 appropriate generic type. */
7809 init = build1 (ADDR_EXPR, vfunc_ptr_type_node, fn);
7810 }
7811 }
7812
7813 /* And add it to the chain of initializers. */
7814 if (TARGET_VTABLE_USES_DESCRIPTORS)
7815 {
7816 int i;
7817 if (init == size_zero_node)
7818 for (i = 0; i < TARGET_VTABLE_USES_DESCRIPTORS; ++i)
7819 CONSTRUCTOR_APPEND_ELT (*inits, NULL_TREE, init);
7820 else
7821 for (i = 0; i < TARGET_VTABLE_USES_DESCRIPTORS; ++i)
7822 {
7823 tree fdesc = build2 (FDESC_EXPR, vfunc_ptr_type_node,
7824 TREE_OPERAND (init, 0),
7825 build_int_cst (NULL_TREE, i));
7826 TREE_CONSTANT (fdesc) = 1;
7827
7828 CONSTRUCTOR_APPEND_ELT (*inits, NULL_TREE, fdesc);
7829 }
7830 }
7831 else
7832 CONSTRUCTOR_APPEND_ELT (*inits, NULL_TREE, init);
7833 }
7834 }
7835
7836 /* Adds to vid->inits the initializers for the vbase and vcall
7837 offsets in BINFO, which is in the hierarchy dominated by T. */
7838
7839 static void
7840 build_vcall_and_vbase_vtbl_entries (tree binfo, vtbl_init_data* vid)
7841 {
7842 tree b;
7843
7844 /* If this is a derived class, we must first create entries
7845 corresponding to the primary base class. */
7846 b = get_primary_binfo (binfo);
7847 if (b)
7848 build_vcall_and_vbase_vtbl_entries (b, vid);
7849
7850 /* Add the vbase entries for this base. */
7851 build_vbase_offset_vtbl_entries (binfo, vid);
7852 /* Add the vcall entries for this base. */
7853 build_vcall_offset_vtbl_entries (binfo, vid);
7854 }
7855
7856 /* Returns the initializers for the vbase offset entries in the vtable
7857 for BINFO (which is part of the class hierarchy dominated by T), in
7858 reverse order. VBASE_OFFSET_INDEX gives the vtable index
7859 where the next vbase offset will go. */
7860
7861 static void
7862 build_vbase_offset_vtbl_entries (tree binfo, vtbl_init_data* vid)
7863 {
7864 tree vbase;
7865 tree t;
7866 tree non_primary_binfo;
7867
7868 /* If there are no virtual baseclasses, then there is nothing to
7869 do. */
7870 if (!CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo)))
7871 return;
7872
7873 t = vid->derived;
7874
7875 /* We might be a primary base class. Go up the inheritance hierarchy
7876 until we find the most derived class of which we are a primary base:
7877 it is the offset of that which we need to use. */
7878 non_primary_binfo = binfo;
7879 while (BINFO_INHERITANCE_CHAIN (non_primary_binfo))
7880 {
7881 tree b;
7882
7883 /* If we have reached a virtual base, then it must be a primary
7884 base (possibly multi-level) of vid->binfo, or we wouldn't
7885 have called build_vcall_and_vbase_vtbl_entries for it. But it
7886 might be a lost primary, so just skip down to vid->binfo. */
7887 if (BINFO_VIRTUAL_P (non_primary_binfo))
7888 {
7889 non_primary_binfo = vid->binfo;
7890 break;
7891 }
7892
7893 b = BINFO_INHERITANCE_CHAIN (non_primary_binfo);
7894 if (get_primary_binfo (b) != non_primary_binfo)
7895 break;
7896 non_primary_binfo = b;
7897 }
7898
7899 /* Go through the virtual bases, adding the offsets. */
7900 for (vbase = TYPE_BINFO (BINFO_TYPE (binfo));
7901 vbase;
7902 vbase = TREE_CHAIN (vbase))
7903 {
7904 tree b;
7905 tree delta;
7906
7907 if (!BINFO_VIRTUAL_P (vbase))
7908 continue;
7909
7910 /* Find the instance of this virtual base in the complete
7911 object. */
7912 b = copied_binfo (vbase, binfo);
7913
7914 /* If we've already got an offset for this virtual base, we
7915 don't need another one. */
7916 if (BINFO_VTABLE_PATH_MARKED (b))
7917 continue;
7918 BINFO_VTABLE_PATH_MARKED (b) = 1;
7919
7920 /* Figure out where we can find this vbase offset. */
7921 delta = size_binop (MULT_EXPR,
7922 vid->index,
7923 convert (ssizetype,
7924 TYPE_SIZE_UNIT (vtable_entry_type)));
7925 if (vid->primary_vtbl_p)
7926 BINFO_VPTR_FIELD (b) = delta;
7927
7928 if (binfo != TYPE_BINFO (t))
7929 /* The vbase offset had better be the same. */
7930 gcc_assert (tree_int_cst_equal (delta, BINFO_VPTR_FIELD (vbase)));
7931
7932 /* The next vbase will come at a more negative offset. */
7933 vid->index = size_binop (MINUS_EXPR, vid->index,
7934 ssize_int (TARGET_VTABLE_DATA_ENTRY_DISTANCE));
7935
7936 /* The initializer is the delta from BINFO to this virtual base.
7937 The vbase offsets go in reverse inheritance-graph order, and
7938 we are walking in inheritance graph order so these end up in
7939 the right order. */
7940 delta = size_diffop_loc (input_location,
7941 BINFO_OFFSET (b), BINFO_OFFSET (non_primary_binfo));
7942
7943 CONSTRUCTOR_APPEND_ELT (vid->inits, NULL_TREE,
7944 fold_build1_loc (input_location, NOP_EXPR,
7945 vtable_entry_type, delta));
7946 }
7947 }
7948
7949 /* Adds the initializers for the vcall offset entries in the vtable
7950 for BINFO (which is part of the class hierarchy dominated by VID->DERIVED)
7951 to VID->INITS. */
7952
7953 static void
7954 build_vcall_offset_vtbl_entries (tree binfo, vtbl_init_data* vid)
7955 {
7956 /* We only need these entries if this base is a virtual base. We
7957 compute the indices -- but do not add to the vtable -- when
7958 building the main vtable for a class. */
7959 if (binfo == TYPE_BINFO (vid->derived)
7960 || (BINFO_VIRTUAL_P (binfo)
7961 /* If BINFO is RTTI_BINFO, then (since BINFO does not
7962 correspond to VID->DERIVED), we are building a primary
7963 construction virtual table. Since this is a primary
7964 virtual table, we do not need the vcall offsets for
7965 BINFO. */
7966 && binfo != vid->rtti_binfo))
7967 {
7968 /* We need a vcall offset for each of the virtual functions in this
7969 vtable. For example:
7970
7971 class A { virtual void f (); };
7972 class B1 : virtual public A { virtual void f (); };
7973 class B2 : virtual public A { virtual void f (); };
7974 class C: public B1, public B2 { virtual void f (); };
7975
7976 A C object has a primary base of B1, which has a primary base of A. A
7977 C also has a secondary base of B2, which no longer has a primary base
7978 of A. So the B2-in-C construction vtable needs a secondary vtable for
7979 A, which will adjust the A* to a B2* to call f. We have no way of
7980 knowing what (or even whether) this offset will be when we define B2,
7981 so we store this "vcall offset" in the A sub-vtable and look it up in
7982 a "virtual thunk" for B2::f.
7983
7984 We need entries for all the functions in our primary vtable and
7985 in our non-virtual bases' secondary vtables. */
7986 vid->vbase = binfo;
7987 /* If we are just computing the vcall indices -- but do not need
7988 the actual entries -- not that. */
7989 if (!BINFO_VIRTUAL_P (binfo))
7990 vid->generate_vcall_entries = false;
7991 /* Now, walk through the non-virtual bases, adding vcall offsets. */
7992 add_vcall_offset_vtbl_entries_r (binfo, vid);
7993 }
7994 }
7995
7996 /* Build vcall offsets, starting with those for BINFO. */
7997
7998 static void
7999 add_vcall_offset_vtbl_entries_r (tree binfo, vtbl_init_data* vid)
8000 {
8001 int i;
8002 tree primary_binfo;
8003 tree base_binfo;
8004
8005 /* Don't walk into virtual bases -- except, of course, for the
8006 virtual base for which we are building vcall offsets. Any
8007 primary virtual base will have already had its offsets generated
8008 through the recursion in build_vcall_and_vbase_vtbl_entries. */
8009 if (BINFO_VIRTUAL_P (binfo) && vid->vbase != binfo)
8010 return;
8011
8012 /* If BINFO has a primary base, process it first. */
8013 primary_binfo = get_primary_binfo (binfo);
8014 if (primary_binfo)
8015 add_vcall_offset_vtbl_entries_r (primary_binfo, vid);
8016
8017 /* Add BINFO itself to the list. */
8018 add_vcall_offset_vtbl_entries_1 (binfo, vid);
8019
8020 /* Scan the non-primary bases of BINFO. */
8021 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
8022 if (base_binfo != primary_binfo)
8023 add_vcall_offset_vtbl_entries_r (base_binfo, vid);
8024 }
8025
8026 /* Called from build_vcall_offset_vtbl_entries_r. */
8027
8028 static void
8029 add_vcall_offset_vtbl_entries_1 (tree binfo, vtbl_init_data* vid)
8030 {
8031 /* Make entries for the rest of the virtuals. */
8032 if (abi_version_at_least (2))
8033 {
8034 tree orig_fn;
8035
8036 /* The ABI requires that the methods be processed in declaration
8037 order. G++ 3.2 used the order in the vtable. */
8038 for (orig_fn = TYPE_METHODS (BINFO_TYPE (binfo));
8039 orig_fn;
8040 orig_fn = TREE_CHAIN (orig_fn))
8041 if (DECL_VINDEX (orig_fn))
8042 add_vcall_offset (orig_fn, binfo, vid);
8043 }
8044 else
8045 {
8046 tree derived_virtuals;
8047 tree base_virtuals;
8048 tree orig_virtuals;
8049 /* If BINFO is a primary base, the most derived class which has
8050 BINFO as a primary base; otherwise, just BINFO. */
8051 tree non_primary_binfo;
8052
8053 /* We might be a primary base class. Go up the inheritance hierarchy
8054 until we find the most derived class of which we are a primary base:
8055 it is the BINFO_VIRTUALS there that we need to consider. */
8056 non_primary_binfo = binfo;
8057 while (BINFO_INHERITANCE_CHAIN (non_primary_binfo))
8058 {
8059 tree b;
8060
8061 /* If we have reached a virtual base, then it must be vid->vbase,
8062 because we ignore other virtual bases in
8063 add_vcall_offset_vtbl_entries_r. In turn, it must be a primary
8064 base (possibly multi-level) of vid->binfo, or we wouldn't
8065 have called build_vcall_and_vbase_vtbl_entries for it. But it
8066 might be a lost primary, so just skip down to vid->binfo. */
8067 if (BINFO_VIRTUAL_P (non_primary_binfo))
8068 {
8069 gcc_assert (non_primary_binfo == vid->vbase);
8070 non_primary_binfo = vid->binfo;
8071 break;
8072 }
8073
8074 b = BINFO_INHERITANCE_CHAIN (non_primary_binfo);
8075 if (get_primary_binfo (b) != non_primary_binfo)
8076 break;
8077 non_primary_binfo = b;
8078 }
8079
8080 if (vid->ctor_vtbl_p)
8081 /* For a ctor vtable we need the equivalent binfo within the hierarchy
8082 where rtti_binfo is the most derived type. */
8083 non_primary_binfo
8084 = original_binfo (non_primary_binfo, vid->rtti_binfo);
8085
8086 for (base_virtuals = BINFO_VIRTUALS (binfo),
8087 derived_virtuals = BINFO_VIRTUALS (non_primary_binfo),
8088 orig_virtuals = BINFO_VIRTUALS (TYPE_BINFO (BINFO_TYPE (binfo)));
8089 base_virtuals;
8090 base_virtuals = TREE_CHAIN (base_virtuals),
8091 derived_virtuals = TREE_CHAIN (derived_virtuals),
8092 orig_virtuals = TREE_CHAIN (orig_virtuals))
8093 {
8094 tree orig_fn;
8095
8096 /* Find the declaration that originally caused this function to
8097 be present in BINFO_TYPE (binfo). */
8098 orig_fn = BV_FN (orig_virtuals);
8099
8100 /* When processing BINFO, we only want to generate vcall slots for
8101 function slots introduced in BINFO. So don't try to generate
8102 one if the function isn't even defined in BINFO. */
8103 if (!SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), DECL_CONTEXT (orig_fn)))
8104 continue;
8105
8106 add_vcall_offset (orig_fn, binfo, vid);
8107 }
8108 }
8109 }
8110
8111 /* Add a vcall offset entry for ORIG_FN to the vtable. */
8112
8113 static void
8114 add_vcall_offset (tree orig_fn, tree binfo, vtbl_init_data *vid)
8115 {
8116 size_t i;
8117 tree vcall_offset;
8118 tree derived_entry;
8119
8120 /* If there is already an entry for a function with the same
8121 signature as FN, then we do not need a second vcall offset.
8122 Check the list of functions already present in the derived
8123 class vtable. */
8124 for (i = 0; VEC_iterate (tree, vid->fns, i, derived_entry); ++i)
8125 {
8126 if (same_signature_p (derived_entry, orig_fn)
8127 /* We only use one vcall offset for virtual destructors,
8128 even though there are two virtual table entries. */
8129 || (DECL_DESTRUCTOR_P (derived_entry)
8130 && DECL_DESTRUCTOR_P (orig_fn)))
8131 return;
8132 }
8133
8134 /* If we are building these vcall offsets as part of building
8135 the vtable for the most derived class, remember the vcall
8136 offset. */
8137 if (vid->binfo == TYPE_BINFO (vid->derived))
8138 {
8139 tree_pair_p elt = VEC_safe_push (tree_pair_s, gc,
8140 CLASSTYPE_VCALL_INDICES (vid->derived),
8141 NULL);
8142 elt->purpose = orig_fn;
8143 elt->value = vid->index;
8144 }
8145
8146 /* The next vcall offset will be found at a more negative
8147 offset. */
8148 vid->index = size_binop (MINUS_EXPR, vid->index,
8149 ssize_int (TARGET_VTABLE_DATA_ENTRY_DISTANCE));
8150
8151 /* Keep track of this function. */
8152 VEC_safe_push (tree, gc, vid->fns, orig_fn);
8153
8154 if (vid->generate_vcall_entries)
8155 {
8156 tree base;
8157 tree fn;
8158
8159 /* Find the overriding function. */
8160 fn = find_final_overrider (vid->rtti_binfo, binfo, orig_fn);
8161 if (fn == error_mark_node)
8162 vcall_offset = build1 (NOP_EXPR, vtable_entry_type,
8163 integer_zero_node);
8164 else
8165 {
8166 base = TREE_VALUE (fn);
8167
8168 /* The vbase we're working on is a primary base of
8169 vid->binfo. But it might be a lost primary, so its
8170 BINFO_OFFSET might be wrong, so we just use the
8171 BINFO_OFFSET from vid->binfo. */
8172 vcall_offset = size_diffop_loc (input_location,
8173 BINFO_OFFSET (base),
8174 BINFO_OFFSET (vid->binfo));
8175 vcall_offset = fold_build1_loc (input_location,
8176 NOP_EXPR, vtable_entry_type,
8177 vcall_offset);
8178 }
8179 /* Add the initializer to the vtable. */
8180 CONSTRUCTOR_APPEND_ELT (vid->inits, NULL_TREE, vcall_offset);
8181 }
8182 }
8183
8184 /* Return vtbl initializers for the RTTI entries corresponding to the
8185 BINFO's vtable. The RTTI entries should indicate the object given
8186 by VID->rtti_binfo. */
8187
8188 static void
8189 build_rtti_vtbl_entries (tree binfo, vtbl_init_data* vid)
8190 {
8191 tree b;
8192 tree t;
8193 tree offset;
8194 tree decl;
8195 tree init;
8196
8197 t = BINFO_TYPE (vid->rtti_binfo);
8198
8199 /* To find the complete object, we will first convert to our most
8200 primary base, and then add the offset in the vtbl to that value. */
8201 b = binfo;
8202 while (CLASSTYPE_HAS_PRIMARY_BASE_P (BINFO_TYPE (b))
8203 && !BINFO_LOST_PRIMARY_P (b))
8204 {
8205 tree primary_base;
8206
8207 primary_base = get_primary_binfo (b);
8208 gcc_assert (BINFO_PRIMARY_P (primary_base)
8209 && BINFO_INHERITANCE_CHAIN (primary_base) == b);
8210 b = primary_base;
8211 }
8212 offset = size_diffop_loc (input_location,
8213 BINFO_OFFSET (vid->rtti_binfo), BINFO_OFFSET (b));
8214
8215 /* The second entry is the address of the typeinfo object. */
8216 if (flag_rtti)
8217 decl = build_address (get_tinfo_decl (t));
8218 else
8219 decl = integer_zero_node;
8220
8221 /* Convert the declaration to a type that can be stored in the
8222 vtable. */
8223 init = build_nop (vfunc_ptr_type_node, decl);
8224 CONSTRUCTOR_APPEND_ELT (vid->inits, NULL_TREE, init);
8225
8226 /* Add the offset-to-top entry. It comes earlier in the vtable than
8227 the typeinfo entry. Convert the offset to look like a
8228 function pointer, so that we can put it in the vtable. */
8229 init = build_nop (vfunc_ptr_type_node, offset);
8230 CONSTRUCTOR_APPEND_ELT (vid->inits, NULL_TREE, init);
8231 }
8232
8233 /* Fold a OBJ_TYPE_REF expression to the address of a function.
8234 KNOWN_TYPE carries the true type of OBJ_TYPE_REF_OBJECT(REF). */
8235
8236 tree
8237 cp_fold_obj_type_ref (tree ref, tree known_type)
8238 {
8239 HOST_WIDE_INT index = tree_low_cst (OBJ_TYPE_REF_TOKEN (ref), 1);
8240 HOST_WIDE_INT i = 0;
8241 tree v = BINFO_VIRTUALS (TYPE_BINFO (known_type));
8242 tree fndecl;
8243
8244 while (i != index)
8245 {
8246 i += (TARGET_VTABLE_USES_DESCRIPTORS
8247 ? TARGET_VTABLE_USES_DESCRIPTORS : 1);
8248 v = TREE_CHAIN (v);
8249 }
8250
8251 fndecl = BV_FN (v);
8252
8253 #ifdef ENABLE_CHECKING
8254 gcc_assert (tree_int_cst_equal (OBJ_TYPE_REF_TOKEN (ref),
8255 DECL_VINDEX (fndecl)));
8256 #endif
8257
8258 cgraph_node (fndecl)->local.vtable_method = true;
8259
8260 return build_address (fndecl);
8261 }
8262
8263 #include "gt-cp-class.h"
This page took 0.409844 seconds and 6 git commands to generate.