* parser.c (cp_parser_ctor_initializer_opt_and_function_body):
[official-gcc.git] / gcc / cp / class.c
blobc3e3c53afe689554442f9c47a745d98b85563494
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)
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
24 /* High-level class interface. */
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"
41 /* The number of nested classes being processed. If we are not in the
42 scope of any class, this is zero. */
44 int current_class_depth;
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 */
50 typedef struct class_stack_node {
51 /* The name of the class. */
52 tree name;
54 /* The _TYPE node for the class. */
55 tree type;
57 /* The access specifier pending for new declarations in the scope of
58 this class. */
59 tree access;
61 /* If were defining TYPE, the names used in this class. */
62 splay_tree names_used;
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;
69 typedef struct vtbl_init_data_s
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;
100 /* The type of a function passed to walk_subobject_offsets. */
101 typedef int (*subobject_offset_fn) (tree, tree, splay_tree);
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;
108 /* The size of the largest empty class seen in this translation unit. */
109 static GTY (()) tree sizeof_biggest_empty_class;
111 /* An array of all local classes present in this translation unit, in
112 declaration order. */
113 VEC(tree,gc) *local_classes;
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);
211 /* Variables shared between class.c and call.c. */
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
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. */
233 tree
234 build_base_path (enum tree_code code,
235 tree expr,
236 tree binfo,
237 int nonnull)
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;
251 if (expr == error_mark_node || binfo == error_mark_node || !binfo)
252 return error_mark_node;
254 for (probe = binfo; probe; probe = BINFO_INHERITANCE_CHAIN (probe))
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;
263 probe = TYPE_MAIN_VARIANT (TREE_TYPE (expr));
264 if (want_pointer)
265 probe = TYPE_MAIN_VARIANT (TREE_TYPE (probe));
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)));
272 if (binfo == d_binfo)
273 /* Nothing to do. */
274 return expr;
276 if (code == MINUS_EXPR && v_binfo)
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;
283 if (!want_pointer)
284 /* This must happen before the call to save_expr. */
285 expr = cp_build_addr_expr (expr, tf_warning_or_error);
286 else
287 expr = mark_rvalue_use (expr);
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);
293 /* Do we need to look in the vtable for the real offset? */
294 virtual_access = (v_binfo && fixed_type_p <= 0);
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)
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;
306 /* Do we need to check for a null pointer? */
307 if (want_pointer && !nonnull)
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))
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);
327 null_test = error_mark_node;
330 /* Protect against multiple evaluation if necessary. */
331 if (TREE_SIDE_EFFECTS (expr) && (null_test || virtual_access))
332 expr = save_expr (expr);
334 /* Now that we've saved expr, build the real null test. */
335 if (null_test)
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);
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)
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;
356 if (virtual_access)
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;
363 if (fixed_type_p < 0 && in_base_initializer)
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;
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);
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)));
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;
389 offset = convert_to_integer (ptrdiff_type_node,
390 size_diffop_loc (input_location, offset,
391 BINFO_OFFSET (v_binfo)));
393 if (!integer_zerop (offset))
394 v_offset = build2 (code, ptrdiff_type_node, v_offset, offset);
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;
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;
416 expr = build1 (NOP_EXPR, ptr_target_type, expr);
418 if (!integer_zerop (offset))
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);
425 else
426 null_test = NULL;
428 if (!want_pointer)
429 expr = cp_build_indirect_ref (expr, RO_NULL, tf_warning_or_error);
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));
437 return expr;
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. */
444 static tree
445 build_simple_base_path (tree expr, tree binfo)
447 tree type = BINFO_TYPE (binfo);
448 tree d_binfo = BINFO_INHERITANCE_CHAIN (binfo);
449 tree field;
451 if (d_binfo == NULL_TREE)
453 tree temp;
455 gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (expr)) == type);
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);
465 return expr;
468 /* Recurse. */
469 expr = build_simple_base_path (expr, d_binfo);
471 for (field = TYPE_FIELDS (BINFO_TYPE (d_binfo));
472 field; field = DECL_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)
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));
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);
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;
496 return expr;
499 /* Didn't find the base field?!? */
500 gcc_unreachable ();
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. */
510 tree
511 convert_to_base (tree object, tree type, bool check_access, bool nonnull,
512 tsubst_flags_t complain)
514 tree binfo;
515 tree object_type;
516 base_access access;
518 if (TYPE_PTR_P (TREE_TYPE (object)))
520 object_type = TREE_TYPE (TREE_TYPE (object));
521 type = TREE_TYPE (type);
523 else
524 object_type = TREE_TYPE (object);
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;
535 return build_base_path (PLUS_EXPR, object, binfo, nonnull);
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. */
543 tree
544 convert_to_base_statically (tree expr, tree base)
546 tree expr_type;
548 expr_type = TREE_TYPE (expr);
549 if (!SAME_BINFO_TYPE_P (BINFO_TYPE (base), expr_type))
551 tree pointer_type;
553 pointer_type = build_pointer_type (expr_type);
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_addr_expr (expr, tf_warning_or_error);
561 if (!integer_zerop (BINFO_OFFSET (base)))
562 expr = fold_build2_loc (input_location,
563 POINTER_PLUS_EXPR, pointer_type, expr,
564 fold_convert (sizetype, BINFO_OFFSET (base)));
565 expr = fold_convert (build_pointer_type (BINFO_TYPE (base)), expr);
566 expr = build_fold_indirect_ref_loc (input_location, expr);
569 return expr;
573 tree
574 build_vfield_ref (tree datum, tree type)
576 tree vfield, vcontext;
578 if (datum == error_mark_node)
579 return error_mark_node;
581 /* First, convert to the requested type. */
582 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (datum), type))
583 datum = convert_to_base (datum, type, /*check_access=*/false,
584 /*nonnull=*/true, tf_warning_or_error);
586 /* Second, the requested type may not be the owner of its own vptr.
587 If not, convert to the base class that owns it. We cannot use
588 convert_to_base here, because VCONTEXT may appear more than once
589 in the inheritance hierarchy of TYPE, and thus direct conversion
590 between the types may be ambiguous. Following the path back up
591 one step at a time via primary bases avoids the problem. */
592 vfield = TYPE_VFIELD (type);
593 vcontext = DECL_CONTEXT (vfield);
594 while (!same_type_ignoring_top_level_qualifiers_p (vcontext, type))
596 datum = build_simple_base_path (datum, CLASSTYPE_PRIMARY_BINFO (type));
597 type = TREE_TYPE (datum);
600 return build3 (COMPONENT_REF, TREE_TYPE (vfield), datum, vfield, NULL_TREE);
603 /* Given an object INSTANCE, return an expression which yields the
604 vtable element corresponding to INDEX. There are many special
605 cases for INSTANCE which we take care of here, mainly to avoid
606 creating extra tree nodes when we don't have to. */
608 static tree
609 build_vtbl_ref_1 (tree instance, tree idx)
611 tree aref;
612 tree vtbl = NULL_TREE;
614 /* Try to figure out what a reference refers to, and
615 access its virtual function table directly. */
617 int cdtorp = 0;
618 tree fixed_type = fixed_type_or_null (instance, NULL, &cdtorp);
620 tree basetype = non_reference (TREE_TYPE (instance));
622 if (fixed_type && !cdtorp)
624 tree binfo = lookup_base (fixed_type, basetype,
625 ba_unique | ba_quiet, NULL);
626 if (binfo)
627 vtbl = unshare_expr (BINFO_VTABLE (binfo));
630 if (!vtbl)
631 vtbl = build_vfield_ref (instance, basetype);
633 aref = build_array_ref (input_location, vtbl, idx);
634 TREE_CONSTANT (aref) |= TREE_CONSTANT (vtbl) && TREE_CONSTANT (idx);
636 return aref;
639 tree
640 build_vtbl_ref (tree instance, tree idx)
642 tree aref = build_vtbl_ref_1 (instance, idx);
644 return aref;
647 /* Given a stable object pointer INSTANCE_PTR, return an expression which
648 yields a function pointer corresponding to vtable element INDEX. */
650 tree
651 build_vfn_ref (tree instance_ptr, tree idx)
653 tree aref;
655 aref = build_vtbl_ref_1 (cp_build_indirect_ref (instance_ptr, RO_NULL,
656 tf_warning_or_error),
657 idx);
659 /* When using function descriptors, the address of the
660 vtable entry is treated as a function pointer. */
661 if (TARGET_VTABLE_USES_DESCRIPTORS)
662 aref = build1 (NOP_EXPR, TREE_TYPE (aref),
663 cp_build_addr_expr (aref, tf_warning_or_error));
665 /* Remember this as a method reference, for later devirtualization. */
666 aref = build3 (OBJ_TYPE_REF, TREE_TYPE (aref), aref, instance_ptr, idx);
668 return aref;
671 /* Return the name of the virtual function table (as an IDENTIFIER_NODE)
672 for the given TYPE. */
674 static tree
675 get_vtable_name (tree type)
677 return mangle_vtbl_for_type (type);
680 /* DECL is an entity associated with TYPE, like a virtual table or an
681 implicitly generated constructor. Determine whether or not DECL
682 should have external or internal linkage at the object file
683 level. This routine does not deal with COMDAT linkage and other
684 similar complexities; it simply sets TREE_PUBLIC if it possible for
685 entities in other translation units to contain copies of DECL, in
686 the abstract. */
688 void
689 set_linkage_according_to_type (tree type, tree decl)
691 /* If TYPE involves a local class in a function with internal
692 linkage, then DECL should have internal linkage too. Other local
693 classes have no linkage -- but if their containing functions
694 have external linkage, it makes sense for DECL to have external
695 linkage too. That will allow template definitions to be merged,
696 for example. */
697 if (no_linkage_check (type, /*relaxed_p=*/true))
699 TREE_PUBLIC (decl) = 0;
700 DECL_INTERFACE_KNOWN (decl) = 1;
702 else
703 TREE_PUBLIC (decl) = 1;
706 /* Create a VAR_DECL for a primary or secondary vtable for CLASS_TYPE.
707 (For a secondary vtable for B-in-D, CLASS_TYPE should be D, not B.)
708 Use NAME for the name of the vtable, and VTABLE_TYPE for its type. */
710 static tree
711 build_vtable (tree class_type, tree name, tree vtable_type)
713 tree decl;
715 decl = build_lang_decl (VAR_DECL, name, vtable_type);
716 /* vtable names are already mangled; give them their DECL_ASSEMBLER_NAME
717 now to avoid confusion in mangle_decl. */
718 SET_DECL_ASSEMBLER_NAME (decl, name);
719 DECL_CONTEXT (decl) = class_type;
720 DECL_ARTIFICIAL (decl) = 1;
721 TREE_STATIC (decl) = 1;
722 TREE_READONLY (decl) = 1;
723 DECL_VIRTUAL_P (decl) = 1;
724 DECL_ALIGN (decl) = TARGET_VTABLE_ENTRY_ALIGN;
725 DECL_VTABLE_OR_VTT_P (decl) = 1;
726 /* At one time the vtable info was grabbed 2 words at a time. This
727 fails on sparc unless you have 8-byte alignment. (tiemann) */
728 DECL_ALIGN (decl) = MAX (TYPE_ALIGN (double_type_node),
729 DECL_ALIGN (decl));
730 set_linkage_according_to_type (class_type, decl);
731 /* The vtable has not been defined -- yet. */
732 DECL_EXTERNAL (decl) = 1;
733 DECL_NOT_REALLY_EXTERN (decl) = 1;
735 /* Mark the VAR_DECL node representing the vtable itself as a
736 "gratuitous" one, thereby forcing dwarfout.c to ignore it. It
737 is rather important that such things be ignored because any
738 effort to actually generate DWARF for them will run into
739 trouble when/if we encounter code like:
741 #pragma interface
742 struct S { virtual void member (); };
744 because the artificial declaration of the vtable itself (as
745 manufactured by the g++ front end) will say that the vtable is
746 a static member of `S' but only *after* the debug output for
747 the definition of `S' has already been output. This causes
748 grief because the DWARF entry for the definition of the vtable
749 will try to refer back to an earlier *declaration* of the
750 vtable as a static member of `S' and there won't be one. We
751 might be able to arrange to have the "vtable static member"
752 attached to the member list for `S' before the debug info for
753 `S' get written (which would solve the problem) but that would
754 require more intrusive changes to the g++ front end. */
755 DECL_IGNORED_P (decl) = 1;
757 return decl;
760 /* Get the VAR_DECL of the vtable for TYPE. TYPE need not be polymorphic,
761 or even complete. If this does not exist, create it. If COMPLETE is
762 nonzero, then complete the definition of it -- that will render it
763 impossible to actually build the vtable, but is useful to get at those
764 which are known to exist in the runtime. */
766 tree
767 get_vtable_decl (tree type, int complete)
769 tree decl;
771 if (CLASSTYPE_VTABLES (type))
772 return CLASSTYPE_VTABLES (type);
774 decl = build_vtable (type, get_vtable_name (type), vtbl_type_node);
775 CLASSTYPE_VTABLES (type) = decl;
777 if (complete)
779 DECL_EXTERNAL (decl) = 1;
780 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
783 return decl;
786 /* Build the primary virtual function table for TYPE. If BINFO is
787 non-NULL, build the vtable starting with the initial approximation
788 that it is the same as the one which is the head of the association
789 list. Returns a nonzero value if a new vtable is actually
790 created. */
792 static int
793 build_primary_vtable (tree binfo, tree type)
795 tree decl;
796 tree virtuals;
798 decl = get_vtable_decl (type, /*complete=*/0);
800 if (binfo)
802 if (BINFO_NEW_VTABLE_MARKED (binfo))
803 /* We have already created a vtable for this base, so there's
804 no need to do it again. */
805 return 0;
807 virtuals = copy_list (BINFO_VIRTUALS (binfo));
808 TREE_TYPE (decl) = TREE_TYPE (get_vtbl_decl_for_binfo (binfo));
809 DECL_SIZE (decl) = TYPE_SIZE (TREE_TYPE (decl));
810 DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (TREE_TYPE (decl));
812 else
814 gcc_assert (TREE_TYPE (decl) == vtbl_type_node);
815 virtuals = NULL_TREE;
818 #ifdef GATHER_STATISTICS
819 n_vtables += 1;
820 n_vtable_elems += list_length (virtuals);
821 #endif
823 /* Initialize the association list for this type, based
824 on our first approximation. */
825 BINFO_VTABLE (TYPE_BINFO (type)) = decl;
826 BINFO_VIRTUALS (TYPE_BINFO (type)) = virtuals;
827 SET_BINFO_NEW_VTABLE_MARKED (TYPE_BINFO (type));
828 return 1;
831 /* Give BINFO a new virtual function table which is initialized
832 with a skeleton-copy of its original initialization. The only
833 entry that changes is the `delta' entry, so we can really
834 share a lot of structure.
836 FOR_TYPE is the most derived type which caused this table to
837 be needed.
839 Returns nonzero if we haven't met BINFO before.
841 The order in which vtables are built (by calling this function) for
842 an object must remain the same, otherwise a binary incompatibility
843 can result. */
845 static int
846 build_secondary_vtable (tree binfo)
848 if (BINFO_NEW_VTABLE_MARKED (binfo))
849 /* We already created a vtable for this base. There's no need to
850 do it again. */
851 return 0;
853 /* Remember that we've created a vtable for this BINFO, so that we
854 don't try to do so again. */
855 SET_BINFO_NEW_VTABLE_MARKED (binfo);
857 /* Make fresh virtual list, so we can smash it later. */
858 BINFO_VIRTUALS (binfo) = copy_list (BINFO_VIRTUALS (binfo));
860 /* Secondary vtables are laid out as part of the same structure as
861 the primary vtable. */
862 BINFO_VTABLE (binfo) = NULL_TREE;
863 return 1;
866 /* Create a new vtable for BINFO which is the hierarchy dominated by
867 T. Return nonzero if we actually created a new vtable. */
869 static int
870 make_new_vtable (tree t, tree binfo)
872 if (binfo == TYPE_BINFO (t))
873 /* In this case, it is *type*'s vtable we are modifying. We start
874 with the approximation that its vtable is that of the
875 immediate base class. */
876 return build_primary_vtable (binfo, t);
877 else
878 /* This is our very own copy of `basetype' to play with. Later,
879 we will fill in all the virtual functions that override the
880 virtual functions in these base classes which are not defined
881 by the current type. */
882 return build_secondary_vtable (binfo);
885 /* Make *VIRTUALS, an entry on the BINFO_VIRTUALS list for BINFO
886 (which is in the hierarchy dominated by T) list FNDECL as its
887 BV_FN. DELTA is the required constant adjustment from the `this'
888 pointer where the vtable entry appears to the `this' required when
889 the function is actually called. */
891 static void
892 modify_vtable_entry (tree t,
893 tree binfo,
894 tree fndecl,
895 tree delta,
896 tree *virtuals)
898 tree v;
900 v = *virtuals;
902 if (fndecl != BV_FN (v)
903 || !tree_int_cst_equal (delta, BV_DELTA (v)))
905 /* We need a new vtable for BINFO. */
906 if (make_new_vtable (t, binfo))
908 /* If we really did make a new vtable, we also made a copy
909 of the BINFO_VIRTUALS list. Now, we have to find the
910 corresponding entry in that list. */
911 *virtuals = BINFO_VIRTUALS (binfo);
912 while (BV_FN (*virtuals) != BV_FN (v))
913 *virtuals = TREE_CHAIN (*virtuals);
914 v = *virtuals;
917 BV_DELTA (v) = delta;
918 BV_VCALL_INDEX (v) = NULL_TREE;
919 BV_FN (v) = fndecl;
924 /* Add method METHOD to class TYPE. If USING_DECL is non-null, it is
925 the USING_DECL naming METHOD. Returns true if the method could be
926 added to the method vec. */
928 bool
929 add_method (tree type, tree method, tree using_decl)
931 unsigned slot;
932 tree overload;
933 bool template_conv_p = false;
934 bool conv_p;
935 VEC(tree,gc) *method_vec;
936 bool complete_p;
937 bool insert_p = false;
938 tree current_fns;
939 tree fns;
941 if (method == error_mark_node)
942 return false;
944 complete_p = COMPLETE_TYPE_P (type);
945 conv_p = DECL_CONV_FN_P (method);
946 if (conv_p)
947 template_conv_p = (TREE_CODE (method) == TEMPLATE_DECL
948 && DECL_TEMPLATE_CONV_FN_P (method));
950 method_vec = CLASSTYPE_METHOD_VEC (type);
951 if (!method_vec)
953 /* Make a new method vector. We start with 8 entries. We must
954 allocate at least two (for constructors and destructors), and
955 we're going to end up with an assignment operator at some
956 point as well. */
957 method_vec = VEC_alloc (tree, gc, 8);
958 /* Create slots for constructors and destructors. */
959 VEC_quick_push (tree, method_vec, NULL_TREE);
960 VEC_quick_push (tree, method_vec, NULL_TREE);
961 CLASSTYPE_METHOD_VEC (type) = method_vec;
964 /* Maintain TYPE_HAS_USER_CONSTRUCTOR, etc. */
965 grok_special_member_properties (method);
967 /* Constructors and destructors go in special slots. */
968 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (method))
969 slot = CLASSTYPE_CONSTRUCTOR_SLOT;
970 else if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (method))
972 slot = CLASSTYPE_DESTRUCTOR_SLOT;
974 if (TYPE_FOR_JAVA (type))
976 if (!DECL_ARTIFICIAL (method))
977 error ("Java class %qT cannot have a destructor", type);
978 else if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
979 error ("Java class %qT cannot have an implicit non-trivial "
980 "destructor",
981 type);
984 else
986 tree m;
988 insert_p = true;
989 /* See if we already have an entry with this name. */
990 for (slot = CLASSTYPE_FIRST_CONVERSION_SLOT;
991 VEC_iterate (tree, method_vec, slot, m);
992 ++slot)
994 m = OVL_CURRENT (m);
995 if (template_conv_p)
997 if (TREE_CODE (m) == TEMPLATE_DECL
998 && DECL_TEMPLATE_CONV_FN_P (m))
999 insert_p = false;
1000 break;
1002 if (conv_p && !DECL_CONV_FN_P (m))
1003 break;
1004 if (DECL_NAME (m) == DECL_NAME (method))
1006 insert_p = false;
1007 break;
1009 if (complete_p
1010 && !DECL_CONV_FN_P (m)
1011 && DECL_NAME (m) > DECL_NAME (method))
1012 break;
1015 current_fns = insert_p ? NULL_TREE : VEC_index (tree, method_vec, slot);
1017 /* Check to see if we've already got this method. */
1018 for (fns = current_fns; fns; fns = OVL_NEXT (fns))
1020 tree fn = OVL_CURRENT (fns);
1021 tree fn_type;
1022 tree method_type;
1023 tree parms1;
1024 tree parms2;
1026 if (TREE_CODE (fn) != TREE_CODE (method))
1027 continue;
1029 /* [over.load] Member function declarations with the
1030 same name and the same parameter types cannot be
1031 overloaded if any of them is a static member
1032 function declaration.
1034 [namespace.udecl] When a using-declaration brings names
1035 from a base class into a derived class scope, member
1036 functions in the derived class override and/or hide member
1037 functions with the same name and parameter types in a base
1038 class (rather than conflicting). */
1039 fn_type = TREE_TYPE (fn);
1040 method_type = TREE_TYPE (method);
1041 parms1 = TYPE_ARG_TYPES (fn_type);
1042 parms2 = TYPE_ARG_TYPES (method_type);
1044 /* Compare the quals on the 'this' parm. Don't compare
1045 the whole types, as used functions are treated as
1046 coming from the using class in overload resolution. */
1047 if (! DECL_STATIC_FUNCTION_P (fn)
1048 && ! DECL_STATIC_FUNCTION_P (method)
1049 && TREE_TYPE (TREE_VALUE (parms1)) != error_mark_node
1050 && TREE_TYPE (TREE_VALUE (parms2)) != error_mark_node
1051 && (cp_type_quals (TREE_TYPE (TREE_VALUE (parms1)))
1052 != cp_type_quals (TREE_TYPE (TREE_VALUE (parms2)))))
1053 continue;
1055 /* For templates, the return type and template parameters
1056 must be identical. */
1057 if (TREE_CODE (fn) == TEMPLATE_DECL
1058 && (!same_type_p (TREE_TYPE (fn_type),
1059 TREE_TYPE (method_type))
1060 || !comp_template_parms (DECL_TEMPLATE_PARMS (fn),
1061 DECL_TEMPLATE_PARMS (method))))
1062 continue;
1064 if (! DECL_STATIC_FUNCTION_P (fn))
1065 parms1 = TREE_CHAIN (parms1);
1066 if (! DECL_STATIC_FUNCTION_P (method))
1067 parms2 = TREE_CHAIN (parms2);
1069 if (compparms (parms1, parms2)
1070 && (!DECL_CONV_FN_P (fn)
1071 || same_type_p (TREE_TYPE (fn_type),
1072 TREE_TYPE (method_type))))
1074 if (using_decl)
1076 if (DECL_CONTEXT (fn) == type)
1077 /* Defer to the local function. */
1078 return false;
1079 if (DECL_CONTEXT (fn) == DECL_CONTEXT (method))
1080 error ("repeated using declaration %q+D", using_decl);
1081 else
1082 error ("using declaration %q+D conflicts with a previous using declaration",
1083 using_decl);
1085 else
1087 error ("%q+#D cannot be overloaded", method);
1088 error ("with %q+#D", fn);
1091 /* We don't call duplicate_decls here to merge the
1092 declarations because that will confuse things if the
1093 methods have inline definitions. In particular, we
1094 will crash while processing the definitions. */
1095 return false;
1099 /* A class should never have more than one destructor. */
1100 if (current_fns && DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (method))
1101 return false;
1103 /* Add the new binding. */
1104 overload = build_overload (method, current_fns);
1106 if (conv_p)
1107 TYPE_HAS_CONVERSION (type) = 1;
1108 else if (slot >= CLASSTYPE_FIRST_CONVERSION_SLOT && !complete_p)
1109 push_class_level_binding (DECL_NAME (method), overload);
1111 if (insert_p)
1113 bool reallocated;
1115 /* We only expect to add few methods in the COMPLETE_P case, so
1116 just make room for one more method in that case. */
1117 if (complete_p)
1118 reallocated = VEC_reserve_exact (tree, gc, method_vec, 1);
1119 else
1120 reallocated = VEC_reserve (tree, gc, method_vec, 1);
1121 if (reallocated)
1122 CLASSTYPE_METHOD_VEC (type) = method_vec;
1123 if (slot == VEC_length (tree, method_vec))
1124 VEC_quick_push (tree, method_vec, overload);
1125 else
1126 VEC_quick_insert (tree, method_vec, slot, overload);
1128 else
1129 /* Replace the current slot. */
1130 VEC_replace (tree, method_vec, slot, overload);
1131 return true;
1134 /* Subroutines of finish_struct. */
1136 /* Change the access of FDECL to ACCESS in T. Return 1 if change was
1137 legit, otherwise return 0. */
1139 static int
1140 alter_access (tree t, tree fdecl, tree access)
1142 tree elem;
1144 if (!DECL_LANG_SPECIFIC (fdecl))
1145 retrofit_lang_decl (fdecl);
1147 gcc_assert (!DECL_DISCRIMINATOR_P (fdecl));
1149 elem = purpose_member (t, DECL_ACCESS (fdecl));
1150 if (elem)
1152 if (TREE_VALUE (elem) != access)
1154 if (TREE_CODE (TREE_TYPE (fdecl)) == FUNCTION_DECL)
1155 error ("conflicting access specifications for method"
1156 " %q+D, ignored", TREE_TYPE (fdecl));
1157 else
1158 error ("conflicting access specifications for field %qE, ignored",
1159 DECL_NAME (fdecl));
1161 else
1163 /* They're changing the access to the same thing they changed
1164 it to before. That's OK. */
1168 else
1170 perform_or_defer_access_check (TYPE_BINFO (t), fdecl, fdecl);
1171 DECL_ACCESS (fdecl) = tree_cons (t, access, DECL_ACCESS (fdecl));
1172 return 1;
1174 return 0;
1177 /* Process the USING_DECL, which is a member of T. */
1179 static void
1180 handle_using_decl (tree using_decl, tree t)
1182 tree decl = USING_DECL_DECLS (using_decl);
1183 tree name = DECL_NAME (using_decl);
1184 tree access
1185 = TREE_PRIVATE (using_decl) ? access_private_node
1186 : TREE_PROTECTED (using_decl) ? access_protected_node
1187 : access_public_node;
1188 tree flist = NULL_TREE;
1189 tree old_value;
1191 gcc_assert (!processing_template_decl && decl);
1193 old_value = lookup_member (t, name, /*protect=*/0, /*want_type=*/false);
1194 if (old_value)
1196 if (is_overloaded_fn (old_value))
1197 old_value = OVL_CURRENT (old_value);
1199 if (DECL_P (old_value) && DECL_CONTEXT (old_value) == t)
1200 /* OK */;
1201 else
1202 old_value = NULL_TREE;
1205 cp_emit_debug_info_for_using (decl, USING_DECL_SCOPE (using_decl));
1207 if (is_overloaded_fn (decl))
1208 flist = decl;
1210 if (! old_value)
1212 else if (is_overloaded_fn (old_value))
1214 if (flist)
1215 /* It's OK to use functions from a base when there are functions with
1216 the same name already present in the current class. */;
1217 else
1219 error ("%q+D invalid in %q#T", using_decl, t);
1220 error (" because of local method %q+#D with same name",
1221 OVL_CURRENT (old_value));
1222 return;
1225 else if (!DECL_ARTIFICIAL (old_value))
1227 error ("%q+D invalid in %q#T", using_decl, t);
1228 error (" because of local member %q+#D with same name", old_value);
1229 return;
1232 /* Make type T see field decl FDECL with access ACCESS. */
1233 if (flist)
1234 for (; flist; flist = OVL_NEXT (flist))
1236 add_method (t, OVL_CURRENT (flist), using_decl);
1237 alter_access (t, OVL_CURRENT (flist), access);
1239 else
1240 alter_access (t, decl, access);
1243 /* Run through the base classes of T, updating CANT_HAVE_CONST_CTOR_P,
1244 and NO_CONST_ASN_REF_P. Also set flag bits in T based on
1245 properties of the bases. */
1247 static void
1248 check_bases (tree t,
1249 int* cant_have_const_ctor_p,
1250 int* no_const_asn_ref_p)
1252 int i;
1253 int seen_non_virtual_nearly_empty_base_p;
1254 tree base_binfo;
1255 tree binfo;
1256 tree field = NULL_TREE;
1258 seen_non_virtual_nearly_empty_base_p = 0;
1260 if (!CLASSTYPE_NON_STD_LAYOUT (t))
1261 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
1262 if (TREE_CODE (field) == FIELD_DECL)
1263 break;
1265 for (binfo = TYPE_BINFO (t), i = 0;
1266 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
1268 tree basetype = TREE_TYPE (base_binfo);
1270 gcc_assert (COMPLETE_TYPE_P (basetype));
1272 /* If any base class is non-literal, so is the derived class. */
1273 if (!CLASSTYPE_LITERAL_P (basetype))
1274 CLASSTYPE_LITERAL_P (t) = false;
1276 /* Effective C++ rule 14. We only need to check TYPE_POLYMORPHIC_P
1277 here because the case of virtual functions but non-virtual
1278 dtor is handled in finish_struct_1. */
1279 if (!TYPE_POLYMORPHIC_P (basetype))
1280 warning (OPT_Weffc__,
1281 "base class %q#T has a non-virtual destructor", basetype);
1283 /* If the base class doesn't have copy constructors or
1284 assignment operators that take const references, then the
1285 derived class cannot have such a member automatically
1286 generated. */
1287 if (TYPE_HAS_COPY_CTOR (basetype)
1288 && ! TYPE_HAS_CONST_COPY_CTOR (basetype))
1289 *cant_have_const_ctor_p = 1;
1290 if (TYPE_HAS_COPY_ASSIGN (basetype)
1291 && !TYPE_HAS_CONST_COPY_ASSIGN (basetype))
1292 *no_const_asn_ref_p = 1;
1294 if (BINFO_VIRTUAL_P (base_binfo))
1295 /* A virtual base does not effect nearly emptiness. */
1297 else if (CLASSTYPE_NEARLY_EMPTY_P (basetype))
1299 if (seen_non_virtual_nearly_empty_base_p)
1300 /* And if there is more than one nearly empty base, then the
1301 derived class is not nearly empty either. */
1302 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
1303 else
1304 /* Remember we've seen one. */
1305 seen_non_virtual_nearly_empty_base_p = 1;
1307 else if (!is_empty_class (basetype))
1308 /* If the base class is not empty or nearly empty, then this
1309 class cannot be nearly empty. */
1310 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
1312 /* A lot of properties from the bases also apply to the derived
1313 class. */
1314 TYPE_NEEDS_CONSTRUCTING (t) |= TYPE_NEEDS_CONSTRUCTING (basetype);
1315 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
1316 |= TYPE_HAS_NONTRIVIAL_DESTRUCTOR (basetype);
1317 TYPE_HAS_COMPLEX_COPY_ASSIGN (t)
1318 |= (TYPE_HAS_COMPLEX_COPY_ASSIGN (basetype)
1319 || !TYPE_HAS_COPY_ASSIGN (basetype));
1320 TYPE_HAS_COMPLEX_COPY_CTOR (t) |= (TYPE_HAS_COMPLEX_COPY_CTOR (basetype)
1321 || !TYPE_HAS_COPY_CTOR (basetype));
1322 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t)
1323 |= TYPE_HAS_COMPLEX_MOVE_ASSIGN (basetype);
1324 TYPE_HAS_COMPLEX_MOVE_CTOR (t) |= TYPE_HAS_COMPLEX_MOVE_CTOR (basetype);
1325 TYPE_POLYMORPHIC_P (t) |= TYPE_POLYMORPHIC_P (basetype);
1326 CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t)
1327 |= CLASSTYPE_CONTAINS_EMPTY_CLASS_P (basetype);
1328 TYPE_HAS_COMPLEX_DFLT (t) |= (!TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype)
1329 || TYPE_HAS_COMPLEX_DFLT (basetype));
1331 /* A standard-layout class is a class that:
1333 * has no non-standard-layout base classes, */
1334 CLASSTYPE_NON_STD_LAYOUT (t) |= CLASSTYPE_NON_STD_LAYOUT (basetype);
1335 if (!CLASSTYPE_NON_STD_LAYOUT (t))
1337 tree basefield;
1338 /* ...has no base classes of the same type as the first non-static
1339 data member... */
1340 if (field && DECL_CONTEXT (field) == t
1341 && (same_type_ignoring_top_level_qualifiers_p
1342 (TREE_TYPE (field), basetype)))
1343 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
1344 else
1345 /* ...either has no non-static data members in the most-derived
1346 class and at most one base class with non-static data
1347 members, or has no base classes with non-static data
1348 members */
1349 for (basefield = TYPE_FIELDS (basetype); basefield;
1350 basefield = DECL_CHAIN (basefield))
1351 if (TREE_CODE (basefield) == FIELD_DECL)
1353 if (field)
1354 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
1355 else
1356 field = basefield;
1357 break;
1363 /* Determine all the primary bases within T. Sets BINFO_PRIMARY_BASE_P for
1364 those that are primaries. Sets BINFO_LOST_PRIMARY_P for those
1365 that have had a nearly-empty virtual primary base stolen by some
1366 other base in the hierarchy. Determines CLASSTYPE_PRIMARY_BASE for
1367 T. */
1369 static void
1370 determine_primary_bases (tree t)
1372 unsigned i;
1373 tree primary = NULL_TREE;
1374 tree type_binfo = TYPE_BINFO (t);
1375 tree base_binfo;
1377 /* Determine the primary bases of our bases. */
1378 for (base_binfo = TREE_CHAIN (type_binfo); base_binfo;
1379 base_binfo = TREE_CHAIN (base_binfo))
1381 tree primary = CLASSTYPE_PRIMARY_BINFO (BINFO_TYPE (base_binfo));
1383 /* See if we're the non-virtual primary of our inheritance
1384 chain. */
1385 if (!BINFO_VIRTUAL_P (base_binfo))
1387 tree parent = BINFO_INHERITANCE_CHAIN (base_binfo);
1388 tree parent_primary = CLASSTYPE_PRIMARY_BINFO (BINFO_TYPE (parent));
1390 if (parent_primary
1391 && SAME_BINFO_TYPE_P (BINFO_TYPE (base_binfo),
1392 BINFO_TYPE (parent_primary)))
1393 /* We are the primary binfo. */
1394 BINFO_PRIMARY_P (base_binfo) = 1;
1396 /* Determine if we have a virtual primary base, and mark it so.
1398 if (primary && BINFO_VIRTUAL_P (primary))
1400 tree this_primary = copied_binfo (primary, base_binfo);
1402 if (BINFO_PRIMARY_P (this_primary))
1403 /* Someone already claimed this base. */
1404 BINFO_LOST_PRIMARY_P (base_binfo) = 1;
1405 else
1407 tree delta;
1409 BINFO_PRIMARY_P (this_primary) = 1;
1410 BINFO_INHERITANCE_CHAIN (this_primary) = base_binfo;
1412 /* A virtual binfo might have been copied from within
1413 another hierarchy. As we're about to use it as a
1414 primary base, make sure the offsets match. */
1415 delta = size_diffop_loc (input_location,
1416 convert (ssizetype,
1417 BINFO_OFFSET (base_binfo)),
1418 convert (ssizetype,
1419 BINFO_OFFSET (this_primary)));
1421 propagate_binfo_offsets (this_primary, delta);
1426 /* First look for a dynamic direct non-virtual base. */
1427 for (i = 0; BINFO_BASE_ITERATE (type_binfo, i, base_binfo); i++)
1429 tree basetype = BINFO_TYPE (base_binfo);
1431 if (TYPE_CONTAINS_VPTR_P (basetype) && !BINFO_VIRTUAL_P (base_binfo))
1433 primary = base_binfo;
1434 goto found;
1438 /* A "nearly-empty" virtual base class can be the primary base
1439 class, if no non-virtual polymorphic base can be found. Look for
1440 a nearly-empty virtual dynamic base that is not already a primary
1441 base of something in the hierarchy. If there is no such base,
1442 just pick the first nearly-empty virtual base. */
1444 for (base_binfo = TREE_CHAIN (type_binfo); base_binfo;
1445 base_binfo = TREE_CHAIN (base_binfo))
1446 if (BINFO_VIRTUAL_P (base_binfo)
1447 && CLASSTYPE_NEARLY_EMPTY_P (BINFO_TYPE (base_binfo)))
1449 if (!BINFO_PRIMARY_P (base_binfo))
1451 /* Found one that is not primary. */
1452 primary = base_binfo;
1453 goto found;
1455 else if (!primary)
1456 /* Remember the first candidate. */
1457 primary = base_binfo;
1460 found:
1461 /* If we've got a primary base, use it. */
1462 if (primary)
1464 tree basetype = BINFO_TYPE (primary);
1466 CLASSTYPE_PRIMARY_BINFO (t) = primary;
1467 if (BINFO_PRIMARY_P (primary))
1468 /* We are stealing a primary base. */
1469 BINFO_LOST_PRIMARY_P (BINFO_INHERITANCE_CHAIN (primary)) = 1;
1470 BINFO_PRIMARY_P (primary) = 1;
1471 if (BINFO_VIRTUAL_P (primary))
1473 tree delta;
1475 BINFO_INHERITANCE_CHAIN (primary) = type_binfo;
1476 /* A virtual binfo might have been copied from within
1477 another hierarchy. As we're about to use it as a primary
1478 base, make sure the offsets match. */
1479 delta = size_diffop_loc (input_location, ssize_int (0),
1480 convert (ssizetype, BINFO_OFFSET (primary)));
1482 propagate_binfo_offsets (primary, delta);
1485 primary = TYPE_BINFO (basetype);
1487 TYPE_VFIELD (t) = TYPE_VFIELD (basetype);
1488 BINFO_VTABLE (type_binfo) = BINFO_VTABLE (primary);
1489 BINFO_VIRTUALS (type_binfo) = BINFO_VIRTUALS (primary);
1493 /* Update the variant types of T. */
1495 void
1496 fixup_type_variants (tree t)
1498 tree variants;
1500 if (!t)
1501 return;
1503 for (variants = TYPE_NEXT_VARIANT (t);
1504 variants;
1505 variants = TYPE_NEXT_VARIANT (variants))
1507 /* These fields are in the _TYPE part of the node, not in
1508 the TYPE_LANG_SPECIFIC component, so they are not shared. */
1509 TYPE_HAS_USER_CONSTRUCTOR (variants) = TYPE_HAS_USER_CONSTRUCTOR (t);
1510 TYPE_NEEDS_CONSTRUCTING (variants) = TYPE_NEEDS_CONSTRUCTING (t);
1511 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (variants)
1512 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t);
1514 TYPE_POLYMORPHIC_P (variants) = TYPE_POLYMORPHIC_P (t);
1516 TYPE_BINFO (variants) = TYPE_BINFO (t);
1518 /* Copy whatever these are holding today. */
1519 TYPE_VFIELD (variants) = TYPE_VFIELD (t);
1520 TYPE_METHODS (variants) = TYPE_METHODS (t);
1521 TYPE_FIELDS (variants) = TYPE_FIELDS (t);
1525 /* Early variant fixups: we apply attributes at the beginning of the class
1526 definition, and we need to fix up any variants that have already been
1527 made via elaborated-type-specifier so that check_qualified_type works. */
1529 void
1530 fixup_attribute_variants (tree t)
1532 tree variants;
1534 if (!t)
1535 return;
1537 for (variants = TYPE_NEXT_VARIANT (t);
1538 variants;
1539 variants = TYPE_NEXT_VARIANT (variants))
1541 /* These are the two fields that check_qualified_type looks at and
1542 are affected by attributes. */
1543 TYPE_ATTRIBUTES (variants) = TYPE_ATTRIBUTES (t);
1544 TYPE_ALIGN (variants) = TYPE_ALIGN (t);
1548 /* Set memoizing fields and bits of T (and its variants) for later
1549 use. */
1551 static void
1552 finish_struct_bits (tree t)
1554 /* Fix up variants (if any). */
1555 fixup_type_variants (t);
1557 if (BINFO_N_BASE_BINFOS (TYPE_BINFO (t)) && TYPE_POLYMORPHIC_P (t))
1558 /* For a class w/o baseclasses, 'finish_struct' has set
1559 CLASSTYPE_PURE_VIRTUALS correctly (by definition).
1560 Similarly for a class whose base classes do not have vtables.
1561 When neither of these is true, we might have removed abstract
1562 virtuals (by providing a definition), added some (by declaring
1563 new ones), or redeclared ones from a base class. We need to
1564 recalculate what's really an abstract virtual at this point (by
1565 looking in the vtables). */
1566 get_pure_virtuals (t);
1568 /* If this type has a copy constructor or a destructor, force its
1569 mode to be BLKmode, and force its TREE_ADDRESSABLE bit to be
1570 nonzero. This will cause it to be passed by invisible reference
1571 and prevent it from being returned in a register. */
1572 if (type_has_nontrivial_copy_init (t)
1573 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t))
1575 tree variants;
1576 DECL_MODE (TYPE_MAIN_DECL (t)) = BLKmode;
1577 for (variants = t; variants; variants = TYPE_NEXT_VARIANT (variants))
1579 SET_TYPE_MODE (variants, BLKmode);
1580 TREE_ADDRESSABLE (variants) = 1;
1585 /* Issue warnings about T having private constructors, but no friends,
1586 and so forth.
1588 HAS_NONPRIVATE_METHOD is nonzero if T has any non-private methods or
1589 static members. HAS_NONPRIVATE_STATIC_FN is nonzero if T has any
1590 non-private static member functions. */
1592 static void
1593 maybe_warn_about_overly_private_class (tree t)
1595 int has_member_fn = 0;
1596 int has_nonprivate_method = 0;
1597 tree fn;
1599 if (!warn_ctor_dtor_privacy
1600 /* If the class has friends, those entities might create and
1601 access instances, so we should not warn. */
1602 || (CLASSTYPE_FRIEND_CLASSES (t)
1603 || DECL_FRIENDLIST (TYPE_MAIN_DECL (t)))
1604 /* We will have warned when the template was declared; there's
1605 no need to warn on every instantiation. */
1606 || CLASSTYPE_TEMPLATE_INSTANTIATION (t))
1607 /* There's no reason to even consider warning about this
1608 class. */
1609 return;
1611 /* We only issue one warning, if more than one applies, because
1612 otherwise, on code like:
1614 class A {
1615 // Oops - forgot `public:'
1616 A();
1617 A(const A&);
1618 ~A();
1621 we warn several times about essentially the same problem. */
1623 /* Check to see if all (non-constructor, non-destructor) member
1624 functions are private. (Since there are no friends or
1625 non-private statics, we can't ever call any of the private member
1626 functions.) */
1627 for (fn = TYPE_METHODS (t); fn; fn = DECL_CHAIN (fn))
1628 /* We're not interested in compiler-generated methods; they don't
1629 provide any way to call private members. */
1630 if (!DECL_ARTIFICIAL (fn))
1632 if (!TREE_PRIVATE (fn))
1634 if (DECL_STATIC_FUNCTION_P (fn))
1635 /* A non-private static member function is just like a
1636 friend; it can create and invoke private member
1637 functions, and be accessed without a class
1638 instance. */
1639 return;
1641 has_nonprivate_method = 1;
1642 /* Keep searching for a static member function. */
1644 else if (!DECL_CONSTRUCTOR_P (fn) && !DECL_DESTRUCTOR_P (fn))
1645 has_member_fn = 1;
1648 if (!has_nonprivate_method && has_member_fn)
1650 /* There are no non-private methods, and there's at least one
1651 private member function that isn't a constructor or
1652 destructor. (If all the private members are
1653 constructors/destructors we want to use the code below that
1654 issues error messages specifically referring to
1655 constructors/destructors.) */
1656 unsigned i;
1657 tree binfo = TYPE_BINFO (t);
1659 for (i = 0; i != BINFO_N_BASE_BINFOS (binfo); i++)
1660 if (BINFO_BASE_ACCESS (binfo, i) != access_private_node)
1662 has_nonprivate_method = 1;
1663 break;
1665 if (!has_nonprivate_method)
1667 warning (OPT_Wctor_dtor_privacy,
1668 "all member functions in class %qT are private", t);
1669 return;
1673 /* Even if some of the member functions are non-private, the class
1674 won't be useful for much if all the constructors or destructors
1675 are private: such an object can never be created or destroyed. */
1676 fn = CLASSTYPE_DESTRUCTORS (t);
1677 if (fn && TREE_PRIVATE (fn))
1679 warning (OPT_Wctor_dtor_privacy,
1680 "%q#T only defines a private destructor and has no friends",
1682 return;
1685 /* Warn about classes that have private constructors and no friends. */
1686 if (TYPE_HAS_USER_CONSTRUCTOR (t)
1687 /* Implicitly generated constructors are always public. */
1688 && (!CLASSTYPE_LAZY_DEFAULT_CTOR (t)
1689 || !CLASSTYPE_LAZY_COPY_CTOR (t)))
1691 int nonprivate_ctor = 0;
1693 /* If a non-template class does not define a copy
1694 constructor, one is defined for it, enabling it to avoid
1695 this warning. For a template class, this does not
1696 happen, and so we would normally get a warning on:
1698 template <class T> class C { private: C(); };
1700 To avoid this asymmetry, we check TYPE_HAS_COPY_CTOR. All
1701 complete non-template or fully instantiated classes have this
1702 flag set. */
1703 if (!TYPE_HAS_COPY_CTOR (t))
1704 nonprivate_ctor = 1;
1705 else
1706 for (fn = CLASSTYPE_CONSTRUCTORS (t); fn; fn = OVL_NEXT (fn))
1708 tree ctor = OVL_CURRENT (fn);
1709 /* Ideally, we wouldn't count copy constructors (or, in
1710 fact, any constructor that takes an argument of the
1711 class type as a parameter) because such things cannot
1712 be used to construct an instance of the class unless
1713 you already have one. But, for now at least, we're
1714 more generous. */
1715 if (! TREE_PRIVATE (ctor))
1717 nonprivate_ctor = 1;
1718 break;
1722 if (nonprivate_ctor == 0)
1724 warning (OPT_Wctor_dtor_privacy,
1725 "%q#T only defines private constructors and has no friends",
1727 return;
1732 static struct {
1733 gt_pointer_operator new_value;
1734 void *cookie;
1735 } resort_data;
1737 /* Comparison function to compare two TYPE_METHOD_VEC entries by name. */
1739 static int
1740 method_name_cmp (const void* m1_p, const void* m2_p)
1742 const tree *const m1 = (const tree *) m1_p;
1743 const tree *const m2 = (const tree *) m2_p;
1745 if (*m1 == NULL_TREE && *m2 == NULL_TREE)
1746 return 0;
1747 if (*m1 == NULL_TREE)
1748 return -1;
1749 if (*m2 == NULL_TREE)
1750 return 1;
1751 if (DECL_NAME (OVL_CURRENT (*m1)) < DECL_NAME (OVL_CURRENT (*m2)))
1752 return -1;
1753 return 1;
1756 /* This routine compares two fields like method_name_cmp but using the
1757 pointer operator in resort_field_decl_data. */
1759 static int
1760 resort_method_name_cmp (const void* m1_p, const void* m2_p)
1762 const tree *const m1 = (const tree *) m1_p;
1763 const tree *const m2 = (const tree *) m2_p;
1764 if (*m1 == NULL_TREE && *m2 == NULL_TREE)
1765 return 0;
1766 if (*m1 == NULL_TREE)
1767 return -1;
1768 if (*m2 == NULL_TREE)
1769 return 1;
1771 tree d1 = DECL_NAME (OVL_CURRENT (*m1));
1772 tree d2 = DECL_NAME (OVL_CURRENT (*m2));
1773 resort_data.new_value (&d1, resort_data.cookie);
1774 resort_data.new_value (&d2, resort_data.cookie);
1775 if (d1 < d2)
1776 return -1;
1778 return 1;
1781 /* Resort TYPE_METHOD_VEC because pointers have been reordered. */
1783 void
1784 resort_type_method_vec (void* obj,
1785 void* orig_obj ATTRIBUTE_UNUSED ,
1786 gt_pointer_operator new_value,
1787 void* cookie)
1789 VEC(tree,gc) *method_vec = (VEC(tree,gc) *) obj;
1790 int len = VEC_length (tree, method_vec);
1791 size_t slot;
1792 tree fn;
1794 /* The type conversion ops have to live at the front of the vec, so we
1795 can't sort them. */
1796 for (slot = CLASSTYPE_FIRST_CONVERSION_SLOT;
1797 VEC_iterate (tree, method_vec, slot, fn);
1798 ++slot)
1799 if (!DECL_CONV_FN_P (OVL_CURRENT (fn)))
1800 break;
1802 if (len - slot > 1)
1804 resort_data.new_value = new_value;
1805 resort_data.cookie = cookie;
1806 qsort (VEC_address (tree, method_vec) + slot, len - slot, sizeof (tree),
1807 resort_method_name_cmp);
1811 /* Warn about duplicate methods in fn_fields.
1813 Sort methods that are not special (i.e., constructors, destructors,
1814 and type conversion operators) so that we can find them faster in
1815 search. */
1817 static void
1818 finish_struct_methods (tree t)
1820 tree fn_fields;
1821 VEC(tree,gc) *method_vec;
1822 int slot, len;
1824 method_vec = CLASSTYPE_METHOD_VEC (t);
1825 if (!method_vec)
1826 return;
1828 len = VEC_length (tree, method_vec);
1830 /* Clear DECL_IN_AGGR_P for all functions. */
1831 for (fn_fields = TYPE_METHODS (t); fn_fields;
1832 fn_fields = DECL_CHAIN (fn_fields))
1833 DECL_IN_AGGR_P (fn_fields) = 0;
1835 /* Issue warnings about private constructors and such. If there are
1836 no methods, then some public defaults are generated. */
1837 maybe_warn_about_overly_private_class (t);
1839 /* The type conversion ops have to live at the front of the vec, so we
1840 can't sort them. */
1841 for (slot = CLASSTYPE_FIRST_CONVERSION_SLOT;
1842 VEC_iterate (tree, method_vec, slot, fn_fields);
1843 ++slot)
1844 if (!DECL_CONV_FN_P (OVL_CURRENT (fn_fields)))
1845 break;
1846 if (len - slot > 1)
1847 qsort (VEC_address (tree, method_vec) + slot,
1848 len-slot, sizeof (tree), method_name_cmp);
1851 /* Make BINFO's vtable have N entries, including RTTI entries,
1852 vbase and vcall offsets, etc. Set its type and call the back end
1853 to lay it out. */
1855 static void
1856 layout_vtable_decl (tree binfo, int n)
1858 tree atype;
1859 tree vtable;
1861 atype = build_cplus_array_type (vtable_entry_type,
1862 build_index_type (size_int (n - 1)));
1863 layout_type (atype);
1865 /* We may have to grow the vtable. */
1866 vtable = get_vtbl_decl_for_binfo (binfo);
1867 if (!same_type_p (TREE_TYPE (vtable), atype))
1869 TREE_TYPE (vtable) = atype;
1870 DECL_SIZE (vtable) = DECL_SIZE_UNIT (vtable) = NULL_TREE;
1871 layout_decl (vtable, 0);
1875 /* True iff FNDECL and BASE_FNDECL (both non-static member functions)
1876 have the same signature. */
1879 same_signature_p (const_tree fndecl, const_tree base_fndecl)
1881 /* One destructor overrides another if they are the same kind of
1882 destructor. */
1883 if (DECL_DESTRUCTOR_P (base_fndecl) && DECL_DESTRUCTOR_P (fndecl)
1884 && special_function_p (base_fndecl) == special_function_p (fndecl))
1885 return 1;
1886 /* But a non-destructor never overrides a destructor, nor vice
1887 versa, nor do different kinds of destructors override
1888 one-another. For example, a complete object destructor does not
1889 override a deleting destructor. */
1890 if (DECL_DESTRUCTOR_P (base_fndecl) || DECL_DESTRUCTOR_P (fndecl))
1891 return 0;
1893 if (DECL_NAME (fndecl) == DECL_NAME (base_fndecl)
1894 || (DECL_CONV_FN_P (fndecl)
1895 && DECL_CONV_FN_P (base_fndecl)
1896 && same_type_p (DECL_CONV_FN_TYPE (fndecl),
1897 DECL_CONV_FN_TYPE (base_fndecl))))
1899 tree types, base_types;
1900 types = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
1901 base_types = TYPE_ARG_TYPES (TREE_TYPE (base_fndecl));
1902 if ((cp_type_quals (TREE_TYPE (TREE_VALUE (base_types)))
1903 == cp_type_quals (TREE_TYPE (TREE_VALUE (types))))
1904 && compparms (TREE_CHAIN (base_types), TREE_CHAIN (types)))
1905 return 1;
1907 return 0;
1910 /* Returns TRUE if DERIVED is a binfo containing the binfo BASE as a
1911 subobject. */
1913 static bool
1914 base_derived_from (tree derived, tree base)
1916 tree probe;
1918 for (probe = base; probe; probe = BINFO_INHERITANCE_CHAIN (probe))
1920 if (probe == derived)
1921 return true;
1922 else if (BINFO_VIRTUAL_P (probe))
1923 /* If we meet a virtual base, we can't follow the inheritance
1924 any more. See if the complete type of DERIVED contains
1925 such a virtual base. */
1926 return (binfo_for_vbase (BINFO_TYPE (probe), BINFO_TYPE (derived))
1927 != NULL_TREE);
1929 return false;
1932 typedef struct find_final_overrider_data_s {
1933 /* The function for which we are trying to find a final overrider. */
1934 tree fn;
1935 /* The base class in which the function was declared. */
1936 tree declaring_base;
1937 /* The candidate overriders. */
1938 tree candidates;
1939 /* Path to most derived. */
1940 VEC(tree,heap) *path;
1941 } find_final_overrider_data;
1943 /* Add the overrider along the current path to FFOD->CANDIDATES.
1944 Returns true if an overrider was found; false otherwise. */
1946 static bool
1947 dfs_find_final_overrider_1 (tree binfo,
1948 find_final_overrider_data *ffod,
1949 unsigned depth)
1951 tree method;
1953 /* If BINFO is not the most derived type, try a more derived class.
1954 A definition there will overrider a definition here. */
1955 if (depth)
1957 depth--;
1958 if (dfs_find_final_overrider_1
1959 (VEC_index (tree, ffod->path, depth), ffod, depth))
1960 return true;
1963 method = look_for_overrides_here (BINFO_TYPE (binfo), ffod->fn);
1964 if (method)
1966 tree *candidate = &ffod->candidates;
1968 /* Remove any candidates overridden by this new function. */
1969 while (*candidate)
1971 /* If *CANDIDATE overrides METHOD, then METHOD
1972 cannot override anything else on the list. */
1973 if (base_derived_from (TREE_VALUE (*candidate), binfo))
1974 return true;
1975 /* If METHOD overrides *CANDIDATE, remove *CANDIDATE. */
1976 if (base_derived_from (binfo, TREE_VALUE (*candidate)))
1977 *candidate = TREE_CHAIN (*candidate);
1978 else
1979 candidate = &TREE_CHAIN (*candidate);
1982 /* Add the new function. */
1983 ffod->candidates = tree_cons (method, binfo, ffod->candidates);
1984 return true;
1987 return false;
1990 /* Called from find_final_overrider via dfs_walk. */
1992 static tree
1993 dfs_find_final_overrider_pre (tree binfo, void *data)
1995 find_final_overrider_data *ffod = (find_final_overrider_data *) data;
1997 if (binfo == ffod->declaring_base)
1998 dfs_find_final_overrider_1 (binfo, ffod, VEC_length (tree, ffod->path));
1999 VEC_safe_push (tree, heap, ffod->path, binfo);
2001 return NULL_TREE;
2004 static tree
2005 dfs_find_final_overrider_post (tree binfo ATTRIBUTE_UNUSED, void *data)
2007 find_final_overrider_data *ffod = (find_final_overrider_data *) data;
2008 VEC_pop (tree, ffod->path);
2010 return NULL_TREE;
2013 /* Returns a TREE_LIST whose TREE_PURPOSE is the final overrider for
2014 FN and whose TREE_VALUE is the binfo for the base where the
2015 overriding occurs. BINFO (in the hierarchy dominated by the binfo
2016 DERIVED) is the base object in which FN is declared. */
2018 static tree
2019 find_final_overrider (tree derived, tree binfo, tree fn)
2021 find_final_overrider_data ffod;
2023 /* Getting this right is a little tricky. This is valid:
2025 struct S { virtual void f (); };
2026 struct T { virtual void f (); };
2027 struct U : public S, public T { };
2029 even though calling `f' in `U' is ambiguous. But,
2031 struct R { virtual void f(); };
2032 struct S : virtual public R { virtual void f (); };
2033 struct T : virtual public R { virtual void f (); };
2034 struct U : public S, public T { };
2036 is not -- there's no way to decide whether to put `S::f' or
2037 `T::f' in the vtable for `R'.
2039 The solution is to look at all paths to BINFO. If we find
2040 different overriders along any two, then there is a problem. */
2041 if (DECL_THUNK_P (fn))
2042 fn = THUNK_TARGET (fn);
2044 /* Determine the depth of the hierarchy. */
2045 ffod.fn = fn;
2046 ffod.declaring_base = binfo;
2047 ffod.candidates = NULL_TREE;
2048 ffod.path = VEC_alloc (tree, heap, 30);
2050 dfs_walk_all (derived, dfs_find_final_overrider_pre,
2051 dfs_find_final_overrider_post, &ffod);
2053 VEC_free (tree, heap, ffod.path);
2055 /* If there was no winner, issue an error message. */
2056 if (!ffod.candidates || TREE_CHAIN (ffod.candidates))
2057 return error_mark_node;
2059 return ffod.candidates;
2062 /* Return the index of the vcall offset for FN when TYPE is used as a
2063 virtual base. */
2065 static tree
2066 get_vcall_index (tree fn, tree type)
2068 VEC(tree_pair_s,gc) *indices = CLASSTYPE_VCALL_INDICES (type);
2069 tree_pair_p p;
2070 unsigned ix;
2072 FOR_EACH_VEC_ELT (tree_pair_s, indices, ix, p)
2073 if ((DECL_DESTRUCTOR_P (fn) && DECL_DESTRUCTOR_P (p->purpose))
2074 || same_signature_p (fn, p->purpose))
2075 return p->value;
2077 /* There should always be an appropriate index. */
2078 gcc_unreachable ();
2081 /* Update an entry in the vtable for BINFO, which is in the hierarchy
2082 dominated by T. FN is the old function; VIRTUALS points to the
2083 corresponding position in the new BINFO_VIRTUALS list. IX is the index
2084 of that entry in the list. */
2086 static void
2087 update_vtable_entry_for_fn (tree t, tree binfo, tree fn, tree* virtuals,
2088 unsigned ix)
2090 tree b;
2091 tree overrider;
2092 tree delta;
2093 tree virtual_base;
2094 tree first_defn;
2095 tree overrider_fn, overrider_target;
2096 tree target_fn = DECL_THUNK_P (fn) ? THUNK_TARGET (fn) : fn;
2097 tree over_return, base_return;
2098 bool lost = false;
2100 /* Find the nearest primary base (possibly binfo itself) which defines
2101 this function; this is the class the caller will convert to when
2102 calling FN through BINFO. */
2103 for (b = binfo; ; b = get_primary_binfo (b))
2105 gcc_assert (b);
2106 if (look_for_overrides_here (BINFO_TYPE (b), target_fn))
2107 break;
2109 /* The nearest definition is from a lost primary. */
2110 if (BINFO_LOST_PRIMARY_P (b))
2111 lost = true;
2113 first_defn = b;
2115 /* Find the final overrider. */
2116 overrider = find_final_overrider (TYPE_BINFO (t), b, target_fn);
2117 if (overrider == error_mark_node)
2119 error ("no unique final overrider for %qD in %qT", target_fn, t);
2120 return;
2122 overrider_target = overrider_fn = TREE_PURPOSE (overrider);
2124 /* Check for adjusting covariant return types. */
2125 over_return = TREE_TYPE (TREE_TYPE (overrider_target));
2126 base_return = TREE_TYPE (TREE_TYPE (target_fn));
2128 if (POINTER_TYPE_P (over_return)
2129 && TREE_CODE (over_return) == TREE_CODE (base_return)
2130 && CLASS_TYPE_P (TREE_TYPE (over_return))
2131 && CLASS_TYPE_P (TREE_TYPE (base_return))
2132 /* If the overrider is invalid, don't even try. */
2133 && !DECL_INVALID_OVERRIDER_P (overrider_target))
2135 /* If FN is a covariant thunk, we must figure out the adjustment
2136 to the final base FN was converting to. As OVERRIDER_TARGET might
2137 also be converting to the return type of FN, we have to
2138 combine the two conversions here. */
2139 tree fixed_offset, virtual_offset;
2141 over_return = TREE_TYPE (over_return);
2142 base_return = TREE_TYPE (base_return);
2144 if (DECL_THUNK_P (fn))
2146 gcc_assert (DECL_RESULT_THUNK_P (fn));
2147 fixed_offset = ssize_int (THUNK_FIXED_OFFSET (fn));
2148 virtual_offset = THUNK_VIRTUAL_OFFSET (fn);
2150 else
2151 fixed_offset = virtual_offset = NULL_TREE;
2153 if (virtual_offset)
2154 /* Find the equivalent binfo within the return type of the
2155 overriding function. We will want the vbase offset from
2156 there. */
2157 virtual_offset = binfo_for_vbase (BINFO_TYPE (virtual_offset),
2158 over_return);
2159 else if (!same_type_ignoring_top_level_qualifiers_p
2160 (over_return, base_return))
2162 /* There was no existing virtual thunk (which takes
2163 precedence). So find the binfo of the base function's
2164 return type within the overriding function's return type.
2165 We cannot call lookup base here, because we're inside a
2166 dfs_walk, and will therefore clobber the BINFO_MARKED
2167 flags. Fortunately we know the covariancy is valid (it
2168 has already been checked), so we can just iterate along
2169 the binfos, which have been chained in inheritance graph
2170 order. Of course it is lame that we have to repeat the
2171 search here anyway -- we should really be caching pieces
2172 of the vtable and avoiding this repeated work. */
2173 tree thunk_binfo, base_binfo;
2175 /* Find the base binfo within the overriding function's
2176 return type. We will always find a thunk_binfo, except
2177 when the covariancy is invalid (which we will have
2178 already diagnosed). */
2179 for (base_binfo = TYPE_BINFO (base_return),
2180 thunk_binfo = TYPE_BINFO (over_return);
2181 thunk_binfo;
2182 thunk_binfo = TREE_CHAIN (thunk_binfo))
2183 if (SAME_BINFO_TYPE_P (BINFO_TYPE (thunk_binfo),
2184 BINFO_TYPE (base_binfo)))
2185 break;
2187 /* See if virtual inheritance is involved. */
2188 for (virtual_offset = thunk_binfo;
2189 virtual_offset;
2190 virtual_offset = BINFO_INHERITANCE_CHAIN (virtual_offset))
2191 if (BINFO_VIRTUAL_P (virtual_offset))
2192 break;
2194 if (virtual_offset
2195 || (thunk_binfo && !BINFO_OFFSET_ZEROP (thunk_binfo)))
2197 tree offset = convert (ssizetype, BINFO_OFFSET (thunk_binfo));
2199 if (virtual_offset)
2201 /* We convert via virtual base. Adjust the fixed
2202 offset to be from there. */
2203 offset =
2204 size_diffop (offset,
2205 convert (ssizetype,
2206 BINFO_OFFSET (virtual_offset)));
2208 if (fixed_offset)
2209 /* There was an existing fixed offset, this must be
2210 from the base just converted to, and the base the
2211 FN was thunking to. */
2212 fixed_offset = size_binop (PLUS_EXPR, fixed_offset, offset);
2213 else
2214 fixed_offset = offset;
2218 if (fixed_offset || virtual_offset)
2219 /* Replace the overriding function with a covariant thunk. We
2220 will emit the overriding function in its own slot as
2221 well. */
2222 overrider_fn = make_thunk (overrider_target, /*this_adjusting=*/0,
2223 fixed_offset, virtual_offset);
2225 else
2226 gcc_assert (DECL_INVALID_OVERRIDER_P (overrider_target) ||
2227 !DECL_THUNK_P (fn));
2229 /* If we need a covariant thunk, then we may need to adjust first_defn.
2230 The ABI specifies that the thunks emitted with a function are
2231 determined by which bases the function overrides, so we need to be
2232 sure that we're using a thunk for some overridden base; even if we
2233 know that the necessary this adjustment is zero, there may not be an
2234 appropriate zero-this-adjusment thunk for us to use since thunks for
2235 overriding virtual bases always use the vcall offset.
2237 Furthermore, just choosing any base that overrides this function isn't
2238 quite right, as this slot won't be used for calls through a type that
2239 puts a covariant thunk here. Calling the function through such a type
2240 will use a different slot, and that slot is the one that determines
2241 the thunk emitted for that base.
2243 So, keep looking until we find the base that we're really overriding
2244 in this slot: the nearest primary base that doesn't use a covariant
2245 thunk in this slot. */
2246 if (overrider_target != overrider_fn)
2248 if (BINFO_TYPE (b) == DECL_CONTEXT (overrider_target))
2249 /* We already know that the overrider needs a covariant thunk. */
2250 b = get_primary_binfo (b);
2251 for (; ; b = get_primary_binfo (b))
2253 tree main_binfo = TYPE_BINFO (BINFO_TYPE (b));
2254 tree bv = chain_index (ix, BINFO_VIRTUALS (main_binfo));
2255 if (BINFO_LOST_PRIMARY_P (b))
2256 lost = true;
2257 if (!DECL_THUNK_P (TREE_VALUE (bv)))
2258 break;
2260 first_defn = b;
2263 /* Assume that we will produce a thunk that convert all the way to
2264 the final overrider, and not to an intermediate virtual base. */
2265 virtual_base = NULL_TREE;
2267 /* See if we can convert to an intermediate virtual base first, and then
2268 use the vcall offset located there to finish the conversion. */
2269 for (; b; b = BINFO_INHERITANCE_CHAIN (b))
2271 /* If we find the final overrider, then we can stop
2272 walking. */
2273 if (SAME_BINFO_TYPE_P (BINFO_TYPE (b),
2274 BINFO_TYPE (TREE_VALUE (overrider))))
2275 break;
2277 /* If we find a virtual base, and we haven't yet found the
2278 overrider, then there is a virtual base between the
2279 declaring base (first_defn) and the final overrider. */
2280 if (BINFO_VIRTUAL_P (b))
2282 virtual_base = b;
2283 break;
2287 /* Compute the constant adjustment to the `this' pointer. The
2288 `this' pointer, when this function is called, will point at BINFO
2289 (or one of its primary bases, which are at the same offset). */
2290 if (virtual_base)
2291 /* The `this' pointer needs to be adjusted from the declaration to
2292 the nearest virtual base. */
2293 delta = size_diffop_loc (input_location,
2294 convert (ssizetype, BINFO_OFFSET (virtual_base)),
2295 convert (ssizetype, BINFO_OFFSET (first_defn)));
2296 else if (lost)
2297 /* If the nearest definition is in a lost primary, we don't need an
2298 entry in our vtable. Except possibly in a constructor vtable,
2299 if we happen to get our primary back. In that case, the offset
2300 will be zero, as it will be a primary base. */
2301 delta = size_zero_node;
2302 else
2303 /* The `this' pointer needs to be adjusted from pointing to
2304 BINFO to pointing at the base where the final overrider
2305 appears. */
2306 delta = size_diffop_loc (input_location,
2307 convert (ssizetype,
2308 BINFO_OFFSET (TREE_VALUE (overrider))),
2309 convert (ssizetype, BINFO_OFFSET (binfo)));
2311 modify_vtable_entry (t, binfo, overrider_fn, delta, virtuals);
2313 if (virtual_base)
2314 BV_VCALL_INDEX (*virtuals)
2315 = get_vcall_index (overrider_target, BINFO_TYPE (virtual_base));
2316 else
2317 BV_VCALL_INDEX (*virtuals) = NULL_TREE;
2319 if (lost)
2320 BV_LOST_PRIMARY (*virtuals) = true;
2323 /* Called from modify_all_vtables via dfs_walk. */
2325 static tree
2326 dfs_modify_vtables (tree binfo, void* data)
2328 tree t = (tree) data;
2329 tree virtuals;
2330 tree old_virtuals;
2331 unsigned ix;
2333 if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
2334 /* A base without a vtable needs no modification, and its bases
2335 are uninteresting. */
2336 return dfs_skip_bases;
2338 if (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), t)
2339 && !CLASSTYPE_HAS_PRIMARY_BASE_P (t))
2340 /* Don't do the primary vtable, if it's new. */
2341 return NULL_TREE;
2343 if (BINFO_PRIMARY_P (binfo) && !BINFO_VIRTUAL_P (binfo))
2344 /* There's no need to modify the vtable for a non-virtual primary
2345 base; we're not going to use that vtable anyhow. We do still
2346 need to do this for virtual primary bases, as they could become
2347 non-primary in a construction vtable. */
2348 return NULL_TREE;
2350 make_new_vtable (t, binfo);
2352 /* Now, go through each of the virtual functions in the virtual
2353 function table for BINFO. Find the final overrider, and update
2354 the BINFO_VIRTUALS list appropriately. */
2355 for (ix = 0, virtuals = BINFO_VIRTUALS (binfo),
2356 old_virtuals = BINFO_VIRTUALS (TYPE_BINFO (BINFO_TYPE (binfo)));
2357 virtuals;
2358 ix++, virtuals = TREE_CHAIN (virtuals),
2359 old_virtuals = TREE_CHAIN (old_virtuals))
2360 update_vtable_entry_for_fn (t,
2361 binfo,
2362 BV_FN (old_virtuals),
2363 &virtuals, ix);
2365 return NULL_TREE;
2368 /* Update all of the primary and secondary vtables for T. Create new
2369 vtables as required, and initialize their RTTI information. Each
2370 of the functions in VIRTUALS is declared in T and may override a
2371 virtual function from a base class; find and modify the appropriate
2372 entries to point to the overriding functions. Returns a list, in
2373 declaration order, of the virtual functions that are declared in T,
2374 but do not appear in the primary base class vtable, and which
2375 should therefore be appended to the end of the vtable for T. */
2377 static tree
2378 modify_all_vtables (tree t, tree virtuals)
2380 tree binfo = TYPE_BINFO (t);
2381 tree *fnsp;
2383 /* Update all of the vtables. */
2384 dfs_walk_once (binfo, dfs_modify_vtables, NULL, t);
2386 /* Add virtual functions not already in our primary vtable. These
2387 will be both those introduced by this class, and those overridden
2388 from secondary bases. It does not include virtuals merely
2389 inherited from secondary bases. */
2390 for (fnsp = &virtuals; *fnsp; )
2392 tree fn = TREE_VALUE (*fnsp);
2394 if (!value_member (fn, BINFO_VIRTUALS (binfo))
2395 || DECL_VINDEX (fn) == error_mark_node)
2397 /* We don't need to adjust the `this' pointer when
2398 calling this function. */
2399 BV_DELTA (*fnsp) = integer_zero_node;
2400 BV_VCALL_INDEX (*fnsp) = NULL_TREE;
2402 /* This is a function not already in our vtable. Keep it. */
2403 fnsp = &TREE_CHAIN (*fnsp);
2405 else
2406 /* We've already got an entry for this function. Skip it. */
2407 *fnsp = TREE_CHAIN (*fnsp);
2410 return virtuals;
2413 /* Get the base virtual function declarations in T that have the
2414 indicated NAME. */
2416 static tree
2417 get_basefndecls (tree name, tree t)
2419 tree methods;
2420 tree base_fndecls = NULL_TREE;
2421 int n_baseclasses = BINFO_N_BASE_BINFOS (TYPE_BINFO (t));
2422 int i;
2424 /* Find virtual functions in T with the indicated NAME. */
2425 i = lookup_fnfields_1 (t, name);
2426 if (i != -1)
2427 for (methods = VEC_index (tree, CLASSTYPE_METHOD_VEC (t), i);
2428 methods;
2429 methods = OVL_NEXT (methods))
2431 tree method = OVL_CURRENT (methods);
2433 if (TREE_CODE (method) == FUNCTION_DECL
2434 && DECL_VINDEX (method))
2435 base_fndecls = tree_cons (NULL_TREE, method, base_fndecls);
2438 if (base_fndecls)
2439 return base_fndecls;
2441 for (i = 0; i < n_baseclasses; i++)
2443 tree basetype = BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (t), i));
2444 base_fndecls = chainon (get_basefndecls (name, basetype),
2445 base_fndecls);
2448 return base_fndecls;
2451 /* If this declaration supersedes the declaration of
2452 a method declared virtual in the base class, then
2453 mark this field as being virtual as well. */
2455 void
2456 check_for_override (tree decl, tree ctype)
2458 if (TREE_CODE (decl) == TEMPLATE_DECL)
2459 /* In [temp.mem] we have:
2461 A specialization of a member function template does not
2462 override a virtual function from a base class. */
2463 return;
2464 if ((DECL_DESTRUCTOR_P (decl)
2465 || IDENTIFIER_VIRTUAL_P (DECL_NAME (decl))
2466 || DECL_CONV_FN_P (decl))
2467 && look_for_overrides (ctype, decl)
2468 && !DECL_STATIC_FUNCTION_P (decl))
2469 /* Set DECL_VINDEX to a value that is neither an INTEGER_CST nor
2470 the error_mark_node so that we know it is an overriding
2471 function. */
2472 DECL_VINDEX (decl) = decl;
2474 if (DECL_VIRTUAL_P (decl))
2476 if (!DECL_VINDEX (decl))
2477 DECL_VINDEX (decl) = error_mark_node;
2478 IDENTIFIER_VIRTUAL_P (DECL_NAME (decl)) = 1;
2482 /* Warn about hidden virtual functions that are not overridden in t.
2483 We know that constructors and destructors don't apply. */
2485 static void
2486 warn_hidden (tree t)
2488 VEC(tree,gc) *method_vec = CLASSTYPE_METHOD_VEC (t);
2489 tree fns;
2490 size_t i;
2492 /* We go through each separately named virtual function. */
2493 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
2494 VEC_iterate (tree, method_vec, i, fns);
2495 ++i)
2497 tree fn;
2498 tree name;
2499 tree fndecl;
2500 tree base_fndecls;
2501 tree base_binfo;
2502 tree binfo;
2503 int j;
2505 /* All functions in this slot in the CLASSTYPE_METHOD_VEC will
2506 have the same name. Figure out what name that is. */
2507 name = DECL_NAME (OVL_CURRENT (fns));
2508 /* There are no possibly hidden functions yet. */
2509 base_fndecls = NULL_TREE;
2510 /* Iterate through all of the base classes looking for possibly
2511 hidden functions. */
2512 for (binfo = TYPE_BINFO (t), j = 0;
2513 BINFO_BASE_ITERATE (binfo, j, base_binfo); j++)
2515 tree basetype = BINFO_TYPE (base_binfo);
2516 base_fndecls = chainon (get_basefndecls (name, basetype),
2517 base_fndecls);
2520 /* If there are no functions to hide, continue. */
2521 if (!base_fndecls)
2522 continue;
2524 /* Remove any overridden functions. */
2525 for (fn = fns; fn; fn = OVL_NEXT (fn))
2527 fndecl = OVL_CURRENT (fn);
2528 if (DECL_VINDEX (fndecl))
2530 tree *prev = &base_fndecls;
2532 while (*prev)
2533 /* If the method from the base class has the same
2534 signature as the method from the derived class, it
2535 has been overridden. */
2536 if (same_signature_p (fndecl, TREE_VALUE (*prev)))
2537 *prev = TREE_CHAIN (*prev);
2538 else
2539 prev = &TREE_CHAIN (*prev);
2543 /* Now give a warning for all base functions without overriders,
2544 as they are hidden. */
2545 while (base_fndecls)
2547 /* Here we know it is a hider, and no overrider exists. */
2548 warning (OPT_Woverloaded_virtual, "%q+D was hidden", TREE_VALUE (base_fndecls));
2549 warning (OPT_Woverloaded_virtual, " by %q+D", fns);
2550 base_fndecls = TREE_CHAIN (base_fndecls);
2555 /* Check for things that are invalid. There are probably plenty of other
2556 things we should check for also. */
2558 static void
2559 finish_struct_anon (tree t)
2561 tree field;
2563 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
2565 if (TREE_STATIC (field))
2566 continue;
2567 if (TREE_CODE (field) != FIELD_DECL)
2568 continue;
2570 if (DECL_NAME (field) == NULL_TREE
2571 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
2573 bool is_union = TREE_CODE (TREE_TYPE (field)) == UNION_TYPE;
2574 tree elt = TYPE_FIELDS (TREE_TYPE (field));
2575 for (; elt; elt = DECL_CHAIN (elt))
2577 /* We're generally only interested in entities the user
2578 declared, but we also find nested classes by noticing
2579 the TYPE_DECL that we create implicitly. You're
2580 allowed to put one anonymous union inside another,
2581 though, so we explicitly tolerate that. We use
2582 TYPE_ANONYMOUS_P rather than ANON_AGGR_TYPE_P so that
2583 we also allow unnamed types used for defining fields. */
2584 if (DECL_ARTIFICIAL (elt)
2585 && (!DECL_IMPLICIT_TYPEDEF_P (elt)
2586 || TYPE_ANONYMOUS_P (TREE_TYPE (elt))))
2587 continue;
2589 if (TREE_CODE (elt) != FIELD_DECL)
2591 if (is_union)
2592 permerror (input_location, "%q+#D invalid; an anonymous union can "
2593 "only have non-static data members", elt);
2594 else
2595 permerror (input_location, "%q+#D invalid; an anonymous struct can "
2596 "only have non-static data members", elt);
2597 continue;
2600 if (TREE_PRIVATE (elt))
2602 if (is_union)
2603 permerror (input_location, "private member %q+#D in anonymous union", elt);
2604 else
2605 permerror (input_location, "private member %q+#D in anonymous struct", elt);
2607 else if (TREE_PROTECTED (elt))
2609 if (is_union)
2610 permerror (input_location, "protected member %q+#D in anonymous union", elt);
2611 else
2612 permerror (input_location, "protected member %q+#D in anonymous struct", elt);
2615 TREE_PRIVATE (elt) = TREE_PRIVATE (field);
2616 TREE_PROTECTED (elt) = TREE_PROTECTED (field);
2622 /* Add T to CLASSTYPE_DECL_LIST of current_class_type which
2623 will be used later during class template instantiation.
2624 When FRIEND_P is zero, T can be a static member data (VAR_DECL),
2625 a non-static member data (FIELD_DECL), a member function
2626 (FUNCTION_DECL), a nested type (RECORD_TYPE, ENUM_TYPE),
2627 a typedef (TYPE_DECL) or a member class template (TEMPLATE_DECL)
2628 When FRIEND_P is nonzero, T is either a friend class
2629 (RECORD_TYPE, TEMPLATE_DECL) or a friend function
2630 (FUNCTION_DECL, TEMPLATE_DECL). */
2632 void
2633 maybe_add_class_template_decl_list (tree type, tree t, int friend_p)
2635 /* Save some memory by not creating TREE_LIST if TYPE is not template. */
2636 if (CLASSTYPE_TEMPLATE_INFO (type))
2637 CLASSTYPE_DECL_LIST (type)
2638 = tree_cons (friend_p ? NULL_TREE : type,
2639 t, CLASSTYPE_DECL_LIST (type));
2642 /* Create default constructors, assignment operators, and so forth for
2643 the type indicated by T, if they are needed. CANT_HAVE_CONST_CTOR,
2644 and CANT_HAVE_CONST_ASSIGNMENT are nonzero if, for whatever reason,
2645 the class cannot have a default constructor, copy constructor
2646 taking a const reference argument, or an assignment operator taking
2647 a const reference, respectively. */
2649 static void
2650 add_implicitly_declared_members (tree t,
2651 int cant_have_const_cctor,
2652 int cant_have_const_assignment)
2654 /* Destructor. */
2655 if (!CLASSTYPE_DESTRUCTORS (t))
2657 /* In general, we create destructors lazily. */
2658 CLASSTYPE_LAZY_DESTRUCTOR (t) = 1;
2660 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
2661 && TYPE_FOR_JAVA (t))
2662 /* But if this is a Java class, any non-trivial destructor is
2663 invalid, even if compiler-generated. Therefore, if the
2664 destructor is non-trivial we create it now. */
2665 lazily_declare_fn (sfk_destructor, t);
2668 /* [class.ctor]
2670 If there is no user-declared constructor for a class, a default
2671 constructor is implicitly declared. */
2672 if (! TYPE_HAS_USER_CONSTRUCTOR (t))
2674 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 1;
2675 CLASSTYPE_LAZY_DEFAULT_CTOR (t) = 1;
2678 /* [class.ctor]
2680 If a class definition does not explicitly declare a copy
2681 constructor, one is declared implicitly. */
2682 if (! TYPE_HAS_COPY_CTOR (t) && ! TYPE_FOR_JAVA (t)
2683 && !type_has_move_constructor (t))
2685 TYPE_HAS_COPY_CTOR (t) = 1;
2686 TYPE_HAS_CONST_COPY_CTOR (t) = !cant_have_const_cctor;
2687 CLASSTYPE_LAZY_COPY_CTOR (t) = 1;
2688 if (cxx_dialect >= cxx0x)
2689 CLASSTYPE_LAZY_MOVE_CTOR (t) = 1;
2692 /* If there is no assignment operator, one will be created if and
2693 when it is needed. For now, just record whether or not the type
2694 of the parameter to the assignment operator will be a const or
2695 non-const reference. */
2696 if (!TYPE_HAS_COPY_ASSIGN (t) && !TYPE_FOR_JAVA (t)
2697 && !type_has_move_assign (t))
2699 TYPE_HAS_COPY_ASSIGN (t) = 1;
2700 TYPE_HAS_CONST_COPY_ASSIGN (t) = !cant_have_const_assignment;
2701 CLASSTYPE_LAZY_COPY_ASSIGN (t) = 1;
2702 if (cxx_dialect >= cxx0x)
2703 CLASSTYPE_LAZY_MOVE_ASSIGN (t) = 1;
2706 /* We can't be lazy about declaring functions that might override
2707 a virtual function from a base class. */
2708 if (TYPE_POLYMORPHIC_P (t)
2709 && (CLASSTYPE_LAZY_COPY_ASSIGN (t)
2710 || CLASSTYPE_LAZY_MOVE_ASSIGN (t)
2711 || CLASSTYPE_LAZY_DESTRUCTOR (t)))
2713 tree binfo = TYPE_BINFO (t);
2714 tree base_binfo;
2715 int ix;
2716 tree opname = ansi_assopname (NOP_EXPR);
2717 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ++ix)
2719 tree bv;
2720 for (bv = BINFO_VIRTUALS (base_binfo); bv; bv = TREE_CHAIN (bv))
2722 tree fn = BV_FN (bv);
2723 if (DECL_NAME (fn) == opname)
2725 if (CLASSTYPE_LAZY_COPY_ASSIGN (t))
2726 lazily_declare_fn (sfk_copy_assignment, t);
2727 if (CLASSTYPE_LAZY_MOVE_ASSIGN (t))
2728 lazily_declare_fn (sfk_move_assignment, t);
2730 else if (DECL_DESTRUCTOR_P (fn)
2731 && CLASSTYPE_LAZY_DESTRUCTOR (t))
2732 lazily_declare_fn (sfk_destructor, t);
2738 /* Subroutine of finish_struct_1. Recursively count the number of fields
2739 in TYPE, including anonymous union members. */
2741 static int
2742 count_fields (tree fields)
2744 tree x;
2745 int n_fields = 0;
2746 for (x = fields; x; x = DECL_CHAIN (x))
2748 if (TREE_CODE (x) == FIELD_DECL && ANON_AGGR_TYPE_P (TREE_TYPE (x)))
2749 n_fields += count_fields (TYPE_FIELDS (TREE_TYPE (x)));
2750 else
2751 n_fields += 1;
2753 return n_fields;
2756 /* Subroutine of finish_struct_1. Recursively add all the fields in the
2757 TREE_LIST FIELDS to the SORTED_FIELDS_TYPE elts, starting at offset IDX. */
2759 static int
2760 add_fields_to_record_type (tree fields, struct sorted_fields_type *field_vec, int idx)
2762 tree x;
2763 for (x = fields; x; x = DECL_CHAIN (x))
2765 if (TREE_CODE (x) == FIELD_DECL && ANON_AGGR_TYPE_P (TREE_TYPE (x)))
2766 idx = add_fields_to_record_type (TYPE_FIELDS (TREE_TYPE (x)), field_vec, idx);
2767 else
2768 field_vec->elts[idx++] = x;
2770 return idx;
2773 /* FIELD is a bit-field. We are finishing the processing for its
2774 enclosing type. Issue any appropriate messages and set appropriate
2775 flags. Returns false if an error has been diagnosed. */
2777 static bool
2778 check_bitfield_decl (tree field)
2780 tree type = TREE_TYPE (field);
2781 tree w;
2783 /* Extract the declared width of the bitfield, which has been
2784 temporarily stashed in DECL_INITIAL. */
2785 w = DECL_INITIAL (field);
2786 gcc_assert (w != NULL_TREE);
2787 /* Remove the bit-field width indicator so that the rest of the
2788 compiler does not treat that value as an initializer. */
2789 DECL_INITIAL (field) = NULL_TREE;
2791 /* Detect invalid bit-field type. */
2792 if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
2794 error ("bit-field %q+#D with non-integral type", field);
2795 w = error_mark_node;
2797 else
2799 /* Avoid the non_lvalue wrapper added by fold for PLUS_EXPRs. */
2800 STRIP_NOPS (w);
2802 /* detect invalid field size. */
2803 w = integral_constant_value (w);
2805 if (TREE_CODE (w) != INTEGER_CST)
2807 error ("bit-field %q+D width not an integer constant", field);
2808 w = error_mark_node;
2810 else if (tree_int_cst_sgn (w) < 0)
2812 error ("negative width in bit-field %q+D", field);
2813 w = error_mark_node;
2815 else if (integer_zerop (w) && DECL_NAME (field) != 0)
2817 error ("zero width for bit-field %q+D", field);
2818 w = error_mark_node;
2820 else if (compare_tree_int (w, TYPE_PRECISION (type)) > 0
2821 && TREE_CODE (type) != ENUMERAL_TYPE
2822 && TREE_CODE (type) != BOOLEAN_TYPE)
2823 warning (0, "width of %q+D exceeds its type", field);
2824 else if (TREE_CODE (type) == ENUMERAL_TYPE
2825 && (0 > (compare_tree_int
2826 (w, TYPE_PRECISION (ENUM_UNDERLYING_TYPE (type))))))
2827 warning (0, "%q+D is too small to hold all values of %q#T", field, type);
2830 if (w != error_mark_node)
2832 DECL_SIZE (field) = convert (bitsizetype, w);
2833 DECL_BIT_FIELD (field) = 1;
2834 return true;
2836 else
2838 /* Non-bit-fields are aligned for their type. */
2839 DECL_BIT_FIELD (field) = 0;
2840 CLEAR_DECL_C_BIT_FIELD (field);
2841 return false;
2845 /* FIELD is a non bit-field. We are finishing the processing for its
2846 enclosing type T. Issue any appropriate messages and set appropriate
2847 flags. */
2849 static void
2850 check_field_decl (tree field,
2851 tree t,
2852 int* cant_have_const_ctor,
2853 int* no_const_asn_ref,
2854 int* any_default_members)
2856 tree type = strip_array_types (TREE_TYPE (field));
2858 /* In C++98 an anonymous union cannot contain any fields which would change
2859 the settings of CANT_HAVE_CONST_CTOR and friends. */
2860 if (ANON_UNION_TYPE_P (type) && cxx_dialect < cxx0x)
2862 /* And, we don't set TYPE_HAS_CONST_COPY_CTOR, etc., for anonymous
2863 structs. So, we recurse through their fields here. */
2864 else if (ANON_AGGR_TYPE_P (type))
2866 tree fields;
2868 for (fields = TYPE_FIELDS (type); fields; fields = DECL_CHAIN (fields))
2869 if (TREE_CODE (fields) == FIELD_DECL && !DECL_C_BIT_FIELD (field))
2870 check_field_decl (fields, t, cant_have_const_ctor,
2871 no_const_asn_ref, any_default_members);
2873 /* Check members with class type for constructors, destructors,
2874 etc. */
2875 else if (CLASS_TYPE_P (type))
2877 /* Never let anything with uninheritable virtuals
2878 make it through without complaint. */
2879 abstract_virtuals_error (field, type);
2881 if (TREE_CODE (t) == UNION_TYPE && cxx_dialect < cxx0x)
2883 static bool warned;
2884 int oldcount = errorcount;
2885 if (TYPE_NEEDS_CONSTRUCTING (type))
2886 error ("member %q+#D with constructor not allowed in union",
2887 field);
2888 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
2889 error ("member %q+#D with destructor not allowed in union", field);
2890 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
2891 error ("member %q+#D with copy assignment operator not allowed in union",
2892 field);
2893 if (!warned && errorcount > oldcount)
2895 inform (DECL_SOURCE_LOCATION (field), "unrestricted unions "
2896 "only available with -std=c++0x or -std=gnu++0x");
2897 warned = true;
2900 else
2902 TYPE_NEEDS_CONSTRUCTING (t) |= TYPE_NEEDS_CONSTRUCTING (type);
2903 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
2904 |= TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type);
2905 TYPE_HAS_COMPLEX_COPY_ASSIGN (t)
2906 |= (TYPE_HAS_COMPLEX_COPY_ASSIGN (type)
2907 || !TYPE_HAS_COPY_ASSIGN (type));
2908 TYPE_HAS_COMPLEX_COPY_CTOR (t) |= (TYPE_HAS_COMPLEX_COPY_CTOR (type)
2909 || !TYPE_HAS_COPY_CTOR (type));
2910 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t) |= TYPE_HAS_COMPLEX_MOVE_ASSIGN (type);
2911 TYPE_HAS_COMPLEX_MOVE_CTOR (t) |= TYPE_HAS_COMPLEX_MOVE_CTOR (type);
2912 TYPE_HAS_COMPLEX_DFLT (t) |= (!TYPE_HAS_DEFAULT_CONSTRUCTOR (type)
2913 || TYPE_HAS_COMPLEX_DFLT (type));
2916 if (TYPE_HAS_COPY_CTOR (type)
2917 && !TYPE_HAS_CONST_COPY_CTOR (type))
2918 *cant_have_const_ctor = 1;
2920 if (TYPE_HAS_COPY_ASSIGN (type)
2921 && !TYPE_HAS_CONST_COPY_ASSIGN (type))
2922 *no_const_asn_ref = 1;
2924 if (DECL_INITIAL (field) != NULL_TREE)
2926 /* `build_class_init_list' does not recognize
2927 non-FIELD_DECLs. */
2928 if (TREE_CODE (t) == UNION_TYPE && any_default_members != 0)
2929 error ("multiple fields in union %qT initialized", t);
2930 *any_default_members = 1;
2934 /* Check the data members (both static and non-static), class-scoped
2935 typedefs, etc., appearing in the declaration of T. Issue
2936 appropriate diagnostics. Sets ACCESS_DECLS to a list (in
2937 declaration order) of access declarations; each TREE_VALUE in this
2938 list is a USING_DECL.
2940 In addition, set the following flags:
2942 EMPTY_P
2943 The class is empty, i.e., contains no non-static data members.
2945 CANT_HAVE_CONST_CTOR_P
2946 This class cannot have an implicitly generated copy constructor
2947 taking a const reference.
2949 CANT_HAVE_CONST_ASN_REF
2950 This class cannot have an implicitly generated assignment
2951 operator taking a const reference.
2953 All of these flags should be initialized before calling this
2954 function.
2956 Returns a pointer to the end of the TYPE_FIELDs chain; additional
2957 fields can be added by adding to this chain. */
2959 static void
2960 check_field_decls (tree t, tree *access_decls,
2961 int *cant_have_const_ctor_p,
2962 int *no_const_asn_ref_p)
2964 tree *field;
2965 tree *next;
2966 bool has_pointers;
2967 int any_default_members;
2968 int cant_pack = 0;
2969 int field_access = -1;
2971 /* Assume there are no access declarations. */
2972 *access_decls = NULL_TREE;
2973 /* Assume this class has no pointer members. */
2974 has_pointers = false;
2975 /* Assume none of the members of this class have default
2976 initializations. */
2977 any_default_members = 0;
2979 for (field = &TYPE_FIELDS (t); *field; field = next)
2981 tree x = *field;
2982 tree type = TREE_TYPE (x);
2983 int this_field_access;
2985 next = &DECL_CHAIN (x);
2987 if (TREE_CODE (x) == USING_DECL)
2989 /* Prune the access declaration from the list of fields. */
2990 *field = DECL_CHAIN (x);
2992 /* Save the access declarations for our caller. */
2993 *access_decls = tree_cons (NULL_TREE, x, *access_decls);
2995 /* Since we've reset *FIELD there's no reason to skip to the
2996 next field. */
2997 next = field;
2998 continue;
3001 if (TREE_CODE (x) == TYPE_DECL
3002 || TREE_CODE (x) == TEMPLATE_DECL)
3003 continue;
3005 /* If we've gotten this far, it's a data member, possibly static,
3006 or an enumerator. */
3007 DECL_CONTEXT (x) = t;
3009 /* When this goes into scope, it will be a non-local reference. */
3010 DECL_NONLOCAL (x) = 1;
3012 if (TREE_CODE (t) == UNION_TYPE)
3014 /* [class.union]
3016 If a union contains a static data member, or a member of
3017 reference type, the program is ill-formed. */
3018 if (TREE_CODE (x) == VAR_DECL)
3020 error ("%q+D may not be static because it is a member of a union", x);
3021 continue;
3023 if (TREE_CODE (type) == REFERENCE_TYPE)
3025 error ("%q+D may not have reference type %qT because"
3026 " it is a member of a union",
3027 x, type);
3028 continue;
3032 /* Perform error checking that did not get done in
3033 grokdeclarator. */
3034 if (TREE_CODE (type) == FUNCTION_TYPE)
3036 error ("field %q+D invalidly declared function type", x);
3037 type = build_pointer_type (type);
3038 TREE_TYPE (x) = type;
3040 else if (TREE_CODE (type) == METHOD_TYPE)
3042 error ("field %q+D invalidly declared method type", x);
3043 type = build_pointer_type (type);
3044 TREE_TYPE (x) = type;
3047 if (type == error_mark_node)
3048 continue;
3050 if (TREE_CODE (x) == CONST_DECL || TREE_CODE (x) == VAR_DECL)
3051 continue;
3053 /* Now it can only be a FIELD_DECL. */
3055 if (TREE_PRIVATE (x) || TREE_PROTECTED (x))
3056 CLASSTYPE_NON_AGGREGATE (t) = 1;
3058 /* If at least one non-static data member is non-literal, the whole
3059 class becomes non-literal. */
3060 if (!literal_type_p (type))
3061 CLASSTYPE_LITERAL_P (t) = false;
3063 /* A standard-layout class is a class that:
3065 has the same access control (Clause 11) for all non-static data members,
3066 ... */
3067 this_field_access = TREE_PROTECTED (x) ? 1 : TREE_PRIVATE (x) ? 2 : 0;
3068 if (field_access == -1)
3069 field_access = this_field_access;
3070 else if (this_field_access != field_access)
3071 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
3073 /* If this is of reference type, check if it needs an init. */
3074 if (TREE_CODE (type) == REFERENCE_TYPE)
3076 CLASSTYPE_NON_LAYOUT_POD_P (t) = 1;
3077 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
3078 if (DECL_INITIAL (x) == NULL_TREE)
3079 SET_CLASSTYPE_REF_FIELDS_NEED_INIT (t, 1);
3081 /* ARM $12.6.2: [A member initializer list] (or, for an
3082 aggregate, initialization by a brace-enclosed list) is the
3083 only way to initialize nonstatic const and reference
3084 members. */
3085 TYPE_HAS_COMPLEX_COPY_ASSIGN (t) = 1;
3086 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t) = 1;
3089 type = strip_array_types (type);
3091 if (TYPE_PACKED (t))
3093 if (!layout_pod_type_p (type) && !TYPE_PACKED (type))
3095 warning
3097 "ignoring packed attribute because of unpacked non-POD field %q+#D",
3099 cant_pack = 1;
3101 else if (DECL_C_BIT_FIELD (x)
3102 || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT)
3103 DECL_PACKED (x) = 1;
3106 if (DECL_C_BIT_FIELD (x) && integer_zerop (DECL_INITIAL (x)))
3107 /* We don't treat zero-width bitfields as making a class
3108 non-empty. */
3110 else
3112 /* The class is non-empty. */
3113 CLASSTYPE_EMPTY_P (t) = 0;
3114 /* The class is not even nearly empty. */
3115 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
3116 /* If one of the data members contains an empty class,
3117 so does T. */
3118 if (CLASS_TYPE_P (type)
3119 && CLASSTYPE_CONTAINS_EMPTY_CLASS_P (type))
3120 CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t) = 1;
3123 /* This is used by -Weffc++ (see below). Warn only for pointers
3124 to members which might hold dynamic memory. So do not warn
3125 for pointers to functions or pointers to members. */
3126 if (TYPE_PTR_P (type)
3127 && !TYPE_PTRFN_P (type)
3128 && !TYPE_PTR_TO_MEMBER_P (type))
3129 has_pointers = true;
3131 if (CLASS_TYPE_P (type))
3133 if (CLASSTYPE_REF_FIELDS_NEED_INIT (type))
3134 SET_CLASSTYPE_REF_FIELDS_NEED_INIT (t, 1);
3135 if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (type))
3136 SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT (t, 1);
3139 if (DECL_MUTABLE_P (x) || TYPE_HAS_MUTABLE_P (type))
3140 CLASSTYPE_HAS_MUTABLE (t) = 1;
3142 if (! layout_pod_type_p (type))
3143 /* DR 148 now allows pointers to members (which are POD themselves),
3144 to be allowed in POD structs. */
3145 CLASSTYPE_NON_LAYOUT_POD_P (t) = 1;
3147 if (!std_layout_type_p (type))
3148 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
3150 if (! zero_init_p (type))
3151 CLASSTYPE_NON_ZERO_INIT_P (t) = 1;
3153 /* We set DECL_C_BIT_FIELD in grokbitfield.
3154 If the type and width are valid, we'll also set DECL_BIT_FIELD. */
3155 if (! DECL_C_BIT_FIELD (x) || ! check_bitfield_decl (x))
3156 check_field_decl (x, t,
3157 cant_have_const_ctor_p,
3158 no_const_asn_ref_p,
3159 &any_default_members);
3161 /* If any field is const, the structure type is pseudo-const. */
3162 if (CP_TYPE_CONST_P (type))
3164 C_TYPE_FIELDS_READONLY (t) = 1;
3165 if (DECL_INITIAL (x) == NULL_TREE)
3166 SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT (t, 1);
3168 /* ARM $12.6.2: [A member initializer list] (or, for an
3169 aggregate, initialization by a brace-enclosed list) is the
3170 only way to initialize nonstatic const and reference
3171 members. */
3172 TYPE_HAS_COMPLEX_COPY_ASSIGN (t) = 1;
3173 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t) = 1;
3175 /* A field that is pseudo-const makes the structure likewise. */
3176 else if (CLASS_TYPE_P (type))
3178 C_TYPE_FIELDS_READONLY (t) |= C_TYPE_FIELDS_READONLY (type);
3179 SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT (t,
3180 CLASSTYPE_READONLY_FIELDS_NEED_INIT (t)
3181 | CLASSTYPE_READONLY_FIELDS_NEED_INIT (type));
3184 /* Core issue 80: A nonstatic data member is required to have a
3185 different name from the class iff the class has a
3186 user-declared constructor. */
3187 if (constructor_name_p (DECL_NAME (x), t)
3188 && TYPE_HAS_USER_CONSTRUCTOR (t))
3189 permerror (input_location, "field %q+#D with same name as class", x);
3192 /* Effective C++ rule 11: if a class has dynamic memory held by pointers,
3193 it should also define a copy constructor and an assignment operator to
3194 implement the correct copy semantic (deep vs shallow, etc.). As it is
3195 not feasible to check whether the constructors do allocate dynamic memory
3196 and store it within members, we approximate the warning like this:
3198 -- Warn only if there are members which are pointers
3199 -- Warn only if there is a non-trivial constructor (otherwise,
3200 there cannot be memory allocated).
3201 -- Warn only if there is a non-trivial destructor. We assume that the
3202 user at least implemented the cleanup correctly, and a destructor
3203 is needed to free dynamic memory.
3205 This seems enough for practical purposes. */
3206 if (warn_ecpp
3207 && has_pointers
3208 && TYPE_HAS_USER_CONSTRUCTOR (t)
3209 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
3210 && !(TYPE_HAS_COPY_CTOR (t) && TYPE_HAS_COPY_ASSIGN (t)))
3212 warning (OPT_Weffc__, "%q#T has pointer data members", t);
3214 if (! TYPE_HAS_COPY_CTOR (t))
3216 warning (OPT_Weffc__,
3217 " but does not override %<%T(const %T&)%>", t, t);
3218 if (!TYPE_HAS_COPY_ASSIGN (t))
3219 warning (OPT_Weffc__, " or %<operator=(const %T&)%>", t);
3221 else if (! TYPE_HAS_COPY_ASSIGN (t))
3222 warning (OPT_Weffc__,
3223 " but does not override %<operator=(const %T&)%>", t);
3226 /* If any of the fields couldn't be packed, unset TYPE_PACKED. */
3227 if (cant_pack)
3228 TYPE_PACKED (t) = 0;
3230 /* Check anonymous struct/anonymous union fields. */
3231 finish_struct_anon (t);
3233 /* We've built up the list of access declarations in reverse order.
3234 Fix that now. */
3235 *access_decls = nreverse (*access_decls);
3238 /* If TYPE is an empty class type, records its OFFSET in the table of
3239 OFFSETS. */
3241 static int
3242 record_subobject_offset (tree type, tree offset, splay_tree offsets)
3244 splay_tree_node n;
3246 if (!is_empty_class (type))
3247 return 0;
3249 /* Record the location of this empty object in OFFSETS. */
3250 n = splay_tree_lookup (offsets, (splay_tree_key) offset);
3251 if (!n)
3252 n = splay_tree_insert (offsets,
3253 (splay_tree_key) offset,
3254 (splay_tree_value) NULL_TREE);
3255 n->value = ((splay_tree_value)
3256 tree_cons (NULL_TREE,
3257 type,
3258 (tree) n->value));
3260 return 0;
3263 /* Returns nonzero if TYPE is an empty class type and there is
3264 already an entry in OFFSETS for the same TYPE as the same OFFSET. */
3266 static int
3267 check_subobject_offset (tree type, tree offset, splay_tree offsets)
3269 splay_tree_node n;
3270 tree t;
3272 if (!is_empty_class (type))
3273 return 0;
3275 /* Record the location of this empty object in OFFSETS. */
3276 n = splay_tree_lookup (offsets, (splay_tree_key) offset);
3277 if (!n)
3278 return 0;
3280 for (t = (tree) n->value; t; t = TREE_CHAIN (t))
3281 if (same_type_p (TREE_VALUE (t), type))
3282 return 1;
3284 return 0;
3287 /* Walk through all the subobjects of TYPE (located at OFFSET). Call
3288 F for every subobject, passing it the type, offset, and table of
3289 OFFSETS. If VBASES_P is one, then virtual non-primary bases should
3290 be traversed.
3292 If MAX_OFFSET is non-NULL, then subobjects with an offset greater
3293 than MAX_OFFSET will not be walked.
3295 If F returns a nonzero value, the traversal ceases, and that value
3296 is returned. Otherwise, returns zero. */
3298 static int
3299 walk_subobject_offsets (tree type,
3300 subobject_offset_fn f,
3301 tree offset,
3302 splay_tree offsets,
3303 tree max_offset,
3304 int vbases_p)
3306 int r = 0;
3307 tree type_binfo = NULL_TREE;
3309 /* If this OFFSET is bigger than the MAX_OFFSET, then we should
3310 stop. */
3311 if (max_offset && INT_CST_LT (max_offset, offset))
3312 return 0;
3314 if (type == error_mark_node)
3315 return 0;
3317 if (!TYPE_P (type))
3319 if (abi_version_at_least (2))
3320 type_binfo = type;
3321 type = BINFO_TYPE (type);
3324 if (CLASS_TYPE_P (type))
3326 tree field;
3327 tree binfo;
3328 int i;
3330 /* Avoid recursing into objects that are not interesting. */
3331 if (!CLASSTYPE_CONTAINS_EMPTY_CLASS_P (type))
3332 return 0;
3334 /* Record the location of TYPE. */
3335 r = (*f) (type, offset, offsets);
3336 if (r)
3337 return r;
3339 /* Iterate through the direct base classes of TYPE. */
3340 if (!type_binfo)
3341 type_binfo = TYPE_BINFO (type);
3342 for (i = 0; BINFO_BASE_ITERATE (type_binfo, i, binfo); i++)
3344 tree binfo_offset;
3346 if (abi_version_at_least (2)
3347 && BINFO_VIRTUAL_P (binfo))
3348 continue;
3350 if (!vbases_p
3351 && BINFO_VIRTUAL_P (binfo)
3352 && !BINFO_PRIMARY_P (binfo))
3353 continue;
3355 if (!abi_version_at_least (2))
3356 binfo_offset = size_binop (PLUS_EXPR,
3357 offset,
3358 BINFO_OFFSET (binfo));
3359 else
3361 tree orig_binfo;
3362 /* We cannot rely on BINFO_OFFSET being set for the base
3363 class yet, but the offsets for direct non-virtual
3364 bases can be calculated by going back to the TYPE. */
3365 orig_binfo = BINFO_BASE_BINFO (TYPE_BINFO (type), i);
3366 binfo_offset = size_binop (PLUS_EXPR,
3367 offset,
3368 BINFO_OFFSET (orig_binfo));
3371 r = walk_subobject_offsets (binfo,
3373 binfo_offset,
3374 offsets,
3375 max_offset,
3376 (abi_version_at_least (2)
3377 ? /*vbases_p=*/0 : vbases_p));
3378 if (r)
3379 return r;
3382 if (abi_version_at_least (2) && CLASSTYPE_VBASECLASSES (type))
3384 unsigned ix;
3385 VEC(tree,gc) *vbases;
3387 /* Iterate through the virtual base classes of TYPE. In G++
3388 3.2, we included virtual bases in the direct base class
3389 loop above, which results in incorrect results; the
3390 correct offsets for virtual bases are only known when
3391 working with the most derived type. */
3392 if (vbases_p)
3393 for (vbases = CLASSTYPE_VBASECLASSES (type), ix = 0;
3394 VEC_iterate (tree, vbases, ix, binfo); ix++)
3396 r = walk_subobject_offsets (binfo,
3398 size_binop (PLUS_EXPR,
3399 offset,
3400 BINFO_OFFSET (binfo)),
3401 offsets,
3402 max_offset,
3403 /*vbases_p=*/0);
3404 if (r)
3405 return r;
3407 else
3409 /* We still have to walk the primary base, if it is
3410 virtual. (If it is non-virtual, then it was walked
3411 above.) */
3412 tree vbase = get_primary_binfo (type_binfo);
3414 if (vbase && BINFO_VIRTUAL_P (vbase)
3415 && BINFO_PRIMARY_P (vbase)
3416 && BINFO_INHERITANCE_CHAIN (vbase) == type_binfo)
3418 r = (walk_subobject_offsets
3419 (vbase, f, offset,
3420 offsets, max_offset, /*vbases_p=*/0));
3421 if (r)
3422 return r;
3427 /* Iterate through the fields of TYPE. */
3428 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
3429 if (TREE_CODE (field) == FIELD_DECL && !DECL_ARTIFICIAL (field))
3431 tree field_offset;
3433 if (abi_version_at_least (2))
3434 field_offset = byte_position (field);
3435 else
3436 /* In G++ 3.2, DECL_FIELD_OFFSET was used. */
3437 field_offset = DECL_FIELD_OFFSET (field);
3439 r = walk_subobject_offsets (TREE_TYPE (field),
3441 size_binop (PLUS_EXPR,
3442 offset,
3443 field_offset),
3444 offsets,
3445 max_offset,
3446 /*vbases_p=*/1);
3447 if (r)
3448 return r;
3451 else if (TREE_CODE (type) == ARRAY_TYPE)
3453 tree element_type = strip_array_types (type);
3454 tree domain = TYPE_DOMAIN (type);
3455 tree index;
3457 /* Avoid recursing into objects that are not interesting. */
3458 if (!CLASS_TYPE_P (element_type)
3459 || !CLASSTYPE_CONTAINS_EMPTY_CLASS_P (element_type))
3460 return 0;
3462 /* Step through each of the elements in the array. */
3463 for (index = size_zero_node;
3464 /* G++ 3.2 had an off-by-one error here. */
3465 (abi_version_at_least (2)
3466 ? !INT_CST_LT (TYPE_MAX_VALUE (domain), index)
3467 : INT_CST_LT (index, TYPE_MAX_VALUE (domain)));
3468 index = size_binop (PLUS_EXPR, index, size_one_node))
3470 r = walk_subobject_offsets (TREE_TYPE (type),
3472 offset,
3473 offsets,
3474 max_offset,
3475 /*vbases_p=*/1);
3476 if (r)
3477 return r;
3478 offset = size_binop (PLUS_EXPR, offset,
3479 TYPE_SIZE_UNIT (TREE_TYPE (type)));
3480 /* If this new OFFSET is bigger than the MAX_OFFSET, then
3481 there's no point in iterating through the remaining
3482 elements of the array. */
3483 if (max_offset && INT_CST_LT (max_offset, offset))
3484 break;
3488 return 0;
3491 /* Record all of the empty subobjects of TYPE (either a type or a
3492 binfo). If IS_DATA_MEMBER is true, then a non-static data member
3493 is being placed at OFFSET; otherwise, it is a base class that is
3494 being placed at OFFSET. */
3496 static void
3497 record_subobject_offsets (tree type,
3498 tree offset,
3499 splay_tree offsets,
3500 bool is_data_member)
3502 tree max_offset;
3503 /* If recording subobjects for a non-static data member or a
3504 non-empty base class , we do not need to record offsets beyond
3505 the size of the biggest empty class. Additional data members
3506 will go at the end of the class. Additional base classes will go
3507 either at offset zero (if empty, in which case they cannot
3508 overlap with offsets past the size of the biggest empty class) or
3509 at the end of the class.
3511 However, if we are placing an empty base class, then we must record
3512 all offsets, as either the empty class is at offset zero (where
3513 other empty classes might later be placed) or at the end of the
3514 class (where other objects might then be placed, so other empty
3515 subobjects might later overlap). */
3516 if (is_data_member
3517 || !is_empty_class (BINFO_TYPE (type)))
3518 max_offset = sizeof_biggest_empty_class;
3519 else
3520 max_offset = NULL_TREE;
3521 walk_subobject_offsets (type, record_subobject_offset, offset,
3522 offsets, max_offset, is_data_member);
3525 /* Returns nonzero if any of the empty subobjects of TYPE (located at
3526 OFFSET) conflict with entries in OFFSETS. If VBASES_P is nonzero,
3527 virtual bases of TYPE are examined. */
3529 static int
3530 layout_conflict_p (tree type,
3531 tree offset,
3532 splay_tree offsets,
3533 int vbases_p)
3535 splay_tree_node max_node;
3537 /* Get the node in OFFSETS that indicates the maximum offset where
3538 an empty subobject is located. */
3539 max_node = splay_tree_max (offsets);
3540 /* If there aren't any empty subobjects, then there's no point in
3541 performing this check. */
3542 if (!max_node)
3543 return 0;
3545 return walk_subobject_offsets (type, check_subobject_offset, offset,
3546 offsets, (tree) (max_node->key),
3547 vbases_p);
3550 /* DECL is a FIELD_DECL corresponding either to a base subobject of a
3551 non-static data member of the type indicated by RLI. BINFO is the
3552 binfo corresponding to the base subobject, OFFSETS maps offsets to
3553 types already located at those offsets. This function determines
3554 the position of the DECL. */
3556 static void
3557 layout_nonempty_base_or_field (record_layout_info rli,
3558 tree decl,
3559 tree binfo,
3560 splay_tree offsets)
3562 tree offset = NULL_TREE;
3563 bool field_p;
3564 tree type;
3566 if (binfo)
3568 /* For the purposes of determining layout conflicts, we want to
3569 use the class type of BINFO; TREE_TYPE (DECL) will be the
3570 CLASSTYPE_AS_BASE version, which does not contain entries for
3571 zero-sized bases. */
3572 type = TREE_TYPE (binfo);
3573 field_p = false;
3575 else
3577 type = TREE_TYPE (decl);
3578 field_p = true;
3581 /* Try to place the field. It may take more than one try if we have
3582 a hard time placing the field without putting two objects of the
3583 same type at the same address. */
3584 while (1)
3586 struct record_layout_info_s old_rli = *rli;
3588 /* Place this field. */
3589 place_field (rli, decl);
3590 offset = byte_position (decl);
3592 /* We have to check to see whether or not there is already
3593 something of the same type at the offset we're about to use.
3594 For example, consider:
3596 struct S {};
3597 struct T : public S { int i; };
3598 struct U : public S, public T {};
3600 Here, we put S at offset zero in U. Then, we can't put T at
3601 offset zero -- its S component would be at the same address
3602 as the S we already allocated. So, we have to skip ahead.
3603 Since all data members, including those whose type is an
3604 empty class, have nonzero size, any overlap can happen only
3605 with a direct or indirect base-class -- it can't happen with
3606 a data member. */
3607 /* In a union, overlap is permitted; all members are placed at
3608 offset zero. */
3609 if (TREE_CODE (rli->t) == UNION_TYPE)
3610 break;
3611 /* G++ 3.2 did not check for overlaps when placing a non-empty
3612 virtual base. */
3613 if (!abi_version_at_least (2) && binfo && BINFO_VIRTUAL_P (binfo))
3614 break;
3615 if (layout_conflict_p (field_p ? type : binfo, offset,
3616 offsets, field_p))
3618 /* Strip off the size allocated to this field. That puts us
3619 at the first place we could have put the field with
3620 proper alignment. */
3621 *rli = old_rli;
3623 /* Bump up by the alignment required for the type. */
3624 rli->bitpos
3625 = size_binop (PLUS_EXPR, rli->bitpos,
3626 bitsize_int (binfo
3627 ? CLASSTYPE_ALIGN (type)
3628 : TYPE_ALIGN (type)));
3629 normalize_rli (rli);
3631 else
3632 /* There was no conflict. We're done laying out this field. */
3633 break;
3636 /* Now that we know where it will be placed, update its
3637 BINFO_OFFSET. */
3638 if (binfo && CLASS_TYPE_P (BINFO_TYPE (binfo)))
3639 /* Indirect virtual bases may have a nonzero BINFO_OFFSET at
3640 this point because their BINFO_OFFSET is copied from another
3641 hierarchy. Therefore, we may not need to add the entire
3642 OFFSET. */
3643 propagate_binfo_offsets (binfo,
3644 size_diffop_loc (input_location,
3645 convert (ssizetype, offset),
3646 convert (ssizetype,
3647 BINFO_OFFSET (binfo))));
3650 /* Returns true if TYPE is empty and OFFSET is nonzero. */
3652 static int
3653 empty_base_at_nonzero_offset_p (tree type,
3654 tree offset,
3655 splay_tree offsets ATTRIBUTE_UNUSED)
3657 return is_empty_class (type) && !integer_zerop (offset);
3660 /* Layout the empty base BINFO. EOC indicates the byte currently just
3661 past the end of the class, and should be correctly aligned for a
3662 class of the type indicated by BINFO; OFFSETS gives the offsets of
3663 the empty bases allocated so far. T is the most derived
3664 type. Return nonzero iff we added it at the end. */
3666 static bool
3667 layout_empty_base (record_layout_info rli, tree binfo,
3668 tree eoc, splay_tree offsets)
3670 tree alignment;
3671 tree basetype = BINFO_TYPE (binfo);
3672 bool atend = false;
3674 /* This routine should only be used for empty classes. */
3675 gcc_assert (is_empty_class (basetype));
3676 alignment = ssize_int (CLASSTYPE_ALIGN_UNIT (basetype));
3678 if (!integer_zerop (BINFO_OFFSET (binfo)))
3680 if (abi_version_at_least (2))
3681 propagate_binfo_offsets
3682 (binfo, size_diffop_loc (input_location,
3683 size_zero_node, BINFO_OFFSET (binfo)));
3684 else
3685 warning (OPT_Wabi,
3686 "offset of empty base %qT may not be ABI-compliant and may"
3687 "change in a future version of GCC",
3688 BINFO_TYPE (binfo));
3691 /* This is an empty base class. We first try to put it at offset
3692 zero. */
3693 if (layout_conflict_p (binfo,
3694 BINFO_OFFSET (binfo),
3695 offsets,
3696 /*vbases_p=*/0))
3698 /* That didn't work. Now, we move forward from the next
3699 available spot in the class. */
3700 atend = true;
3701 propagate_binfo_offsets (binfo, convert (ssizetype, eoc));
3702 while (1)
3704 if (!layout_conflict_p (binfo,
3705 BINFO_OFFSET (binfo),
3706 offsets,
3707 /*vbases_p=*/0))
3708 /* We finally found a spot where there's no overlap. */
3709 break;
3711 /* There's overlap here, too. Bump along to the next spot. */
3712 propagate_binfo_offsets (binfo, alignment);
3716 if (CLASSTYPE_USER_ALIGN (basetype))
3718 rli->record_align = MAX (rli->record_align, CLASSTYPE_ALIGN (basetype));
3719 if (warn_packed)
3720 rli->unpacked_align = MAX (rli->unpacked_align, CLASSTYPE_ALIGN (basetype));
3721 TYPE_USER_ALIGN (rli->t) = 1;
3724 return atend;
3727 /* Layout the base given by BINFO in the class indicated by RLI.
3728 *BASE_ALIGN is a running maximum of the alignments of
3729 any base class. OFFSETS gives the location of empty base
3730 subobjects. T is the most derived type. Return nonzero if the new
3731 object cannot be nearly-empty. A new FIELD_DECL is inserted at
3732 *NEXT_FIELD, unless BINFO is for an empty base class.
3734 Returns the location at which the next field should be inserted. */
3736 static tree *
3737 build_base_field (record_layout_info rli, tree binfo,
3738 splay_tree offsets, tree *next_field)
3740 tree t = rli->t;
3741 tree basetype = BINFO_TYPE (binfo);
3743 if (!COMPLETE_TYPE_P (basetype))
3744 /* This error is now reported in xref_tag, thus giving better
3745 location information. */
3746 return next_field;
3748 /* Place the base class. */
3749 if (!is_empty_class (basetype))
3751 tree decl;
3753 /* The containing class is non-empty because it has a non-empty
3754 base class. */
3755 CLASSTYPE_EMPTY_P (t) = 0;
3757 /* Create the FIELD_DECL. */
3758 decl = build_decl (input_location,
3759 FIELD_DECL, NULL_TREE, CLASSTYPE_AS_BASE (basetype));
3760 DECL_ARTIFICIAL (decl) = 1;
3761 DECL_IGNORED_P (decl) = 1;
3762 DECL_FIELD_CONTEXT (decl) = t;
3763 if (CLASSTYPE_AS_BASE (basetype))
3765 DECL_SIZE (decl) = CLASSTYPE_SIZE (basetype);
3766 DECL_SIZE_UNIT (decl) = CLASSTYPE_SIZE_UNIT (basetype);
3767 DECL_ALIGN (decl) = CLASSTYPE_ALIGN (basetype);
3768 DECL_USER_ALIGN (decl) = CLASSTYPE_USER_ALIGN (basetype);
3769 DECL_MODE (decl) = TYPE_MODE (basetype);
3770 DECL_FIELD_IS_BASE (decl) = 1;
3772 /* Try to place the field. It may take more than one try if we
3773 have a hard time placing the field without putting two
3774 objects of the same type at the same address. */
3775 layout_nonempty_base_or_field (rli, decl, binfo, offsets);
3776 /* Add the new FIELD_DECL to the list of fields for T. */
3777 DECL_CHAIN (decl) = *next_field;
3778 *next_field = decl;
3779 next_field = &DECL_CHAIN (decl);
3782 else
3784 tree eoc;
3785 bool atend;
3787 /* On some platforms (ARM), even empty classes will not be
3788 byte-aligned. */
3789 eoc = round_up_loc (input_location,
3790 rli_size_unit_so_far (rli),
3791 CLASSTYPE_ALIGN_UNIT (basetype));
3792 atend = layout_empty_base (rli, binfo, eoc, offsets);
3793 /* A nearly-empty class "has no proper base class that is empty,
3794 not morally virtual, and at an offset other than zero." */
3795 if (!BINFO_VIRTUAL_P (binfo) && CLASSTYPE_NEARLY_EMPTY_P (t))
3797 if (atend)
3798 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
3799 /* The check above (used in G++ 3.2) is insufficient because
3800 an empty class placed at offset zero might itself have an
3801 empty base at a nonzero offset. */
3802 else if (walk_subobject_offsets (basetype,
3803 empty_base_at_nonzero_offset_p,
3804 size_zero_node,
3805 /*offsets=*/NULL,
3806 /*max_offset=*/NULL_TREE,
3807 /*vbases_p=*/true))
3809 if (abi_version_at_least (2))
3810 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
3811 else
3812 warning (OPT_Wabi,
3813 "class %qT will be considered nearly empty in a "
3814 "future version of GCC", t);
3818 /* We do not create a FIELD_DECL for empty base classes because
3819 it might overlap some other field. We want to be able to
3820 create CONSTRUCTORs for the class by iterating over the
3821 FIELD_DECLs, and the back end does not handle overlapping
3822 FIELD_DECLs. */
3824 /* An empty virtual base causes a class to be non-empty
3825 -- but in that case we do not need to clear CLASSTYPE_EMPTY_P
3826 here because that was already done when the virtual table
3827 pointer was created. */
3830 /* Record the offsets of BINFO and its base subobjects. */
3831 record_subobject_offsets (binfo,
3832 BINFO_OFFSET (binfo),
3833 offsets,
3834 /*is_data_member=*/false);
3836 return next_field;
3839 /* Layout all of the non-virtual base classes. Record empty
3840 subobjects in OFFSETS. T is the most derived type. Return nonzero
3841 if the type cannot be nearly empty. The fields created
3842 corresponding to the base classes will be inserted at
3843 *NEXT_FIELD. */
3845 static void
3846 build_base_fields (record_layout_info rli,
3847 splay_tree offsets, tree *next_field)
3849 /* Chain to hold all the new FIELD_DECLs which stand in for base class
3850 subobjects. */
3851 tree t = rli->t;
3852 int n_baseclasses = BINFO_N_BASE_BINFOS (TYPE_BINFO (t));
3853 int i;
3855 /* The primary base class is always allocated first. */
3856 if (CLASSTYPE_HAS_PRIMARY_BASE_P (t))
3857 next_field = build_base_field (rli, CLASSTYPE_PRIMARY_BINFO (t),
3858 offsets, next_field);
3860 /* Now allocate the rest of the bases. */
3861 for (i = 0; i < n_baseclasses; ++i)
3863 tree base_binfo;
3865 base_binfo = BINFO_BASE_BINFO (TYPE_BINFO (t), i);
3867 /* The primary base was already allocated above, so we don't
3868 need to allocate it again here. */
3869 if (base_binfo == CLASSTYPE_PRIMARY_BINFO (t))
3870 continue;
3872 /* Virtual bases are added at the end (a primary virtual base
3873 will have already been added). */
3874 if (BINFO_VIRTUAL_P (base_binfo))
3875 continue;
3877 next_field = build_base_field (rli, base_binfo,
3878 offsets, next_field);
3882 /* Go through the TYPE_METHODS of T issuing any appropriate
3883 diagnostics, figuring out which methods override which other
3884 methods, and so forth. */
3886 static void
3887 check_methods (tree t)
3889 tree x;
3891 for (x = TYPE_METHODS (t); x; x = DECL_CHAIN (x))
3893 check_for_override (x, t);
3894 if (DECL_PURE_VIRTUAL_P (x) && ! DECL_VINDEX (x))
3895 error ("initializer specified for non-virtual method %q+D", x);
3896 /* The name of the field is the original field name
3897 Save this in auxiliary field for later overloading. */
3898 if (DECL_VINDEX (x))
3900 TYPE_POLYMORPHIC_P (t) = 1;
3901 if (DECL_PURE_VIRTUAL_P (x))
3902 VEC_safe_push (tree, gc, CLASSTYPE_PURE_VIRTUALS (t), x);
3904 /* All user-provided destructors are non-trivial.
3905 Constructors and assignment ops are handled in
3906 grok_special_member_properties. */
3907 if (DECL_DESTRUCTOR_P (x) && user_provided_p (x))
3908 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t) = 1;
3912 /* FN is a constructor or destructor. Clone the declaration to create
3913 a specialized in-charge or not-in-charge version, as indicated by
3914 NAME. */
3916 static tree
3917 build_clone (tree fn, tree name)
3919 tree parms;
3920 tree clone;
3922 /* Copy the function. */
3923 clone = copy_decl (fn);
3924 /* Reset the function name. */
3925 DECL_NAME (clone) = name;
3926 SET_DECL_ASSEMBLER_NAME (clone, NULL_TREE);
3927 /* Remember where this function came from. */
3928 DECL_ABSTRACT_ORIGIN (clone) = fn;
3929 /* Make it easy to find the CLONE given the FN. */
3930 DECL_CHAIN (clone) = DECL_CHAIN (fn);
3931 DECL_CHAIN (fn) = clone;
3933 /* If this is a template, do the rest on the DECL_TEMPLATE_RESULT. */
3934 if (TREE_CODE (clone) == TEMPLATE_DECL)
3936 tree result = build_clone (DECL_TEMPLATE_RESULT (clone), name);
3937 DECL_TEMPLATE_RESULT (clone) = result;
3938 DECL_TEMPLATE_INFO (result) = copy_node (DECL_TEMPLATE_INFO (result));
3939 DECL_TI_TEMPLATE (result) = clone;
3940 TREE_TYPE (clone) = TREE_TYPE (result);
3941 return clone;
3944 DECL_CLONED_FUNCTION (clone) = fn;
3945 /* There's no pending inline data for this function. */
3946 DECL_PENDING_INLINE_INFO (clone) = NULL;
3947 DECL_PENDING_INLINE_P (clone) = 0;
3949 /* The base-class destructor is not virtual. */
3950 if (name == base_dtor_identifier)
3952 DECL_VIRTUAL_P (clone) = 0;
3953 if (TREE_CODE (clone) != TEMPLATE_DECL)
3954 DECL_VINDEX (clone) = NULL_TREE;
3957 /* If there was an in-charge parameter, drop it from the function
3958 type. */
3959 if (DECL_HAS_IN_CHARGE_PARM_P (clone))
3961 tree basetype;
3962 tree parmtypes;
3963 tree exceptions;
3965 exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (clone));
3966 basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (clone));
3967 parmtypes = TYPE_ARG_TYPES (TREE_TYPE (clone));
3968 /* Skip the `this' parameter. */
3969 parmtypes = TREE_CHAIN (parmtypes);
3970 /* Skip the in-charge parameter. */
3971 parmtypes = TREE_CHAIN (parmtypes);
3972 /* And the VTT parm, in a complete [cd]tor. */
3973 if (DECL_HAS_VTT_PARM_P (fn)
3974 && ! DECL_NEEDS_VTT_PARM_P (clone))
3975 parmtypes = TREE_CHAIN (parmtypes);
3976 /* If this is subobject constructor or destructor, add the vtt
3977 parameter. */
3978 TREE_TYPE (clone)
3979 = build_method_type_directly (basetype,
3980 TREE_TYPE (TREE_TYPE (clone)),
3981 parmtypes);
3982 if (exceptions)
3983 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone),
3984 exceptions);
3985 TREE_TYPE (clone)
3986 = cp_build_type_attribute_variant (TREE_TYPE (clone),
3987 TYPE_ATTRIBUTES (TREE_TYPE (fn)));
3990 /* Copy the function parameters. */
3991 DECL_ARGUMENTS (clone) = copy_list (DECL_ARGUMENTS (clone));
3992 /* Remove the in-charge parameter. */
3993 if (DECL_HAS_IN_CHARGE_PARM_P (clone))
3995 DECL_CHAIN (DECL_ARGUMENTS (clone))
3996 = DECL_CHAIN (DECL_CHAIN (DECL_ARGUMENTS (clone)));
3997 DECL_HAS_IN_CHARGE_PARM_P (clone) = 0;
3999 /* And the VTT parm, in a complete [cd]tor. */
4000 if (DECL_HAS_VTT_PARM_P (fn))
4002 if (DECL_NEEDS_VTT_PARM_P (clone))
4003 DECL_HAS_VTT_PARM_P (clone) = 1;
4004 else
4006 DECL_CHAIN (DECL_ARGUMENTS (clone))
4007 = DECL_CHAIN (DECL_CHAIN (DECL_ARGUMENTS (clone)));
4008 DECL_HAS_VTT_PARM_P (clone) = 0;
4012 for (parms = DECL_ARGUMENTS (clone); parms; parms = DECL_CHAIN (parms))
4014 DECL_CONTEXT (parms) = clone;
4015 cxx_dup_lang_specific_decl (parms);
4018 /* Create the RTL for this function. */
4019 SET_DECL_RTL (clone, NULL);
4020 rest_of_decl_compilation (clone, /*top_level=*/1, at_eof);
4022 if (pch_file)
4023 note_decl_for_pch (clone);
4025 return clone;
4028 /* Implementation of DECL_CLONED_FUNCTION and DECL_CLONED_FUNCTION_P, do
4029 not invoke this function directly.
4031 For a non-thunk function, returns the address of the slot for storing
4032 the function it is a clone of. Otherwise returns NULL_TREE.
4034 If JUST_TESTING, looks through TEMPLATE_DECL and returns NULL if
4035 cloned_function is unset. This is to support the separate
4036 DECL_CLONED_FUNCTION and DECL_CLONED_FUNCTION_P modes; using the latter
4037 on a template makes sense, but not the former. */
4039 tree *
4040 decl_cloned_function_p (const_tree decl, bool just_testing)
4042 tree *ptr;
4043 if (just_testing)
4044 decl = STRIP_TEMPLATE (decl);
4046 if (TREE_CODE (decl) != FUNCTION_DECL
4047 || !DECL_LANG_SPECIFIC (decl)
4048 || DECL_LANG_SPECIFIC (decl)->u.fn.thunk_p)
4050 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
4051 if (!just_testing)
4052 lang_check_failed (__FILE__, __LINE__, __FUNCTION__);
4053 else
4054 #endif
4055 return NULL;
4058 ptr = &DECL_LANG_SPECIFIC (decl)->u.fn.u5.cloned_function;
4059 if (just_testing && *ptr == NULL_TREE)
4060 return NULL;
4061 else
4062 return ptr;
4065 /* Produce declarations for all appropriate clones of FN. If
4066 UPDATE_METHOD_VEC_P is nonzero, the clones are added to the
4067 CLASTYPE_METHOD_VEC as well. */
4069 void
4070 clone_function_decl (tree fn, int update_method_vec_p)
4072 tree clone;
4074 /* Avoid inappropriate cloning. */
4075 if (DECL_CHAIN (fn)
4076 && DECL_CLONED_FUNCTION_P (DECL_CHAIN (fn)))
4077 return;
4079 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn))
4081 /* For each constructor, we need two variants: an in-charge version
4082 and a not-in-charge version. */
4083 clone = build_clone (fn, complete_ctor_identifier);
4084 if (update_method_vec_p)
4085 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4086 clone = build_clone (fn, base_ctor_identifier);
4087 if (update_method_vec_p)
4088 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4090 else
4092 gcc_assert (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (fn));
4094 /* For each destructor, we need three variants: an in-charge
4095 version, a not-in-charge version, and an in-charge deleting
4096 version. We clone the deleting version first because that
4097 means it will go second on the TYPE_METHODS list -- and that
4098 corresponds to the correct layout order in the virtual
4099 function table.
4101 For a non-virtual destructor, we do not build a deleting
4102 destructor. */
4103 if (DECL_VIRTUAL_P (fn))
4105 clone = build_clone (fn, deleting_dtor_identifier);
4106 if (update_method_vec_p)
4107 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4109 clone = build_clone (fn, complete_dtor_identifier);
4110 if (update_method_vec_p)
4111 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4112 clone = build_clone (fn, base_dtor_identifier);
4113 if (update_method_vec_p)
4114 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4117 /* Note that this is an abstract function that is never emitted. */
4118 DECL_ABSTRACT (fn) = 1;
4121 /* DECL is an in charge constructor, which is being defined. This will
4122 have had an in class declaration, from whence clones were
4123 declared. An out-of-class definition can specify additional default
4124 arguments. As it is the clones that are involved in overload
4125 resolution, we must propagate the information from the DECL to its
4126 clones. */
4128 void
4129 adjust_clone_args (tree decl)
4131 tree clone;
4133 for (clone = DECL_CHAIN (decl); clone && DECL_CLONED_FUNCTION_P (clone);
4134 clone = DECL_CHAIN (clone))
4136 tree orig_clone_parms = TYPE_ARG_TYPES (TREE_TYPE (clone));
4137 tree orig_decl_parms = TYPE_ARG_TYPES (TREE_TYPE (decl));
4138 tree decl_parms, clone_parms;
4140 clone_parms = orig_clone_parms;
4142 /* Skip the 'this' parameter. */
4143 orig_clone_parms = TREE_CHAIN (orig_clone_parms);
4144 orig_decl_parms = TREE_CHAIN (orig_decl_parms);
4146 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
4147 orig_decl_parms = TREE_CHAIN (orig_decl_parms);
4148 if (DECL_HAS_VTT_PARM_P (decl))
4149 orig_decl_parms = TREE_CHAIN (orig_decl_parms);
4151 clone_parms = orig_clone_parms;
4152 if (DECL_HAS_VTT_PARM_P (clone))
4153 clone_parms = TREE_CHAIN (clone_parms);
4155 for (decl_parms = orig_decl_parms; decl_parms;
4156 decl_parms = TREE_CHAIN (decl_parms),
4157 clone_parms = TREE_CHAIN (clone_parms))
4159 gcc_assert (same_type_p (TREE_TYPE (decl_parms),
4160 TREE_TYPE (clone_parms)));
4162 if (TREE_PURPOSE (decl_parms) && !TREE_PURPOSE (clone_parms))
4164 /* A default parameter has been added. Adjust the
4165 clone's parameters. */
4166 tree exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (clone));
4167 tree attrs = TYPE_ATTRIBUTES (TREE_TYPE (clone));
4168 tree basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (clone));
4169 tree type;
4171 clone_parms = orig_decl_parms;
4173 if (DECL_HAS_VTT_PARM_P (clone))
4175 clone_parms = tree_cons (TREE_PURPOSE (orig_clone_parms),
4176 TREE_VALUE (orig_clone_parms),
4177 clone_parms);
4178 TREE_TYPE (clone_parms) = TREE_TYPE (orig_clone_parms);
4180 type = build_method_type_directly (basetype,
4181 TREE_TYPE (TREE_TYPE (clone)),
4182 clone_parms);
4183 if (exceptions)
4184 type = build_exception_variant (type, exceptions);
4185 if (attrs)
4186 type = cp_build_type_attribute_variant (type, attrs);
4187 TREE_TYPE (clone) = type;
4189 clone_parms = NULL_TREE;
4190 break;
4193 gcc_assert (!clone_parms);
4197 /* For each of the constructors and destructors in T, create an
4198 in-charge and not-in-charge variant. */
4200 static void
4201 clone_constructors_and_destructors (tree t)
4203 tree fns;
4205 /* If for some reason we don't have a CLASSTYPE_METHOD_VEC, we bail
4206 out now. */
4207 if (!CLASSTYPE_METHOD_VEC (t))
4208 return;
4210 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4211 clone_function_decl (OVL_CURRENT (fns), /*update_method_vec_p=*/1);
4212 for (fns = CLASSTYPE_DESTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4213 clone_function_decl (OVL_CURRENT (fns), /*update_method_vec_p=*/1);
4216 /* Returns true iff class T has a user-defined constructor other than
4217 the default constructor. */
4219 bool
4220 type_has_user_nondefault_constructor (tree t)
4222 tree fns;
4224 if (!TYPE_HAS_USER_CONSTRUCTOR (t))
4225 return false;
4227 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4229 tree fn = OVL_CURRENT (fns);
4230 if (!DECL_ARTIFICIAL (fn)
4231 && (TREE_CODE (fn) == TEMPLATE_DECL
4232 || (skip_artificial_parms_for (fn, DECL_ARGUMENTS (fn))
4233 != NULL_TREE)))
4234 return true;
4237 return false;
4240 /* Returns the defaulted constructor if T has one. Otherwise, returns
4241 NULL_TREE. */
4243 tree
4244 in_class_defaulted_default_constructor (tree t)
4246 tree fns, args;
4248 if (!TYPE_HAS_USER_CONSTRUCTOR (t))
4249 return NULL_TREE;
4251 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4253 tree fn = OVL_CURRENT (fns);
4255 if (DECL_DEFAULTED_IN_CLASS_P (fn))
4257 args = FUNCTION_FIRST_USER_PARMTYPE (fn);
4258 while (args && TREE_PURPOSE (args))
4259 args = TREE_CHAIN (args);
4260 if (!args || args == void_list_node)
4261 return fn;
4265 return NULL_TREE;
4268 /* Returns true iff FN is a user-provided function, i.e. user-declared
4269 and not defaulted at its first declaration; or explicit, private,
4270 protected, or non-const. */
4272 bool
4273 user_provided_p (tree fn)
4275 if (TREE_CODE (fn) == TEMPLATE_DECL)
4276 return true;
4277 else
4278 return (!DECL_ARTIFICIAL (fn)
4279 && !DECL_DEFAULTED_IN_CLASS_P (fn));
4282 /* Returns true iff class T has a user-provided constructor. */
4284 bool
4285 type_has_user_provided_constructor (tree t)
4287 tree fns;
4289 if (!CLASS_TYPE_P (t))
4290 return false;
4292 if (!TYPE_HAS_USER_CONSTRUCTOR (t))
4293 return false;
4295 /* This can happen in error cases; avoid crashing. */
4296 if (!CLASSTYPE_METHOD_VEC (t))
4297 return false;
4299 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4300 if (user_provided_p (OVL_CURRENT (fns)))
4301 return true;
4303 return false;
4306 /* Returns true iff class T has a user-provided default constructor. */
4308 bool
4309 type_has_user_provided_default_constructor (tree t)
4311 tree fns;
4313 if (!TYPE_HAS_USER_CONSTRUCTOR (t))
4314 return false;
4316 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4318 tree fn = OVL_CURRENT (fns);
4319 if (TREE_CODE (fn) == FUNCTION_DECL
4320 && user_provided_p (fn)
4321 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)))
4322 return true;
4325 return false;
4328 /* Returns true iff class T has a constexpr default constructor. */
4330 bool
4331 type_has_constexpr_default_constructor (tree t)
4333 tree fns;
4335 if (!CLASS_TYPE_P (t))
4336 return false;
4337 fns = get_default_ctor (t);
4338 return (fns && DECL_DECLARED_CONSTEXPR_P (fns));
4341 /* Returns true iff class TYPE has a virtual destructor. */
4343 bool
4344 type_has_virtual_destructor (tree type)
4346 tree dtor;
4348 if (!CLASS_TYPE_P (type))
4349 return false;
4351 gcc_assert (COMPLETE_TYPE_P (type));
4352 dtor = CLASSTYPE_DESTRUCTORS (type);
4353 return (dtor && DECL_VIRTUAL_P (dtor));
4356 /* Returns true iff class T has a move constructor. */
4358 bool
4359 type_has_move_constructor (tree t)
4361 tree fns;
4363 if (CLASSTYPE_LAZY_MOVE_CTOR (t))
4365 gcc_assert (COMPLETE_TYPE_P (t));
4366 lazily_declare_fn (sfk_move_constructor, t);
4369 if (!CLASSTYPE_METHOD_VEC (t))
4370 return false;
4372 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4373 if (move_fn_p (OVL_CURRENT (fns)))
4374 return true;
4376 return false;
4379 /* Returns true iff class T has a move assignment operator. */
4381 bool
4382 type_has_move_assign (tree t)
4384 tree fns;
4386 if (CLASSTYPE_LAZY_MOVE_ASSIGN (t))
4388 gcc_assert (COMPLETE_TYPE_P (t));
4389 lazily_declare_fn (sfk_move_assignment, t);
4392 for (fns = lookup_fnfields_slot (t, ansi_assopname (NOP_EXPR));
4393 fns; fns = OVL_NEXT (fns))
4394 if (move_fn_p (OVL_CURRENT (fns)))
4395 return true;
4397 return false;
4400 /* Remove all zero-width bit-fields from T. */
4402 static void
4403 remove_zero_width_bit_fields (tree t)
4405 tree *fieldsp;
4407 fieldsp = &TYPE_FIELDS (t);
4408 while (*fieldsp)
4410 if (TREE_CODE (*fieldsp) == FIELD_DECL
4411 && DECL_C_BIT_FIELD (*fieldsp)
4412 /* We should not be confused by the fact that grokbitfield
4413 temporarily sets the width of the bit field into
4414 DECL_INITIAL (*fieldsp).
4415 check_bitfield_decl eventually sets DECL_SIZE (*fieldsp)
4416 to that width. */
4417 && integer_zerop (DECL_SIZE (*fieldsp)))
4418 *fieldsp = DECL_CHAIN (*fieldsp);
4419 else
4420 fieldsp = &DECL_CHAIN (*fieldsp);
4424 /* Returns TRUE iff we need a cookie when dynamically allocating an
4425 array whose elements have the indicated class TYPE. */
4427 static bool
4428 type_requires_array_cookie (tree type)
4430 tree fns;
4431 bool has_two_argument_delete_p = false;
4433 gcc_assert (CLASS_TYPE_P (type));
4435 /* If there's a non-trivial destructor, we need a cookie. In order
4436 to iterate through the array calling the destructor for each
4437 element, we'll have to know how many elements there are. */
4438 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
4439 return true;
4441 /* If the usual deallocation function is a two-argument whose second
4442 argument is of type `size_t', then we have to pass the size of
4443 the array to the deallocation function, so we will need to store
4444 a cookie. */
4445 fns = lookup_fnfields (TYPE_BINFO (type),
4446 ansi_opname (VEC_DELETE_EXPR),
4447 /*protect=*/0);
4448 /* If there are no `operator []' members, or the lookup is
4449 ambiguous, then we don't need a cookie. */
4450 if (!fns || fns == error_mark_node)
4451 return false;
4452 /* Loop through all of the functions. */
4453 for (fns = BASELINK_FUNCTIONS (fns); fns; fns = OVL_NEXT (fns))
4455 tree fn;
4456 tree second_parm;
4458 /* Select the current function. */
4459 fn = OVL_CURRENT (fns);
4460 /* See if this function is a one-argument delete function. If
4461 it is, then it will be the usual deallocation function. */
4462 second_parm = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (fn)));
4463 if (second_parm == void_list_node)
4464 return false;
4465 /* Do not consider this function if its second argument is an
4466 ellipsis. */
4467 if (!second_parm)
4468 continue;
4469 /* Otherwise, if we have a two-argument function and the second
4470 argument is `size_t', it will be the usual deallocation
4471 function -- unless there is one-argument function, too. */
4472 if (TREE_CHAIN (second_parm) == void_list_node
4473 && same_type_p (TREE_VALUE (second_parm), size_type_node))
4474 has_two_argument_delete_p = true;
4477 return has_two_argument_delete_p;
4480 /* Finish computing the `literal type' property of class type T.
4482 At this point, we have already processed base classes and
4483 non-static data members. We need to check whether the copy
4484 constructor is trivial, the destructor is trivial, and there
4485 is a trivial default constructor or at least one constexpr
4486 constructor other than the copy constructor. */
4488 static void
4489 finalize_literal_type_property (tree t)
4491 if (cxx_dialect < cxx0x
4492 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
4493 /* FIXME These constraints seem unnecessary; remove from standard.
4494 || !TYPE_HAS_TRIVIAL_COPY_CTOR (t)
4495 || TYPE_HAS_COMPLEX_MOVE_CTOR (t)*/ )
4496 CLASSTYPE_LITERAL_P (t) = false;
4497 else if (CLASSTYPE_LITERAL_P (t) && !TYPE_HAS_TRIVIAL_DFLT (t)
4498 && !TYPE_HAS_CONSTEXPR_CTOR (t))
4499 CLASSTYPE_LITERAL_P (t) = false;
4501 if (!CLASSTYPE_LITERAL_P (t) && !CLASSTYPE_TEMPLATE_INSTANTIATION (t))
4503 tree fn;
4504 for (fn = TYPE_METHODS (t); fn; fn = DECL_CHAIN (fn))
4505 if (DECL_DECLARED_CONSTEXPR_P (fn)
4506 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
4507 && !DECL_CONSTRUCTOR_P (fn))
4509 error ("enclosing class of %q+D is not a literal type", fn);
4510 DECL_DECLARED_CONSTEXPR_P (fn) = false;
4515 /* Check the validity of the bases and members declared in T. Add any
4516 implicitly-generated functions (like copy-constructors and
4517 assignment operators). Compute various flag bits (like
4518 CLASSTYPE_NON_LAYOUT_POD_T) for T. This routine works purely at the C++
4519 level: i.e., independently of the ABI in use. */
4521 static void
4522 check_bases_and_members (tree t)
4524 /* Nonzero if the implicitly generated copy constructor should take
4525 a non-const reference argument. */
4526 int cant_have_const_ctor;
4527 /* Nonzero if the implicitly generated assignment operator
4528 should take a non-const reference argument. */
4529 int no_const_asn_ref;
4530 tree access_decls;
4531 bool saved_complex_asn_ref;
4532 bool saved_nontrivial_dtor;
4533 tree fn;
4535 /* By default, we use const reference arguments and generate default
4536 constructors. */
4537 cant_have_const_ctor = 0;
4538 no_const_asn_ref = 0;
4540 /* Check all the base-classes. */
4541 check_bases (t, &cant_have_const_ctor,
4542 &no_const_asn_ref);
4544 /* Check all the method declarations. */
4545 check_methods (t);
4547 /* Save the initial values of these flags which only indicate whether
4548 or not the class has user-provided functions. As we analyze the
4549 bases and members we can set these flags for other reasons. */
4550 saved_complex_asn_ref = TYPE_HAS_COMPLEX_COPY_ASSIGN (t);
4551 saved_nontrivial_dtor = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t);
4553 /* Check all the data member declarations. We cannot call
4554 check_field_decls until we have called check_bases check_methods,
4555 as check_field_decls depends on TYPE_HAS_NONTRIVIAL_DESTRUCTOR
4556 being set appropriately. */
4557 check_field_decls (t, &access_decls,
4558 &cant_have_const_ctor,
4559 &no_const_asn_ref);
4561 /* A nearly-empty class has to be vptr-containing; a nearly empty
4562 class contains just a vptr. */
4563 if (!TYPE_CONTAINS_VPTR_P (t))
4564 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
4566 /* Do some bookkeeping that will guide the generation of implicitly
4567 declared member functions. */
4568 TYPE_HAS_COMPLEX_COPY_CTOR (t) |= TYPE_CONTAINS_VPTR_P (t);
4569 TYPE_HAS_COMPLEX_MOVE_CTOR (t) |= TYPE_CONTAINS_VPTR_P (t);
4570 /* We need to call a constructor for this class if it has a
4571 user-provided constructor, or if the default constructor is going
4572 to initialize the vptr. (This is not an if-and-only-if;
4573 TYPE_NEEDS_CONSTRUCTING is set elsewhere if bases or members
4574 themselves need constructing.) */
4575 TYPE_NEEDS_CONSTRUCTING (t)
4576 |= (type_has_user_provided_constructor (t) || TYPE_CONTAINS_VPTR_P (t));
4577 /* [dcl.init.aggr]
4579 An aggregate is an array or a class with no user-provided
4580 constructors ... and no virtual functions.
4582 Again, other conditions for being an aggregate are checked
4583 elsewhere. */
4584 CLASSTYPE_NON_AGGREGATE (t)
4585 |= (type_has_user_provided_constructor (t) || TYPE_POLYMORPHIC_P (t));
4586 /* This is the C++98/03 definition of POD; it changed in C++0x, but we
4587 retain the old definition internally for ABI reasons. */
4588 CLASSTYPE_NON_LAYOUT_POD_P (t)
4589 |= (CLASSTYPE_NON_AGGREGATE (t)
4590 || saved_nontrivial_dtor || saved_complex_asn_ref);
4591 CLASSTYPE_NON_STD_LAYOUT (t) |= TYPE_CONTAINS_VPTR_P (t);
4592 TYPE_HAS_COMPLEX_COPY_ASSIGN (t) |= TYPE_CONTAINS_VPTR_P (t);
4593 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t) |= TYPE_CONTAINS_VPTR_P (t);
4594 TYPE_HAS_COMPLEX_DFLT (t) |= TYPE_CONTAINS_VPTR_P (t);
4596 /* If the class has no user-declared constructor, but does have
4597 non-static const or reference data members that can never be
4598 initialized, issue a warning. */
4599 if (warn_uninitialized
4600 /* Classes with user-declared constructors are presumed to
4601 initialize these members. */
4602 && !TYPE_HAS_USER_CONSTRUCTOR (t)
4603 /* Aggregates can be initialized with brace-enclosed
4604 initializers. */
4605 && CLASSTYPE_NON_AGGREGATE (t))
4607 tree field;
4609 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
4611 tree type;
4613 if (TREE_CODE (field) != FIELD_DECL)
4614 continue;
4616 type = TREE_TYPE (field);
4617 if (TREE_CODE (type) == REFERENCE_TYPE)
4618 warning (OPT_Wuninitialized, "non-static reference %q+#D "
4619 "in class without a constructor", field);
4620 else if (CP_TYPE_CONST_P (type)
4621 && (!CLASS_TYPE_P (type)
4622 || !TYPE_HAS_DEFAULT_CONSTRUCTOR (type)))
4623 warning (OPT_Wuninitialized, "non-static const member %q+#D "
4624 "in class without a constructor", field);
4628 /* Synthesize any needed methods. */
4629 add_implicitly_declared_members (t,
4630 cant_have_const_ctor,
4631 no_const_asn_ref);
4633 /* Check defaulted declarations here so we have cant_have_const_ctor
4634 and don't need to worry about clones. */
4635 for (fn = TYPE_METHODS (t); fn; fn = DECL_CHAIN (fn))
4636 if (DECL_DEFAULTED_IN_CLASS_P (fn))
4638 int copy = copy_fn_p (fn);
4639 if (copy > 0)
4641 bool imp_const_p
4642 = (DECL_CONSTRUCTOR_P (fn) ? !cant_have_const_ctor
4643 : !no_const_asn_ref);
4644 bool fn_const_p = (copy == 2);
4646 if (fn_const_p && !imp_const_p)
4647 /* If the function is defaulted outside the class, we just
4648 give the synthesis error. */
4649 error ("%q+D declared to take const reference, but implicit "
4650 "declaration would take non-const", fn);
4651 else if (imp_const_p && !fn_const_p)
4652 error ("%q+D declared to take non-const reference cannot be "
4653 "defaulted in the class body", fn);
4655 defaulted_late_check (fn);
4658 if (LAMBDA_TYPE_P (t))
4660 /* "The closure type associated with a lambda-expression has a deleted
4661 default constructor and a deleted copy assignment operator." */
4662 TYPE_NEEDS_CONSTRUCTING (t) = 1;
4663 TYPE_HAS_COMPLEX_DFLT (t) = 1;
4664 TYPE_HAS_COMPLEX_COPY_ASSIGN (t) = 1;
4665 CLASSTYPE_LAZY_MOVE_ASSIGN (t) = 0;
4667 /* "This class type is not an aggregate." */
4668 CLASSTYPE_NON_AGGREGATE (t) = 1;
4671 /* Compute the 'literal type' property before we
4672 do anything with non-static member functions. */
4673 finalize_literal_type_property (t);
4675 /* Create the in-charge and not-in-charge variants of constructors
4676 and destructors. */
4677 clone_constructors_and_destructors (t);
4679 /* Process the using-declarations. */
4680 for (; access_decls; access_decls = TREE_CHAIN (access_decls))
4681 handle_using_decl (TREE_VALUE (access_decls), t);
4683 /* Build and sort the CLASSTYPE_METHOD_VEC. */
4684 finish_struct_methods (t);
4686 /* Figure out whether or not we will need a cookie when dynamically
4687 allocating an array of this type. */
4688 TYPE_LANG_SPECIFIC (t)->u.c.vec_new_uses_cookie
4689 = type_requires_array_cookie (t);
4692 /* If T needs a pointer to its virtual function table, set TYPE_VFIELD
4693 accordingly. If a new vfield was created (because T doesn't have a
4694 primary base class), then the newly created field is returned. It
4695 is not added to the TYPE_FIELDS list; it is the caller's
4696 responsibility to do that. Accumulate declared virtual functions
4697 on VIRTUALS_P. */
4699 static tree
4700 create_vtable_ptr (tree t, tree* virtuals_p)
4702 tree fn;
4704 /* Collect the virtual functions declared in T. */
4705 for (fn = TYPE_METHODS (t); fn; fn = DECL_CHAIN (fn))
4706 if (DECL_VINDEX (fn) && !DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (fn)
4707 && TREE_CODE (DECL_VINDEX (fn)) != INTEGER_CST)
4709 tree new_virtual = make_node (TREE_LIST);
4711 BV_FN (new_virtual) = fn;
4712 BV_DELTA (new_virtual) = integer_zero_node;
4713 BV_VCALL_INDEX (new_virtual) = NULL_TREE;
4715 TREE_CHAIN (new_virtual) = *virtuals_p;
4716 *virtuals_p = new_virtual;
4719 /* If we couldn't find an appropriate base class, create a new field
4720 here. Even if there weren't any new virtual functions, we might need a
4721 new virtual function table if we're supposed to include vptrs in
4722 all classes that need them. */
4723 if (!TYPE_VFIELD (t) && (*virtuals_p || TYPE_CONTAINS_VPTR_P (t)))
4725 /* We build this decl with vtbl_ptr_type_node, which is a
4726 `vtable_entry_type*'. It might seem more precise to use
4727 `vtable_entry_type (*)[N]' where N is the number of virtual
4728 functions. However, that would require the vtable pointer in
4729 base classes to have a different type than the vtable pointer
4730 in derived classes. We could make that happen, but that
4731 still wouldn't solve all the problems. In particular, the
4732 type-based alias analysis code would decide that assignments
4733 to the base class vtable pointer can't alias assignments to
4734 the derived class vtable pointer, since they have different
4735 types. Thus, in a derived class destructor, where the base
4736 class constructor was inlined, we could generate bad code for
4737 setting up the vtable pointer.
4739 Therefore, we use one type for all vtable pointers. We still
4740 use a type-correct type; it's just doesn't indicate the array
4741 bounds. That's better than using `void*' or some such; it's
4742 cleaner, and it let's the alias analysis code know that these
4743 stores cannot alias stores to void*! */
4744 tree field;
4746 field = build_decl (input_location,
4747 FIELD_DECL, get_vfield_name (t), vtbl_ptr_type_node);
4748 DECL_VIRTUAL_P (field) = 1;
4749 DECL_ARTIFICIAL (field) = 1;
4750 DECL_FIELD_CONTEXT (field) = t;
4751 DECL_FCONTEXT (field) = t;
4752 if (TYPE_PACKED (t))
4753 DECL_PACKED (field) = 1;
4755 TYPE_VFIELD (t) = field;
4757 /* This class is non-empty. */
4758 CLASSTYPE_EMPTY_P (t) = 0;
4760 return field;
4763 return NULL_TREE;
4766 /* Add OFFSET to all base types of BINFO which is a base in the
4767 hierarchy dominated by T.
4769 OFFSET, which is a type offset, is number of bytes. */
4771 static void
4772 propagate_binfo_offsets (tree binfo, tree offset)
4774 int i;
4775 tree primary_binfo;
4776 tree base_binfo;
4778 /* Update BINFO's offset. */
4779 BINFO_OFFSET (binfo)
4780 = convert (sizetype,
4781 size_binop (PLUS_EXPR,
4782 convert (ssizetype, BINFO_OFFSET (binfo)),
4783 offset));
4785 /* Find the primary base class. */
4786 primary_binfo = get_primary_binfo (binfo);
4788 if (primary_binfo && BINFO_INHERITANCE_CHAIN (primary_binfo) == binfo)
4789 propagate_binfo_offsets (primary_binfo, offset);
4791 /* Scan all of the bases, pushing the BINFO_OFFSET adjust
4792 downwards. */
4793 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
4795 /* Don't do the primary base twice. */
4796 if (base_binfo == primary_binfo)
4797 continue;
4799 if (BINFO_VIRTUAL_P (base_binfo))
4800 continue;
4802 propagate_binfo_offsets (base_binfo, offset);
4806 /* Set BINFO_OFFSET for all of the virtual bases for RLI->T. Update
4807 TYPE_ALIGN and TYPE_SIZE for T. OFFSETS gives the location of
4808 empty subobjects of T. */
4810 static void
4811 layout_virtual_bases (record_layout_info rli, splay_tree offsets)
4813 tree vbase;
4814 tree t = rli->t;
4815 bool first_vbase = true;
4816 tree *next_field;
4818 if (BINFO_N_BASE_BINFOS (TYPE_BINFO (t)) == 0)
4819 return;
4821 if (!abi_version_at_least(2))
4823 /* In G++ 3.2, we incorrectly rounded the size before laying out
4824 the virtual bases. */
4825 finish_record_layout (rli, /*free_p=*/false);
4826 #ifdef STRUCTURE_SIZE_BOUNDARY
4827 /* Packed structures don't need to have minimum size. */
4828 if (! TYPE_PACKED (t))
4829 TYPE_ALIGN (t) = MAX (TYPE_ALIGN (t), (unsigned) STRUCTURE_SIZE_BOUNDARY);
4830 #endif
4831 rli->offset = TYPE_SIZE_UNIT (t);
4832 rli->bitpos = bitsize_zero_node;
4833 rli->record_align = TYPE_ALIGN (t);
4836 /* Find the last field. The artificial fields created for virtual
4837 bases will go after the last extant field to date. */
4838 next_field = &TYPE_FIELDS (t);
4839 while (*next_field)
4840 next_field = &DECL_CHAIN (*next_field);
4842 /* Go through the virtual bases, allocating space for each virtual
4843 base that is not already a primary base class. These are
4844 allocated in inheritance graph order. */
4845 for (vbase = TYPE_BINFO (t); vbase; vbase = TREE_CHAIN (vbase))
4847 if (!BINFO_VIRTUAL_P (vbase))
4848 continue;
4850 if (!BINFO_PRIMARY_P (vbase))
4852 tree basetype = TREE_TYPE (vbase);
4854 /* This virtual base is not a primary base of any class in the
4855 hierarchy, so we have to add space for it. */
4856 next_field = build_base_field (rli, vbase,
4857 offsets, next_field);
4859 /* If the first virtual base might have been placed at a
4860 lower address, had we started from CLASSTYPE_SIZE, rather
4861 than TYPE_SIZE, issue a warning. There can be both false
4862 positives and false negatives from this warning in rare
4863 cases; to deal with all the possibilities would probably
4864 require performing both layout algorithms and comparing
4865 the results which is not particularly tractable. */
4866 if (warn_abi
4867 && first_vbase
4868 && (tree_int_cst_lt
4869 (size_binop (CEIL_DIV_EXPR,
4870 round_up_loc (input_location,
4871 CLASSTYPE_SIZE (t),
4872 CLASSTYPE_ALIGN (basetype)),
4873 bitsize_unit_node),
4874 BINFO_OFFSET (vbase))))
4875 warning (OPT_Wabi,
4876 "offset of virtual base %qT is not ABI-compliant and "
4877 "may change in a future version of GCC",
4878 basetype);
4880 first_vbase = false;
4885 /* Returns the offset of the byte just past the end of the base class
4886 BINFO. */
4888 static tree
4889 end_of_base (tree binfo)
4891 tree size;
4893 if (!CLASSTYPE_AS_BASE (BINFO_TYPE (binfo)))
4894 size = TYPE_SIZE_UNIT (char_type_node);
4895 else if (is_empty_class (BINFO_TYPE (binfo)))
4896 /* An empty class has zero CLASSTYPE_SIZE_UNIT, but we need to
4897 allocate some space for it. It cannot have virtual bases, so
4898 TYPE_SIZE_UNIT is fine. */
4899 size = TYPE_SIZE_UNIT (BINFO_TYPE (binfo));
4900 else
4901 size = CLASSTYPE_SIZE_UNIT (BINFO_TYPE (binfo));
4903 return size_binop (PLUS_EXPR, BINFO_OFFSET (binfo), size);
4906 /* Returns the offset of the byte just past the end of the base class
4907 with the highest offset in T. If INCLUDE_VIRTUALS_P is zero, then
4908 only non-virtual bases are included. */
4910 static tree
4911 end_of_class (tree t, int include_virtuals_p)
4913 tree result = size_zero_node;
4914 VEC(tree,gc) *vbases;
4915 tree binfo;
4916 tree base_binfo;
4917 tree offset;
4918 int i;
4920 for (binfo = TYPE_BINFO (t), i = 0;
4921 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
4923 if (!include_virtuals_p
4924 && BINFO_VIRTUAL_P (base_binfo)
4925 && (!BINFO_PRIMARY_P (base_binfo)
4926 || BINFO_INHERITANCE_CHAIN (base_binfo) != TYPE_BINFO (t)))
4927 continue;
4929 offset = end_of_base (base_binfo);
4930 if (INT_CST_LT_UNSIGNED (result, offset))
4931 result = offset;
4934 /* G++ 3.2 did not check indirect virtual bases. */
4935 if (abi_version_at_least (2) && include_virtuals_p)
4936 for (vbases = CLASSTYPE_VBASECLASSES (t), i = 0;
4937 VEC_iterate (tree, vbases, i, base_binfo); i++)
4939 offset = end_of_base (base_binfo);
4940 if (INT_CST_LT_UNSIGNED (result, offset))
4941 result = offset;
4944 return result;
4947 /* Warn about bases of T that are inaccessible because they are
4948 ambiguous. For example:
4950 struct S {};
4951 struct T : public S {};
4952 struct U : public S, public T {};
4954 Here, `(S*) new U' is not allowed because there are two `S'
4955 subobjects of U. */
4957 static void
4958 warn_about_ambiguous_bases (tree t)
4960 int i;
4961 VEC(tree,gc) *vbases;
4962 tree basetype;
4963 tree binfo;
4964 tree base_binfo;
4966 /* If there are no repeated bases, nothing can be ambiguous. */
4967 if (!CLASSTYPE_REPEATED_BASE_P (t))
4968 return;
4970 /* Check direct bases. */
4971 for (binfo = TYPE_BINFO (t), i = 0;
4972 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
4974 basetype = BINFO_TYPE (base_binfo);
4976 if (!lookup_base (t, basetype, ba_unique | ba_quiet, NULL))
4977 warning (0, "direct base %qT inaccessible in %qT due to ambiguity",
4978 basetype, t);
4981 /* Check for ambiguous virtual bases. */
4982 if (extra_warnings)
4983 for (vbases = CLASSTYPE_VBASECLASSES (t), i = 0;
4984 VEC_iterate (tree, vbases, i, binfo); i++)
4986 basetype = BINFO_TYPE (binfo);
4988 if (!lookup_base (t, basetype, ba_unique | ba_quiet, NULL))
4989 warning (OPT_Wextra, "virtual base %qT inaccessible in %qT due to ambiguity",
4990 basetype, t);
4994 /* Compare two INTEGER_CSTs K1 and K2. */
4996 static int
4997 splay_tree_compare_integer_csts (splay_tree_key k1, splay_tree_key k2)
4999 return tree_int_cst_compare ((tree) k1, (tree) k2);
5002 /* Increase the size indicated in RLI to account for empty classes
5003 that are "off the end" of the class. */
5005 static void
5006 include_empty_classes (record_layout_info rli)
5008 tree eoc;
5009 tree rli_size;
5011 /* It might be the case that we grew the class to allocate a
5012 zero-sized base class. That won't be reflected in RLI, yet,
5013 because we are willing to overlay multiple bases at the same
5014 offset. However, now we need to make sure that RLI is big enough
5015 to reflect the entire class. */
5016 eoc = end_of_class (rli->t,
5017 CLASSTYPE_AS_BASE (rli->t) != NULL_TREE);
5018 rli_size = rli_size_unit_so_far (rli);
5019 if (TREE_CODE (rli_size) == INTEGER_CST
5020 && INT_CST_LT_UNSIGNED (rli_size, eoc))
5022 if (!abi_version_at_least (2))
5023 /* In version 1 of the ABI, the size of a class that ends with
5024 a bitfield was not rounded up to a whole multiple of a
5025 byte. Because rli_size_unit_so_far returns only the number
5026 of fully allocated bytes, any extra bits were not included
5027 in the size. */
5028 rli->bitpos = round_down (rli->bitpos, BITS_PER_UNIT);
5029 else
5030 /* The size should have been rounded to a whole byte. */
5031 gcc_assert (tree_int_cst_equal
5032 (rli->bitpos, round_down (rli->bitpos, BITS_PER_UNIT)));
5033 rli->bitpos
5034 = size_binop (PLUS_EXPR,
5035 rli->bitpos,
5036 size_binop (MULT_EXPR,
5037 convert (bitsizetype,
5038 size_binop (MINUS_EXPR,
5039 eoc, rli_size)),
5040 bitsize_int (BITS_PER_UNIT)));
5041 normalize_rli (rli);
5045 /* Calculate the TYPE_SIZE, TYPE_ALIGN, etc for T. Calculate
5046 BINFO_OFFSETs for all of the base-classes. Position the vtable
5047 pointer. Accumulate declared virtual functions on VIRTUALS_P. */
5049 static void
5050 layout_class_type (tree t, tree *virtuals_p)
5052 tree non_static_data_members;
5053 tree field;
5054 tree vptr;
5055 record_layout_info rli;
5056 /* Maps offsets (represented as INTEGER_CSTs) to a TREE_LIST of
5057 types that appear at that offset. */
5058 splay_tree empty_base_offsets;
5059 /* True if the last field layed out was a bit-field. */
5060 bool last_field_was_bitfield = false;
5061 /* The location at which the next field should be inserted. */
5062 tree *next_field;
5063 /* T, as a base class. */
5064 tree base_t;
5066 /* Keep track of the first non-static data member. */
5067 non_static_data_members = TYPE_FIELDS (t);
5069 /* Start laying out the record. */
5070 rli = start_record_layout (t);
5072 /* Mark all the primary bases in the hierarchy. */
5073 determine_primary_bases (t);
5075 /* Create a pointer to our virtual function table. */
5076 vptr = create_vtable_ptr (t, virtuals_p);
5078 /* The vptr is always the first thing in the class. */
5079 if (vptr)
5081 DECL_CHAIN (vptr) = TYPE_FIELDS (t);
5082 TYPE_FIELDS (t) = vptr;
5083 next_field = &DECL_CHAIN (vptr);
5084 place_field (rli, vptr);
5086 else
5087 next_field = &TYPE_FIELDS (t);
5089 /* Build FIELD_DECLs for all of the non-virtual base-types. */
5090 empty_base_offsets = splay_tree_new (splay_tree_compare_integer_csts,
5091 NULL, NULL);
5092 build_base_fields (rli, empty_base_offsets, next_field);
5094 /* Layout the non-static data members. */
5095 for (field = non_static_data_members; field; field = DECL_CHAIN (field))
5097 tree type;
5098 tree padding;
5100 /* We still pass things that aren't non-static data members to
5101 the back end, in case it wants to do something with them. */
5102 if (TREE_CODE (field) != FIELD_DECL)
5104 place_field (rli, field);
5105 /* If the static data member has incomplete type, keep track
5106 of it so that it can be completed later. (The handling
5107 of pending statics in finish_record_layout is
5108 insufficient; consider:
5110 struct S1;
5111 struct S2 { static S1 s1; };
5113 At this point, finish_record_layout will be called, but
5114 S1 is still incomplete.) */
5115 if (TREE_CODE (field) == VAR_DECL)
5117 maybe_register_incomplete_var (field);
5118 /* The visibility of static data members is determined
5119 at their point of declaration, not their point of
5120 definition. */
5121 determine_visibility (field);
5123 continue;
5126 type = TREE_TYPE (field);
5127 if (type == error_mark_node)
5128 continue;
5130 padding = NULL_TREE;
5132 /* If this field is a bit-field whose width is greater than its
5133 type, then there are some special rules for allocating
5134 it. */
5135 if (DECL_C_BIT_FIELD (field)
5136 && INT_CST_LT (TYPE_SIZE (type), DECL_SIZE (field)))
5138 unsigned int itk;
5139 tree integer_type;
5140 bool was_unnamed_p = false;
5141 /* We must allocate the bits as if suitably aligned for the
5142 longest integer type that fits in this many bits. type
5143 of the field. Then, we are supposed to use the left over
5144 bits as additional padding. */
5145 for (itk = itk_char; itk != itk_none; ++itk)
5146 if (integer_types[itk] != NULL_TREE
5147 && (INT_CST_LT (size_int (MAX_FIXED_MODE_SIZE),
5148 TYPE_SIZE (integer_types[itk]))
5149 || INT_CST_LT (DECL_SIZE (field),
5150 TYPE_SIZE (integer_types[itk]))))
5151 break;
5153 /* ITK now indicates a type that is too large for the
5154 field. We have to back up by one to find the largest
5155 type that fits. */
5158 --itk;
5159 integer_type = integer_types[itk];
5160 } while (itk > 0 && integer_type == NULL_TREE);
5162 /* Figure out how much additional padding is required. GCC
5163 3.2 always created a padding field, even if it had zero
5164 width. */
5165 if (!abi_version_at_least (2)
5166 || INT_CST_LT (TYPE_SIZE (integer_type), DECL_SIZE (field)))
5168 if (abi_version_at_least (2) && TREE_CODE (t) == UNION_TYPE)
5169 /* In a union, the padding field must have the full width
5170 of the bit-field; all fields start at offset zero. */
5171 padding = DECL_SIZE (field);
5172 else
5174 if (TREE_CODE (t) == UNION_TYPE)
5175 warning (OPT_Wabi, "size assigned to %qT may not be "
5176 "ABI-compliant and may change in a future "
5177 "version of GCC",
5179 padding = size_binop (MINUS_EXPR, DECL_SIZE (field),
5180 TYPE_SIZE (integer_type));
5183 #ifdef PCC_BITFIELD_TYPE_MATTERS
5184 /* An unnamed bitfield does not normally affect the
5185 alignment of the containing class on a target where
5186 PCC_BITFIELD_TYPE_MATTERS. But, the C++ ABI does not
5187 make any exceptions for unnamed bitfields when the
5188 bitfields are longer than their types. Therefore, we
5189 temporarily give the field a name. */
5190 if (PCC_BITFIELD_TYPE_MATTERS && !DECL_NAME (field))
5192 was_unnamed_p = true;
5193 DECL_NAME (field) = make_anon_name ();
5195 #endif
5196 DECL_SIZE (field) = TYPE_SIZE (integer_type);
5197 DECL_ALIGN (field) = TYPE_ALIGN (integer_type);
5198 DECL_USER_ALIGN (field) = TYPE_USER_ALIGN (integer_type);
5199 layout_nonempty_base_or_field (rli, field, NULL_TREE,
5200 empty_base_offsets);
5201 if (was_unnamed_p)
5202 DECL_NAME (field) = NULL_TREE;
5203 /* Now that layout has been performed, set the size of the
5204 field to the size of its declared type; the rest of the
5205 field is effectively invisible. */
5206 DECL_SIZE (field) = TYPE_SIZE (type);
5207 /* We must also reset the DECL_MODE of the field. */
5208 if (abi_version_at_least (2))
5209 DECL_MODE (field) = TYPE_MODE (type);
5210 else if (warn_abi
5211 && DECL_MODE (field) != TYPE_MODE (type))
5212 /* Versions of G++ before G++ 3.4 did not reset the
5213 DECL_MODE. */
5214 warning (OPT_Wabi,
5215 "the offset of %qD may not be ABI-compliant and may "
5216 "change in a future version of GCC", field);
5218 else
5219 layout_nonempty_base_or_field (rli, field, NULL_TREE,
5220 empty_base_offsets);
5222 /* Remember the location of any empty classes in FIELD. */
5223 if (abi_version_at_least (2))
5224 record_subobject_offsets (TREE_TYPE (field),
5225 byte_position(field),
5226 empty_base_offsets,
5227 /*is_data_member=*/true);
5229 /* If a bit-field does not immediately follow another bit-field,
5230 and yet it starts in the middle of a byte, we have failed to
5231 comply with the ABI. */
5232 if (warn_abi
5233 && DECL_C_BIT_FIELD (field)
5234 /* The TREE_NO_WARNING flag gets set by Objective-C when
5235 laying out an Objective-C class. The ObjC ABI differs
5236 from the C++ ABI, and so we do not want a warning
5237 here. */
5238 && !TREE_NO_WARNING (field)
5239 && !last_field_was_bitfield
5240 && !integer_zerop (size_binop (TRUNC_MOD_EXPR,
5241 DECL_FIELD_BIT_OFFSET (field),
5242 bitsize_unit_node)))
5243 warning (OPT_Wabi, "offset of %q+D is not ABI-compliant and may "
5244 "change in a future version of GCC", field);
5246 /* G++ used to use DECL_FIELD_OFFSET as if it were the byte
5247 offset of the field. */
5248 if (warn_abi
5249 && !abi_version_at_least (2)
5250 && !tree_int_cst_equal (DECL_FIELD_OFFSET (field),
5251 byte_position (field))
5252 && contains_empty_class_p (TREE_TYPE (field)))
5253 warning (OPT_Wabi, "%q+D contains empty classes which may cause base "
5254 "classes to be placed at different locations in a "
5255 "future version of GCC", field);
5257 /* The middle end uses the type of expressions to determine the
5258 possible range of expression values. In order to optimize
5259 "x.i > 7" to "false" for a 2-bit bitfield "i", the middle end
5260 must be made aware of the width of "i", via its type.
5262 Because C++ does not have integer types of arbitrary width,
5263 we must (for the purposes of the front end) convert from the
5264 type assigned here to the declared type of the bitfield
5265 whenever a bitfield expression is used as an rvalue.
5266 Similarly, when assigning a value to a bitfield, the value
5267 must be converted to the type given the bitfield here. */
5268 if (DECL_C_BIT_FIELD (field))
5270 unsigned HOST_WIDE_INT width;
5271 tree ftype = TREE_TYPE (field);
5272 width = tree_low_cst (DECL_SIZE (field), /*unsignedp=*/1);
5273 if (width != TYPE_PRECISION (ftype))
5275 TREE_TYPE (field)
5276 = c_build_bitfield_integer_type (width,
5277 TYPE_UNSIGNED (ftype));
5278 TREE_TYPE (field)
5279 = cp_build_qualified_type (TREE_TYPE (field),
5280 cp_type_quals (ftype));
5284 /* If we needed additional padding after this field, add it
5285 now. */
5286 if (padding)
5288 tree padding_field;
5290 padding_field = build_decl (input_location,
5291 FIELD_DECL,
5292 NULL_TREE,
5293 char_type_node);
5294 DECL_BIT_FIELD (padding_field) = 1;
5295 DECL_SIZE (padding_field) = padding;
5296 DECL_CONTEXT (padding_field) = t;
5297 DECL_ARTIFICIAL (padding_field) = 1;
5298 DECL_IGNORED_P (padding_field) = 1;
5299 layout_nonempty_base_or_field (rli, padding_field,
5300 NULL_TREE,
5301 empty_base_offsets);
5304 last_field_was_bitfield = DECL_C_BIT_FIELD (field);
5307 if (abi_version_at_least (2) && !integer_zerop (rli->bitpos))
5309 /* Make sure that we are on a byte boundary so that the size of
5310 the class without virtual bases will always be a round number
5311 of bytes. */
5312 rli->bitpos = round_up_loc (input_location, rli->bitpos, BITS_PER_UNIT);
5313 normalize_rli (rli);
5316 /* G++ 3.2 does not allow virtual bases to be overlaid with tail
5317 padding. */
5318 if (!abi_version_at_least (2))
5319 include_empty_classes(rli);
5321 /* Delete all zero-width bit-fields from the list of fields. Now
5322 that the type is laid out they are no longer important. */
5323 remove_zero_width_bit_fields (t);
5325 /* Create the version of T used for virtual bases. We do not use
5326 make_class_type for this version; this is an artificial type. For
5327 a POD type, we just reuse T. */
5328 if (CLASSTYPE_NON_LAYOUT_POD_P (t) || CLASSTYPE_EMPTY_P (t))
5330 base_t = make_node (TREE_CODE (t));
5332 /* Set the size and alignment for the new type. In G++ 3.2, all
5333 empty classes were considered to have size zero when used as
5334 base classes. */
5335 if (!abi_version_at_least (2) && CLASSTYPE_EMPTY_P (t))
5337 TYPE_SIZE (base_t) = bitsize_zero_node;
5338 TYPE_SIZE_UNIT (base_t) = size_zero_node;
5339 if (warn_abi && !integer_zerop (rli_size_unit_so_far (rli)))
5340 warning (OPT_Wabi,
5341 "layout of classes derived from empty class %qT "
5342 "may change in a future version of GCC",
5345 else
5347 tree eoc;
5349 /* If the ABI version is not at least two, and the last
5350 field was a bit-field, RLI may not be on a byte
5351 boundary. In particular, rli_size_unit_so_far might
5352 indicate the last complete byte, while rli_size_so_far
5353 indicates the total number of bits used. Therefore,
5354 rli_size_so_far, rather than rli_size_unit_so_far, is
5355 used to compute TYPE_SIZE_UNIT. */
5356 eoc = end_of_class (t, /*include_virtuals_p=*/0);
5357 TYPE_SIZE_UNIT (base_t)
5358 = size_binop (MAX_EXPR,
5359 convert (sizetype,
5360 size_binop (CEIL_DIV_EXPR,
5361 rli_size_so_far (rli),
5362 bitsize_int (BITS_PER_UNIT))),
5363 eoc);
5364 TYPE_SIZE (base_t)
5365 = size_binop (MAX_EXPR,
5366 rli_size_so_far (rli),
5367 size_binop (MULT_EXPR,
5368 convert (bitsizetype, eoc),
5369 bitsize_int (BITS_PER_UNIT)));
5371 TYPE_ALIGN (base_t) = rli->record_align;
5372 TYPE_USER_ALIGN (base_t) = TYPE_USER_ALIGN (t);
5374 /* Copy the fields from T. */
5375 next_field = &TYPE_FIELDS (base_t);
5376 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
5377 if (TREE_CODE (field) == FIELD_DECL)
5379 *next_field = build_decl (input_location,
5380 FIELD_DECL,
5381 DECL_NAME (field),
5382 TREE_TYPE (field));
5383 DECL_CONTEXT (*next_field) = base_t;
5384 DECL_FIELD_OFFSET (*next_field) = DECL_FIELD_OFFSET (field);
5385 DECL_FIELD_BIT_OFFSET (*next_field)
5386 = DECL_FIELD_BIT_OFFSET (field);
5387 DECL_SIZE (*next_field) = DECL_SIZE (field);
5388 DECL_MODE (*next_field) = DECL_MODE (field);
5389 next_field = &DECL_CHAIN (*next_field);
5392 /* Record the base version of the type. */
5393 CLASSTYPE_AS_BASE (t) = base_t;
5394 TYPE_CONTEXT (base_t) = t;
5396 else
5397 CLASSTYPE_AS_BASE (t) = t;
5399 /* Every empty class contains an empty class. */
5400 if (CLASSTYPE_EMPTY_P (t))
5401 CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t) = 1;
5403 /* Set the TYPE_DECL for this type to contain the right
5404 value for DECL_OFFSET, so that we can use it as part
5405 of a COMPONENT_REF for multiple inheritance. */
5406 layout_decl (TYPE_MAIN_DECL (t), 0);
5408 /* Now fix up any virtual base class types that we left lying
5409 around. We must get these done before we try to lay out the
5410 virtual function table. As a side-effect, this will remove the
5411 base subobject fields. */
5412 layout_virtual_bases (rli, empty_base_offsets);
5414 /* Make sure that empty classes are reflected in RLI at this
5415 point. */
5416 include_empty_classes(rli);
5418 /* Make sure not to create any structures with zero size. */
5419 if (integer_zerop (rli_size_unit_so_far (rli)) && CLASSTYPE_EMPTY_P (t))
5420 place_field (rli,
5421 build_decl (input_location,
5422 FIELD_DECL, NULL_TREE, char_type_node));
5424 /* If this is a non-POD, declaring it packed makes a difference to how it
5425 can be used as a field; don't let finalize_record_size undo it. */
5426 if (TYPE_PACKED (t) && !layout_pod_type_p (t))
5427 rli->packed_maybe_necessary = true;
5429 /* Let the back end lay out the type. */
5430 finish_record_layout (rli, /*free_p=*/true);
5432 /* Warn about bases that can't be talked about due to ambiguity. */
5433 warn_about_ambiguous_bases (t);
5435 /* Now that we're done with layout, give the base fields the real types. */
5436 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
5437 if (DECL_ARTIFICIAL (field) && IS_FAKE_BASE_TYPE (TREE_TYPE (field)))
5438 TREE_TYPE (field) = TYPE_CONTEXT (TREE_TYPE (field));
5440 /* Clean up. */
5441 splay_tree_delete (empty_base_offsets);
5443 if (CLASSTYPE_EMPTY_P (t)
5444 && tree_int_cst_lt (sizeof_biggest_empty_class,
5445 TYPE_SIZE_UNIT (t)))
5446 sizeof_biggest_empty_class = TYPE_SIZE_UNIT (t);
5449 /* Determine the "key method" for the class type indicated by TYPE,
5450 and set CLASSTYPE_KEY_METHOD accordingly. */
5452 void
5453 determine_key_method (tree type)
5455 tree method;
5457 if (TYPE_FOR_JAVA (type)
5458 || processing_template_decl
5459 || CLASSTYPE_TEMPLATE_INSTANTIATION (type)
5460 || CLASSTYPE_INTERFACE_KNOWN (type))
5461 return;
5463 /* The key method is the first non-pure virtual function that is not
5464 inline at the point of class definition. On some targets the
5465 key function may not be inline; those targets should not call
5466 this function until the end of the translation unit. */
5467 for (method = TYPE_METHODS (type); method != NULL_TREE;
5468 method = DECL_CHAIN (method))
5469 if (DECL_VINDEX (method) != NULL_TREE
5470 && ! DECL_DECLARED_INLINE_P (method)
5471 && ! DECL_PURE_VIRTUAL_P (method))
5473 CLASSTYPE_KEY_METHOD (type) = method;
5474 break;
5477 return;
5480 /* Perform processing required when the definition of T (a class type)
5481 is complete. */
5483 void
5484 finish_struct_1 (tree t)
5486 tree x;
5487 /* A TREE_LIST. The TREE_VALUE of each node is a FUNCTION_DECL. */
5488 tree virtuals = NULL_TREE;
5489 int n_fields = 0;
5491 if (COMPLETE_TYPE_P (t))
5493 gcc_assert (MAYBE_CLASS_TYPE_P (t));
5494 error ("redefinition of %q#T", t);
5495 popclass ();
5496 return;
5499 /* If this type was previously laid out as a forward reference,
5500 make sure we lay it out again. */
5501 TYPE_SIZE (t) = NULL_TREE;
5502 CLASSTYPE_PRIMARY_BINFO (t) = NULL_TREE;
5504 /* Make assumptions about the class; we'll reset the flags if
5505 necessary. */
5506 CLASSTYPE_EMPTY_P (t) = 1;
5507 CLASSTYPE_NEARLY_EMPTY_P (t) = 1;
5508 CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t) = 0;
5509 CLASSTYPE_LITERAL_P (t) = true;
5511 /* Do end-of-class semantic processing: checking the validity of the
5512 bases and members and add implicitly generated methods. */
5513 check_bases_and_members (t);
5515 /* Find the key method. */
5516 if (TYPE_CONTAINS_VPTR_P (t))
5518 /* The Itanium C++ ABI permits the key method to be chosen when
5519 the class is defined -- even though the key method so
5520 selected may later turn out to be an inline function. On
5521 some systems (such as ARM Symbian OS) the key method cannot
5522 be determined until the end of the translation unit. On such
5523 systems, we leave CLASSTYPE_KEY_METHOD set to NULL, which
5524 will cause the class to be added to KEYED_CLASSES. Then, in
5525 finish_file we will determine the key method. */
5526 if (targetm.cxx.key_method_may_be_inline ())
5527 determine_key_method (t);
5529 /* If a polymorphic class has no key method, we may emit the vtable
5530 in every translation unit where the class definition appears. */
5531 if (CLASSTYPE_KEY_METHOD (t) == NULL_TREE)
5532 keyed_classes = tree_cons (NULL_TREE, t, keyed_classes);
5535 /* Layout the class itself. */
5536 layout_class_type (t, &virtuals);
5537 if (CLASSTYPE_AS_BASE (t) != t)
5538 /* We use the base type for trivial assignments, and hence it
5539 needs a mode. */
5540 compute_record_mode (CLASSTYPE_AS_BASE (t));
5542 virtuals = modify_all_vtables (t, nreverse (virtuals));
5544 /* If necessary, create the primary vtable for this class. */
5545 if (virtuals || TYPE_CONTAINS_VPTR_P (t))
5547 /* We must enter these virtuals into the table. */
5548 if (!CLASSTYPE_HAS_PRIMARY_BASE_P (t))
5549 build_primary_vtable (NULL_TREE, t);
5550 else if (! BINFO_NEW_VTABLE_MARKED (TYPE_BINFO (t)))
5551 /* Here we know enough to change the type of our virtual
5552 function table, but we will wait until later this function. */
5553 build_primary_vtable (CLASSTYPE_PRIMARY_BINFO (t), t);
5556 if (TYPE_CONTAINS_VPTR_P (t))
5558 int vindex;
5559 tree fn;
5561 if (BINFO_VTABLE (TYPE_BINFO (t)))
5562 gcc_assert (DECL_VIRTUAL_P (BINFO_VTABLE (TYPE_BINFO (t))));
5563 if (!CLASSTYPE_HAS_PRIMARY_BASE_P (t))
5564 gcc_assert (BINFO_VIRTUALS (TYPE_BINFO (t)) == NULL_TREE);
5566 /* Add entries for virtual functions introduced by this class. */
5567 BINFO_VIRTUALS (TYPE_BINFO (t))
5568 = chainon (BINFO_VIRTUALS (TYPE_BINFO (t)), virtuals);
5570 /* Set DECL_VINDEX for all functions declared in this class. */
5571 for (vindex = 0, fn = BINFO_VIRTUALS (TYPE_BINFO (t));
5573 fn = TREE_CHAIN (fn),
5574 vindex += (TARGET_VTABLE_USES_DESCRIPTORS
5575 ? TARGET_VTABLE_USES_DESCRIPTORS : 1))
5577 tree fndecl = BV_FN (fn);
5579 if (DECL_THUNK_P (fndecl))
5580 /* A thunk. We should never be calling this entry directly
5581 from this vtable -- we'd use the entry for the non
5582 thunk base function. */
5583 DECL_VINDEX (fndecl) = NULL_TREE;
5584 else if (TREE_CODE (DECL_VINDEX (fndecl)) != INTEGER_CST)
5585 DECL_VINDEX (fndecl) = build_int_cst (NULL_TREE, vindex);
5589 finish_struct_bits (t);
5591 /* Complete the rtl for any static member objects of the type we're
5592 working on. */
5593 for (x = TYPE_FIELDS (t); x; x = DECL_CHAIN (x))
5594 if (TREE_CODE (x) == VAR_DECL && TREE_STATIC (x)
5595 && TREE_TYPE (x) != error_mark_node
5596 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (x)), t))
5597 DECL_MODE (x) = TYPE_MODE (t);
5599 /* Done with FIELDS...now decide whether to sort these for
5600 faster lookups later.
5602 We use a small number because most searches fail (succeeding
5603 ultimately as the search bores through the inheritance
5604 hierarchy), and we want this failure to occur quickly. */
5606 n_fields = count_fields (TYPE_FIELDS (t));
5607 if (n_fields > 7)
5609 struct sorted_fields_type *field_vec = ggc_alloc_sorted_fields_type
5610 (sizeof (struct sorted_fields_type) + n_fields * sizeof (tree));
5611 field_vec->len = n_fields;
5612 add_fields_to_record_type (TYPE_FIELDS (t), field_vec, 0);
5613 qsort (field_vec->elts, n_fields, sizeof (tree),
5614 field_decl_cmp);
5615 CLASSTYPE_SORTED_FIELDS (t) = field_vec;
5618 /* Complain if one of the field types requires lower visibility. */
5619 constrain_class_visibility (t);
5621 /* Make the rtl for any new vtables we have created, and unmark
5622 the base types we marked. */
5623 finish_vtbls (t);
5625 /* Build the VTT for T. */
5626 build_vtt (t);
5628 /* This warning does not make sense for Java classes, since they
5629 cannot have destructors. */
5630 if (!TYPE_FOR_JAVA (t) && warn_nonvdtor && TYPE_POLYMORPHIC_P (t))
5632 tree dtor;
5634 dtor = CLASSTYPE_DESTRUCTORS (t);
5635 if (/* An implicitly declared destructor is always public. And,
5636 if it were virtual, we would have created it by now. */
5637 !dtor
5638 || (!DECL_VINDEX (dtor)
5639 && (/* public non-virtual */
5640 (!TREE_PRIVATE (dtor) && !TREE_PROTECTED (dtor))
5641 || (/* non-public non-virtual with friends */
5642 (TREE_PRIVATE (dtor) || TREE_PROTECTED (dtor))
5643 && (CLASSTYPE_FRIEND_CLASSES (t)
5644 || DECL_FRIENDLIST (TYPE_MAIN_DECL (t)))))))
5645 warning (OPT_Wnon_virtual_dtor,
5646 "%q#T has virtual functions and accessible"
5647 " non-virtual destructor", t);
5650 complete_vars (t);
5652 if (warn_overloaded_virtual)
5653 warn_hidden (t);
5655 /* Class layout, assignment of virtual table slots, etc., is now
5656 complete. Give the back end a chance to tweak the visibility of
5657 the class or perform any other required target modifications. */
5658 targetm.cxx.adjust_class_at_definition (t);
5660 maybe_suppress_debug_info (t);
5662 dump_class_hierarchy (t);
5664 /* Finish debugging output for this type. */
5665 rest_of_type_compilation (t, ! LOCAL_CLASS_P (t));
5668 /* When T was built up, the member declarations were added in reverse
5669 order. Rearrange them to declaration order. */
5671 void
5672 unreverse_member_declarations (tree t)
5674 tree next;
5675 tree prev;
5676 tree x;
5678 /* The following lists are all in reverse order. Put them in
5679 declaration order now. */
5680 TYPE_METHODS (t) = nreverse (TYPE_METHODS (t));
5681 CLASSTYPE_DECL_LIST (t) = nreverse (CLASSTYPE_DECL_LIST (t));
5683 /* Actually, for the TYPE_FIELDS, only the non TYPE_DECLs are in
5684 reverse order, so we can't just use nreverse. */
5685 prev = NULL_TREE;
5686 for (x = TYPE_FIELDS (t);
5687 x && TREE_CODE (x) != TYPE_DECL;
5688 x = next)
5690 next = DECL_CHAIN (x);
5691 DECL_CHAIN (x) = prev;
5692 prev = x;
5694 if (prev)
5696 DECL_CHAIN (TYPE_FIELDS (t)) = x;
5697 if (prev)
5698 TYPE_FIELDS (t) = prev;
5702 tree
5703 finish_struct (tree t, tree attributes)
5705 location_t saved_loc = input_location;
5707 /* Now that we've got all the field declarations, reverse everything
5708 as necessary. */
5709 unreverse_member_declarations (t);
5711 cplus_decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5713 /* Nadger the current location so that diagnostics point to the start of
5714 the struct, not the end. */
5715 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (t));
5717 if (processing_template_decl)
5719 tree x;
5721 finish_struct_methods (t);
5722 TYPE_SIZE (t) = bitsize_zero_node;
5723 TYPE_SIZE_UNIT (t) = size_zero_node;
5725 /* We need to emit an error message if this type was used as a parameter
5726 and it is an abstract type, even if it is a template. We construct
5727 a simple CLASSTYPE_PURE_VIRTUALS list without taking bases into
5728 account and we call complete_vars with this type, which will check
5729 the PARM_DECLS. Note that while the type is being defined,
5730 CLASSTYPE_PURE_VIRTUALS contains the list of the inline friends
5731 (see CLASSTYPE_INLINE_FRIENDS) so we need to clear it. */
5732 CLASSTYPE_PURE_VIRTUALS (t) = NULL;
5733 for (x = TYPE_METHODS (t); x; x = DECL_CHAIN (x))
5734 if (DECL_PURE_VIRTUAL_P (x))
5735 VEC_safe_push (tree, gc, CLASSTYPE_PURE_VIRTUALS (t), x);
5736 complete_vars (t);
5738 /* Remember current #pragma pack value. */
5739 TYPE_PRECISION (t) = maximum_field_alignment;
5741 else
5742 finish_struct_1 (t);
5744 input_location = saved_loc;
5746 TYPE_BEING_DEFINED (t) = 0;
5748 if (current_class_type)
5749 popclass ();
5750 else
5751 error ("trying to finish struct, but kicked out due to previous parse errors");
5753 if (processing_template_decl && at_function_scope_p ())
5754 add_stmt (build_min (TAG_DEFN, t));
5756 return t;
5759 /* Return the dynamic type of INSTANCE, if known.
5760 Used to determine whether the virtual function table is needed
5761 or not.
5763 *NONNULL is set iff INSTANCE can be known to be nonnull, regardless
5764 of our knowledge of its type. *NONNULL should be initialized
5765 before this function is called. */
5767 static tree
5768 fixed_type_or_null (tree instance, int *nonnull, int *cdtorp)
5770 #define RECUR(T) fixed_type_or_null((T), nonnull, cdtorp)
5772 switch (TREE_CODE (instance))
5774 case INDIRECT_REF:
5775 if (POINTER_TYPE_P (TREE_TYPE (instance)))
5776 return NULL_TREE;
5777 else
5778 return RECUR (TREE_OPERAND (instance, 0));
5780 case CALL_EXPR:
5781 /* This is a call to a constructor, hence it's never zero. */
5782 if (TREE_HAS_CONSTRUCTOR (instance))
5784 if (nonnull)
5785 *nonnull = 1;
5786 return TREE_TYPE (instance);
5788 return NULL_TREE;
5790 case SAVE_EXPR:
5791 /* This is a call to a constructor, hence it's never zero. */
5792 if (TREE_HAS_CONSTRUCTOR (instance))
5794 if (nonnull)
5795 *nonnull = 1;
5796 return TREE_TYPE (instance);
5798 return RECUR (TREE_OPERAND (instance, 0));
5800 case POINTER_PLUS_EXPR:
5801 case PLUS_EXPR:
5802 case MINUS_EXPR:
5803 if (TREE_CODE (TREE_OPERAND (instance, 0)) == ADDR_EXPR)
5804 return RECUR (TREE_OPERAND (instance, 0));
5805 if (TREE_CODE (TREE_OPERAND (instance, 1)) == INTEGER_CST)
5806 /* Propagate nonnull. */
5807 return RECUR (TREE_OPERAND (instance, 0));
5809 return NULL_TREE;
5811 CASE_CONVERT:
5812 return RECUR (TREE_OPERAND (instance, 0));
5814 case ADDR_EXPR:
5815 instance = TREE_OPERAND (instance, 0);
5816 if (nonnull)
5818 /* Just because we see an ADDR_EXPR doesn't mean we're dealing
5819 with a real object -- given &p->f, p can still be null. */
5820 tree t = get_base_address (instance);
5821 /* ??? Probably should check DECL_WEAK here. */
5822 if (t && DECL_P (t))
5823 *nonnull = 1;
5825 return RECUR (instance);
5827 case COMPONENT_REF:
5828 /* If this component is really a base class reference, then the field
5829 itself isn't definitive. */
5830 if (DECL_FIELD_IS_BASE (TREE_OPERAND (instance, 1)))
5831 return RECUR (TREE_OPERAND (instance, 0));
5832 return RECUR (TREE_OPERAND (instance, 1));
5834 case VAR_DECL:
5835 case FIELD_DECL:
5836 if (TREE_CODE (TREE_TYPE (instance)) == ARRAY_TYPE
5837 && MAYBE_CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (instance))))
5839 if (nonnull)
5840 *nonnull = 1;
5841 return TREE_TYPE (TREE_TYPE (instance));
5843 /* fall through... */
5844 case TARGET_EXPR:
5845 case PARM_DECL:
5846 case RESULT_DECL:
5847 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (instance)))
5849 if (nonnull)
5850 *nonnull = 1;
5851 return TREE_TYPE (instance);
5853 else if (instance == current_class_ptr)
5855 if (nonnull)
5856 *nonnull = 1;
5858 /* if we're in a ctor or dtor, we know our type. */
5859 if (DECL_LANG_SPECIFIC (current_function_decl)
5860 && (DECL_CONSTRUCTOR_P (current_function_decl)
5861 || DECL_DESTRUCTOR_P (current_function_decl)))
5863 if (cdtorp)
5864 *cdtorp = 1;
5865 return TREE_TYPE (TREE_TYPE (instance));
5868 else if (TREE_CODE (TREE_TYPE (instance)) == REFERENCE_TYPE)
5870 /* We only need one hash table because it is always left empty. */
5871 static htab_t ht;
5872 if (!ht)
5873 ht = htab_create (37,
5874 htab_hash_pointer,
5875 htab_eq_pointer,
5876 /*htab_del=*/NULL);
5878 /* Reference variables should be references to objects. */
5879 if (nonnull)
5880 *nonnull = 1;
5882 /* Enter the INSTANCE in a table to prevent recursion; a
5883 variable's initializer may refer to the variable
5884 itself. */
5885 if (TREE_CODE (instance) == VAR_DECL
5886 && DECL_INITIAL (instance)
5887 && !htab_find (ht, instance))
5889 tree type;
5890 void **slot;
5892 slot = htab_find_slot (ht, instance, INSERT);
5893 *slot = instance;
5894 type = RECUR (DECL_INITIAL (instance));
5895 htab_remove_elt (ht, instance);
5897 return type;
5900 return NULL_TREE;
5902 default:
5903 return NULL_TREE;
5905 #undef RECUR
5908 /* Return nonzero if the dynamic type of INSTANCE is known, and
5909 equivalent to the static type. We also handle the case where
5910 INSTANCE is really a pointer. Return negative if this is a
5911 ctor/dtor. There the dynamic type is known, but this might not be
5912 the most derived base of the original object, and hence virtual
5913 bases may not be layed out according to this type.
5915 Used to determine whether the virtual function table is needed
5916 or not.
5918 *NONNULL is set iff INSTANCE can be known to be nonnull, regardless
5919 of our knowledge of its type. *NONNULL should be initialized
5920 before this function is called. */
5923 resolves_to_fixed_type_p (tree instance, int* nonnull)
5925 tree t = TREE_TYPE (instance);
5926 int cdtorp = 0;
5927 tree fixed = fixed_type_or_null (instance, nonnull, &cdtorp);
5928 if (fixed == NULL_TREE)
5929 return 0;
5930 if (POINTER_TYPE_P (t))
5931 t = TREE_TYPE (t);
5932 if (!same_type_ignoring_top_level_qualifiers_p (t, fixed))
5933 return 0;
5934 return cdtorp ? -1 : 1;
5938 void
5939 init_class_processing (void)
5941 current_class_depth = 0;
5942 current_class_stack_size = 10;
5943 current_class_stack
5944 = XNEWVEC (struct class_stack_node, current_class_stack_size);
5945 local_classes = VEC_alloc (tree, gc, 8);
5946 sizeof_biggest_empty_class = size_zero_node;
5948 ridpointers[(int) RID_PUBLIC] = access_public_node;
5949 ridpointers[(int) RID_PRIVATE] = access_private_node;
5950 ridpointers[(int) RID_PROTECTED] = access_protected_node;
5953 /* Restore the cached PREVIOUS_CLASS_LEVEL. */
5955 static void
5956 restore_class_cache (void)
5958 tree type;
5960 /* We are re-entering the same class we just left, so we don't
5961 have to search the whole inheritance matrix to find all the
5962 decls to bind again. Instead, we install the cached
5963 class_shadowed list and walk through it binding names. */
5964 push_binding_level (previous_class_level);
5965 class_binding_level = previous_class_level;
5966 /* Restore IDENTIFIER_TYPE_VALUE. */
5967 for (type = class_binding_level->type_shadowed;
5968 type;
5969 type = TREE_CHAIN (type))
5970 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (type), TREE_TYPE (type));
5973 /* Set global variables CURRENT_CLASS_NAME and CURRENT_CLASS_TYPE as
5974 appropriate for TYPE.
5976 So that we may avoid calls to lookup_name, we cache the _TYPE
5977 nodes of local TYPE_DECLs in the TREE_TYPE field of the name.
5979 For multiple inheritance, we perform a two-pass depth-first search
5980 of the type lattice. */
5982 void
5983 pushclass (tree type)
5985 class_stack_node_t csn;
5987 type = TYPE_MAIN_VARIANT (type);
5989 /* Make sure there is enough room for the new entry on the stack. */
5990 if (current_class_depth + 1 >= current_class_stack_size)
5992 current_class_stack_size *= 2;
5993 current_class_stack
5994 = XRESIZEVEC (struct class_stack_node, current_class_stack,
5995 current_class_stack_size);
5998 /* Insert a new entry on the class stack. */
5999 csn = current_class_stack + current_class_depth;
6000 csn->name = current_class_name;
6001 csn->type = current_class_type;
6002 csn->access = current_access_specifier;
6003 csn->names_used = 0;
6004 csn->hidden = 0;
6005 current_class_depth++;
6007 /* Now set up the new type. */
6008 current_class_name = TYPE_NAME (type);
6009 if (TREE_CODE (current_class_name) == TYPE_DECL)
6010 current_class_name = DECL_NAME (current_class_name);
6011 current_class_type = type;
6013 /* By default, things in classes are private, while things in
6014 structures or unions are public. */
6015 current_access_specifier = (CLASSTYPE_DECLARED_CLASS (type)
6016 ? access_private_node
6017 : access_public_node);
6019 if (previous_class_level
6020 && type != previous_class_level->this_entity
6021 && current_class_depth == 1)
6023 /* Forcibly remove any old class remnants. */
6024 invalidate_class_lookup_cache ();
6027 if (!previous_class_level
6028 || type != previous_class_level->this_entity
6029 || current_class_depth > 1)
6030 pushlevel_class ();
6031 else
6032 restore_class_cache ();
6035 /* When we exit a toplevel class scope, we save its binding level so
6036 that we can restore it quickly. Here, we've entered some other
6037 class, so we must invalidate our cache. */
6039 void
6040 invalidate_class_lookup_cache (void)
6042 previous_class_level = NULL;
6045 /* Get out of the current class scope. If we were in a class scope
6046 previously, that is the one popped to. */
6048 void
6049 popclass (void)
6051 poplevel_class ();
6053 current_class_depth--;
6054 current_class_name = current_class_stack[current_class_depth].name;
6055 current_class_type = current_class_stack[current_class_depth].type;
6056 current_access_specifier = current_class_stack[current_class_depth].access;
6057 if (current_class_stack[current_class_depth].names_used)
6058 splay_tree_delete (current_class_stack[current_class_depth].names_used);
6061 /* Mark the top of the class stack as hidden. */
6063 void
6064 push_class_stack (void)
6066 if (current_class_depth)
6067 ++current_class_stack[current_class_depth - 1].hidden;
6070 /* Mark the top of the class stack as un-hidden. */
6072 void
6073 pop_class_stack (void)
6075 if (current_class_depth)
6076 --current_class_stack[current_class_depth - 1].hidden;
6079 /* Returns 1 if the class type currently being defined is either T or
6080 a nested type of T. */
6082 bool
6083 currently_open_class (tree t)
6085 int i;
6087 if (!CLASS_TYPE_P (t))
6088 return false;
6090 t = TYPE_MAIN_VARIANT (t);
6092 /* We start looking from 1 because entry 0 is from global scope,
6093 and has no type. */
6094 for (i = current_class_depth; i > 0; --i)
6096 tree c;
6097 if (i == current_class_depth)
6098 c = current_class_type;
6099 else
6101 if (current_class_stack[i].hidden)
6102 break;
6103 c = current_class_stack[i].type;
6105 if (!c)
6106 continue;
6107 if (same_type_p (c, t))
6108 return true;
6110 return false;
6113 /* If either current_class_type or one of its enclosing classes are derived
6114 from T, return the appropriate type. Used to determine how we found
6115 something via unqualified lookup. */
6117 tree
6118 currently_open_derived_class (tree t)
6120 int i;
6122 /* The bases of a dependent type are unknown. */
6123 if (dependent_type_p (t))
6124 return NULL_TREE;
6126 if (!current_class_type)
6127 return NULL_TREE;
6129 if (DERIVED_FROM_P (t, current_class_type))
6130 return current_class_type;
6132 for (i = current_class_depth - 1; i > 0; --i)
6134 if (current_class_stack[i].hidden)
6135 break;
6136 if (DERIVED_FROM_P (t, current_class_stack[i].type))
6137 return current_class_stack[i].type;
6140 return NULL_TREE;
6143 /* Returns the innermost class type which is not a lambda closure type. */
6145 tree
6146 current_nonlambda_class_type (void)
6148 int i;
6150 /* We start looking from 1 because entry 0 is from global scope,
6151 and has no type. */
6152 for (i = current_class_depth; i > 0; --i)
6154 tree c;
6155 if (i == current_class_depth)
6156 c = current_class_type;
6157 else
6159 if (current_class_stack[i].hidden)
6160 break;
6161 c = current_class_stack[i].type;
6163 if (!c)
6164 continue;
6165 if (!LAMBDA_TYPE_P (c))
6166 return c;
6168 return NULL_TREE;
6171 /* When entering a class scope, all enclosing class scopes' names with
6172 static meaning (static variables, static functions, types and
6173 enumerators) have to be visible. This recursive function calls
6174 pushclass for all enclosing class contexts until global or a local
6175 scope is reached. TYPE is the enclosed class. */
6177 void
6178 push_nested_class (tree type)
6180 /* A namespace might be passed in error cases, like A::B:C. */
6181 if (type == NULL_TREE
6182 || !CLASS_TYPE_P (type))
6183 return;
6185 push_nested_class (DECL_CONTEXT (TYPE_MAIN_DECL (type)));
6187 pushclass (type);
6190 /* Undoes a push_nested_class call. */
6192 void
6193 pop_nested_class (void)
6195 tree context = DECL_CONTEXT (TYPE_MAIN_DECL (current_class_type));
6197 popclass ();
6198 if (context && CLASS_TYPE_P (context))
6199 pop_nested_class ();
6202 /* Returns the number of extern "LANG" blocks we are nested within. */
6205 current_lang_depth (void)
6207 return VEC_length (tree, current_lang_base);
6210 /* Set global variables CURRENT_LANG_NAME to appropriate value
6211 so that behavior of name-mangling machinery is correct. */
6213 void
6214 push_lang_context (tree name)
6216 VEC_safe_push (tree, gc, current_lang_base, current_lang_name);
6218 if (name == lang_name_cplusplus)
6220 current_lang_name = name;
6222 else if (name == lang_name_java)
6224 current_lang_name = name;
6225 /* DECL_IGNORED_P is initially set for these types, to avoid clutter.
6226 (See record_builtin_java_type in decl.c.) However, that causes
6227 incorrect debug entries if these types are actually used.
6228 So we re-enable debug output after extern "Java". */
6229 DECL_IGNORED_P (TYPE_NAME (java_byte_type_node)) = 0;
6230 DECL_IGNORED_P (TYPE_NAME (java_short_type_node)) = 0;
6231 DECL_IGNORED_P (TYPE_NAME (java_int_type_node)) = 0;
6232 DECL_IGNORED_P (TYPE_NAME (java_long_type_node)) = 0;
6233 DECL_IGNORED_P (TYPE_NAME (java_float_type_node)) = 0;
6234 DECL_IGNORED_P (TYPE_NAME (java_double_type_node)) = 0;
6235 DECL_IGNORED_P (TYPE_NAME (java_char_type_node)) = 0;
6236 DECL_IGNORED_P (TYPE_NAME (java_boolean_type_node)) = 0;
6238 else if (name == lang_name_c)
6240 current_lang_name = name;
6242 else
6243 error ("language string %<\"%E\"%> not recognized", name);
6246 /* Get out of the current language scope. */
6248 void
6249 pop_lang_context (void)
6251 current_lang_name = VEC_pop (tree, current_lang_base);
6254 /* Type instantiation routines. */
6256 /* Given an OVERLOAD and a TARGET_TYPE, return the function that
6257 matches the TARGET_TYPE. If there is no satisfactory match, return
6258 error_mark_node, and issue an error & warning messages under
6259 control of FLAGS. Permit pointers to member function if FLAGS
6260 permits. If TEMPLATE_ONLY, the name of the overloaded function was
6261 a template-id, and EXPLICIT_TARGS are the explicitly provided
6262 template arguments.
6264 If OVERLOAD is for one or more member functions, then ACCESS_PATH
6265 is the base path used to reference those member functions. If
6266 TF_NO_ACCESS_CONTROL is not set in FLAGS, and the address is
6267 resolved to a member function, access checks will be performed and
6268 errors issued if appropriate. */
6270 static tree
6271 resolve_address_of_overloaded_function (tree target_type,
6272 tree overload,
6273 tsubst_flags_t flags,
6274 bool template_only,
6275 tree explicit_targs,
6276 tree access_path)
6278 /* Here's what the standard says:
6280 [over.over]
6282 If the name is a function template, template argument deduction
6283 is done, and if the argument deduction succeeds, the deduced
6284 arguments are used to generate a single template function, which
6285 is added to the set of overloaded functions considered.
6287 Non-member functions and static member functions match targets of
6288 type "pointer-to-function" or "reference-to-function." Nonstatic
6289 member functions match targets of type "pointer-to-member
6290 function;" the function type of the pointer to member is used to
6291 select the member function from the set of overloaded member
6292 functions. If a nonstatic member function is selected, the
6293 reference to the overloaded function name is required to have the
6294 form of a pointer to member as described in 5.3.1.
6296 If more than one function is selected, any template functions in
6297 the set are eliminated if the set also contains a non-template
6298 function, and any given template function is eliminated if the
6299 set contains a second template function that is more specialized
6300 than the first according to the partial ordering rules 14.5.5.2.
6301 After such eliminations, if any, there shall remain exactly one
6302 selected function. */
6304 int is_ptrmem = 0;
6305 /* We store the matches in a TREE_LIST rooted here. The functions
6306 are the TREE_PURPOSE, not the TREE_VALUE, in this list, for easy
6307 interoperability with most_specialized_instantiation. */
6308 tree matches = NULL_TREE;
6309 tree fn;
6310 tree target_fn_type;
6312 /* By the time we get here, we should be seeing only real
6313 pointer-to-member types, not the internal POINTER_TYPE to
6314 METHOD_TYPE representation. */
6315 gcc_assert (TREE_CODE (target_type) != POINTER_TYPE
6316 || TREE_CODE (TREE_TYPE (target_type)) != METHOD_TYPE);
6318 gcc_assert (is_overloaded_fn (overload));
6320 /* Check that the TARGET_TYPE is reasonable. */
6321 if (TYPE_PTRFN_P (target_type))
6322 /* This is OK. */;
6323 else if (TYPE_PTRMEMFUNC_P (target_type))
6324 /* This is OK, too. */
6325 is_ptrmem = 1;
6326 else if (TREE_CODE (target_type) == FUNCTION_TYPE)
6327 /* This is OK, too. This comes from a conversion to reference
6328 type. */
6329 target_type = build_reference_type (target_type);
6330 else
6332 if (flags & tf_error)
6333 error ("cannot resolve overloaded function %qD based on"
6334 " conversion to type %qT",
6335 DECL_NAME (OVL_FUNCTION (overload)), target_type);
6336 return error_mark_node;
6339 /* Non-member functions and static member functions match targets of type
6340 "pointer-to-function" or "reference-to-function." Nonstatic member
6341 functions match targets of type "pointer-to-member-function;" the
6342 function type of the pointer to member is used to select the member
6343 function from the set of overloaded member functions.
6345 So figure out the FUNCTION_TYPE that we want to match against. */
6346 target_fn_type = static_fn_type (target_type);
6348 /* If we can find a non-template function that matches, we can just
6349 use it. There's no point in generating template instantiations
6350 if we're just going to throw them out anyhow. But, of course, we
6351 can only do this when we don't *need* a template function. */
6352 if (!template_only)
6354 tree fns;
6356 for (fns = overload; fns; fns = OVL_NEXT (fns))
6358 tree fn = OVL_CURRENT (fns);
6360 if (TREE_CODE (fn) == TEMPLATE_DECL)
6361 /* We're not looking for templates just yet. */
6362 continue;
6364 if ((TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
6365 != is_ptrmem)
6366 /* We're looking for a non-static member, and this isn't
6367 one, or vice versa. */
6368 continue;
6370 /* Ignore functions which haven't been explicitly
6371 declared. */
6372 if (DECL_ANTICIPATED (fn))
6373 continue;
6375 /* See if there's a match. */
6376 if (same_type_p (target_fn_type, static_fn_type (fn)))
6377 matches = tree_cons (fn, NULL_TREE, matches);
6381 /* Now, if we've already got a match (or matches), there's no need
6382 to proceed to the template functions. But, if we don't have a
6383 match we need to look at them, too. */
6384 if (!matches)
6386 tree target_arg_types;
6387 tree target_ret_type;
6388 tree fns;
6389 tree *args;
6390 unsigned int nargs, ia;
6391 tree arg;
6393 target_arg_types = TYPE_ARG_TYPES (target_fn_type);
6394 target_ret_type = TREE_TYPE (target_fn_type);
6396 nargs = list_length (target_arg_types);
6397 args = XALLOCAVEC (tree, nargs);
6398 for (arg = target_arg_types, ia = 0;
6399 arg != NULL_TREE && arg != void_list_node;
6400 arg = TREE_CHAIN (arg), ++ia)
6401 args[ia] = TREE_VALUE (arg);
6402 nargs = ia;
6404 for (fns = overload; fns; fns = OVL_NEXT (fns))
6406 tree fn = OVL_CURRENT (fns);
6407 tree instantiation;
6408 tree targs;
6410 if (TREE_CODE (fn) != TEMPLATE_DECL)
6411 /* We're only looking for templates. */
6412 continue;
6414 if ((TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
6415 != is_ptrmem)
6416 /* We're not looking for a non-static member, and this is
6417 one, or vice versa. */
6418 continue;
6420 /* Try to do argument deduction. */
6421 targs = make_tree_vec (DECL_NTPARMS (fn));
6422 if (fn_type_unification (fn, explicit_targs, targs, args, nargs,
6423 target_ret_type, DEDUCE_EXACT,
6424 LOOKUP_NORMAL))
6425 /* Argument deduction failed. */
6426 continue;
6428 /* Instantiate the template. */
6429 instantiation = instantiate_template (fn, targs, flags);
6430 if (instantiation == error_mark_node)
6431 /* Instantiation failed. */
6432 continue;
6434 /* See if there's a match. */
6435 if (same_type_p (target_fn_type, static_fn_type (instantiation)))
6436 matches = tree_cons (instantiation, fn, matches);
6439 /* Now, remove all but the most specialized of the matches. */
6440 if (matches)
6442 tree match = most_specialized_instantiation (matches);
6444 if (match != error_mark_node)
6445 matches = tree_cons (TREE_PURPOSE (match),
6446 NULL_TREE,
6447 NULL_TREE);
6451 /* Now we should have exactly one function in MATCHES. */
6452 if (matches == NULL_TREE)
6454 /* There were *no* matches. */
6455 if (flags & tf_error)
6457 error ("no matches converting function %qD to type %q#T",
6458 DECL_NAME (OVL_CURRENT (overload)),
6459 target_type);
6461 /* print_candidates expects a chain with the functions in
6462 TREE_VALUE slots, so we cons one up here (we're losing anyway,
6463 so why be clever?). */
6464 for (; overload; overload = OVL_NEXT (overload))
6465 matches = tree_cons (NULL_TREE, OVL_CURRENT (overload),
6466 matches);
6468 print_candidates (matches);
6470 return error_mark_node;
6472 else if (TREE_CHAIN (matches))
6474 /* There were too many matches. First check if they're all
6475 the same function. */
6476 tree match;
6478 fn = TREE_PURPOSE (matches);
6479 for (match = TREE_CHAIN (matches); match; match = TREE_CHAIN (match))
6480 if (!decls_match (fn, TREE_PURPOSE (match)))
6481 break;
6483 if (match)
6485 if (flags & tf_error)
6487 error ("converting overloaded function %qD to type %q#T is ambiguous",
6488 DECL_NAME (OVL_FUNCTION (overload)),
6489 target_type);
6491 /* Since print_candidates expects the functions in the
6492 TREE_VALUE slot, we flip them here. */
6493 for (match = matches; match; match = TREE_CHAIN (match))
6494 TREE_VALUE (match) = TREE_PURPOSE (match);
6496 print_candidates (matches);
6499 return error_mark_node;
6503 /* Good, exactly one match. Now, convert it to the correct type. */
6504 fn = TREE_PURPOSE (matches);
6506 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
6507 && !(flags & tf_ptrmem_ok) && !flag_ms_extensions)
6509 static int explained;
6511 if (!(flags & tf_error))
6512 return error_mark_node;
6514 permerror (input_location, "assuming pointer to member %qD", fn);
6515 if (!explained)
6517 inform (input_location, "(a pointer to member can only be formed with %<&%E%>)", fn);
6518 explained = 1;
6522 /* If we're doing overload resolution purely for the purpose of
6523 determining conversion sequences, we should not consider the
6524 function used. If this conversion sequence is selected, the
6525 function will be marked as used at this point. */
6526 if (!(flags & tf_conv))
6528 /* Make =delete work with SFINAE. */
6529 if (DECL_DELETED_FN (fn) && !(flags & tf_error))
6530 return error_mark_node;
6532 mark_used (fn);
6535 /* We could not check access to member functions when this
6536 expression was originally created since we did not know at that
6537 time to which function the expression referred. */
6538 if (!(flags & tf_no_access_control)
6539 && DECL_FUNCTION_MEMBER_P (fn))
6541 gcc_assert (access_path);
6542 perform_or_defer_access_check (access_path, fn, fn);
6545 if (TYPE_PTRFN_P (target_type) || TYPE_PTRMEMFUNC_P (target_type))
6546 return cp_build_addr_expr (fn, flags);
6547 else
6549 /* The target must be a REFERENCE_TYPE. Above, cp_build_unary_op
6550 will mark the function as addressed, but here we must do it
6551 explicitly. */
6552 cxx_mark_addressable (fn);
6554 return fn;
6558 /* This function will instantiate the type of the expression given in
6559 RHS to match the type of LHSTYPE. If errors exist, then return
6560 error_mark_node. FLAGS is a bit mask. If TF_ERROR is set, then
6561 we complain on errors. If we are not complaining, never modify rhs,
6562 as overload resolution wants to try many possible instantiations, in
6563 the hope that at least one will work.
6565 For non-recursive calls, LHSTYPE should be a function, pointer to
6566 function, or a pointer to member function. */
6568 tree
6569 instantiate_type (tree lhstype, tree rhs, tsubst_flags_t flags)
6571 tsubst_flags_t flags_in = flags;
6572 tree access_path = NULL_TREE;
6574 flags &= ~tf_ptrmem_ok;
6576 if (lhstype == unknown_type_node)
6578 if (flags & tf_error)
6579 error ("not enough type information");
6580 return error_mark_node;
6583 if (TREE_TYPE (rhs) != NULL_TREE && ! (type_unknown_p (rhs)))
6585 if (same_type_p (lhstype, TREE_TYPE (rhs)))
6586 return rhs;
6587 if (flag_ms_extensions
6588 && TYPE_PTRMEMFUNC_P (lhstype)
6589 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (rhs)))
6590 /* Microsoft allows `A::f' to be resolved to a
6591 pointer-to-member. */
6593 else
6595 if (flags & tf_error)
6596 error ("argument of type %qT does not match %qT",
6597 TREE_TYPE (rhs), lhstype);
6598 return error_mark_node;
6602 if (TREE_CODE (rhs) == BASELINK)
6604 access_path = BASELINK_ACCESS_BINFO (rhs);
6605 rhs = BASELINK_FUNCTIONS (rhs);
6608 /* If we are in a template, and have a NON_DEPENDENT_EXPR, we cannot
6609 deduce any type information. */
6610 if (TREE_CODE (rhs) == NON_DEPENDENT_EXPR)
6612 if (flags & tf_error)
6613 error ("not enough type information");
6614 return error_mark_node;
6617 /* There only a few kinds of expressions that may have a type
6618 dependent on overload resolution. */
6619 gcc_assert (TREE_CODE (rhs) == ADDR_EXPR
6620 || TREE_CODE (rhs) == COMPONENT_REF
6621 || really_overloaded_fn (rhs)
6622 || (flag_ms_extensions && TREE_CODE (rhs) == FUNCTION_DECL));
6624 /* This should really only be used when attempting to distinguish
6625 what sort of a pointer to function we have. For now, any
6626 arithmetic operation which is not supported on pointers
6627 is rejected as an error. */
6629 switch (TREE_CODE (rhs))
6631 case COMPONENT_REF:
6633 tree member = TREE_OPERAND (rhs, 1);
6635 member = instantiate_type (lhstype, member, flags);
6636 if (member != error_mark_node
6637 && TREE_SIDE_EFFECTS (TREE_OPERAND (rhs, 0)))
6638 /* Do not lose object's side effects. */
6639 return build2 (COMPOUND_EXPR, TREE_TYPE (member),
6640 TREE_OPERAND (rhs, 0), member);
6641 return member;
6644 case OFFSET_REF:
6645 rhs = TREE_OPERAND (rhs, 1);
6646 if (BASELINK_P (rhs))
6647 return instantiate_type (lhstype, rhs, flags_in);
6649 /* This can happen if we are forming a pointer-to-member for a
6650 member template. */
6651 gcc_assert (TREE_CODE (rhs) == TEMPLATE_ID_EXPR);
6653 /* Fall through. */
6655 case TEMPLATE_ID_EXPR:
6657 tree fns = TREE_OPERAND (rhs, 0);
6658 tree args = TREE_OPERAND (rhs, 1);
6660 return
6661 resolve_address_of_overloaded_function (lhstype, fns, flags_in,
6662 /*template_only=*/true,
6663 args, access_path);
6666 case OVERLOAD:
6667 case FUNCTION_DECL:
6668 return
6669 resolve_address_of_overloaded_function (lhstype, rhs, flags_in,
6670 /*template_only=*/false,
6671 /*explicit_targs=*/NULL_TREE,
6672 access_path);
6674 case ADDR_EXPR:
6676 if (PTRMEM_OK_P (rhs))
6677 flags |= tf_ptrmem_ok;
6679 return instantiate_type (lhstype, TREE_OPERAND (rhs, 0), flags);
6682 case ERROR_MARK:
6683 return error_mark_node;
6685 default:
6686 gcc_unreachable ();
6688 return error_mark_node;
6691 /* Return the name of the virtual function pointer field
6692 (as an IDENTIFIER_NODE) for the given TYPE. Note that
6693 this may have to look back through base types to find the
6694 ultimate field name. (For single inheritance, these could
6695 all be the same name. Who knows for multiple inheritance). */
6697 static tree
6698 get_vfield_name (tree type)
6700 tree binfo, base_binfo;
6701 char *buf;
6703 for (binfo = TYPE_BINFO (type);
6704 BINFO_N_BASE_BINFOS (binfo);
6705 binfo = base_binfo)
6707 base_binfo = BINFO_BASE_BINFO (binfo, 0);
6709 if (BINFO_VIRTUAL_P (base_binfo)
6710 || !TYPE_CONTAINS_VPTR_P (BINFO_TYPE (base_binfo)))
6711 break;
6714 type = BINFO_TYPE (binfo);
6715 buf = (char *) alloca (sizeof (VFIELD_NAME_FORMAT)
6716 + TYPE_NAME_LENGTH (type) + 2);
6717 sprintf (buf, VFIELD_NAME_FORMAT,
6718 IDENTIFIER_POINTER (constructor_name (type)));
6719 return get_identifier (buf);
6722 void
6723 print_class_statistics (void)
6725 #ifdef GATHER_STATISTICS
6726 fprintf (stderr, "convert_harshness = %d\n", n_convert_harshness);
6727 fprintf (stderr, "compute_conversion_costs = %d\n", n_compute_conversion_costs);
6728 if (n_vtables)
6730 fprintf (stderr, "vtables = %d; vtable searches = %d\n",
6731 n_vtables, n_vtable_searches);
6732 fprintf (stderr, "vtable entries = %d; vtable elems = %d\n",
6733 n_vtable_entries, n_vtable_elems);
6735 #endif
6738 /* Build a dummy reference to ourselves so Derived::Base (and A::A) works,
6739 according to [class]:
6740 The class-name is also inserted
6741 into the scope of the class itself. For purposes of access checking,
6742 the inserted class name is treated as if it were a public member name. */
6744 void
6745 build_self_reference (void)
6747 tree name = constructor_name (current_class_type);
6748 tree value = build_lang_decl (TYPE_DECL, name, current_class_type);
6749 tree saved_cas;
6751 DECL_NONLOCAL (value) = 1;
6752 DECL_CONTEXT (value) = current_class_type;
6753 DECL_ARTIFICIAL (value) = 1;
6754 SET_DECL_SELF_REFERENCE_P (value);
6755 cp_set_underlying_type (value);
6757 if (processing_template_decl)
6758 value = push_template_decl (value);
6760 saved_cas = current_access_specifier;
6761 current_access_specifier = access_public_node;
6762 finish_member_declaration (value);
6763 current_access_specifier = saved_cas;
6766 /* Returns 1 if TYPE contains only padding bytes. */
6769 is_empty_class (tree type)
6771 if (type == error_mark_node)
6772 return 0;
6774 if (! CLASS_TYPE_P (type))
6775 return 0;
6777 /* In G++ 3.2, whether or not a class was empty was determined by
6778 looking at its size. */
6779 if (abi_version_at_least (2))
6780 return CLASSTYPE_EMPTY_P (type);
6781 else
6782 return integer_zerop (CLASSTYPE_SIZE (type));
6785 /* Returns true if TYPE contains an empty class. */
6787 static bool
6788 contains_empty_class_p (tree type)
6790 if (is_empty_class (type))
6791 return true;
6792 if (CLASS_TYPE_P (type))
6794 tree field;
6795 tree binfo;
6796 tree base_binfo;
6797 int i;
6799 for (binfo = TYPE_BINFO (type), i = 0;
6800 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
6801 if (contains_empty_class_p (BINFO_TYPE (base_binfo)))
6802 return true;
6803 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
6804 if (TREE_CODE (field) == FIELD_DECL
6805 && !DECL_ARTIFICIAL (field)
6806 && is_empty_class (TREE_TYPE (field)))
6807 return true;
6809 else if (TREE_CODE (type) == ARRAY_TYPE)
6810 return contains_empty_class_p (TREE_TYPE (type));
6811 return false;
6814 /* Returns true if TYPE contains no actual data, just various
6815 possible combinations of empty classes. */
6817 bool
6818 is_really_empty_class (tree type)
6820 if (is_empty_class (type))
6821 return true;
6822 if (CLASS_TYPE_P (type))
6824 tree field;
6825 tree binfo;
6826 tree base_binfo;
6827 int i;
6829 for (binfo = TYPE_BINFO (type), i = 0;
6830 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
6831 if (!is_really_empty_class (BINFO_TYPE (base_binfo)))
6832 return false;
6833 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
6834 if (TREE_CODE (field) == FIELD_DECL
6835 && !DECL_ARTIFICIAL (field)
6836 && !is_really_empty_class (TREE_TYPE (field)))
6837 return false;
6838 return true;
6840 else if (TREE_CODE (type) == ARRAY_TYPE)
6841 return is_really_empty_class (TREE_TYPE (type));
6842 return false;
6845 /* Note that NAME was looked up while the current class was being
6846 defined and that the result of that lookup was DECL. */
6848 void
6849 maybe_note_name_used_in_class (tree name, tree decl)
6851 splay_tree names_used;
6853 /* If we're not defining a class, there's nothing to do. */
6854 if (!(innermost_scope_kind() == sk_class
6855 && TYPE_BEING_DEFINED (current_class_type)
6856 && !LAMBDA_TYPE_P (current_class_type)))
6857 return;
6859 /* If there's already a binding for this NAME, then we don't have
6860 anything to worry about. */
6861 if (lookup_member (current_class_type, name,
6862 /*protect=*/0, /*want_type=*/false))
6863 return;
6865 if (!current_class_stack[current_class_depth - 1].names_used)
6866 current_class_stack[current_class_depth - 1].names_used
6867 = splay_tree_new (splay_tree_compare_pointers, 0, 0);
6868 names_used = current_class_stack[current_class_depth - 1].names_used;
6870 splay_tree_insert (names_used,
6871 (splay_tree_key) name,
6872 (splay_tree_value) decl);
6875 /* Note that NAME was declared (as DECL) in the current class. Check
6876 to see that the declaration is valid. */
6878 void
6879 note_name_declared_in_class (tree name, tree decl)
6881 splay_tree names_used;
6882 splay_tree_node n;
6884 /* Look to see if we ever used this name. */
6885 names_used
6886 = current_class_stack[current_class_depth - 1].names_used;
6887 if (!names_used)
6888 return;
6889 /* The C language allows members to be declared with a type of the same
6890 name, and the C++ standard says this diagnostic is not required. So
6891 allow it in extern "C" blocks unless predantic is specified.
6892 Allow it in all cases if -ms-extensions is specified. */
6893 if ((!pedantic && current_lang_name == lang_name_c)
6894 || flag_ms_extensions)
6895 return;
6896 n = splay_tree_lookup (names_used, (splay_tree_key) name);
6897 if (n)
6899 /* [basic.scope.class]
6901 A name N used in a class S shall refer to the same declaration
6902 in its context and when re-evaluated in the completed scope of
6903 S. */
6904 permerror (input_location, "declaration of %q#D", decl);
6905 permerror (input_location, "changes meaning of %qD from %q+#D",
6906 DECL_NAME (OVL_CURRENT (decl)), (tree) n->value);
6910 /* Returns the VAR_DECL for the complete vtable associated with BINFO.
6911 Secondary vtables are merged with primary vtables; this function
6912 will return the VAR_DECL for the primary vtable. */
6914 tree
6915 get_vtbl_decl_for_binfo (tree binfo)
6917 tree decl;
6919 decl = BINFO_VTABLE (binfo);
6920 if (decl && TREE_CODE (decl) == POINTER_PLUS_EXPR)
6922 gcc_assert (TREE_CODE (TREE_OPERAND (decl, 0)) == ADDR_EXPR);
6923 decl = TREE_OPERAND (TREE_OPERAND (decl, 0), 0);
6925 if (decl)
6926 gcc_assert (TREE_CODE (decl) == VAR_DECL);
6927 return decl;
6931 /* Returns the binfo for the primary base of BINFO. If the resulting
6932 BINFO is a virtual base, and it is inherited elsewhere in the
6933 hierarchy, then the returned binfo might not be the primary base of
6934 BINFO in the complete object. Check BINFO_PRIMARY_P or
6935 BINFO_LOST_PRIMARY_P to be sure. */
6937 static tree
6938 get_primary_binfo (tree binfo)
6940 tree primary_base;
6942 primary_base = CLASSTYPE_PRIMARY_BINFO (BINFO_TYPE (binfo));
6943 if (!primary_base)
6944 return NULL_TREE;
6946 return copied_binfo (primary_base, binfo);
6949 /* If INDENTED_P is zero, indent to INDENT. Return nonzero. */
6951 static int
6952 maybe_indent_hierarchy (FILE * stream, int indent, int indented_p)
6954 if (!indented_p)
6955 fprintf (stream, "%*s", indent, "");
6956 return 1;
6959 /* Dump the offsets of all the bases rooted at BINFO to STREAM.
6960 INDENT should be zero when called from the top level; it is
6961 incremented recursively. IGO indicates the next expected BINFO in
6962 inheritance graph ordering. */
6964 static tree
6965 dump_class_hierarchy_r (FILE *stream,
6966 int flags,
6967 tree binfo,
6968 tree igo,
6969 int indent)
6971 int indented = 0;
6972 tree base_binfo;
6973 int i;
6975 indented = maybe_indent_hierarchy (stream, indent, 0);
6976 fprintf (stream, "%s (0x%lx) ",
6977 type_as_string (BINFO_TYPE (binfo), TFF_PLAIN_IDENTIFIER),
6978 (unsigned long) binfo);
6979 if (binfo != igo)
6981 fprintf (stream, "alternative-path\n");
6982 return igo;
6984 igo = TREE_CHAIN (binfo);
6986 fprintf (stream, HOST_WIDE_INT_PRINT_DEC,
6987 tree_low_cst (BINFO_OFFSET (binfo), 0));
6988 if (is_empty_class (BINFO_TYPE (binfo)))
6989 fprintf (stream, " empty");
6990 else if (CLASSTYPE_NEARLY_EMPTY_P (BINFO_TYPE (binfo)))
6991 fprintf (stream, " nearly-empty");
6992 if (BINFO_VIRTUAL_P (binfo))
6993 fprintf (stream, " virtual");
6994 fprintf (stream, "\n");
6996 indented = 0;
6997 if (BINFO_PRIMARY_P (binfo))
6999 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
7000 fprintf (stream, " primary-for %s (0x%lx)",
7001 type_as_string (BINFO_TYPE (BINFO_INHERITANCE_CHAIN (binfo)),
7002 TFF_PLAIN_IDENTIFIER),
7003 (unsigned long)BINFO_INHERITANCE_CHAIN (binfo));
7005 if (BINFO_LOST_PRIMARY_P (binfo))
7007 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
7008 fprintf (stream, " lost-primary");
7010 if (indented)
7011 fprintf (stream, "\n");
7013 if (!(flags & TDF_SLIM))
7015 int indented = 0;
7017 if (BINFO_SUBVTT_INDEX (binfo))
7019 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
7020 fprintf (stream, " subvttidx=%s",
7021 expr_as_string (BINFO_SUBVTT_INDEX (binfo),
7022 TFF_PLAIN_IDENTIFIER));
7024 if (BINFO_VPTR_INDEX (binfo))
7026 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
7027 fprintf (stream, " vptridx=%s",
7028 expr_as_string (BINFO_VPTR_INDEX (binfo),
7029 TFF_PLAIN_IDENTIFIER));
7031 if (BINFO_VPTR_FIELD (binfo))
7033 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
7034 fprintf (stream, " vbaseoffset=%s",
7035 expr_as_string (BINFO_VPTR_FIELD (binfo),
7036 TFF_PLAIN_IDENTIFIER));
7038 if (BINFO_VTABLE (binfo))
7040 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
7041 fprintf (stream, " vptr=%s",
7042 expr_as_string (BINFO_VTABLE (binfo),
7043 TFF_PLAIN_IDENTIFIER));
7046 if (indented)
7047 fprintf (stream, "\n");
7050 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
7051 igo = dump_class_hierarchy_r (stream, flags, base_binfo, igo, indent + 2);
7053 return igo;
7056 /* Dump the BINFO hierarchy for T. */
7058 static void
7059 dump_class_hierarchy_1 (FILE *stream, int flags, tree t)
7061 fprintf (stream, "Class %s\n", type_as_string (t, TFF_PLAIN_IDENTIFIER));
7062 fprintf (stream, " size=%lu align=%lu\n",
7063 (unsigned long)(tree_low_cst (TYPE_SIZE (t), 0) / BITS_PER_UNIT),
7064 (unsigned long)(TYPE_ALIGN (t) / BITS_PER_UNIT));
7065 fprintf (stream, " base size=%lu base align=%lu\n",
7066 (unsigned long)(tree_low_cst (TYPE_SIZE (CLASSTYPE_AS_BASE (t)), 0)
7067 / BITS_PER_UNIT),
7068 (unsigned long)(TYPE_ALIGN (CLASSTYPE_AS_BASE (t))
7069 / BITS_PER_UNIT));
7070 dump_class_hierarchy_r (stream, flags, TYPE_BINFO (t), TYPE_BINFO (t), 0);
7071 fprintf (stream, "\n");
7074 /* Debug interface to hierarchy dumping. */
7076 void
7077 debug_class (tree t)
7079 dump_class_hierarchy_1 (stderr, TDF_SLIM, t);
7082 static void
7083 dump_class_hierarchy (tree t)
7085 int flags;
7086 FILE *stream = dump_begin (TDI_class, &flags);
7088 if (stream)
7090 dump_class_hierarchy_1 (stream, flags, t);
7091 dump_end (TDI_class, stream);
7095 static void
7096 dump_array (FILE * stream, tree decl)
7098 tree value;
7099 unsigned HOST_WIDE_INT ix;
7100 HOST_WIDE_INT elt;
7101 tree size = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (decl)));
7103 elt = (tree_low_cst (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl))), 0)
7104 / BITS_PER_UNIT);
7105 fprintf (stream, "%s:", decl_as_string (decl, TFF_PLAIN_IDENTIFIER));
7106 fprintf (stream, " %s entries",
7107 expr_as_string (size_binop (PLUS_EXPR, size, size_one_node),
7108 TFF_PLAIN_IDENTIFIER));
7109 fprintf (stream, "\n");
7111 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)),
7112 ix, value)
7113 fprintf (stream, "%-4ld %s\n", (long)(ix * elt),
7114 expr_as_string (value, TFF_PLAIN_IDENTIFIER));
7117 static void
7118 dump_vtable (tree t, tree binfo, tree vtable)
7120 int flags;
7121 FILE *stream = dump_begin (TDI_class, &flags);
7123 if (!stream)
7124 return;
7126 if (!(flags & TDF_SLIM))
7128 int ctor_vtbl_p = TYPE_BINFO (t) != binfo;
7130 fprintf (stream, "%s for %s",
7131 ctor_vtbl_p ? "Construction vtable" : "Vtable",
7132 type_as_string (BINFO_TYPE (binfo), TFF_PLAIN_IDENTIFIER));
7133 if (ctor_vtbl_p)
7135 if (!BINFO_VIRTUAL_P (binfo))
7136 fprintf (stream, " (0x%lx instance)", (unsigned long)binfo);
7137 fprintf (stream, " in %s", type_as_string (t, TFF_PLAIN_IDENTIFIER));
7139 fprintf (stream, "\n");
7140 dump_array (stream, vtable);
7141 fprintf (stream, "\n");
7144 dump_end (TDI_class, stream);
7147 static void
7148 dump_vtt (tree t, tree vtt)
7150 int flags;
7151 FILE *stream = dump_begin (TDI_class, &flags);
7153 if (!stream)
7154 return;
7156 if (!(flags & TDF_SLIM))
7158 fprintf (stream, "VTT for %s\n",
7159 type_as_string (t, TFF_PLAIN_IDENTIFIER));
7160 dump_array (stream, vtt);
7161 fprintf (stream, "\n");
7164 dump_end (TDI_class, stream);
7167 /* Dump a function or thunk and its thunkees. */
7169 static void
7170 dump_thunk (FILE *stream, int indent, tree thunk)
7172 static const char spaces[] = " ";
7173 tree name = DECL_NAME (thunk);
7174 tree thunks;
7176 fprintf (stream, "%.*s%p %s %s", indent, spaces,
7177 (void *)thunk,
7178 !DECL_THUNK_P (thunk) ? "function"
7179 : DECL_THIS_THUNK_P (thunk) ? "this-thunk" : "covariant-thunk",
7180 name ? IDENTIFIER_POINTER (name) : "<unset>");
7181 if (DECL_THUNK_P (thunk))
7183 HOST_WIDE_INT fixed_adjust = THUNK_FIXED_OFFSET (thunk);
7184 tree virtual_adjust = THUNK_VIRTUAL_OFFSET (thunk);
7186 fprintf (stream, " fixed=" HOST_WIDE_INT_PRINT_DEC, fixed_adjust);
7187 if (!virtual_adjust)
7188 /*NOP*/;
7189 else if (DECL_THIS_THUNK_P (thunk))
7190 fprintf (stream, " vcall=" HOST_WIDE_INT_PRINT_DEC,
7191 tree_low_cst (virtual_adjust, 0));
7192 else
7193 fprintf (stream, " vbase=" HOST_WIDE_INT_PRINT_DEC "(%s)",
7194 tree_low_cst (BINFO_VPTR_FIELD (virtual_adjust), 0),
7195 type_as_string (BINFO_TYPE (virtual_adjust), TFF_SCOPE));
7196 if (THUNK_ALIAS (thunk))
7197 fprintf (stream, " alias to %p", (void *)THUNK_ALIAS (thunk));
7199 fprintf (stream, "\n");
7200 for (thunks = DECL_THUNKS (thunk); thunks; thunks = TREE_CHAIN (thunks))
7201 dump_thunk (stream, indent + 2, thunks);
7204 /* Dump the thunks for FN. */
7206 void
7207 debug_thunks (tree fn)
7209 dump_thunk (stderr, 0, fn);
7212 /* Virtual function table initialization. */
7214 /* Create all the necessary vtables for T and its base classes. */
7216 static void
7217 finish_vtbls (tree t)
7219 tree vbase;
7220 VEC(constructor_elt,gc) *v = NULL;
7221 tree vtable = BINFO_VTABLE (TYPE_BINFO (t));
7223 /* We lay out the primary and secondary vtables in one contiguous
7224 vtable. The primary vtable is first, followed by the non-virtual
7225 secondary vtables in inheritance graph order. */
7226 accumulate_vtbl_inits (TYPE_BINFO (t), TYPE_BINFO (t), TYPE_BINFO (t),
7227 vtable, t, &v);
7229 /* Then come the virtual bases, also in inheritance graph order. */
7230 for (vbase = TYPE_BINFO (t); vbase; vbase = TREE_CHAIN (vbase))
7232 if (!BINFO_VIRTUAL_P (vbase))
7233 continue;
7234 accumulate_vtbl_inits (vbase, vbase, TYPE_BINFO (t), vtable, t, &v);
7237 if (BINFO_VTABLE (TYPE_BINFO (t)))
7238 initialize_vtable (TYPE_BINFO (t), v);
7241 /* Initialize the vtable for BINFO with the INITS. */
7243 static void
7244 initialize_vtable (tree binfo, VEC(constructor_elt,gc) *inits)
7246 tree decl;
7248 layout_vtable_decl (binfo, VEC_length (constructor_elt, inits));
7249 decl = get_vtbl_decl_for_binfo (binfo);
7250 initialize_artificial_var (decl, inits);
7251 dump_vtable (BINFO_TYPE (binfo), binfo, decl);
7254 /* Build the VTT (virtual table table) for T.
7255 A class requires a VTT if it has virtual bases.
7257 This holds
7258 1 - primary virtual pointer for complete object T
7259 2 - secondary VTTs for each direct non-virtual base of T which requires a
7261 3 - secondary virtual pointers for each direct or indirect base of T which
7262 has virtual bases or is reachable via a virtual path from T.
7263 4 - secondary VTTs for each direct or indirect virtual base of T.
7265 Secondary VTTs look like complete object VTTs without part 4. */
7267 static void
7268 build_vtt (tree t)
7270 tree type;
7271 tree vtt;
7272 tree index;
7273 VEC(constructor_elt,gc) *inits;
7275 /* Build up the initializers for the VTT. */
7276 inits = NULL;
7277 index = size_zero_node;
7278 build_vtt_inits (TYPE_BINFO (t), t, &inits, &index);
7280 /* If we didn't need a VTT, we're done. */
7281 if (!inits)
7282 return;
7284 /* Figure out the type of the VTT. */
7285 type = build_index_type (size_int (VEC_length (constructor_elt, inits) - 1));
7286 type = build_cplus_array_type (const_ptr_type_node, type);
7288 /* Now, build the VTT object itself. */
7289 vtt = build_vtable (t, mangle_vtt_for_type (t), type);
7290 initialize_artificial_var (vtt, inits);
7291 /* Add the VTT to the vtables list. */
7292 DECL_CHAIN (vtt) = DECL_CHAIN (CLASSTYPE_VTABLES (t));
7293 DECL_CHAIN (CLASSTYPE_VTABLES (t)) = vtt;
7295 dump_vtt (t, vtt);
7298 /* When building a secondary VTT, BINFO_VTABLE is set to a TREE_LIST with
7299 PURPOSE the RTTI_BINFO, VALUE the real vtable pointer for this binfo,
7300 and CHAIN the vtable pointer for this binfo after construction is
7301 complete. VALUE can also be another BINFO, in which case we recurse. */
7303 static tree
7304 binfo_ctor_vtable (tree binfo)
7306 tree vt;
7308 while (1)
7310 vt = BINFO_VTABLE (binfo);
7311 if (TREE_CODE (vt) == TREE_LIST)
7312 vt = TREE_VALUE (vt);
7313 if (TREE_CODE (vt) == TREE_BINFO)
7314 binfo = vt;
7315 else
7316 break;
7319 return vt;
7322 /* Data for secondary VTT initialization. */
7323 typedef struct secondary_vptr_vtt_init_data_s
7325 /* Is this the primary VTT? */
7326 bool top_level_p;
7328 /* Current index into the VTT. */
7329 tree index;
7331 /* Vector of initializers built up. */
7332 VEC(constructor_elt,gc) *inits;
7334 /* The type being constructed by this secondary VTT. */
7335 tree type_being_constructed;
7336 } secondary_vptr_vtt_init_data;
7338 /* Recursively build the VTT-initializer for BINFO (which is in the
7339 hierarchy dominated by T). INITS points to the end of the initializer
7340 list to date. INDEX is the VTT index where the next element will be
7341 replaced. Iff BINFO is the binfo for T, this is the top level VTT (i.e.
7342 not a subvtt for some base of T). When that is so, we emit the sub-VTTs
7343 for virtual bases of T. When it is not so, we build the constructor
7344 vtables for the BINFO-in-T variant. */
7346 static void
7347 build_vtt_inits (tree binfo, tree t, VEC(constructor_elt,gc) **inits, tree *index)
7349 int i;
7350 tree b;
7351 tree init;
7352 secondary_vptr_vtt_init_data data;
7353 int top_level_p = SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), t);
7355 /* We only need VTTs for subobjects with virtual bases. */
7356 if (!CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo)))
7357 return;
7359 /* We need to use a construction vtable if this is not the primary
7360 VTT. */
7361 if (!top_level_p)
7363 build_ctor_vtbl_group (binfo, t);
7365 /* Record the offset in the VTT where this sub-VTT can be found. */
7366 BINFO_SUBVTT_INDEX (binfo) = *index;
7369 /* Add the address of the primary vtable for the complete object. */
7370 init = binfo_ctor_vtable (binfo);
7371 CONSTRUCTOR_APPEND_ELT (*inits, NULL_TREE, init);
7372 if (top_level_p)
7374 gcc_assert (!BINFO_VPTR_INDEX (binfo));
7375 BINFO_VPTR_INDEX (binfo) = *index;
7377 *index = size_binop (PLUS_EXPR, *index, TYPE_SIZE_UNIT (ptr_type_node));
7379 /* Recursively add the secondary VTTs for non-virtual bases. */
7380 for (i = 0; BINFO_BASE_ITERATE (binfo, i, b); ++i)
7381 if (!BINFO_VIRTUAL_P (b))
7382 build_vtt_inits (b, t, inits, index);
7384 /* Add secondary virtual pointers for all subobjects of BINFO with
7385 either virtual bases or reachable along a virtual path, except
7386 subobjects that are non-virtual primary bases. */
7387 data.top_level_p = top_level_p;
7388 data.index = *index;
7389 data.inits = *inits;
7390 data.type_being_constructed = BINFO_TYPE (binfo);
7392 dfs_walk_once (binfo, dfs_build_secondary_vptr_vtt_inits, NULL, &data);
7394 *index = data.index;
7396 /* data.inits might have grown as we added secondary virtual pointers.
7397 Make sure our caller knows about the new vector. */
7398 *inits = data.inits;
7400 if (top_level_p)
7401 /* Add the secondary VTTs for virtual bases in inheritance graph
7402 order. */
7403 for (b = TYPE_BINFO (BINFO_TYPE (binfo)); b; b = TREE_CHAIN (b))
7405 if (!BINFO_VIRTUAL_P (b))
7406 continue;
7408 build_vtt_inits (b, t, inits, index);
7410 else
7411 /* Remove the ctor vtables we created. */
7412 dfs_walk_all (binfo, dfs_fixup_binfo_vtbls, NULL, binfo);
7415 /* Called from build_vtt_inits via dfs_walk. BINFO is the binfo for the base
7416 in most derived. DATA is a SECONDARY_VPTR_VTT_INIT_DATA structure. */
7418 static tree
7419 dfs_build_secondary_vptr_vtt_inits (tree binfo, void *data_)
7421 secondary_vptr_vtt_init_data *data = (secondary_vptr_vtt_init_data *)data_;
7423 /* We don't care about bases that don't have vtables. */
7424 if (!TYPE_VFIELD (BINFO_TYPE (binfo)))
7425 return dfs_skip_bases;
7427 /* We're only interested in proper subobjects of the type being
7428 constructed. */
7429 if (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), data->type_being_constructed))
7430 return NULL_TREE;
7432 /* We're only interested in bases with virtual bases or reachable
7433 via a virtual path from the type being constructed. */
7434 if (!(CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo))
7435 || binfo_via_virtual (binfo, data->type_being_constructed)))
7436 return dfs_skip_bases;
7438 /* We're not interested in non-virtual primary bases. */
7439 if (!BINFO_VIRTUAL_P (binfo) && BINFO_PRIMARY_P (binfo))
7440 return NULL_TREE;
7442 /* Record the index where this secondary vptr can be found. */
7443 if (data->top_level_p)
7445 gcc_assert (!BINFO_VPTR_INDEX (binfo));
7446 BINFO_VPTR_INDEX (binfo) = data->index;
7448 if (BINFO_VIRTUAL_P (binfo))
7450 /* It's a primary virtual base, and this is not a
7451 construction vtable. Find the base this is primary of in
7452 the inheritance graph, and use that base's vtable
7453 now. */
7454 while (BINFO_PRIMARY_P (binfo))
7455 binfo = BINFO_INHERITANCE_CHAIN (binfo);
7459 /* Add the initializer for the secondary vptr itself. */
7460 CONSTRUCTOR_APPEND_ELT (data->inits, NULL_TREE, binfo_ctor_vtable (binfo));
7462 /* Advance the vtt index. */
7463 data->index = size_binop (PLUS_EXPR, data->index,
7464 TYPE_SIZE_UNIT (ptr_type_node));
7466 return NULL_TREE;
7469 /* Called from build_vtt_inits via dfs_walk. After building
7470 constructor vtables and generating the sub-vtt from them, we need
7471 to restore the BINFO_VTABLES that were scribbled on. DATA is the
7472 binfo of the base whose sub vtt was generated. */
7474 static tree
7475 dfs_fixup_binfo_vtbls (tree binfo, void* data)
7477 tree vtable = BINFO_VTABLE (binfo);
7479 if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
7480 /* If this class has no vtable, none of its bases do. */
7481 return dfs_skip_bases;
7483 if (!vtable)
7484 /* This might be a primary base, so have no vtable in this
7485 hierarchy. */
7486 return NULL_TREE;
7488 /* If we scribbled the construction vtable vptr into BINFO, clear it
7489 out now. */
7490 if (TREE_CODE (vtable) == TREE_LIST
7491 && (TREE_PURPOSE (vtable) == (tree) data))
7492 BINFO_VTABLE (binfo) = TREE_CHAIN (vtable);
7494 return NULL_TREE;
7497 /* Build the construction vtable group for BINFO which is in the
7498 hierarchy dominated by T. */
7500 static void
7501 build_ctor_vtbl_group (tree binfo, tree t)
7503 tree type;
7504 tree vtbl;
7505 tree id;
7506 tree vbase;
7507 VEC(constructor_elt,gc) *v;
7509 /* See if we've already created this construction vtable group. */
7510 id = mangle_ctor_vtbl_for_type (t, binfo);
7511 if (IDENTIFIER_GLOBAL_VALUE (id))
7512 return;
7514 gcc_assert (!SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), t));
7515 /* Build a version of VTBL (with the wrong type) for use in
7516 constructing the addresses of secondary vtables in the
7517 construction vtable group. */
7518 vtbl = build_vtable (t, id, ptr_type_node);
7519 DECL_CONSTRUCTION_VTABLE_P (vtbl) = 1;
7521 v = NULL;
7522 accumulate_vtbl_inits (binfo, TYPE_BINFO (TREE_TYPE (binfo)),
7523 binfo, vtbl, t, &v);
7525 /* Add the vtables for each of our virtual bases using the vbase in T
7526 binfo. */
7527 for (vbase = TYPE_BINFO (BINFO_TYPE (binfo));
7528 vbase;
7529 vbase = TREE_CHAIN (vbase))
7531 tree b;
7533 if (!BINFO_VIRTUAL_P (vbase))
7534 continue;
7535 b = copied_binfo (vbase, binfo);
7537 accumulate_vtbl_inits (b, vbase, binfo, vtbl, t, &v);
7540 /* Figure out the type of the construction vtable. */
7541 type = build_index_type (size_int (VEC_length (constructor_elt, v) - 1));
7542 type = build_cplus_array_type (vtable_entry_type, type);
7543 layout_type (type);
7544 TREE_TYPE (vtbl) = type;
7545 DECL_SIZE (vtbl) = DECL_SIZE_UNIT (vtbl) = NULL_TREE;
7546 layout_decl (vtbl, 0);
7548 /* Initialize the construction vtable. */
7549 CLASSTYPE_VTABLES (t) = chainon (CLASSTYPE_VTABLES (t), vtbl);
7550 initialize_artificial_var (vtbl, v);
7551 dump_vtable (t, binfo, vtbl);
7554 /* Add the vtbl initializers for BINFO (and its bases other than
7555 non-virtual primaries) to the list of INITS. BINFO is in the
7556 hierarchy dominated by T. RTTI_BINFO is the binfo within T of
7557 the constructor the vtbl inits should be accumulated for. (If this
7558 is the complete object vtbl then RTTI_BINFO will be TYPE_BINFO (T).)
7559 ORIG_BINFO is the binfo for this object within BINFO_TYPE (RTTI_BINFO).
7560 BINFO is the active base equivalent of ORIG_BINFO in the inheritance
7561 graph of T. Both BINFO and ORIG_BINFO will have the same BINFO_TYPE,
7562 but are not necessarily the same in terms of layout. */
7564 static void
7565 accumulate_vtbl_inits (tree binfo,
7566 tree orig_binfo,
7567 tree rtti_binfo,
7568 tree vtbl,
7569 tree t,
7570 VEC(constructor_elt,gc) **inits)
7572 int i;
7573 tree base_binfo;
7574 int ctor_vtbl_p = !SAME_BINFO_TYPE_P (BINFO_TYPE (rtti_binfo), t);
7576 gcc_assert (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), BINFO_TYPE (orig_binfo)));
7578 /* If it doesn't have a vptr, we don't do anything. */
7579 if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
7580 return;
7582 /* If we're building a construction vtable, we're not interested in
7583 subobjects that don't require construction vtables. */
7584 if (ctor_vtbl_p
7585 && !CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo))
7586 && !binfo_via_virtual (orig_binfo, BINFO_TYPE (rtti_binfo)))
7587 return;
7589 /* Build the initializers for the BINFO-in-T vtable. */
7590 dfs_accumulate_vtbl_inits (binfo, orig_binfo, rtti_binfo, vtbl, t, inits);
7592 /* Walk the BINFO and its bases. We walk in preorder so that as we
7593 initialize each vtable we can figure out at what offset the
7594 secondary vtable lies from the primary vtable. We can't use
7595 dfs_walk here because we need to iterate through bases of BINFO
7596 and RTTI_BINFO simultaneously. */
7597 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
7599 /* Skip virtual bases. */
7600 if (BINFO_VIRTUAL_P (base_binfo))
7601 continue;
7602 accumulate_vtbl_inits (base_binfo,
7603 BINFO_BASE_BINFO (orig_binfo, i),
7604 rtti_binfo, vtbl, t,
7605 inits);
7609 /* Called from accumulate_vtbl_inits. Adds the initializers for the
7610 BINFO vtable to L. */
7612 static void
7613 dfs_accumulate_vtbl_inits (tree binfo,
7614 tree orig_binfo,
7615 tree rtti_binfo,
7616 tree orig_vtbl,
7617 tree t,
7618 VEC(constructor_elt,gc) **l)
7620 tree vtbl = NULL_TREE;
7621 int ctor_vtbl_p = !SAME_BINFO_TYPE_P (BINFO_TYPE (rtti_binfo), t);
7622 int n_inits;
7624 if (ctor_vtbl_p
7625 && BINFO_VIRTUAL_P (orig_binfo) && BINFO_PRIMARY_P (orig_binfo))
7627 /* In the hierarchy of BINFO_TYPE (RTTI_BINFO), this is a
7628 primary virtual base. If it is not the same primary in
7629 the hierarchy of T, we'll need to generate a ctor vtable
7630 for it, to place at its location in T. If it is the same
7631 primary, we still need a VTT entry for the vtable, but it
7632 should point to the ctor vtable for the base it is a
7633 primary for within the sub-hierarchy of RTTI_BINFO.
7635 There are three possible cases:
7637 1) We are in the same place.
7638 2) We are a primary base within a lost primary virtual base of
7639 RTTI_BINFO.
7640 3) We are primary to something not a base of RTTI_BINFO. */
7642 tree b;
7643 tree last = NULL_TREE;
7645 /* First, look through the bases we are primary to for RTTI_BINFO
7646 or a virtual base. */
7647 b = binfo;
7648 while (BINFO_PRIMARY_P (b))
7650 b = BINFO_INHERITANCE_CHAIN (b);
7651 last = b;
7652 if (BINFO_VIRTUAL_P (b) || b == rtti_binfo)
7653 goto found;
7655 /* If we run out of primary links, keep looking down our
7656 inheritance chain; we might be an indirect primary. */
7657 for (b = last; b; b = BINFO_INHERITANCE_CHAIN (b))
7658 if (BINFO_VIRTUAL_P (b) || b == rtti_binfo)
7659 break;
7660 found:
7662 /* If we found RTTI_BINFO, this is case 1. If we found a virtual
7663 base B and it is a base of RTTI_BINFO, this is case 2. In
7664 either case, we share our vtable with LAST, i.e. the
7665 derived-most base within B of which we are a primary. */
7666 if (b == rtti_binfo
7667 || (b && binfo_for_vbase (BINFO_TYPE (b), BINFO_TYPE (rtti_binfo))))
7668 /* Just set our BINFO_VTABLE to point to LAST, as we may not have
7669 set LAST's BINFO_VTABLE yet. We'll extract the actual vptr in
7670 binfo_ctor_vtable after everything's been set up. */
7671 vtbl = last;
7673 /* Otherwise, this is case 3 and we get our own. */
7675 else if (!BINFO_NEW_VTABLE_MARKED (orig_binfo))
7676 return;
7678 n_inits = VEC_length (constructor_elt, *l);
7680 if (!vtbl)
7682 tree index;
7683 int non_fn_entries;
7685 /* Add the initializer for this vtable. */
7686 build_vtbl_initializer (binfo, orig_binfo, t, rtti_binfo,
7687 &non_fn_entries, l);
7689 /* Figure out the position to which the VPTR should point. */
7690 vtbl = build1 (ADDR_EXPR, vtbl_ptr_type_node, orig_vtbl);
7691 index = size_binop (PLUS_EXPR,
7692 size_int (non_fn_entries),
7693 size_int (n_inits));
7694 index = size_binop (MULT_EXPR,
7695 TYPE_SIZE_UNIT (vtable_entry_type),
7696 index);
7697 vtbl = build2 (POINTER_PLUS_EXPR, TREE_TYPE (vtbl), vtbl, index);
7700 if (ctor_vtbl_p)
7701 /* For a construction vtable, we can't overwrite BINFO_VTABLE.
7702 So, we make a TREE_LIST. Later, dfs_fixup_binfo_vtbls will
7703 straighten this out. */
7704 BINFO_VTABLE (binfo) = tree_cons (rtti_binfo, vtbl, BINFO_VTABLE (binfo));
7705 else if (BINFO_PRIMARY_P (binfo) && BINFO_VIRTUAL_P (binfo))
7706 /* Throw away any unneeded intializers. */
7707 VEC_truncate (constructor_elt, *l, n_inits);
7708 else
7709 /* For an ordinary vtable, set BINFO_VTABLE. */
7710 BINFO_VTABLE (binfo) = vtbl;
7713 static GTY(()) tree abort_fndecl_addr;
7715 /* Construct the initializer for BINFO's virtual function table. BINFO
7716 is part of the hierarchy dominated by T. If we're building a
7717 construction vtable, the ORIG_BINFO is the binfo we should use to
7718 find the actual function pointers to put in the vtable - but they
7719 can be overridden on the path to most-derived in the graph that
7720 ORIG_BINFO belongs. Otherwise,
7721 ORIG_BINFO should be the same as BINFO. The RTTI_BINFO is the
7722 BINFO that should be indicated by the RTTI information in the
7723 vtable; it will be a base class of T, rather than T itself, if we
7724 are building a construction vtable.
7726 The value returned is a TREE_LIST suitable for wrapping in a
7727 CONSTRUCTOR to use as the DECL_INITIAL for a vtable. If
7728 NON_FN_ENTRIES_P is not NULL, *NON_FN_ENTRIES_P is set to the
7729 number of non-function entries in the vtable.
7731 It might seem that this function should never be called with a
7732 BINFO for which BINFO_PRIMARY_P holds, the vtable for such a
7733 base is always subsumed by a derived class vtable. However, when
7734 we are building construction vtables, we do build vtables for
7735 primary bases; we need these while the primary base is being
7736 constructed. */
7738 static void
7739 build_vtbl_initializer (tree binfo,
7740 tree orig_binfo,
7741 tree t,
7742 tree rtti_binfo,
7743 int* non_fn_entries_p,
7744 VEC(constructor_elt,gc) **inits)
7746 tree v;
7747 vtbl_init_data vid;
7748 unsigned ix, jx;
7749 tree vbinfo;
7750 VEC(tree,gc) *vbases;
7751 constructor_elt *e;
7753 /* Initialize VID. */
7754 memset (&vid, 0, sizeof (vid));
7755 vid.binfo = binfo;
7756 vid.derived = t;
7757 vid.rtti_binfo = rtti_binfo;
7758 vid.primary_vtbl_p = SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), t);
7759 vid.ctor_vtbl_p = !SAME_BINFO_TYPE_P (BINFO_TYPE (rtti_binfo), t);
7760 vid.generate_vcall_entries = true;
7761 /* The first vbase or vcall offset is at index -3 in the vtable. */
7762 vid.index = ssize_int(-3 * TARGET_VTABLE_DATA_ENTRY_DISTANCE);
7764 /* Add entries to the vtable for RTTI. */
7765 build_rtti_vtbl_entries (binfo, &vid);
7767 /* Create an array for keeping track of the functions we've
7768 processed. When we see multiple functions with the same
7769 signature, we share the vcall offsets. */
7770 vid.fns = VEC_alloc (tree, gc, 32);
7771 /* Add the vcall and vbase offset entries. */
7772 build_vcall_and_vbase_vtbl_entries (binfo, &vid);
7774 /* Clear BINFO_VTABLE_PATH_MARKED; it's set by
7775 build_vbase_offset_vtbl_entries. */
7776 for (vbases = CLASSTYPE_VBASECLASSES (t), ix = 0;
7777 VEC_iterate (tree, vbases, ix, vbinfo); ix++)
7778 BINFO_VTABLE_PATH_MARKED (vbinfo) = 0;
7780 /* If the target requires padding between data entries, add that now. */
7781 if (TARGET_VTABLE_DATA_ENTRY_DISTANCE > 1)
7783 int n_entries = VEC_length (constructor_elt, vid.inits);
7785 VEC_safe_grow (constructor_elt, gc, vid.inits,
7786 TARGET_VTABLE_DATA_ENTRY_DISTANCE * n_entries);
7788 /* Move data entries into their new positions and add padding
7789 after the new positions. Iterate backwards so we don't
7790 overwrite entries that we would need to process later. */
7791 for (ix = n_entries - 1;
7792 VEC_iterate (constructor_elt, vid.inits, ix, e);
7793 ix--)
7795 int j;
7796 int new_position = (TARGET_VTABLE_DATA_ENTRY_DISTANCE * ix
7797 + (TARGET_VTABLE_DATA_ENTRY_DISTANCE - 1));
7799 VEC_replace (constructor_elt, vid.inits, new_position, e);
7801 for (j = 1; j < TARGET_VTABLE_DATA_ENTRY_DISTANCE; ++j)
7803 constructor_elt *f = VEC_index (constructor_elt, vid.inits,
7804 new_position - j);
7805 f->index = NULL_TREE;
7806 f->value = build1 (NOP_EXPR, vtable_entry_type,
7807 null_pointer_node);
7812 if (non_fn_entries_p)
7813 *non_fn_entries_p = VEC_length (constructor_elt, vid.inits);
7815 /* The initializers for virtual functions were built up in reverse
7816 order. Straighten them out and add them to the running list in one
7817 step. */
7818 jx = VEC_length (constructor_elt, *inits);
7819 VEC_safe_grow (constructor_elt, gc, *inits,
7820 (jx + VEC_length (constructor_elt, vid.inits)));
7822 for (ix = VEC_length (constructor_elt, vid.inits) - 1;
7823 VEC_iterate (constructor_elt, vid.inits, ix, e);
7824 ix--, jx++)
7825 VEC_replace (constructor_elt, *inits, jx, e);
7827 /* Go through all the ordinary virtual functions, building up
7828 initializers. */
7829 for (v = BINFO_VIRTUALS (orig_binfo); v; v = TREE_CHAIN (v))
7831 tree delta;
7832 tree vcall_index;
7833 tree fn, fn_original;
7834 tree init = NULL_TREE;
7836 fn = BV_FN (v);
7837 fn_original = fn;
7838 if (DECL_THUNK_P (fn))
7840 if (!DECL_NAME (fn))
7841 finish_thunk (fn);
7842 if (THUNK_ALIAS (fn))
7844 fn = THUNK_ALIAS (fn);
7845 BV_FN (v) = fn;
7847 fn_original = THUNK_TARGET (fn);
7850 /* If the only definition of this function signature along our
7851 primary base chain is from a lost primary, this vtable slot will
7852 never be used, so just zero it out. This is important to avoid
7853 requiring extra thunks which cannot be generated with the function.
7855 We first check this in update_vtable_entry_for_fn, so we handle
7856 restored primary bases properly; we also need to do it here so we
7857 zero out unused slots in ctor vtables, rather than filling them
7858 with erroneous values (though harmless, apart from relocation
7859 costs). */
7860 if (BV_LOST_PRIMARY (v))
7861 init = size_zero_node;
7863 if (! init)
7865 /* Pull the offset for `this', and the function to call, out of
7866 the list. */
7867 delta = BV_DELTA (v);
7868 vcall_index = BV_VCALL_INDEX (v);
7870 gcc_assert (TREE_CODE (delta) == INTEGER_CST);
7871 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
7873 /* You can't call an abstract virtual function; it's abstract.
7874 So, we replace these functions with __pure_virtual. */
7875 if (DECL_PURE_VIRTUAL_P (fn_original))
7877 fn = abort_fndecl;
7878 if (!TARGET_VTABLE_USES_DESCRIPTORS)
7880 if (abort_fndecl_addr == NULL)
7881 abort_fndecl_addr
7882 = fold_convert (vfunc_ptr_type_node,
7883 build_fold_addr_expr (fn));
7884 init = abort_fndecl_addr;
7887 else
7889 if (!integer_zerop (delta) || vcall_index)
7891 fn = make_thunk (fn, /*this_adjusting=*/1, delta, vcall_index);
7892 if (!DECL_NAME (fn))
7893 finish_thunk (fn);
7895 /* Take the address of the function, considering it to be of an
7896 appropriate generic type. */
7897 if (!TARGET_VTABLE_USES_DESCRIPTORS)
7898 init = fold_convert (vfunc_ptr_type_node,
7899 build_fold_addr_expr (fn));
7903 /* And add it to the chain of initializers. */
7904 if (TARGET_VTABLE_USES_DESCRIPTORS)
7906 int i;
7907 if (init == size_zero_node)
7908 for (i = 0; i < TARGET_VTABLE_USES_DESCRIPTORS; ++i)
7909 CONSTRUCTOR_APPEND_ELT (*inits, NULL_TREE, init);
7910 else
7911 for (i = 0; i < TARGET_VTABLE_USES_DESCRIPTORS; ++i)
7913 tree fdesc = build2 (FDESC_EXPR, vfunc_ptr_type_node,
7914 fn, build_int_cst (NULL_TREE, i));
7915 TREE_CONSTANT (fdesc) = 1;
7917 CONSTRUCTOR_APPEND_ELT (*inits, NULL_TREE, fdesc);
7920 else
7921 CONSTRUCTOR_APPEND_ELT (*inits, NULL_TREE, init);
7925 /* Adds to vid->inits the initializers for the vbase and vcall
7926 offsets in BINFO, which is in the hierarchy dominated by T. */
7928 static void
7929 build_vcall_and_vbase_vtbl_entries (tree binfo, vtbl_init_data* vid)
7931 tree b;
7933 /* If this is a derived class, we must first create entries
7934 corresponding to the primary base class. */
7935 b = get_primary_binfo (binfo);
7936 if (b)
7937 build_vcall_and_vbase_vtbl_entries (b, vid);
7939 /* Add the vbase entries for this base. */
7940 build_vbase_offset_vtbl_entries (binfo, vid);
7941 /* Add the vcall entries for this base. */
7942 build_vcall_offset_vtbl_entries (binfo, vid);
7945 /* Returns the initializers for the vbase offset entries in the vtable
7946 for BINFO (which is part of the class hierarchy dominated by T), in
7947 reverse order. VBASE_OFFSET_INDEX gives the vtable index
7948 where the next vbase offset will go. */
7950 static void
7951 build_vbase_offset_vtbl_entries (tree binfo, vtbl_init_data* vid)
7953 tree vbase;
7954 tree t;
7955 tree non_primary_binfo;
7957 /* If there are no virtual baseclasses, then there is nothing to
7958 do. */
7959 if (!CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo)))
7960 return;
7962 t = vid->derived;
7964 /* We might be a primary base class. Go up the inheritance hierarchy
7965 until we find the most derived class of which we are a primary base:
7966 it is the offset of that which we need to use. */
7967 non_primary_binfo = binfo;
7968 while (BINFO_INHERITANCE_CHAIN (non_primary_binfo))
7970 tree b;
7972 /* If we have reached a virtual base, then it must be a primary
7973 base (possibly multi-level) of vid->binfo, or we wouldn't
7974 have called build_vcall_and_vbase_vtbl_entries for it. But it
7975 might be a lost primary, so just skip down to vid->binfo. */
7976 if (BINFO_VIRTUAL_P (non_primary_binfo))
7978 non_primary_binfo = vid->binfo;
7979 break;
7982 b = BINFO_INHERITANCE_CHAIN (non_primary_binfo);
7983 if (get_primary_binfo (b) != non_primary_binfo)
7984 break;
7985 non_primary_binfo = b;
7988 /* Go through the virtual bases, adding the offsets. */
7989 for (vbase = TYPE_BINFO (BINFO_TYPE (binfo));
7990 vbase;
7991 vbase = TREE_CHAIN (vbase))
7993 tree b;
7994 tree delta;
7996 if (!BINFO_VIRTUAL_P (vbase))
7997 continue;
7999 /* Find the instance of this virtual base in the complete
8000 object. */
8001 b = copied_binfo (vbase, binfo);
8003 /* If we've already got an offset for this virtual base, we
8004 don't need another one. */
8005 if (BINFO_VTABLE_PATH_MARKED (b))
8006 continue;
8007 BINFO_VTABLE_PATH_MARKED (b) = 1;
8009 /* Figure out where we can find this vbase offset. */
8010 delta = size_binop (MULT_EXPR,
8011 vid->index,
8012 convert (ssizetype,
8013 TYPE_SIZE_UNIT (vtable_entry_type)));
8014 if (vid->primary_vtbl_p)
8015 BINFO_VPTR_FIELD (b) = delta;
8017 if (binfo != TYPE_BINFO (t))
8018 /* The vbase offset had better be the same. */
8019 gcc_assert (tree_int_cst_equal (delta, BINFO_VPTR_FIELD (vbase)));
8021 /* The next vbase will come at a more negative offset. */
8022 vid->index = size_binop (MINUS_EXPR, vid->index,
8023 ssize_int (TARGET_VTABLE_DATA_ENTRY_DISTANCE));
8025 /* The initializer is the delta from BINFO to this virtual base.
8026 The vbase offsets go in reverse inheritance-graph order, and
8027 we are walking in inheritance graph order so these end up in
8028 the right order. */
8029 delta = size_diffop_loc (input_location,
8030 BINFO_OFFSET (b), BINFO_OFFSET (non_primary_binfo));
8032 CONSTRUCTOR_APPEND_ELT (vid->inits, NULL_TREE,
8033 fold_build1_loc (input_location, NOP_EXPR,
8034 vtable_entry_type, delta));
8038 /* Adds the initializers for the vcall offset entries in the vtable
8039 for BINFO (which is part of the class hierarchy dominated by VID->DERIVED)
8040 to VID->INITS. */
8042 static void
8043 build_vcall_offset_vtbl_entries (tree binfo, vtbl_init_data* vid)
8045 /* We only need these entries if this base is a virtual base. We
8046 compute the indices -- but do not add to the vtable -- when
8047 building the main vtable for a class. */
8048 if (binfo == TYPE_BINFO (vid->derived)
8049 || (BINFO_VIRTUAL_P (binfo)
8050 /* If BINFO is RTTI_BINFO, then (since BINFO does not
8051 correspond to VID->DERIVED), we are building a primary
8052 construction virtual table. Since this is a primary
8053 virtual table, we do not need the vcall offsets for
8054 BINFO. */
8055 && binfo != vid->rtti_binfo))
8057 /* We need a vcall offset for each of the virtual functions in this
8058 vtable. For example:
8060 class A { virtual void f (); };
8061 class B1 : virtual public A { virtual void f (); };
8062 class B2 : virtual public A { virtual void f (); };
8063 class C: public B1, public B2 { virtual void f (); };
8065 A C object has a primary base of B1, which has a primary base of A. A
8066 C also has a secondary base of B2, which no longer has a primary base
8067 of A. So the B2-in-C construction vtable needs a secondary vtable for
8068 A, which will adjust the A* to a B2* to call f. We have no way of
8069 knowing what (or even whether) this offset will be when we define B2,
8070 so we store this "vcall offset" in the A sub-vtable and look it up in
8071 a "virtual thunk" for B2::f.
8073 We need entries for all the functions in our primary vtable and
8074 in our non-virtual bases' secondary vtables. */
8075 vid->vbase = binfo;
8076 /* If we are just computing the vcall indices -- but do not need
8077 the actual entries -- not that. */
8078 if (!BINFO_VIRTUAL_P (binfo))
8079 vid->generate_vcall_entries = false;
8080 /* Now, walk through the non-virtual bases, adding vcall offsets. */
8081 add_vcall_offset_vtbl_entries_r (binfo, vid);
8085 /* Build vcall offsets, starting with those for BINFO. */
8087 static void
8088 add_vcall_offset_vtbl_entries_r (tree binfo, vtbl_init_data* vid)
8090 int i;
8091 tree primary_binfo;
8092 tree base_binfo;
8094 /* Don't walk into virtual bases -- except, of course, for the
8095 virtual base for which we are building vcall offsets. Any
8096 primary virtual base will have already had its offsets generated
8097 through the recursion in build_vcall_and_vbase_vtbl_entries. */
8098 if (BINFO_VIRTUAL_P (binfo) && vid->vbase != binfo)
8099 return;
8101 /* If BINFO has a primary base, process it first. */
8102 primary_binfo = get_primary_binfo (binfo);
8103 if (primary_binfo)
8104 add_vcall_offset_vtbl_entries_r (primary_binfo, vid);
8106 /* Add BINFO itself to the list. */
8107 add_vcall_offset_vtbl_entries_1 (binfo, vid);
8109 /* Scan the non-primary bases of BINFO. */
8110 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
8111 if (base_binfo != primary_binfo)
8112 add_vcall_offset_vtbl_entries_r (base_binfo, vid);
8115 /* Called from build_vcall_offset_vtbl_entries_r. */
8117 static void
8118 add_vcall_offset_vtbl_entries_1 (tree binfo, vtbl_init_data* vid)
8120 /* Make entries for the rest of the virtuals. */
8121 if (abi_version_at_least (2))
8123 tree orig_fn;
8125 /* The ABI requires that the methods be processed in declaration
8126 order. G++ 3.2 used the order in the vtable. */
8127 for (orig_fn = TYPE_METHODS (BINFO_TYPE (binfo));
8128 orig_fn;
8129 orig_fn = DECL_CHAIN (orig_fn))
8130 if (DECL_VINDEX (orig_fn))
8131 add_vcall_offset (orig_fn, binfo, vid);
8133 else
8135 tree derived_virtuals;
8136 tree base_virtuals;
8137 tree orig_virtuals;
8138 /* If BINFO is a primary base, the most derived class which has
8139 BINFO as a primary base; otherwise, just BINFO. */
8140 tree non_primary_binfo;
8142 /* We might be a primary base class. Go up the inheritance hierarchy
8143 until we find the most derived class of which we are a primary base:
8144 it is the BINFO_VIRTUALS there that we need to consider. */
8145 non_primary_binfo = binfo;
8146 while (BINFO_INHERITANCE_CHAIN (non_primary_binfo))
8148 tree b;
8150 /* If we have reached a virtual base, then it must be vid->vbase,
8151 because we ignore other virtual bases in
8152 add_vcall_offset_vtbl_entries_r. In turn, it must be a primary
8153 base (possibly multi-level) of vid->binfo, or we wouldn't
8154 have called build_vcall_and_vbase_vtbl_entries for it. But it
8155 might be a lost primary, so just skip down to vid->binfo. */
8156 if (BINFO_VIRTUAL_P (non_primary_binfo))
8158 gcc_assert (non_primary_binfo == vid->vbase);
8159 non_primary_binfo = vid->binfo;
8160 break;
8163 b = BINFO_INHERITANCE_CHAIN (non_primary_binfo);
8164 if (get_primary_binfo (b) != non_primary_binfo)
8165 break;
8166 non_primary_binfo = b;
8169 if (vid->ctor_vtbl_p)
8170 /* For a ctor vtable we need the equivalent binfo within the hierarchy
8171 where rtti_binfo is the most derived type. */
8172 non_primary_binfo
8173 = original_binfo (non_primary_binfo, vid->rtti_binfo);
8175 for (base_virtuals = BINFO_VIRTUALS (binfo),
8176 derived_virtuals = BINFO_VIRTUALS (non_primary_binfo),
8177 orig_virtuals = BINFO_VIRTUALS (TYPE_BINFO (BINFO_TYPE (binfo)));
8178 base_virtuals;
8179 base_virtuals = TREE_CHAIN (base_virtuals),
8180 derived_virtuals = TREE_CHAIN (derived_virtuals),
8181 orig_virtuals = TREE_CHAIN (orig_virtuals))
8183 tree orig_fn;
8185 /* Find the declaration that originally caused this function to
8186 be present in BINFO_TYPE (binfo). */
8187 orig_fn = BV_FN (orig_virtuals);
8189 /* When processing BINFO, we only want to generate vcall slots for
8190 function slots introduced in BINFO. So don't try to generate
8191 one if the function isn't even defined in BINFO. */
8192 if (!SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), DECL_CONTEXT (orig_fn)))
8193 continue;
8195 add_vcall_offset (orig_fn, binfo, vid);
8200 /* Add a vcall offset entry for ORIG_FN to the vtable. */
8202 static void
8203 add_vcall_offset (tree orig_fn, tree binfo, vtbl_init_data *vid)
8205 size_t i;
8206 tree vcall_offset;
8207 tree derived_entry;
8209 /* If there is already an entry for a function with the same
8210 signature as FN, then we do not need a second vcall offset.
8211 Check the list of functions already present in the derived
8212 class vtable. */
8213 FOR_EACH_VEC_ELT (tree, vid->fns, i, derived_entry)
8215 if (same_signature_p (derived_entry, orig_fn)
8216 /* We only use one vcall offset for virtual destructors,
8217 even though there are two virtual table entries. */
8218 || (DECL_DESTRUCTOR_P (derived_entry)
8219 && DECL_DESTRUCTOR_P (orig_fn)))
8220 return;
8223 /* If we are building these vcall offsets as part of building
8224 the vtable for the most derived class, remember the vcall
8225 offset. */
8226 if (vid->binfo == TYPE_BINFO (vid->derived))
8228 tree_pair_p elt = VEC_safe_push (tree_pair_s, gc,
8229 CLASSTYPE_VCALL_INDICES (vid->derived),
8230 NULL);
8231 elt->purpose = orig_fn;
8232 elt->value = vid->index;
8235 /* The next vcall offset will be found at a more negative
8236 offset. */
8237 vid->index = size_binop (MINUS_EXPR, vid->index,
8238 ssize_int (TARGET_VTABLE_DATA_ENTRY_DISTANCE));
8240 /* Keep track of this function. */
8241 VEC_safe_push (tree, gc, vid->fns, orig_fn);
8243 if (vid->generate_vcall_entries)
8245 tree base;
8246 tree fn;
8248 /* Find the overriding function. */
8249 fn = find_final_overrider (vid->rtti_binfo, binfo, orig_fn);
8250 if (fn == error_mark_node)
8251 vcall_offset = build1 (NOP_EXPR, vtable_entry_type,
8252 integer_zero_node);
8253 else
8255 base = TREE_VALUE (fn);
8257 /* The vbase we're working on is a primary base of
8258 vid->binfo. But it might be a lost primary, so its
8259 BINFO_OFFSET might be wrong, so we just use the
8260 BINFO_OFFSET from vid->binfo. */
8261 vcall_offset = size_diffop_loc (input_location,
8262 BINFO_OFFSET (base),
8263 BINFO_OFFSET (vid->binfo));
8264 vcall_offset = fold_build1_loc (input_location,
8265 NOP_EXPR, vtable_entry_type,
8266 vcall_offset);
8268 /* Add the initializer to the vtable. */
8269 CONSTRUCTOR_APPEND_ELT (vid->inits, NULL_TREE, vcall_offset);
8273 /* Return vtbl initializers for the RTTI entries corresponding to the
8274 BINFO's vtable. The RTTI entries should indicate the object given
8275 by VID->rtti_binfo. */
8277 static void
8278 build_rtti_vtbl_entries (tree binfo, vtbl_init_data* vid)
8280 tree b;
8281 tree t;
8282 tree offset;
8283 tree decl;
8284 tree init;
8286 t = BINFO_TYPE (vid->rtti_binfo);
8288 /* To find the complete object, we will first convert to our most
8289 primary base, and then add the offset in the vtbl to that value. */
8290 b = binfo;
8291 while (CLASSTYPE_HAS_PRIMARY_BASE_P (BINFO_TYPE (b))
8292 && !BINFO_LOST_PRIMARY_P (b))
8294 tree primary_base;
8296 primary_base = get_primary_binfo (b);
8297 gcc_assert (BINFO_PRIMARY_P (primary_base)
8298 && BINFO_INHERITANCE_CHAIN (primary_base) == b);
8299 b = primary_base;
8301 offset = size_diffop_loc (input_location,
8302 BINFO_OFFSET (vid->rtti_binfo), BINFO_OFFSET (b));
8304 /* The second entry is the address of the typeinfo object. */
8305 if (flag_rtti)
8306 decl = build_address (get_tinfo_decl (t));
8307 else
8308 decl = integer_zero_node;
8310 /* Convert the declaration to a type that can be stored in the
8311 vtable. */
8312 init = build_nop (vfunc_ptr_type_node, decl);
8313 CONSTRUCTOR_APPEND_ELT (vid->inits, NULL_TREE, init);
8315 /* Add the offset-to-top entry. It comes earlier in the vtable than
8316 the typeinfo entry. Convert the offset to look like a
8317 function pointer, so that we can put it in the vtable. */
8318 init = build_nop (vfunc_ptr_type_node, offset);
8319 CONSTRUCTOR_APPEND_ELT (vid->inits, NULL_TREE, init);
8322 /* Fold a OBJ_TYPE_REF expression to the address of a function.
8323 KNOWN_TYPE carries the true type of OBJ_TYPE_REF_OBJECT(REF). */
8325 tree
8326 cp_fold_obj_type_ref (tree ref, tree known_type)
8328 HOST_WIDE_INT index = tree_low_cst (OBJ_TYPE_REF_TOKEN (ref), 1);
8329 HOST_WIDE_INT i = 0;
8330 tree v = BINFO_VIRTUALS (TYPE_BINFO (known_type));
8331 tree fndecl;
8333 while (i != index)
8335 i += (TARGET_VTABLE_USES_DESCRIPTORS
8336 ? TARGET_VTABLE_USES_DESCRIPTORS : 1);
8337 v = TREE_CHAIN (v);
8340 fndecl = BV_FN (v);
8342 #ifdef ENABLE_CHECKING
8343 gcc_assert (tree_int_cst_equal (OBJ_TYPE_REF_TOKEN (ref),
8344 DECL_VINDEX (fndecl)));
8345 #endif
8347 cgraph_node (fndecl)->local.vtable_method = true;
8349 return build_address (fndecl);
8352 #include "gt-cp-class.h"