Merge from trunk @222673.
[official-gcc.git] / gcc / cp / class.c
blobb48f29a16abd8770d7aae83959dd7bc7abd23932
1 /* Functions related to building classes and their related objects.
2 Copyright (C) 1987-2015 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 /* High-level class interface. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "hash-set.h"
28 #include "machmode.h"
29 #include "vec.h"
30 #include "double-int.h"
31 #include "input.h"
32 #include "alias.h"
33 #include "symtab.h"
34 #include "options.h"
35 #include "wide-int.h"
36 #include "inchash.h"
37 #include "tm.h"
38 #include "tree.h"
39 #include "stringpool.h"
40 #include "stor-layout.h"
41 #include "attribs.h"
42 #include "hash-table.h"
43 #include "cp-tree.h"
44 #include "flags.h"
45 #include "toplev.h"
46 #include "target.h"
47 #include "convert.h"
48 #include "hash-map.h"
49 #include "is-a.h"
50 #include "plugin-api.h"
51 #include "hard-reg-set.h"
52 #include "input.h"
53 #include "function.h"
54 #include "ipa-ref.h"
55 #include "cgraph.h"
56 #include "dumpfile.h"
57 #include "splay-tree.h"
58 #include "gimplify.h"
59 #include "wide-int.h"
61 /* The number of nested classes being processed. If we are not in the
62 scope of any class, this is zero. */
64 int current_class_depth;
66 /* In order to deal with nested classes, we keep a stack of classes.
67 The topmost entry is the innermost class, and is the entry at index
68 CURRENT_CLASS_DEPTH */
70 typedef struct class_stack_node {
71 /* The name of the class. */
72 tree name;
74 /* The _TYPE node for the class. */
75 tree type;
77 /* The access specifier pending for new declarations in the scope of
78 this class. */
79 tree access;
81 /* If were defining TYPE, the names used in this class. */
82 splay_tree names_used;
84 /* Nonzero if this class is no longer open, because of a call to
85 push_to_top_level. */
86 size_t hidden;
87 }* class_stack_node_t;
89 typedef struct vtbl_init_data_s
91 /* The base for which we're building initializers. */
92 tree binfo;
93 /* The type of the most-derived type. */
94 tree derived;
95 /* The binfo for the dynamic type. This will be TYPE_BINFO (derived),
96 unless ctor_vtbl_p is true. */
97 tree rtti_binfo;
98 /* The negative-index vtable initializers built up so far. These
99 are in order from least negative index to most negative index. */
100 vec<constructor_elt, va_gc> *inits;
101 /* The binfo for the virtual base for which we're building
102 vcall offset initializers. */
103 tree vbase;
104 /* The functions in vbase for which we have already provided vcall
105 offsets. */
106 vec<tree, va_gc> *fns;
107 /* The vtable index of the next vcall or vbase offset. */
108 tree index;
109 /* Nonzero if we are building the initializer for the primary
110 vtable. */
111 int primary_vtbl_p;
112 /* Nonzero if we are building the initializer for a construction
113 vtable. */
114 int ctor_vtbl_p;
115 /* True when adding vcall offset entries to the vtable. False when
116 merely computing the indices. */
117 bool generate_vcall_entries;
118 } vtbl_init_data;
120 /* The type of a function passed to walk_subobject_offsets. */
121 typedef int (*subobject_offset_fn) (tree, tree, splay_tree);
123 /* The stack itself. This is a dynamically resized array. The
124 number of elements allocated is CURRENT_CLASS_STACK_SIZE. */
125 static int current_class_stack_size;
126 static class_stack_node_t current_class_stack;
128 /* The size of the largest empty class seen in this translation unit. */
129 static GTY (()) tree sizeof_biggest_empty_class;
131 /* An array of all local classes present in this translation unit, in
132 declaration order. */
133 vec<tree, va_gc> *local_classes;
135 static tree get_vfield_name (tree);
136 static void finish_struct_anon (tree);
137 static tree get_vtable_name (tree);
138 static void get_basefndecls (tree, tree, vec<tree> *);
139 static int build_primary_vtable (tree, tree);
140 static int build_secondary_vtable (tree);
141 static void finish_vtbls (tree);
142 static void modify_vtable_entry (tree, tree, tree, tree, tree *);
143 static void finish_struct_bits (tree);
144 static int alter_access (tree, tree, tree);
145 static void handle_using_decl (tree, tree);
146 static tree dfs_modify_vtables (tree, void *);
147 static tree modify_all_vtables (tree, tree);
148 static void determine_primary_bases (tree);
149 static void finish_struct_methods (tree);
150 static void maybe_warn_about_overly_private_class (tree);
151 static int method_name_cmp (const void *, const void *);
152 static int resort_method_name_cmp (const void *, const void *);
153 static void add_implicitly_declared_members (tree, tree*, int, int);
154 static tree fixed_type_or_null (tree, int *, int *);
155 static tree build_simple_base_path (tree expr, tree binfo);
156 static tree build_vtbl_ref_1 (tree, tree);
157 static void build_vtbl_initializer (tree, tree, tree, tree, int *,
158 vec<constructor_elt, va_gc> **);
159 static int count_fields (tree);
160 static int add_fields_to_record_type (tree, struct sorted_fields_type*, int);
161 static void insert_into_classtype_sorted_fields (tree, tree, int);
162 static bool check_bitfield_decl (tree);
163 static void check_field_decl (tree, tree, int *, int *, int *);
164 static void check_field_decls (tree, tree *, int *, int *);
165 static tree *build_base_field (record_layout_info, tree, splay_tree, tree *);
166 static void build_base_fields (record_layout_info, splay_tree, tree *);
167 static void check_methods (tree);
168 static void remove_zero_width_bit_fields (tree);
169 static bool accessible_nvdtor_p (tree);
170 static void check_bases (tree, int *, int *);
171 static void check_bases_and_members (tree);
172 static tree create_vtable_ptr (tree, tree *);
173 static void include_empty_classes (record_layout_info);
174 static void layout_class_type (tree, tree *);
175 static void propagate_binfo_offsets (tree, tree);
176 static void layout_virtual_bases (record_layout_info, splay_tree);
177 static void build_vbase_offset_vtbl_entries (tree, vtbl_init_data *);
178 static void add_vcall_offset_vtbl_entries_r (tree, vtbl_init_data *);
179 static void add_vcall_offset_vtbl_entries_1 (tree, vtbl_init_data *);
180 static void build_vcall_offset_vtbl_entries (tree, vtbl_init_data *);
181 static void add_vcall_offset (tree, tree, vtbl_init_data *);
182 static void layout_vtable_decl (tree, int);
183 static tree dfs_find_final_overrider_pre (tree, void *);
184 static tree dfs_find_final_overrider_post (tree, void *);
185 static tree find_final_overrider (tree, tree, tree);
186 static int make_new_vtable (tree, tree);
187 static tree get_primary_binfo (tree);
188 static int maybe_indent_hierarchy (FILE *, int, int);
189 static tree dump_class_hierarchy_r (FILE *, int, tree, tree, int);
190 static void dump_class_hierarchy (tree);
191 static void dump_class_hierarchy_1 (FILE *, int, tree);
192 static void dump_array (FILE *, tree);
193 static void dump_vtable (tree, tree, tree);
194 static void dump_vtt (tree, tree);
195 static void dump_thunk (FILE *, int, tree);
196 static tree build_vtable (tree, tree, tree);
197 static void initialize_vtable (tree, vec<constructor_elt, va_gc> *);
198 static void layout_nonempty_base_or_field (record_layout_info,
199 tree, tree, splay_tree);
200 static tree end_of_class (tree, int);
201 static bool layout_empty_base (record_layout_info, tree, tree, splay_tree);
202 static void accumulate_vtbl_inits (tree, tree, tree, tree, tree,
203 vec<constructor_elt, va_gc> **);
204 static void dfs_accumulate_vtbl_inits (tree, tree, tree, tree, tree,
205 vec<constructor_elt, va_gc> **);
206 static void build_rtti_vtbl_entries (tree, vtbl_init_data *);
207 static void build_vcall_and_vbase_vtbl_entries (tree, vtbl_init_data *);
208 static void clone_constructors_and_destructors (tree);
209 static tree build_clone (tree, tree);
210 static void update_vtable_entry_for_fn (tree, tree, tree, tree *, unsigned);
211 static void build_ctor_vtbl_group (tree, tree);
212 static void build_vtt (tree);
213 static tree binfo_ctor_vtable (tree);
214 static void build_vtt_inits (tree, tree, vec<constructor_elt, va_gc> **,
215 tree *);
216 static tree dfs_build_secondary_vptr_vtt_inits (tree, void *);
217 static tree dfs_fixup_binfo_vtbls (tree, void *);
218 static int record_subobject_offset (tree, tree, splay_tree);
219 static int check_subobject_offset (tree, tree, splay_tree);
220 static int walk_subobject_offsets (tree, subobject_offset_fn,
221 tree, splay_tree, tree, int);
222 static void record_subobject_offsets (tree, tree, splay_tree, bool);
223 static int layout_conflict_p (tree, tree, splay_tree, int);
224 static int splay_tree_compare_integer_csts (splay_tree_key k1,
225 splay_tree_key k2);
226 static void warn_about_ambiguous_bases (tree);
227 static bool type_requires_array_cookie (tree);
228 static bool base_derived_from (tree, tree);
229 static int empty_base_at_nonzero_offset_p (tree, tree, splay_tree);
230 static tree end_of_base (tree);
231 static tree get_vcall_index (tree, tree);
233 /* Variables shared between class.c and call.c. */
235 int n_vtables = 0;
236 int n_vtable_entries = 0;
237 int n_vtable_searches = 0;
238 int n_vtable_elems = 0;
239 int n_convert_harshness = 0;
240 int n_compute_conversion_costs = 0;
241 int n_inner_fields_searched = 0;
243 /* Convert to or from a base subobject. EXPR is an expression of type
244 `A' or `A*', an expression of type `B' or `B*' is returned. To
245 convert A to a base B, CODE is PLUS_EXPR and BINFO is the binfo for
246 the B base instance within A. To convert base A to derived B, CODE
247 is MINUS_EXPR and BINFO is the binfo for the A instance within B.
248 In this latter case, A must not be a morally virtual base of B.
249 NONNULL is true if EXPR is known to be non-NULL (this is only
250 needed when EXPR is of pointer type). CV qualifiers are preserved
251 from EXPR. */
253 tree
254 build_base_path (enum tree_code code,
255 tree expr,
256 tree binfo,
257 int nonnull,
258 tsubst_flags_t complain)
260 tree v_binfo = NULL_TREE;
261 tree d_binfo = NULL_TREE;
262 tree probe;
263 tree offset;
264 tree target_type;
265 tree null_test = NULL;
266 tree ptr_target_type;
267 int fixed_type_p;
268 int want_pointer = TYPE_PTR_P (TREE_TYPE (expr));
269 bool has_empty = false;
270 bool virtual_access;
271 bool rvalue = false;
273 if (expr == error_mark_node || binfo == error_mark_node || !binfo)
274 return error_mark_node;
276 for (probe = binfo; probe; probe = BINFO_INHERITANCE_CHAIN (probe))
278 d_binfo = probe;
279 if (is_empty_class (BINFO_TYPE (probe)))
280 has_empty = true;
281 if (!v_binfo && BINFO_VIRTUAL_P (probe))
282 v_binfo = probe;
285 probe = TYPE_MAIN_VARIANT (TREE_TYPE (expr));
286 if (want_pointer)
287 probe = TYPE_MAIN_VARIANT (TREE_TYPE (probe));
289 if (code == PLUS_EXPR
290 && !SAME_BINFO_TYPE_P (BINFO_TYPE (d_binfo), probe))
292 /* This can happen when adjust_result_of_qualified_name_lookup can't
293 find a unique base binfo in a call to a member function. We
294 couldn't give the diagnostic then since we might have been calling
295 a static member function, so we do it now. */
296 if (complain & tf_error)
298 tree base = lookup_base (probe, BINFO_TYPE (d_binfo),
299 ba_unique, NULL, complain);
300 gcc_assert (base == error_mark_node);
302 return error_mark_node;
305 gcc_assert ((code == MINUS_EXPR
306 && SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), probe))
307 || code == PLUS_EXPR);
309 if (binfo == d_binfo)
310 /* Nothing to do. */
311 return expr;
313 if (code == MINUS_EXPR && v_binfo)
315 if (complain & tf_error)
317 if (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), BINFO_TYPE (v_binfo)))
319 if (want_pointer)
320 error ("cannot convert from pointer to base class %qT to "
321 "pointer to derived class %qT because the base is "
322 "virtual", BINFO_TYPE (binfo), BINFO_TYPE (d_binfo));
323 else
324 error ("cannot convert from base class %qT to derived "
325 "class %qT because the base is virtual",
326 BINFO_TYPE (binfo), BINFO_TYPE (d_binfo));
328 else
330 if (want_pointer)
331 error ("cannot convert from pointer to base class %qT to "
332 "pointer to derived class %qT via virtual base %qT",
333 BINFO_TYPE (binfo), BINFO_TYPE (d_binfo),
334 BINFO_TYPE (v_binfo));
335 else
336 error ("cannot convert from base class %qT to derived "
337 "class %qT via virtual base %qT", BINFO_TYPE (binfo),
338 BINFO_TYPE (d_binfo), BINFO_TYPE (v_binfo));
341 return error_mark_node;
344 if (!want_pointer)
346 rvalue = !real_lvalue_p (expr);
347 /* This must happen before the call to save_expr. */
348 expr = cp_build_addr_expr (expr, complain);
350 else
351 expr = mark_rvalue_use (expr);
353 offset = BINFO_OFFSET (binfo);
354 fixed_type_p = resolves_to_fixed_type_p (expr, &nonnull);
355 target_type = code == PLUS_EXPR ? BINFO_TYPE (binfo) : BINFO_TYPE (d_binfo);
356 /* TARGET_TYPE has been extracted from BINFO, and, is therefore always
357 cv-unqualified. Extract the cv-qualifiers from EXPR so that the
358 expression returned matches the input. */
359 target_type = cp_build_qualified_type
360 (target_type, cp_type_quals (TREE_TYPE (TREE_TYPE (expr))));
361 ptr_target_type = build_pointer_type (target_type);
363 /* Do we need to look in the vtable for the real offset? */
364 virtual_access = (v_binfo && fixed_type_p <= 0);
366 /* Don't bother with the calculations inside sizeof; they'll ICE if the
367 source type is incomplete and the pointer value doesn't matter. In a
368 template (even in instantiate_non_dependent_expr), we don't have vtables
369 set up properly yet, and the value doesn't matter there either; we're
370 just interested in the result of overload resolution. */
371 if (cp_unevaluated_operand != 0
372 || in_template_function ())
374 expr = build_nop (ptr_target_type, expr);
375 goto indout;
378 /* If we're in an NSDMI, we don't have the full constructor context yet
379 that we need for converting to a virtual base, so just build a stub
380 CONVERT_EXPR and expand it later in bot_replace. */
381 if (virtual_access && fixed_type_p < 0
382 && current_scope () != current_function_decl)
384 expr = build1 (CONVERT_EXPR, ptr_target_type, expr);
385 CONVERT_EXPR_VBASE_PATH (expr) = true;
386 goto indout;
389 /* Do we need to check for a null pointer? */
390 if (want_pointer && !nonnull)
392 /* If we know the conversion will not actually change the value
393 of EXPR, then we can avoid testing the expression for NULL.
394 We have to avoid generating a COMPONENT_REF for a base class
395 field, because other parts of the compiler know that such
396 expressions are always non-NULL. */
397 if (!virtual_access && integer_zerop (offset))
398 return build_nop (ptr_target_type, expr);
399 null_test = error_mark_node;
402 /* Protect against multiple evaluation if necessary. */
403 if (TREE_SIDE_EFFECTS (expr) && (null_test || virtual_access))
404 expr = save_expr (expr);
406 /* Now that we've saved expr, build the real null test. */
407 if (null_test)
409 tree zero = cp_convert (TREE_TYPE (expr), nullptr_node, complain);
410 null_test = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
411 expr, zero);
414 /* If this is a simple base reference, express it as a COMPONENT_REF. */
415 if (code == PLUS_EXPR && !virtual_access
416 /* We don't build base fields for empty bases, and they aren't very
417 interesting to the optimizers anyway. */
418 && !has_empty)
420 expr = cp_build_indirect_ref (expr, RO_NULL, complain);
421 expr = build_simple_base_path (expr, binfo);
422 if (rvalue)
423 expr = move (expr);
424 if (want_pointer)
425 expr = build_address (expr);
426 target_type = TREE_TYPE (expr);
427 goto out;
430 if (virtual_access)
432 /* Going via virtual base V_BINFO. We need the static offset
433 from V_BINFO to BINFO, and the dynamic offset from D_BINFO to
434 V_BINFO. That offset is an entry in D_BINFO's vtable. */
435 tree v_offset;
437 if (fixed_type_p < 0 && in_base_initializer)
439 /* In a base member initializer, we cannot rely on the
440 vtable being set up. We have to indirect via the
441 vtt_parm. */
442 tree t;
444 t = TREE_TYPE (TYPE_VFIELD (current_class_type));
445 t = build_pointer_type (t);
446 v_offset = convert (t, current_vtt_parm);
447 v_offset = cp_build_indirect_ref (v_offset, RO_NULL, complain);
449 else
451 tree t = expr;
452 if ((flag_sanitize & SANITIZE_VPTR) && fixed_type_p == 0)
454 t = cp_ubsan_maybe_instrument_cast_to_vbase (input_location,
455 probe, expr);
456 if (t == NULL_TREE)
457 t = expr;
459 v_offset = build_vfield_ref (cp_build_indirect_ref (t, RO_NULL,
460 complain),
461 TREE_TYPE (TREE_TYPE (expr)));
464 if (v_offset == error_mark_node)
465 return error_mark_node;
467 v_offset = fold_build_pointer_plus (v_offset, BINFO_VPTR_FIELD (v_binfo));
468 v_offset = build1 (NOP_EXPR,
469 build_pointer_type (ptrdiff_type_node),
470 v_offset);
471 v_offset = cp_build_indirect_ref (v_offset, RO_NULL, complain);
472 TREE_CONSTANT (v_offset) = 1;
474 offset = convert_to_integer (ptrdiff_type_node,
475 size_diffop_loc (input_location, offset,
476 BINFO_OFFSET (v_binfo)));
478 if (!integer_zerop (offset))
479 v_offset = build2 (code, ptrdiff_type_node, v_offset, offset);
481 if (fixed_type_p < 0)
482 /* Negative fixed_type_p means this is a constructor or destructor;
483 virtual base layout is fixed in in-charge [cd]tors, but not in
484 base [cd]tors. */
485 offset = build3 (COND_EXPR, ptrdiff_type_node,
486 build2 (EQ_EXPR, boolean_type_node,
487 current_in_charge_parm, integer_zero_node),
488 v_offset,
489 convert_to_integer (ptrdiff_type_node,
490 BINFO_OFFSET (binfo)));
491 else
492 offset = v_offset;
495 if (want_pointer)
496 target_type = ptr_target_type;
498 expr = build1 (NOP_EXPR, ptr_target_type, expr);
500 if (!integer_zerop (offset))
502 offset = fold_convert (sizetype, offset);
503 if (code == MINUS_EXPR)
504 offset = fold_build1_loc (input_location, NEGATE_EXPR, sizetype, offset);
505 expr = fold_build_pointer_plus (expr, offset);
507 else
508 null_test = NULL;
510 indout:
511 if (!want_pointer)
513 expr = cp_build_indirect_ref (expr, RO_NULL, complain);
514 if (rvalue)
515 expr = move (expr);
518 out:
519 if (null_test)
520 expr = fold_build3_loc (input_location, COND_EXPR, target_type, null_test, expr,
521 build_zero_cst (target_type));
523 return expr;
526 /* Subroutine of build_base_path; EXPR and BINFO are as in that function.
527 Perform a derived-to-base conversion by recursively building up a
528 sequence of COMPONENT_REFs to the appropriate base fields. */
530 static tree
531 build_simple_base_path (tree expr, tree binfo)
533 tree type = BINFO_TYPE (binfo);
534 tree d_binfo = BINFO_INHERITANCE_CHAIN (binfo);
535 tree field;
537 if (d_binfo == NULL_TREE)
539 tree temp;
541 gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (expr)) == type);
543 /* Transform `(a, b).x' into `(*(a, &b)).x', `(a ? b : c).x'
544 into `(*(a ? &b : &c)).x', and so on. A COND_EXPR is only
545 an lvalue in the front end; only _DECLs and _REFs are lvalues
546 in the back end. */
547 temp = unary_complex_lvalue (ADDR_EXPR, expr);
548 if (temp)
549 expr = cp_build_indirect_ref (temp, RO_NULL, tf_warning_or_error);
551 return expr;
554 /* Recurse. */
555 expr = build_simple_base_path (expr, d_binfo);
557 for (field = TYPE_FIELDS (BINFO_TYPE (d_binfo));
558 field; field = DECL_CHAIN (field))
559 /* Is this the base field created by build_base_field? */
560 if (TREE_CODE (field) == FIELD_DECL
561 && DECL_FIELD_IS_BASE (field)
562 && TREE_TYPE (field) == type
563 /* If we're looking for a field in the most-derived class,
564 also check the field offset; we can have two base fields
565 of the same type if one is an indirect virtual base and one
566 is a direct non-virtual base. */
567 && (BINFO_INHERITANCE_CHAIN (d_binfo)
568 || tree_int_cst_equal (byte_position (field),
569 BINFO_OFFSET (binfo))))
571 /* We don't use build_class_member_access_expr here, as that
572 has unnecessary checks, and more importantly results in
573 recursive calls to dfs_walk_once. */
574 int type_quals = cp_type_quals (TREE_TYPE (expr));
576 expr = build3 (COMPONENT_REF,
577 cp_build_qualified_type (type, type_quals),
578 expr, field, NULL_TREE);
579 expr = fold_if_not_in_template (expr);
581 /* Mark the expression const or volatile, as appropriate.
582 Even though we've dealt with the type above, we still have
583 to mark the expression itself. */
584 if (type_quals & TYPE_QUAL_CONST)
585 TREE_READONLY (expr) = 1;
586 if (type_quals & TYPE_QUAL_VOLATILE)
587 TREE_THIS_VOLATILE (expr) = 1;
589 return expr;
592 /* Didn't find the base field?!? */
593 gcc_unreachable ();
596 /* Convert OBJECT to the base TYPE. OBJECT is an expression whose
597 type is a class type or a pointer to a class type. In the former
598 case, TYPE is also a class type; in the latter it is another
599 pointer type. If CHECK_ACCESS is true, an error message is emitted
600 if TYPE is inaccessible. If OBJECT has pointer type, the value is
601 assumed to be non-NULL. */
603 tree
604 convert_to_base (tree object, tree type, bool check_access, bool nonnull,
605 tsubst_flags_t complain)
607 tree binfo;
608 tree object_type;
610 if (TYPE_PTR_P (TREE_TYPE (object)))
612 object_type = TREE_TYPE (TREE_TYPE (object));
613 type = TREE_TYPE (type);
615 else
616 object_type = TREE_TYPE (object);
618 binfo = lookup_base (object_type, type, check_access ? ba_check : ba_unique,
619 NULL, complain);
620 if (!binfo || binfo == error_mark_node)
621 return error_mark_node;
623 return build_base_path (PLUS_EXPR, object, binfo, nonnull, complain);
626 /* EXPR is an expression with unqualified class type. BASE is a base
627 binfo of that class type. Returns EXPR, converted to the BASE
628 type. This function assumes that EXPR is the most derived class;
629 therefore virtual bases can be found at their static offsets. */
631 tree
632 convert_to_base_statically (tree expr, tree base)
634 tree expr_type;
636 expr_type = TREE_TYPE (expr);
637 if (!SAME_BINFO_TYPE_P (BINFO_TYPE (base), expr_type))
639 /* If this is a non-empty base, use a COMPONENT_REF. */
640 if (!is_empty_class (BINFO_TYPE (base)))
641 return build_simple_base_path (expr, base);
643 /* We use fold_build2 and fold_convert below to simplify the trees
644 provided to the optimizers. It is not safe to call these functions
645 when processing a template because they do not handle C++-specific
646 trees. */
647 gcc_assert (!processing_template_decl);
648 expr = cp_build_addr_expr (expr, tf_warning_or_error);
649 if (!integer_zerop (BINFO_OFFSET (base)))
650 expr = fold_build_pointer_plus_loc (input_location,
651 expr, BINFO_OFFSET (base));
652 expr = fold_convert (build_pointer_type (BINFO_TYPE (base)), expr);
653 expr = build_fold_indirect_ref_loc (input_location, expr);
656 return expr;
660 tree
661 build_vfield_ref (tree datum, tree type)
663 tree vfield, vcontext;
665 if (datum == error_mark_node
666 /* Can happen in case of duplicate base types (c++/59082). */
667 || !TYPE_VFIELD (type))
668 return error_mark_node;
670 /* First, convert to the requested type. */
671 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (datum), type))
672 datum = convert_to_base (datum, type, /*check_access=*/false,
673 /*nonnull=*/true, tf_warning_or_error);
675 /* Second, the requested type may not be the owner of its own vptr.
676 If not, convert to the base class that owns it. We cannot use
677 convert_to_base here, because VCONTEXT may appear more than once
678 in the inheritance hierarchy of TYPE, and thus direct conversion
679 between the types may be ambiguous. Following the path back up
680 one step at a time via primary bases avoids the problem. */
681 vfield = TYPE_VFIELD (type);
682 vcontext = DECL_CONTEXT (vfield);
683 while (!same_type_ignoring_top_level_qualifiers_p (vcontext, type))
685 datum = build_simple_base_path (datum, CLASSTYPE_PRIMARY_BINFO (type));
686 type = TREE_TYPE (datum);
689 return build3 (COMPONENT_REF, TREE_TYPE (vfield), datum, vfield, NULL_TREE);
692 /* Given an object INSTANCE, return an expression which yields the
693 vtable element corresponding to INDEX. There are many special
694 cases for INSTANCE which we take care of here, mainly to avoid
695 creating extra tree nodes when we don't have to. */
697 static tree
698 build_vtbl_ref_1 (tree instance, tree idx)
700 tree aref;
701 tree vtbl = NULL_TREE;
703 /* Try to figure out what a reference refers to, and
704 access its virtual function table directly. */
706 int cdtorp = 0;
707 tree fixed_type = fixed_type_or_null (instance, NULL, &cdtorp);
709 tree basetype = non_reference (TREE_TYPE (instance));
711 if (fixed_type && !cdtorp)
713 tree binfo = lookup_base (fixed_type, basetype,
714 ba_unique, NULL, tf_none);
715 if (binfo && binfo != error_mark_node)
716 vtbl = unshare_expr (BINFO_VTABLE (binfo));
719 if (!vtbl)
720 vtbl = build_vfield_ref (instance, basetype);
722 aref = build_array_ref (input_location, vtbl, idx);
723 TREE_CONSTANT (aref) |= TREE_CONSTANT (vtbl) && TREE_CONSTANT (idx);
725 return aref;
728 tree
729 build_vtbl_ref (tree instance, tree idx)
731 tree aref = build_vtbl_ref_1 (instance, idx);
733 return aref;
736 /* Given a stable object pointer INSTANCE_PTR, return an expression which
737 yields a function pointer corresponding to vtable element INDEX. */
739 tree
740 build_vfn_ref (tree instance_ptr, tree idx)
742 tree aref;
744 aref = build_vtbl_ref_1 (cp_build_indirect_ref (instance_ptr, RO_NULL,
745 tf_warning_or_error),
746 idx);
748 /* When using function descriptors, the address of the
749 vtable entry is treated as a function pointer. */
750 if (TARGET_VTABLE_USES_DESCRIPTORS)
751 aref = build1 (NOP_EXPR, TREE_TYPE (aref),
752 cp_build_addr_expr (aref, tf_warning_or_error));
754 /* Remember this as a method reference, for later devirtualization. */
755 aref = build3 (OBJ_TYPE_REF, TREE_TYPE (aref), aref, instance_ptr, idx);
757 return aref;
760 /* Return the name of the virtual function table (as an IDENTIFIER_NODE)
761 for the given TYPE. */
763 static tree
764 get_vtable_name (tree type)
766 return mangle_vtbl_for_type (type);
769 /* DECL is an entity associated with TYPE, like a virtual table or an
770 implicitly generated constructor. Determine whether or not DECL
771 should have external or internal linkage at the object file
772 level. This routine does not deal with COMDAT linkage and other
773 similar complexities; it simply sets TREE_PUBLIC if it possible for
774 entities in other translation units to contain copies of DECL, in
775 the abstract. */
777 void
778 set_linkage_according_to_type (tree /*type*/, tree decl)
780 TREE_PUBLIC (decl) = 1;
781 determine_visibility (decl);
784 /* Create a VAR_DECL for a primary or secondary vtable for CLASS_TYPE.
785 (For a secondary vtable for B-in-D, CLASS_TYPE should be D, not B.)
786 Use NAME for the name of the vtable, and VTABLE_TYPE for its type. */
788 static tree
789 build_vtable (tree class_type, tree name, tree vtable_type)
791 tree decl;
793 decl = build_lang_decl (VAR_DECL, name, vtable_type);
794 /* vtable names are already mangled; give them their DECL_ASSEMBLER_NAME
795 now to avoid confusion in mangle_decl. */
796 SET_DECL_ASSEMBLER_NAME (decl, name);
797 DECL_CONTEXT (decl) = class_type;
798 DECL_ARTIFICIAL (decl) = 1;
799 TREE_STATIC (decl) = 1;
800 TREE_READONLY (decl) = 1;
801 DECL_VIRTUAL_P (decl) = 1;
802 DECL_ALIGN (decl) = TARGET_VTABLE_ENTRY_ALIGN;
803 DECL_USER_ALIGN (decl) = true;
804 DECL_VTABLE_OR_VTT_P (decl) = 1;
805 set_linkage_according_to_type (class_type, decl);
806 /* The vtable has not been defined -- yet. */
807 DECL_EXTERNAL (decl) = 1;
808 DECL_NOT_REALLY_EXTERN (decl) = 1;
810 /* Mark the VAR_DECL node representing the vtable itself as a
811 "gratuitous" one, thereby forcing dwarfout.c to ignore it. It
812 is rather important that such things be ignored because any
813 effort to actually generate DWARF for them will run into
814 trouble when/if we encounter code like:
816 #pragma interface
817 struct S { virtual void member (); };
819 because the artificial declaration of the vtable itself (as
820 manufactured by the g++ front end) will say that the vtable is
821 a static member of `S' but only *after* the debug output for
822 the definition of `S' has already been output. This causes
823 grief because the DWARF entry for the definition of the vtable
824 will try to refer back to an earlier *declaration* of the
825 vtable as a static member of `S' and there won't be one. We
826 might be able to arrange to have the "vtable static member"
827 attached to the member list for `S' before the debug info for
828 `S' get written (which would solve the problem) but that would
829 require more intrusive changes to the g++ front end. */
830 DECL_IGNORED_P (decl) = 1;
832 return decl;
835 /* Get the VAR_DECL of the vtable for TYPE. TYPE need not be polymorphic,
836 or even complete. If this does not exist, create it. If COMPLETE is
837 nonzero, then complete the definition of it -- that will render it
838 impossible to actually build the vtable, but is useful to get at those
839 which are known to exist in the runtime. */
841 tree
842 get_vtable_decl (tree type, int complete)
844 tree decl;
846 if (CLASSTYPE_VTABLES (type))
847 return CLASSTYPE_VTABLES (type);
849 decl = build_vtable (type, get_vtable_name (type), vtbl_type_node);
850 CLASSTYPE_VTABLES (type) = decl;
852 if (complete)
854 DECL_EXTERNAL (decl) = 1;
855 cp_finish_decl (decl, NULL_TREE, false, NULL_TREE, 0);
858 return decl;
861 /* Build the primary virtual function table for TYPE. If BINFO is
862 non-NULL, build the vtable starting with the initial approximation
863 that it is the same as the one which is the head of the association
864 list. Returns a nonzero value if a new vtable is actually
865 created. */
867 static int
868 build_primary_vtable (tree binfo, tree type)
870 tree decl;
871 tree virtuals;
873 decl = get_vtable_decl (type, /*complete=*/0);
875 if (binfo)
877 if (BINFO_NEW_VTABLE_MARKED (binfo))
878 /* We have already created a vtable for this base, so there's
879 no need to do it again. */
880 return 0;
882 virtuals = copy_list (BINFO_VIRTUALS (binfo));
883 TREE_TYPE (decl) = TREE_TYPE (get_vtbl_decl_for_binfo (binfo));
884 DECL_SIZE (decl) = TYPE_SIZE (TREE_TYPE (decl));
885 DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (TREE_TYPE (decl));
887 else
889 gcc_assert (TREE_TYPE (decl) == vtbl_type_node);
890 virtuals = NULL_TREE;
893 if (GATHER_STATISTICS)
895 n_vtables += 1;
896 n_vtable_elems += list_length (virtuals);
899 /* Initialize the association list for this type, based
900 on our first approximation. */
901 BINFO_VTABLE (TYPE_BINFO (type)) = decl;
902 BINFO_VIRTUALS (TYPE_BINFO (type)) = virtuals;
903 SET_BINFO_NEW_VTABLE_MARKED (TYPE_BINFO (type));
904 return 1;
907 /* Give BINFO a new virtual function table which is initialized
908 with a skeleton-copy of its original initialization. The only
909 entry that changes is the `delta' entry, so we can really
910 share a lot of structure.
912 FOR_TYPE is the most derived type which caused this table to
913 be needed.
915 Returns nonzero if we haven't met BINFO before.
917 The order in which vtables are built (by calling this function) for
918 an object must remain the same, otherwise a binary incompatibility
919 can result. */
921 static int
922 build_secondary_vtable (tree binfo)
924 if (BINFO_NEW_VTABLE_MARKED (binfo))
925 /* We already created a vtable for this base. There's no need to
926 do it again. */
927 return 0;
929 /* Remember that we've created a vtable for this BINFO, so that we
930 don't try to do so again. */
931 SET_BINFO_NEW_VTABLE_MARKED (binfo);
933 /* Make fresh virtual list, so we can smash it later. */
934 BINFO_VIRTUALS (binfo) = copy_list (BINFO_VIRTUALS (binfo));
936 /* Secondary vtables are laid out as part of the same structure as
937 the primary vtable. */
938 BINFO_VTABLE (binfo) = NULL_TREE;
939 return 1;
942 /* Create a new vtable for BINFO which is the hierarchy dominated by
943 T. Return nonzero if we actually created a new vtable. */
945 static int
946 make_new_vtable (tree t, tree binfo)
948 if (binfo == TYPE_BINFO (t))
949 /* In this case, it is *type*'s vtable we are modifying. We start
950 with the approximation that its vtable is that of the
951 immediate base class. */
952 return build_primary_vtable (binfo, t);
953 else
954 /* This is our very own copy of `basetype' to play with. Later,
955 we will fill in all the virtual functions that override the
956 virtual functions in these base classes which are not defined
957 by the current type. */
958 return build_secondary_vtable (binfo);
961 /* Make *VIRTUALS, an entry on the BINFO_VIRTUALS list for BINFO
962 (which is in the hierarchy dominated by T) list FNDECL as its
963 BV_FN. DELTA is the required constant adjustment from the `this'
964 pointer where the vtable entry appears to the `this' required when
965 the function is actually called. */
967 static void
968 modify_vtable_entry (tree t,
969 tree binfo,
970 tree fndecl,
971 tree delta,
972 tree *virtuals)
974 tree v;
976 v = *virtuals;
978 if (fndecl != BV_FN (v)
979 || !tree_int_cst_equal (delta, BV_DELTA (v)))
981 /* We need a new vtable for BINFO. */
982 if (make_new_vtable (t, binfo))
984 /* If we really did make a new vtable, we also made a copy
985 of the BINFO_VIRTUALS list. Now, we have to find the
986 corresponding entry in that list. */
987 *virtuals = BINFO_VIRTUALS (binfo);
988 while (BV_FN (*virtuals) != BV_FN (v))
989 *virtuals = TREE_CHAIN (*virtuals);
990 v = *virtuals;
993 BV_DELTA (v) = delta;
994 BV_VCALL_INDEX (v) = NULL_TREE;
995 BV_FN (v) = fndecl;
1000 /* Add method METHOD to class TYPE. If USING_DECL is non-null, it is
1001 the USING_DECL naming METHOD. Returns true if the method could be
1002 added to the method vec. */
1004 bool
1005 add_method (tree type, tree method, tree using_decl)
1007 unsigned slot;
1008 tree overload;
1009 bool template_conv_p = false;
1010 bool conv_p;
1011 vec<tree, va_gc> *method_vec;
1012 bool complete_p;
1013 bool insert_p = false;
1014 tree current_fns;
1015 tree fns;
1017 if (method == error_mark_node)
1018 return false;
1020 complete_p = COMPLETE_TYPE_P (type);
1021 conv_p = DECL_CONV_FN_P (method);
1022 if (conv_p)
1023 template_conv_p = (TREE_CODE (method) == TEMPLATE_DECL
1024 && DECL_TEMPLATE_CONV_FN_P (method));
1026 method_vec = CLASSTYPE_METHOD_VEC (type);
1027 if (!method_vec)
1029 /* Make a new method vector. We start with 8 entries. We must
1030 allocate at least two (for constructors and destructors), and
1031 we're going to end up with an assignment operator at some
1032 point as well. */
1033 vec_alloc (method_vec, 8);
1034 /* Create slots for constructors and destructors. */
1035 method_vec->quick_push (NULL_TREE);
1036 method_vec->quick_push (NULL_TREE);
1037 CLASSTYPE_METHOD_VEC (type) = method_vec;
1040 /* Maintain TYPE_HAS_USER_CONSTRUCTOR, etc. */
1041 grok_special_member_properties (method);
1043 /* Constructors and destructors go in special slots. */
1044 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (method))
1045 slot = CLASSTYPE_CONSTRUCTOR_SLOT;
1046 else if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (method))
1048 slot = CLASSTYPE_DESTRUCTOR_SLOT;
1050 if (TYPE_FOR_JAVA (type))
1052 if (!DECL_ARTIFICIAL (method))
1053 error ("Java class %qT cannot have a destructor", type);
1054 else if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
1055 error ("Java class %qT cannot have an implicit non-trivial "
1056 "destructor",
1057 type);
1060 else
1062 tree m;
1064 insert_p = true;
1065 /* See if we already have an entry with this name. */
1066 for (slot = CLASSTYPE_FIRST_CONVERSION_SLOT;
1067 vec_safe_iterate (method_vec, slot, &m);
1068 ++slot)
1070 m = OVL_CURRENT (m);
1071 if (template_conv_p)
1073 if (TREE_CODE (m) == TEMPLATE_DECL
1074 && DECL_TEMPLATE_CONV_FN_P (m))
1075 insert_p = false;
1076 break;
1078 if (conv_p && !DECL_CONV_FN_P (m))
1079 break;
1080 if (DECL_NAME (m) == DECL_NAME (method))
1082 insert_p = false;
1083 break;
1085 if (complete_p
1086 && !DECL_CONV_FN_P (m)
1087 && DECL_NAME (m) > DECL_NAME (method))
1088 break;
1091 current_fns = insert_p ? NULL_TREE : (*method_vec)[slot];
1093 /* Check to see if we've already got this method. */
1094 for (fns = current_fns; fns; fns = OVL_NEXT (fns))
1096 tree fn = OVL_CURRENT (fns);
1097 tree fn_type;
1098 tree method_type;
1099 tree parms1;
1100 tree parms2;
1102 if (TREE_CODE (fn) != TREE_CODE (method))
1103 continue;
1105 /* [over.load] Member function declarations with the
1106 same name and the same parameter types cannot be
1107 overloaded if any of them is a static member
1108 function declaration.
1110 [over.load] Member function declarations with the same name and
1111 the same parameter-type-list as well as member function template
1112 declarations with the same name, the same parameter-type-list, and
1113 the same template parameter lists cannot be overloaded if any of
1114 them, but not all, have a ref-qualifier.
1116 [namespace.udecl] When a using-declaration brings names
1117 from a base class into a derived class scope, member
1118 functions in the derived class override and/or hide member
1119 functions with the same name and parameter types in a base
1120 class (rather than conflicting). */
1121 fn_type = TREE_TYPE (fn);
1122 method_type = TREE_TYPE (method);
1123 parms1 = TYPE_ARG_TYPES (fn_type);
1124 parms2 = TYPE_ARG_TYPES (method_type);
1126 /* Compare the quals on the 'this' parm. Don't compare
1127 the whole types, as used functions are treated as
1128 coming from the using class in overload resolution. */
1129 if (! DECL_STATIC_FUNCTION_P (fn)
1130 && ! DECL_STATIC_FUNCTION_P (method)
1131 /* Either both or neither need to be ref-qualified for
1132 differing quals to allow overloading. */
1133 && (FUNCTION_REF_QUALIFIED (fn_type)
1134 == FUNCTION_REF_QUALIFIED (method_type))
1135 && (type_memfn_quals (fn_type) != type_memfn_quals (method_type)
1136 || type_memfn_rqual (fn_type) != type_memfn_rqual (method_type)))
1137 continue;
1139 /* For templates, the return type and template parameters
1140 must be identical. */
1141 if (TREE_CODE (fn) == TEMPLATE_DECL
1142 && (!same_type_p (TREE_TYPE (fn_type),
1143 TREE_TYPE (method_type))
1144 || !comp_template_parms (DECL_TEMPLATE_PARMS (fn),
1145 DECL_TEMPLATE_PARMS (method))))
1146 continue;
1148 if (! DECL_STATIC_FUNCTION_P (fn))
1149 parms1 = TREE_CHAIN (parms1);
1150 if (! DECL_STATIC_FUNCTION_P (method))
1151 parms2 = TREE_CHAIN (parms2);
1153 if (compparms (parms1, parms2)
1154 && (!DECL_CONV_FN_P (fn)
1155 || same_type_p (TREE_TYPE (fn_type),
1156 TREE_TYPE (method_type))))
1158 /* For function versions, their parms and types match
1159 but they are not duplicates. Record function versions
1160 as and when they are found. extern "C" functions are
1161 not treated as versions. */
1162 if (TREE_CODE (fn) == FUNCTION_DECL
1163 && TREE_CODE (method) == FUNCTION_DECL
1164 && !DECL_EXTERN_C_P (fn)
1165 && !DECL_EXTERN_C_P (method)
1166 && targetm.target_option.function_versions (fn, method))
1168 /* Mark functions as versions if necessary. Modify the mangled
1169 decl name if necessary. */
1170 if (!DECL_FUNCTION_VERSIONED (fn))
1172 DECL_FUNCTION_VERSIONED (fn) = 1;
1173 if (DECL_ASSEMBLER_NAME_SET_P (fn))
1174 mangle_decl (fn);
1176 if (!DECL_FUNCTION_VERSIONED (method))
1178 DECL_FUNCTION_VERSIONED (method) = 1;
1179 if (DECL_ASSEMBLER_NAME_SET_P (method))
1180 mangle_decl (method);
1182 cgraph_node::record_function_versions (fn, method);
1183 continue;
1185 if (DECL_INHERITED_CTOR_BASE (method))
1187 if (DECL_INHERITED_CTOR_BASE (fn))
1189 error_at (DECL_SOURCE_LOCATION (method),
1190 "%q#D inherited from %qT", method,
1191 DECL_INHERITED_CTOR_BASE (method));
1192 error_at (DECL_SOURCE_LOCATION (fn),
1193 "conflicts with version inherited from %qT",
1194 DECL_INHERITED_CTOR_BASE (fn));
1196 /* Otherwise defer to the other function. */
1197 return false;
1199 if (using_decl)
1201 if (DECL_CONTEXT (fn) == type)
1202 /* Defer to the local function. */
1203 return false;
1205 else
1207 error ("%q+#D cannot be overloaded", method);
1208 error ("with %q+#D", fn);
1211 /* We don't call duplicate_decls here to merge the
1212 declarations because that will confuse things if the
1213 methods have inline definitions. In particular, we
1214 will crash while processing the definitions. */
1215 return false;
1219 /* A class should never have more than one destructor. */
1220 if (current_fns && DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (method))
1221 return false;
1223 /* Add the new binding. */
1224 if (using_decl)
1226 overload = ovl_cons (method, current_fns);
1227 OVL_USED (overload) = true;
1229 else
1230 overload = build_overload (method, current_fns);
1232 if (conv_p)
1233 TYPE_HAS_CONVERSION (type) = 1;
1234 else if (slot >= CLASSTYPE_FIRST_CONVERSION_SLOT && !complete_p)
1235 push_class_level_binding (DECL_NAME (method), overload);
1237 if (insert_p)
1239 bool reallocated;
1241 /* We only expect to add few methods in the COMPLETE_P case, so
1242 just make room for one more method in that case. */
1243 if (complete_p)
1244 reallocated = vec_safe_reserve_exact (method_vec, 1);
1245 else
1246 reallocated = vec_safe_reserve (method_vec, 1);
1247 if (reallocated)
1248 CLASSTYPE_METHOD_VEC (type) = method_vec;
1249 if (slot == method_vec->length ())
1250 method_vec->quick_push (overload);
1251 else
1252 method_vec->quick_insert (slot, overload);
1254 else
1255 /* Replace the current slot. */
1256 (*method_vec)[slot] = overload;
1257 return true;
1260 /* Subroutines of finish_struct. */
1262 /* Change the access of FDECL to ACCESS in T. Return 1 if change was
1263 legit, otherwise return 0. */
1265 static int
1266 alter_access (tree t, tree fdecl, tree access)
1268 tree elem;
1270 if (!DECL_LANG_SPECIFIC (fdecl))
1271 retrofit_lang_decl (fdecl);
1273 gcc_assert (!DECL_DISCRIMINATOR_P (fdecl));
1275 elem = purpose_member (t, DECL_ACCESS (fdecl));
1276 if (elem)
1278 if (TREE_VALUE (elem) != access)
1280 if (TREE_CODE (TREE_TYPE (fdecl)) == FUNCTION_DECL)
1281 error ("conflicting access specifications for method"
1282 " %q+D, ignored", TREE_TYPE (fdecl));
1283 else
1284 error ("conflicting access specifications for field %qE, ignored",
1285 DECL_NAME (fdecl));
1287 else
1289 /* They're changing the access to the same thing they changed
1290 it to before. That's OK. */
1294 else
1296 perform_or_defer_access_check (TYPE_BINFO (t), fdecl, fdecl,
1297 tf_warning_or_error);
1298 DECL_ACCESS (fdecl) = tree_cons (t, access, DECL_ACCESS (fdecl));
1299 return 1;
1301 return 0;
1304 /* Process the USING_DECL, which is a member of T. */
1306 static void
1307 handle_using_decl (tree using_decl, tree t)
1309 tree decl = USING_DECL_DECLS (using_decl);
1310 tree name = DECL_NAME (using_decl);
1311 tree access
1312 = TREE_PRIVATE (using_decl) ? access_private_node
1313 : TREE_PROTECTED (using_decl) ? access_protected_node
1314 : access_public_node;
1315 tree flist = NULL_TREE;
1316 tree old_value;
1318 gcc_assert (!processing_template_decl && decl);
1320 old_value = lookup_member (t, name, /*protect=*/0, /*want_type=*/false,
1321 tf_warning_or_error);
1322 if (old_value)
1324 if (is_overloaded_fn (old_value))
1325 old_value = OVL_CURRENT (old_value);
1327 if (DECL_P (old_value) && DECL_CONTEXT (old_value) == t)
1328 /* OK */;
1329 else
1330 old_value = NULL_TREE;
1333 cp_emit_debug_info_for_using (decl, t);
1335 if (is_overloaded_fn (decl))
1336 flist = decl;
1338 if (! old_value)
1340 else if (is_overloaded_fn (old_value))
1342 if (flist)
1343 /* It's OK to use functions from a base when there are functions with
1344 the same name already present in the current class. */;
1345 else
1347 error ("%q+D invalid in %q#T", using_decl, t);
1348 error (" because of local method %q+#D with same name",
1349 OVL_CURRENT (old_value));
1350 return;
1353 else if (!DECL_ARTIFICIAL (old_value))
1355 error ("%q+D invalid in %q#T", using_decl, t);
1356 error (" because of local member %q+#D with same name", old_value);
1357 return;
1360 /* Make type T see field decl FDECL with access ACCESS. */
1361 if (flist)
1362 for (; flist; flist = OVL_NEXT (flist))
1364 add_method (t, OVL_CURRENT (flist), using_decl);
1365 alter_access (t, OVL_CURRENT (flist), access);
1367 else
1368 alter_access (t, decl, access);
1371 /* Data structure for find_abi_tags_r, below. */
1373 struct abi_tag_data
1375 tree t; // The type that we're checking for missing tags.
1376 tree subob; // The subobject of T that we're getting tags from.
1377 tree tags; // error_mark_node for diagnostics, or a list of missing tags.
1380 /* Subroutine of find_abi_tags_r. Handle a single TAG found on the class TP
1381 in the context of P. TAG can be either an identifier (the DECL_NAME of
1382 a tag NAMESPACE_DECL) or a STRING_CST (a tag attribute). */
1384 static void
1385 check_tag (tree tag, tree id, tree *tp, abi_tag_data *p)
1387 if (!IDENTIFIER_MARKED (id))
1389 if (p->tags != error_mark_node)
1391 /* We're collecting tags from template arguments or from
1392 the type of a variable or function return type. */
1393 p->tags = tree_cons (NULL_TREE, tag, p->tags);
1395 /* Don't inherit this tag multiple times. */
1396 IDENTIFIER_MARKED (id) = true;
1398 if (TYPE_P (p->t))
1400 /* Tags inherited from type template arguments are only used
1401 to avoid warnings. */
1402 ABI_TAG_IMPLICIT (p->tags) = true;
1403 return;
1405 /* For functions and variables we want to warn, too. */
1408 /* Otherwise we're diagnosing missing tags. */
1409 if (TREE_CODE (p->t) == FUNCTION_DECL)
1411 if (warning (OPT_Wabi_tag, "%qD inherits the %E ABI tag "
1412 "that %qT (used in its return type) has",
1413 p->t, tag, *tp))
1414 inform (location_of (*tp), "%qT declared here", *tp);
1416 else if (TREE_CODE (p->t) == VAR_DECL)
1418 if (warning (OPT_Wabi_tag, "%qD inherits the %E ABI tag "
1419 "that %qT (used in its type) has", p->t, tag, *tp))
1420 inform (location_of (*tp), "%qT declared here", *tp);
1422 else if (TYPE_P (p->subob))
1424 if (warning (OPT_Wabi_tag, "%qT does not have the %E ABI tag "
1425 "that base %qT has", p->t, tag, p->subob))
1426 inform (location_of (p->subob), "%qT declared here",
1427 p->subob);
1429 else
1431 if (warning (OPT_Wabi_tag, "%qT does not have the %E ABI tag "
1432 "that %qT (used in the type of %qD) has",
1433 p->t, tag, *tp, p->subob))
1435 inform (location_of (p->subob), "%qD declared here",
1436 p->subob);
1437 inform (location_of (*tp), "%qT declared here", *tp);
1443 /* Find all the ABI tags in the attribute list ATTR and either call
1444 check_tag (if TP is non-null) or set IDENTIFIER_MARKED to val. */
1446 static void
1447 mark_or_check_attr_tags (tree attr, tree *tp, abi_tag_data *p, bool val)
1449 if (!attr)
1450 return;
1451 for (; (attr = lookup_attribute ("abi_tag", attr));
1452 attr = TREE_CHAIN (attr))
1453 for (tree list = TREE_VALUE (attr); list;
1454 list = TREE_CHAIN (list))
1456 tree tag = TREE_VALUE (list);
1457 tree id = get_identifier (TREE_STRING_POINTER (tag));
1458 if (tp)
1459 check_tag (tag, id, tp, p);
1460 else
1461 IDENTIFIER_MARKED (id) = val;
1465 /* Find all the ABI tags on T and its enclosing scopes and either call
1466 check_tag (if TP is non-null) or set IDENTIFIER_MARKED to val. */
1468 static void
1469 mark_or_check_tags (tree t, tree *tp, abi_tag_data *p, bool val)
1471 while (t != global_namespace)
1473 tree attr;
1474 if (TYPE_P (t))
1476 attr = TYPE_ATTRIBUTES (t);
1477 t = CP_TYPE_CONTEXT (t);
1479 else
1481 attr = DECL_ATTRIBUTES (t);
1482 t = CP_DECL_CONTEXT (t);
1484 mark_or_check_attr_tags (attr, tp, p, val);
1488 /* walk_tree callback for check_abi_tags: if the type at *TP involves any
1489 types with ABI tags, add the corresponding identifiers to the VEC in
1490 *DATA and set IDENTIFIER_MARKED. */
1492 static tree
1493 find_abi_tags_r (tree *tp, int *walk_subtrees, void *data)
1495 if (!OVERLOAD_TYPE_P (*tp))
1496 return NULL_TREE;
1498 /* walk_tree shouldn't be walking into any subtrees of a RECORD_TYPE
1499 anyway, but let's make sure of it. */
1500 *walk_subtrees = false;
1502 abi_tag_data *p = static_cast<struct abi_tag_data*>(data);
1504 mark_or_check_tags (*tp, tp, p, false);
1506 return NULL_TREE;
1509 /* walk_tree callback for mark_abi_tags: if *TP is a class, set
1510 IDENTIFIER_MARKED on its ABI tags. */
1512 static tree
1513 mark_abi_tags_r (tree *tp, int *walk_subtrees, void *data)
1515 if (!OVERLOAD_TYPE_P (*tp))
1516 return NULL_TREE;
1518 /* walk_tree shouldn't be walking into any subtrees of a RECORD_TYPE
1519 anyway, but let's make sure of it. */
1520 *walk_subtrees = false;
1522 bool *valp = static_cast<bool*>(data);
1524 mark_or_check_tags (*tp, NULL, NULL, *valp);
1526 return NULL_TREE;
1529 /* Set IDENTIFIER_MARKED on all the ABI tags on T and its enclosing
1530 scopes. */
1532 static void
1533 mark_abi_tags (tree t, bool val)
1535 mark_or_check_tags (t, NULL, NULL, val);
1536 if (DECL_P (t))
1538 if (DECL_LANG_SPECIFIC (t) && DECL_USE_TEMPLATE (t)
1539 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t)))
1541 /* Template arguments are part of the signature. */
1542 tree level = INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (t));
1543 for (int j = 0; j < TREE_VEC_LENGTH (level); ++j)
1545 tree arg = TREE_VEC_ELT (level, j);
1546 cp_walk_tree_without_duplicates (&arg, mark_abi_tags_r, &val);
1549 if (TREE_CODE (t) == FUNCTION_DECL)
1550 /* A function's parameter types are part of the signature, so
1551 we don't need to inherit any tags that are also in them. */
1552 for (tree arg = FUNCTION_FIRST_USER_PARMTYPE (t); arg;
1553 arg = TREE_CHAIN (arg))
1554 cp_walk_tree_without_duplicates (&TREE_VALUE (arg),
1555 mark_abi_tags_r, &val);
1559 /* Check that T has all the ABI tags that subobject SUBOB has, or
1560 warn if not. If T is a (variable or function) declaration, also
1561 add any missing tags. */
1563 static void
1564 check_abi_tags (tree t, tree subob)
1566 bool inherit = DECL_P (t);
1568 if (!inherit && !warn_abi_tag)
1569 return;
1571 tree decl = TYPE_P (t) ? TYPE_NAME (t) : t;
1572 if (!TREE_PUBLIC (decl))
1573 /* No need to worry about things local to this TU. */
1574 return;
1576 mark_abi_tags (t, true);
1578 tree subtype = TYPE_P (subob) ? subob : TREE_TYPE (subob);
1579 struct abi_tag_data data = { t, subob, error_mark_node };
1580 if (inherit)
1581 data.tags = NULL_TREE;
1583 cp_walk_tree_without_duplicates (&subtype, find_abi_tags_r, &data);
1585 if (inherit && data.tags)
1587 tree attr = lookup_attribute ("abi_tag", DECL_ATTRIBUTES (t));
1588 if (attr)
1589 TREE_VALUE (attr) = chainon (data.tags, TREE_VALUE (attr));
1590 else
1591 DECL_ATTRIBUTES (t)
1592 = tree_cons (get_identifier ("abi_tag"), data.tags,
1593 DECL_ATTRIBUTES (t));
1596 mark_abi_tags (t, false);
1599 /* Check that DECL has all the ABI tags that are used in parts of its type
1600 that are not reflected in its mangled name. */
1602 void
1603 check_abi_tags (tree decl)
1605 if (TREE_CODE (decl) == VAR_DECL)
1606 check_abi_tags (decl, TREE_TYPE (decl));
1607 else if (TREE_CODE (decl) == FUNCTION_DECL
1608 && !mangle_return_type_p (decl))
1609 check_abi_tags (decl, TREE_TYPE (TREE_TYPE (decl)));
1612 void
1613 inherit_targ_abi_tags (tree t)
1615 if (!CLASS_TYPE_P (t)
1616 || CLASSTYPE_TEMPLATE_INFO (t) == NULL_TREE)
1617 return;
1619 mark_abi_tags (t, true);
1621 tree args = CLASSTYPE_TI_ARGS (t);
1622 struct abi_tag_data data = { t, NULL_TREE, NULL_TREE };
1623 for (int i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
1625 tree level = TMPL_ARGS_LEVEL (args, i+1);
1626 for (int j = 0; j < TREE_VEC_LENGTH (level); ++j)
1628 tree arg = TREE_VEC_ELT (level, j);
1629 data.subob = arg;
1630 cp_walk_tree_without_duplicates (&arg, find_abi_tags_r, &data);
1634 // If we found some tags on our template arguments, add them to our
1635 // abi_tag attribute.
1636 if (data.tags)
1638 tree attr = lookup_attribute ("abi_tag", TYPE_ATTRIBUTES (t));
1639 if (attr)
1640 TREE_VALUE (attr) = chainon (data.tags, TREE_VALUE (attr));
1641 else
1642 TYPE_ATTRIBUTES (t)
1643 = tree_cons (get_identifier ("abi_tag"), data.tags,
1644 TYPE_ATTRIBUTES (t));
1647 mark_abi_tags (t, false);
1650 /* Return true, iff class T has a non-virtual destructor that is
1651 accessible from outside the class heirarchy (i.e. is public, or
1652 there's a suitable friend. */
1654 static bool
1655 accessible_nvdtor_p (tree t)
1657 tree dtor = CLASSTYPE_DESTRUCTORS (t);
1659 /* An implicitly declared destructor is always public. And,
1660 if it were virtual, we would have created it by now. */
1661 if (!dtor)
1662 return true;
1664 if (DECL_VINDEX (dtor))
1665 return false; /* Virtual */
1667 if (!TREE_PRIVATE (dtor) && !TREE_PROTECTED (dtor))
1668 return true; /* Public */
1670 if (CLASSTYPE_FRIEND_CLASSES (t)
1671 || DECL_FRIENDLIST (TYPE_MAIN_DECL (t)))
1672 return true; /* Has friends */
1674 return false;
1677 /* Run through the base classes of T, updating CANT_HAVE_CONST_CTOR_P,
1678 and NO_CONST_ASN_REF_P. Also set flag bits in T based on
1679 properties of the bases. */
1681 static void
1682 check_bases (tree t,
1683 int* cant_have_const_ctor_p,
1684 int* no_const_asn_ref_p)
1686 int i;
1687 bool seen_non_virtual_nearly_empty_base_p = 0;
1688 int seen_tm_mask = 0;
1689 tree base_binfo;
1690 tree binfo;
1691 tree field = NULL_TREE;
1693 if (!CLASSTYPE_NON_STD_LAYOUT (t))
1694 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
1695 if (TREE_CODE (field) == FIELD_DECL)
1696 break;
1698 for (binfo = TYPE_BINFO (t), i = 0;
1699 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
1701 tree basetype = TREE_TYPE (base_binfo);
1703 gcc_assert (COMPLETE_TYPE_P (basetype));
1705 if (CLASSTYPE_FINAL (basetype))
1706 error ("cannot derive from %<final%> base %qT in derived type %qT",
1707 basetype, t);
1709 /* If any base class is non-literal, so is the derived class. */
1710 if (!CLASSTYPE_LITERAL_P (basetype))
1711 CLASSTYPE_LITERAL_P (t) = false;
1713 /* If the base class doesn't have copy constructors or
1714 assignment operators that take const references, then the
1715 derived class cannot have such a member automatically
1716 generated. */
1717 if (TYPE_HAS_COPY_CTOR (basetype)
1718 && ! TYPE_HAS_CONST_COPY_CTOR (basetype))
1719 *cant_have_const_ctor_p = 1;
1720 if (TYPE_HAS_COPY_ASSIGN (basetype)
1721 && !TYPE_HAS_CONST_COPY_ASSIGN (basetype))
1722 *no_const_asn_ref_p = 1;
1724 if (BINFO_VIRTUAL_P (base_binfo))
1725 /* A virtual base does not effect nearly emptiness. */
1727 else if (CLASSTYPE_NEARLY_EMPTY_P (basetype))
1729 if (seen_non_virtual_nearly_empty_base_p)
1730 /* And if there is more than one nearly empty base, then the
1731 derived class is not nearly empty either. */
1732 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
1733 else
1734 /* Remember we've seen one. */
1735 seen_non_virtual_nearly_empty_base_p = 1;
1737 else if (!is_empty_class (basetype))
1738 /* If the base class is not empty or nearly empty, then this
1739 class cannot be nearly empty. */
1740 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
1742 /* A lot of properties from the bases also apply to the derived
1743 class. */
1744 TYPE_NEEDS_CONSTRUCTING (t) |= TYPE_NEEDS_CONSTRUCTING (basetype);
1745 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
1746 |= TYPE_HAS_NONTRIVIAL_DESTRUCTOR (basetype);
1747 TYPE_HAS_COMPLEX_COPY_ASSIGN (t)
1748 |= (TYPE_HAS_COMPLEX_COPY_ASSIGN (basetype)
1749 || !TYPE_HAS_COPY_ASSIGN (basetype));
1750 TYPE_HAS_COMPLEX_COPY_CTOR (t) |= (TYPE_HAS_COMPLEX_COPY_CTOR (basetype)
1751 || !TYPE_HAS_COPY_CTOR (basetype));
1752 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t)
1753 |= TYPE_HAS_COMPLEX_MOVE_ASSIGN (basetype);
1754 TYPE_HAS_COMPLEX_MOVE_CTOR (t) |= TYPE_HAS_COMPLEX_MOVE_CTOR (basetype);
1755 TYPE_POLYMORPHIC_P (t) |= TYPE_POLYMORPHIC_P (basetype);
1756 CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t)
1757 |= CLASSTYPE_CONTAINS_EMPTY_CLASS_P (basetype);
1758 TYPE_HAS_COMPLEX_DFLT (t) |= (!TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype)
1759 || TYPE_HAS_COMPLEX_DFLT (basetype));
1760 SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT
1761 (t, CLASSTYPE_READONLY_FIELDS_NEED_INIT (t)
1762 | CLASSTYPE_READONLY_FIELDS_NEED_INIT (basetype));
1763 SET_CLASSTYPE_REF_FIELDS_NEED_INIT
1764 (t, CLASSTYPE_REF_FIELDS_NEED_INIT (t)
1765 | CLASSTYPE_REF_FIELDS_NEED_INIT (basetype));
1767 /* A standard-layout class is a class that:
1769 * has no non-standard-layout base classes, */
1770 CLASSTYPE_NON_STD_LAYOUT (t) |= CLASSTYPE_NON_STD_LAYOUT (basetype);
1771 if (!CLASSTYPE_NON_STD_LAYOUT (t))
1773 tree basefield;
1774 /* ...has no base classes of the same type as the first non-static
1775 data member... */
1776 if (field && DECL_CONTEXT (field) == t
1777 && (same_type_ignoring_top_level_qualifiers_p
1778 (TREE_TYPE (field), basetype)))
1779 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
1780 else
1781 /* ...either has no non-static data members in the most-derived
1782 class and at most one base class with non-static data
1783 members, or has no base classes with non-static data
1784 members */
1785 for (basefield = TYPE_FIELDS (basetype); basefield;
1786 basefield = DECL_CHAIN (basefield))
1787 if (TREE_CODE (basefield) == FIELD_DECL)
1789 if (field)
1790 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
1791 else
1792 field = basefield;
1793 break;
1797 /* Don't bother collecting tm attributes if transactional memory
1798 support is not enabled. */
1799 if (flag_tm)
1801 tree tm_attr = find_tm_attribute (TYPE_ATTRIBUTES (basetype));
1802 if (tm_attr)
1803 seen_tm_mask |= tm_attr_to_mask (tm_attr);
1806 check_abi_tags (t, basetype);
1809 /* If one of the base classes had TM attributes, and the current class
1810 doesn't define its own, then the current class inherits one. */
1811 if (seen_tm_mask && !find_tm_attribute (TYPE_ATTRIBUTES (t)))
1813 tree tm_attr = tm_mask_to_attr (seen_tm_mask & -seen_tm_mask);
1814 TYPE_ATTRIBUTES (t) = tree_cons (tm_attr, NULL, TYPE_ATTRIBUTES (t));
1818 /* Determine all the primary bases within T. Sets BINFO_PRIMARY_BASE_P for
1819 those that are primaries. Sets BINFO_LOST_PRIMARY_P for those
1820 that have had a nearly-empty virtual primary base stolen by some
1821 other base in the hierarchy. Determines CLASSTYPE_PRIMARY_BASE for
1822 T. */
1824 static void
1825 determine_primary_bases (tree t)
1827 unsigned i;
1828 tree primary = NULL_TREE;
1829 tree type_binfo = TYPE_BINFO (t);
1830 tree base_binfo;
1832 /* Determine the primary bases of our bases. */
1833 for (base_binfo = TREE_CHAIN (type_binfo); base_binfo;
1834 base_binfo = TREE_CHAIN (base_binfo))
1836 tree primary = CLASSTYPE_PRIMARY_BINFO (BINFO_TYPE (base_binfo));
1838 /* See if we're the non-virtual primary of our inheritance
1839 chain. */
1840 if (!BINFO_VIRTUAL_P (base_binfo))
1842 tree parent = BINFO_INHERITANCE_CHAIN (base_binfo);
1843 tree parent_primary = CLASSTYPE_PRIMARY_BINFO (BINFO_TYPE (parent));
1845 if (parent_primary
1846 && SAME_BINFO_TYPE_P (BINFO_TYPE (base_binfo),
1847 BINFO_TYPE (parent_primary)))
1848 /* We are the primary binfo. */
1849 BINFO_PRIMARY_P (base_binfo) = 1;
1851 /* Determine if we have a virtual primary base, and mark it so.
1853 if (primary && BINFO_VIRTUAL_P (primary))
1855 tree this_primary = copied_binfo (primary, base_binfo);
1857 if (BINFO_PRIMARY_P (this_primary))
1858 /* Someone already claimed this base. */
1859 BINFO_LOST_PRIMARY_P (base_binfo) = 1;
1860 else
1862 tree delta;
1864 BINFO_PRIMARY_P (this_primary) = 1;
1865 BINFO_INHERITANCE_CHAIN (this_primary) = base_binfo;
1867 /* A virtual binfo might have been copied from within
1868 another hierarchy. As we're about to use it as a
1869 primary base, make sure the offsets match. */
1870 delta = size_diffop_loc (input_location,
1871 convert (ssizetype,
1872 BINFO_OFFSET (base_binfo)),
1873 convert (ssizetype,
1874 BINFO_OFFSET (this_primary)));
1876 propagate_binfo_offsets (this_primary, delta);
1881 /* First look for a dynamic direct non-virtual base. */
1882 for (i = 0; BINFO_BASE_ITERATE (type_binfo, i, base_binfo); i++)
1884 tree basetype = BINFO_TYPE (base_binfo);
1886 if (TYPE_CONTAINS_VPTR_P (basetype) && !BINFO_VIRTUAL_P (base_binfo))
1888 primary = base_binfo;
1889 goto found;
1893 /* A "nearly-empty" virtual base class can be the primary base
1894 class, if no non-virtual polymorphic base can be found. Look for
1895 a nearly-empty virtual dynamic base that is not already a primary
1896 base of something in the hierarchy. If there is no such base,
1897 just pick the first nearly-empty virtual base. */
1899 for (base_binfo = TREE_CHAIN (type_binfo); base_binfo;
1900 base_binfo = TREE_CHAIN (base_binfo))
1901 if (BINFO_VIRTUAL_P (base_binfo)
1902 && CLASSTYPE_NEARLY_EMPTY_P (BINFO_TYPE (base_binfo)))
1904 if (!BINFO_PRIMARY_P (base_binfo))
1906 /* Found one that is not primary. */
1907 primary = base_binfo;
1908 goto found;
1910 else if (!primary)
1911 /* Remember the first candidate. */
1912 primary = base_binfo;
1915 found:
1916 /* If we've got a primary base, use it. */
1917 if (primary)
1919 tree basetype = BINFO_TYPE (primary);
1921 CLASSTYPE_PRIMARY_BINFO (t) = primary;
1922 if (BINFO_PRIMARY_P (primary))
1923 /* We are stealing a primary base. */
1924 BINFO_LOST_PRIMARY_P (BINFO_INHERITANCE_CHAIN (primary)) = 1;
1925 BINFO_PRIMARY_P (primary) = 1;
1926 if (BINFO_VIRTUAL_P (primary))
1928 tree delta;
1930 BINFO_INHERITANCE_CHAIN (primary) = type_binfo;
1931 /* A virtual binfo might have been copied from within
1932 another hierarchy. As we're about to use it as a primary
1933 base, make sure the offsets match. */
1934 delta = size_diffop_loc (input_location, ssize_int (0),
1935 convert (ssizetype, BINFO_OFFSET (primary)));
1937 propagate_binfo_offsets (primary, delta);
1940 primary = TYPE_BINFO (basetype);
1942 TYPE_VFIELD (t) = TYPE_VFIELD (basetype);
1943 BINFO_VTABLE (type_binfo) = BINFO_VTABLE (primary);
1944 BINFO_VIRTUALS (type_binfo) = BINFO_VIRTUALS (primary);
1948 /* Update the variant types of T. */
1950 void
1951 fixup_type_variants (tree t)
1953 tree variants;
1955 if (!t)
1956 return;
1958 for (variants = TYPE_NEXT_VARIANT (t);
1959 variants;
1960 variants = TYPE_NEXT_VARIANT (variants))
1962 /* These fields are in the _TYPE part of the node, not in
1963 the TYPE_LANG_SPECIFIC component, so they are not shared. */
1964 TYPE_HAS_USER_CONSTRUCTOR (variants) = TYPE_HAS_USER_CONSTRUCTOR (t);
1965 TYPE_NEEDS_CONSTRUCTING (variants) = TYPE_NEEDS_CONSTRUCTING (t);
1966 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (variants)
1967 = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t);
1969 TYPE_POLYMORPHIC_P (variants) = TYPE_POLYMORPHIC_P (t);
1971 TYPE_BINFO (variants) = TYPE_BINFO (t);
1973 /* Copy whatever these are holding today. */
1974 TYPE_VFIELD (variants) = TYPE_VFIELD (t);
1975 TYPE_METHODS (variants) = TYPE_METHODS (t);
1976 TYPE_FIELDS (variants) = TYPE_FIELDS (t);
1980 /* Early variant fixups: we apply attributes at the beginning of the class
1981 definition, and we need to fix up any variants that have already been
1982 made via elaborated-type-specifier so that check_qualified_type works. */
1984 void
1985 fixup_attribute_variants (tree t)
1987 tree variants;
1989 if (!t)
1990 return;
1992 tree attrs = TYPE_ATTRIBUTES (t);
1993 unsigned align = TYPE_ALIGN (t);
1994 bool user_align = TYPE_USER_ALIGN (t);
1996 for (variants = TYPE_NEXT_VARIANT (t);
1997 variants;
1998 variants = TYPE_NEXT_VARIANT (variants))
2000 /* These are the two fields that check_qualified_type looks at and
2001 are affected by attributes. */
2002 TYPE_ATTRIBUTES (variants) = attrs;
2003 unsigned valign = align;
2004 if (TYPE_USER_ALIGN (variants))
2005 valign = MAX (valign, TYPE_ALIGN (variants));
2006 else
2007 TYPE_USER_ALIGN (variants) = user_align;
2008 TYPE_ALIGN (variants) = valign;
2012 /* Set memoizing fields and bits of T (and its variants) for later
2013 use. */
2015 static void
2016 finish_struct_bits (tree t)
2018 /* Fix up variants (if any). */
2019 fixup_type_variants (t);
2021 if (BINFO_N_BASE_BINFOS (TYPE_BINFO (t)) && TYPE_POLYMORPHIC_P (t))
2022 /* For a class w/o baseclasses, 'finish_struct' has set
2023 CLASSTYPE_PURE_VIRTUALS correctly (by definition).
2024 Similarly for a class whose base classes do not have vtables.
2025 When neither of these is true, we might have removed abstract
2026 virtuals (by providing a definition), added some (by declaring
2027 new ones), or redeclared ones from a base class. We need to
2028 recalculate what's really an abstract virtual at this point (by
2029 looking in the vtables). */
2030 get_pure_virtuals (t);
2032 /* If this type has a copy constructor or a destructor, force its
2033 mode to be BLKmode, and force its TREE_ADDRESSABLE bit to be
2034 nonzero. This will cause it to be passed by invisible reference
2035 and prevent it from being returned in a register. */
2036 if (type_has_nontrivial_copy_init (t)
2037 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t))
2039 tree variants;
2040 DECL_MODE (TYPE_MAIN_DECL (t)) = BLKmode;
2041 for (variants = t; variants; variants = TYPE_NEXT_VARIANT (variants))
2043 SET_TYPE_MODE (variants, BLKmode);
2044 TREE_ADDRESSABLE (variants) = 1;
2049 /* Issue warnings about T having private constructors, but no friends,
2050 and so forth.
2052 HAS_NONPRIVATE_METHOD is nonzero if T has any non-private methods or
2053 static members. HAS_NONPRIVATE_STATIC_FN is nonzero if T has any
2054 non-private static member functions. */
2056 static void
2057 maybe_warn_about_overly_private_class (tree t)
2059 int has_member_fn = 0;
2060 int has_nonprivate_method = 0;
2061 tree fn;
2063 if (!warn_ctor_dtor_privacy
2064 /* If the class has friends, those entities might create and
2065 access instances, so we should not warn. */
2066 || (CLASSTYPE_FRIEND_CLASSES (t)
2067 || DECL_FRIENDLIST (TYPE_MAIN_DECL (t)))
2068 /* We will have warned when the template was declared; there's
2069 no need to warn on every instantiation. */
2070 || CLASSTYPE_TEMPLATE_INSTANTIATION (t))
2071 /* There's no reason to even consider warning about this
2072 class. */
2073 return;
2075 /* We only issue one warning, if more than one applies, because
2076 otherwise, on code like:
2078 class A {
2079 // Oops - forgot `public:'
2080 A();
2081 A(const A&);
2082 ~A();
2085 we warn several times about essentially the same problem. */
2087 /* Check to see if all (non-constructor, non-destructor) member
2088 functions are private. (Since there are no friends or
2089 non-private statics, we can't ever call any of the private member
2090 functions.) */
2091 for (fn = TYPE_METHODS (t); fn; fn = DECL_CHAIN (fn))
2092 /* We're not interested in compiler-generated methods; they don't
2093 provide any way to call private members. */
2094 if (!DECL_ARTIFICIAL (fn))
2096 if (!TREE_PRIVATE (fn))
2098 if (DECL_STATIC_FUNCTION_P (fn))
2099 /* A non-private static member function is just like a
2100 friend; it can create and invoke private member
2101 functions, and be accessed without a class
2102 instance. */
2103 return;
2105 has_nonprivate_method = 1;
2106 /* Keep searching for a static member function. */
2108 else if (!DECL_CONSTRUCTOR_P (fn) && !DECL_DESTRUCTOR_P (fn))
2109 has_member_fn = 1;
2112 if (!has_nonprivate_method && has_member_fn)
2114 /* There are no non-private methods, and there's at least one
2115 private member function that isn't a constructor or
2116 destructor. (If all the private members are
2117 constructors/destructors we want to use the code below that
2118 issues error messages specifically referring to
2119 constructors/destructors.) */
2120 unsigned i;
2121 tree binfo = TYPE_BINFO (t);
2123 for (i = 0; i != BINFO_N_BASE_BINFOS (binfo); i++)
2124 if (BINFO_BASE_ACCESS (binfo, i) != access_private_node)
2126 has_nonprivate_method = 1;
2127 break;
2129 if (!has_nonprivate_method)
2131 warning (OPT_Wctor_dtor_privacy,
2132 "all member functions in class %qT are private", t);
2133 return;
2137 /* Even if some of the member functions are non-private, the class
2138 won't be useful for much if all the constructors or destructors
2139 are private: such an object can never be created or destroyed. */
2140 fn = CLASSTYPE_DESTRUCTORS (t);
2141 if (fn && TREE_PRIVATE (fn))
2143 warning (OPT_Wctor_dtor_privacy,
2144 "%q#T only defines a private destructor and has no friends",
2146 return;
2149 /* Warn about classes that have private constructors and no friends. */
2150 if (TYPE_HAS_USER_CONSTRUCTOR (t)
2151 /* Implicitly generated constructors are always public. */
2152 && (!CLASSTYPE_LAZY_DEFAULT_CTOR (t)
2153 || !CLASSTYPE_LAZY_COPY_CTOR (t)))
2155 int nonprivate_ctor = 0;
2157 /* If a non-template class does not define a copy
2158 constructor, one is defined for it, enabling it to avoid
2159 this warning. For a template class, this does not
2160 happen, and so we would normally get a warning on:
2162 template <class T> class C { private: C(); };
2164 To avoid this asymmetry, we check TYPE_HAS_COPY_CTOR. All
2165 complete non-template or fully instantiated classes have this
2166 flag set. */
2167 if (!TYPE_HAS_COPY_CTOR (t))
2168 nonprivate_ctor = 1;
2169 else
2170 for (fn = CLASSTYPE_CONSTRUCTORS (t); fn; fn = OVL_NEXT (fn))
2172 tree ctor = OVL_CURRENT (fn);
2173 /* Ideally, we wouldn't count copy constructors (or, in
2174 fact, any constructor that takes an argument of the
2175 class type as a parameter) because such things cannot
2176 be used to construct an instance of the class unless
2177 you already have one. But, for now at least, we're
2178 more generous. */
2179 if (! TREE_PRIVATE (ctor))
2181 nonprivate_ctor = 1;
2182 break;
2186 if (nonprivate_ctor == 0)
2188 warning (OPT_Wctor_dtor_privacy,
2189 "%q#T only defines private constructors and has no friends",
2191 return;
2196 static struct {
2197 gt_pointer_operator new_value;
2198 void *cookie;
2199 } resort_data;
2201 /* Comparison function to compare two TYPE_METHOD_VEC entries by name. */
2203 static int
2204 method_name_cmp (const void* m1_p, const void* m2_p)
2206 const tree *const m1 = (const tree *) m1_p;
2207 const tree *const m2 = (const tree *) m2_p;
2209 if (*m1 == NULL_TREE && *m2 == NULL_TREE)
2210 return 0;
2211 if (*m1 == NULL_TREE)
2212 return -1;
2213 if (*m2 == NULL_TREE)
2214 return 1;
2215 if (DECL_NAME (OVL_CURRENT (*m1)) < DECL_NAME (OVL_CURRENT (*m2)))
2216 return -1;
2217 return 1;
2220 /* This routine compares two fields like method_name_cmp but using the
2221 pointer operator in resort_field_decl_data. */
2223 static int
2224 resort_method_name_cmp (const void* m1_p, const void* m2_p)
2226 const tree *const m1 = (const tree *) m1_p;
2227 const tree *const m2 = (const tree *) m2_p;
2228 if (*m1 == NULL_TREE && *m2 == NULL_TREE)
2229 return 0;
2230 if (*m1 == NULL_TREE)
2231 return -1;
2232 if (*m2 == NULL_TREE)
2233 return 1;
2235 tree d1 = DECL_NAME (OVL_CURRENT (*m1));
2236 tree d2 = DECL_NAME (OVL_CURRENT (*m2));
2237 resort_data.new_value (&d1, resort_data.cookie);
2238 resort_data.new_value (&d2, resort_data.cookie);
2239 if (d1 < d2)
2240 return -1;
2242 return 1;
2245 /* Resort TYPE_METHOD_VEC because pointers have been reordered. */
2247 void
2248 resort_type_method_vec (void* obj,
2249 void* /*orig_obj*/,
2250 gt_pointer_operator new_value,
2251 void* cookie)
2253 vec<tree, va_gc> *method_vec = (vec<tree, va_gc> *) obj;
2254 int len = vec_safe_length (method_vec);
2255 size_t slot;
2256 tree fn;
2258 /* The type conversion ops have to live at the front of the vec, so we
2259 can't sort them. */
2260 for (slot = CLASSTYPE_FIRST_CONVERSION_SLOT;
2261 vec_safe_iterate (method_vec, slot, &fn);
2262 ++slot)
2263 if (!DECL_CONV_FN_P (OVL_CURRENT (fn)))
2264 break;
2266 if (len - slot > 1)
2268 resort_data.new_value = new_value;
2269 resort_data.cookie = cookie;
2270 qsort (method_vec->address () + slot, len - slot, sizeof (tree),
2271 resort_method_name_cmp);
2275 /* Warn about duplicate methods in fn_fields.
2277 Sort methods that are not special (i.e., constructors, destructors,
2278 and type conversion operators) so that we can find them faster in
2279 search. */
2281 static void
2282 finish_struct_methods (tree t)
2284 tree fn_fields;
2285 vec<tree, va_gc> *method_vec;
2286 int slot, len;
2288 method_vec = CLASSTYPE_METHOD_VEC (t);
2289 if (!method_vec)
2290 return;
2292 len = method_vec->length ();
2294 /* Clear DECL_IN_AGGR_P for all functions. */
2295 for (fn_fields = TYPE_METHODS (t); fn_fields;
2296 fn_fields = DECL_CHAIN (fn_fields))
2297 DECL_IN_AGGR_P (fn_fields) = 0;
2299 /* Issue warnings about private constructors and such. If there are
2300 no methods, then some public defaults are generated. */
2301 maybe_warn_about_overly_private_class (t);
2303 /* The type conversion ops have to live at the front of the vec, so we
2304 can't sort them. */
2305 for (slot = CLASSTYPE_FIRST_CONVERSION_SLOT;
2306 method_vec->iterate (slot, &fn_fields);
2307 ++slot)
2308 if (!DECL_CONV_FN_P (OVL_CURRENT (fn_fields)))
2309 break;
2310 if (len - slot > 1)
2311 qsort (method_vec->address () + slot,
2312 len-slot, sizeof (tree), method_name_cmp);
2315 /* Make BINFO's vtable have N entries, including RTTI entries,
2316 vbase and vcall offsets, etc. Set its type and call the back end
2317 to lay it out. */
2319 static void
2320 layout_vtable_decl (tree binfo, int n)
2322 tree atype;
2323 tree vtable;
2325 atype = build_array_of_n_type (vtable_entry_type, n);
2326 layout_type (atype);
2328 /* We may have to grow the vtable. */
2329 vtable = get_vtbl_decl_for_binfo (binfo);
2330 if (!same_type_p (TREE_TYPE (vtable), atype))
2332 TREE_TYPE (vtable) = atype;
2333 DECL_SIZE (vtable) = DECL_SIZE_UNIT (vtable) = NULL_TREE;
2334 layout_decl (vtable, 0);
2338 /* True iff FNDECL and BASE_FNDECL (both non-static member functions)
2339 have the same signature. */
2342 same_signature_p (const_tree fndecl, const_tree base_fndecl)
2344 /* One destructor overrides another if they are the same kind of
2345 destructor. */
2346 if (DECL_DESTRUCTOR_P (base_fndecl) && DECL_DESTRUCTOR_P (fndecl)
2347 && special_function_p (base_fndecl) == special_function_p (fndecl))
2348 return 1;
2349 /* But a non-destructor never overrides a destructor, nor vice
2350 versa, nor do different kinds of destructors override
2351 one-another. For example, a complete object destructor does not
2352 override a deleting destructor. */
2353 if (DECL_DESTRUCTOR_P (base_fndecl) || DECL_DESTRUCTOR_P (fndecl))
2354 return 0;
2356 if (DECL_NAME (fndecl) == DECL_NAME (base_fndecl)
2357 || (DECL_CONV_FN_P (fndecl)
2358 && DECL_CONV_FN_P (base_fndecl)
2359 && same_type_p (DECL_CONV_FN_TYPE (fndecl),
2360 DECL_CONV_FN_TYPE (base_fndecl))))
2362 tree fntype = TREE_TYPE (fndecl);
2363 tree base_fntype = TREE_TYPE (base_fndecl);
2364 if (type_memfn_quals (fntype) == type_memfn_quals (base_fntype)
2365 && type_memfn_rqual (fntype) == type_memfn_rqual (base_fntype)
2366 && compparms (FUNCTION_FIRST_USER_PARMTYPE (fndecl),
2367 FUNCTION_FIRST_USER_PARMTYPE (base_fndecl)))
2368 return 1;
2370 return 0;
2373 /* Returns TRUE if DERIVED is a binfo containing the binfo BASE as a
2374 subobject. */
2376 static bool
2377 base_derived_from (tree derived, tree base)
2379 tree probe;
2381 for (probe = base; probe; probe = BINFO_INHERITANCE_CHAIN (probe))
2383 if (probe == derived)
2384 return true;
2385 else if (BINFO_VIRTUAL_P (probe))
2386 /* If we meet a virtual base, we can't follow the inheritance
2387 any more. See if the complete type of DERIVED contains
2388 such a virtual base. */
2389 return (binfo_for_vbase (BINFO_TYPE (probe), BINFO_TYPE (derived))
2390 != NULL_TREE);
2392 return false;
2395 typedef struct find_final_overrider_data_s {
2396 /* The function for which we are trying to find a final overrider. */
2397 tree fn;
2398 /* The base class in which the function was declared. */
2399 tree declaring_base;
2400 /* The candidate overriders. */
2401 tree candidates;
2402 /* Path to most derived. */
2403 vec<tree> path;
2404 } find_final_overrider_data;
2406 /* Add the overrider along the current path to FFOD->CANDIDATES.
2407 Returns true if an overrider was found; false otherwise. */
2409 static bool
2410 dfs_find_final_overrider_1 (tree binfo,
2411 find_final_overrider_data *ffod,
2412 unsigned depth)
2414 tree method;
2416 /* If BINFO is not the most derived type, try a more derived class.
2417 A definition there will overrider a definition here. */
2418 if (depth)
2420 depth--;
2421 if (dfs_find_final_overrider_1
2422 (ffod->path[depth], ffod, depth))
2423 return true;
2426 method = look_for_overrides_here (BINFO_TYPE (binfo), ffod->fn);
2427 if (method)
2429 tree *candidate = &ffod->candidates;
2431 /* Remove any candidates overridden by this new function. */
2432 while (*candidate)
2434 /* If *CANDIDATE overrides METHOD, then METHOD
2435 cannot override anything else on the list. */
2436 if (base_derived_from (TREE_VALUE (*candidate), binfo))
2437 return true;
2438 /* If METHOD overrides *CANDIDATE, remove *CANDIDATE. */
2439 if (base_derived_from (binfo, TREE_VALUE (*candidate)))
2440 *candidate = TREE_CHAIN (*candidate);
2441 else
2442 candidate = &TREE_CHAIN (*candidate);
2445 /* Add the new function. */
2446 ffod->candidates = tree_cons (method, binfo, ffod->candidates);
2447 return true;
2450 return false;
2453 /* Called from find_final_overrider via dfs_walk. */
2455 static tree
2456 dfs_find_final_overrider_pre (tree binfo, void *data)
2458 find_final_overrider_data *ffod = (find_final_overrider_data *) data;
2460 if (binfo == ffod->declaring_base)
2461 dfs_find_final_overrider_1 (binfo, ffod, ffod->path.length ());
2462 ffod->path.safe_push (binfo);
2464 return NULL_TREE;
2467 static tree
2468 dfs_find_final_overrider_post (tree /*binfo*/, void *data)
2470 find_final_overrider_data *ffod = (find_final_overrider_data *) data;
2471 ffod->path.pop ();
2473 return NULL_TREE;
2476 /* Returns a TREE_LIST whose TREE_PURPOSE is the final overrider for
2477 FN and whose TREE_VALUE is the binfo for the base where the
2478 overriding occurs. BINFO (in the hierarchy dominated by the binfo
2479 DERIVED) is the base object in which FN is declared. */
2481 static tree
2482 find_final_overrider (tree derived, tree binfo, tree fn)
2484 find_final_overrider_data ffod;
2486 /* Getting this right is a little tricky. This is valid:
2488 struct S { virtual void f (); };
2489 struct T { virtual void f (); };
2490 struct U : public S, public T { };
2492 even though calling `f' in `U' is ambiguous. But,
2494 struct R { virtual void f(); };
2495 struct S : virtual public R { virtual void f (); };
2496 struct T : virtual public R { virtual void f (); };
2497 struct U : public S, public T { };
2499 is not -- there's no way to decide whether to put `S::f' or
2500 `T::f' in the vtable for `R'.
2502 The solution is to look at all paths to BINFO. If we find
2503 different overriders along any two, then there is a problem. */
2504 if (DECL_THUNK_P (fn))
2505 fn = THUNK_TARGET (fn);
2507 /* Determine the depth of the hierarchy. */
2508 ffod.fn = fn;
2509 ffod.declaring_base = binfo;
2510 ffod.candidates = NULL_TREE;
2511 ffod.path.create (30);
2513 dfs_walk_all (derived, dfs_find_final_overrider_pre,
2514 dfs_find_final_overrider_post, &ffod);
2516 ffod.path.release ();
2518 /* If there was no winner, issue an error message. */
2519 if (!ffod.candidates || TREE_CHAIN (ffod.candidates))
2520 return error_mark_node;
2522 return ffod.candidates;
2525 /* Return the index of the vcall offset for FN when TYPE is used as a
2526 virtual base. */
2528 static tree
2529 get_vcall_index (tree fn, tree type)
2531 vec<tree_pair_s, va_gc> *indices = CLASSTYPE_VCALL_INDICES (type);
2532 tree_pair_p p;
2533 unsigned ix;
2535 FOR_EACH_VEC_SAFE_ELT (indices, ix, p)
2536 if ((DECL_DESTRUCTOR_P (fn) && DECL_DESTRUCTOR_P (p->purpose))
2537 || same_signature_p (fn, p->purpose))
2538 return p->value;
2540 /* There should always be an appropriate index. */
2541 gcc_unreachable ();
2544 /* Update an entry in the vtable for BINFO, which is in the hierarchy
2545 dominated by T. FN is the old function; VIRTUALS points to the
2546 corresponding position in the new BINFO_VIRTUALS list. IX is the index
2547 of that entry in the list. */
2549 static void
2550 update_vtable_entry_for_fn (tree t, tree binfo, tree fn, tree* virtuals,
2551 unsigned ix)
2553 tree b;
2554 tree overrider;
2555 tree delta;
2556 tree virtual_base;
2557 tree first_defn;
2558 tree overrider_fn, overrider_target;
2559 tree target_fn = DECL_THUNK_P (fn) ? THUNK_TARGET (fn) : fn;
2560 tree over_return, base_return;
2561 bool lost = false;
2563 /* Find the nearest primary base (possibly binfo itself) which defines
2564 this function; this is the class the caller will convert to when
2565 calling FN through BINFO. */
2566 for (b = binfo; ; b = get_primary_binfo (b))
2568 gcc_assert (b);
2569 if (look_for_overrides_here (BINFO_TYPE (b), target_fn))
2570 break;
2572 /* The nearest definition is from a lost primary. */
2573 if (BINFO_LOST_PRIMARY_P (b))
2574 lost = true;
2576 first_defn = b;
2578 /* Find the final overrider. */
2579 overrider = find_final_overrider (TYPE_BINFO (t), b, target_fn);
2580 if (overrider == error_mark_node)
2582 error ("no unique final overrider for %qD in %qT", target_fn, t);
2583 return;
2585 overrider_target = overrider_fn = TREE_PURPOSE (overrider);
2587 /* Check for adjusting covariant return types. */
2588 over_return = TREE_TYPE (TREE_TYPE (overrider_target));
2589 base_return = TREE_TYPE (TREE_TYPE (target_fn));
2591 if (POINTER_TYPE_P (over_return)
2592 && TREE_CODE (over_return) == TREE_CODE (base_return)
2593 && CLASS_TYPE_P (TREE_TYPE (over_return))
2594 && CLASS_TYPE_P (TREE_TYPE (base_return))
2595 /* If the overrider is invalid, don't even try. */
2596 && !DECL_INVALID_OVERRIDER_P (overrider_target))
2598 /* If FN is a covariant thunk, we must figure out the adjustment
2599 to the final base FN was converting to. As OVERRIDER_TARGET might
2600 also be converting to the return type of FN, we have to
2601 combine the two conversions here. */
2602 tree fixed_offset, virtual_offset;
2604 over_return = TREE_TYPE (over_return);
2605 base_return = TREE_TYPE (base_return);
2607 if (DECL_THUNK_P (fn))
2609 gcc_assert (DECL_RESULT_THUNK_P (fn));
2610 fixed_offset = ssize_int (THUNK_FIXED_OFFSET (fn));
2611 virtual_offset = THUNK_VIRTUAL_OFFSET (fn);
2613 else
2614 fixed_offset = virtual_offset = NULL_TREE;
2616 if (virtual_offset)
2617 /* Find the equivalent binfo within the return type of the
2618 overriding function. We will want the vbase offset from
2619 there. */
2620 virtual_offset = binfo_for_vbase (BINFO_TYPE (virtual_offset),
2621 over_return);
2622 else if (!same_type_ignoring_top_level_qualifiers_p
2623 (over_return, base_return))
2625 /* There was no existing virtual thunk (which takes
2626 precedence). So find the binfo of the base function's
2627 return type within the overriding function's return type.
2628 We cannot call lookup base here, because we're inside a
2629 dfs_walk, and will therefore clobber the BINFO_MARKED
2630 flags. Fortunately we know the covariancy is valid (it
2631 has already been checked), so we can just iterate along
2632 the binfos, which have been chained in inheritance graph
2633 order. Of course it is lame that we have to repeat the
2634 search here anyway -- we should really be caching pieces
2635 of the vtable and avoiding this repeated work. */
2636 tree thunk_binfo, base_binfo;
2638 /* Find the base binfo within the overriding function's
2639 return type. We will always find a thunk_binfo, except
2640 when the covariancy is invalid (which we will have
2641 already diagnosed). */
2642 for (base_binfo = TYPE_BINFO (base_return),
2643 thunk_binfo = TYPE_BINFO (over_return);
2644 thunk_binfo;
2645 thunk_binfo = TREE_CHAIN (thunk_binfo))
2646 if (SAME_BINFO_TYPE_P (BINFO_TYPE (thunk_binfo),
2647 BINFO_TYPE (base_binfo)))
2648 break;
2650 /* See if virtual inheritance is involved. */
2651 for (virtual_offset = thunk_binfo;
2652 virtual_offset;
2653 virtual_offset = BINFO_INHERITANCE_CHAIN (virtual_offset))
2654 if (BINFO_VIRTUAL_P (virtual_offset))
2655 break;
2657 if (virtual_offset
2658 || (thunk_binfo && !BINFO_OFFSET_ZEROP (thunk_binfo)))
2660 tree offset = convert (ssizetype, BINFO_OFFSET (thunk_binfo));
2662 if (virtual_offset)
2664 /* We convert via virtual base. Adjust the fixed
2665 offset to be from there. */
2666 offset =
2667 size_diffop (offset,
2668 convert (ssizetype,
2669 BINFO_OFFSET (virtual_offset)));
2671 if (fixed_offset)
2672 /* There was an existing fixed offset, this must be
2673 from the base just converted to, and the base the
2674 FN was thunking to. */
2675 fixed_offset = size_binop (PLUS_EXPR, fixed_offset, offset);
2676 else
2677 fixed_offset = offset;
2681 if (fixed_offset || virtual_offset)
2682 /* Replace the overriding function with a covariant thunk. We
2683 will emit the overriding function in its own slot as
2684 well. */
2685 overrider_fn = make_thunk (overrider_target, /*this_adjusting=*/0,
2686 fixed_offset, virtual_offset);
2688 else
2689 gcc_assert (DECL_INVALID_OVERRIDER_P (overrider_target) ||
2690 !DECL_THUNK_P (fn));
2692 /* If we need a covariant thunk, then we may need to adjust first_defn.
2693 The ABI specifies that the thunks emitted with a function are
2694 determined by which bases the function overrides, so we need to be
2695 sure that we're using a thunk for some overridden base; even if we
2696 know that the necessary this adjustment is zero, there may not be an
2697 appropriate zero-this-adjusment thunk for us to use since thunks for
2698 overriding virtual bases always use the vcall offset.
2700 Furthermore, just choosing any base that overrides this function isn't
2701 quite right, as this slot won't be used for calls through a type that
2702 puts a covariant thunk here. Calling the function through such a type
2703 will use a different slot, and that slot is the one that determines
2704 the thunk emitted for that base.
2706 So, keep looking until we find the base that we're really overriding
2707 in this slot: the nearest primary base that doesn't use a covariant
2708 thunk in this slot. */
2709 if (overrider_target != overrider_fn)
2711 if (BINFO_TYPE (b) == DECL_CONTEXT (overrider_target))
2712 /* We already know that the overrider needs a covariant thunk. */
2713 b = get_primary_binfo (b);
2714 for (; ; b = get_primary_binfo (b))
2716 tree main_binfo = TYPE_BINFO (BINFO_TYPE (b));
2717 tree bv = chain_index (ix, BINFO_VIRTUALS (main_binfo));
2718 if (!DECL_THUNK_P (TREE_VALUE (bv)))
2719 break;
2720 if (BINFO_LOST_PRIMARY_P (b))
2721 lost = true;
2723 first_defn = b;
2726 /* Assume that we will produce a thunk that convert all the way to
2727 the final overrider, and not to an intermediate virtual base. */
2728 virtual_base = NULL_TREE;
2730 /* See if we can convert to an intermediate virtual base first, and then
2731 use the vcall offset located there to finish the conversion. */
2732 for (; b; b = BINFO_INHERITANCE_CHAIN (b))
2734 /* If we find the final overrider, then we can stop
2735 walking. */
2736 if (SAME_BINFO_TYPE_P (BINFO_TYPE (b),
2737 BINFO_TYPE (TREE_VALUE (overrider))))
2738 break;
2740 /* If we find a virtual base, and we haven't yet found the
2741 overrider, then there is a virtual base between the
2742 declaring base (first_defn) and the final overrider. */
2743 if (BINFO_VIRTUAL_P (b))
2745 virtual_base = b;
2746 break;
2750 /* Compute the constant adjustment to the `this' pointer. The
2751 `this' pointer, when this function is called, will point at BINFO
2752 (or one of its primary bases, which are at the same offset). */
2753 if (virtual_base)
2754 /* The `this' pointer needs to be adjusted from the declaration to
2755 the nearest virtual base. */
2756 delta = size_diffop_loc (input_location,
2757 convert (ssizetype, BINFO_OFFSET (virtual_base)),
2758 convert (ssizetype, BINFO_OFFSET (first_defn)));
2759 else if (lost)
2760 /* If the nearest definition is in a lost primary, we don't need an
2761 entry in our vtable. Except possibly in a constructor vtable,
2762 if we happen to get our primary back. In that case, the offset
2763 will be zero, as it will be a primary base. */
2764 delta = size_zero_node;
2765 else
2766 /* The `this' pointer needs to be adjusted from pointing to
2767 BINFO to pointing at the base where the final overrider
2768 appears. */
2769 delta = size_diffop_loc (input_location,
2770 convert (ssizetype,
2771 BINFO_OFFSET (TREE_VALUE (overrider))),
2772 convert (ssizetype, BINFO_OFFSET (binfo)));
2774 modify_vtable_entry (t, binfo, overrider_fn, delta, virtuals);
2776 if (virtual_base)
2777 BV_VCALL_INDEX (*virtuals)
2778 = get_vcall_index (overrider_target, BINFO_TYPE (virtual_base));
2779 else
2780 BV_VCALL_INDEX (*virtuals) = NULL_TREE;
2782 BV_LOST_PRIMARY (*virtuals) = lost;
2785 /* Called from modify_all_vtables via dfs_walk. */
2787 static tree
2788 dfs_modify_vtables (tree binfo, void* data)
2790 tree t = (tree) data;
2791 tree virtuals;
2792 tree old_virtuals;
2793 unsigned ix;
2795 if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
2796 /* A base without a vtable needs no modification, and its bases
2797 are uninteresting. */
2798 return dfs_skip_bases;
2800 if (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), t)
2801 && !CLASSTYPE_HAS_PRIMARY_BASE_P (t))
2802 /* Don't do the primary vtable, if it's new. */
2803 return NULL_TREE;
2805 if (BINFO_PRIMARY_P (binfo) && !BINFO_VIRTUAL_P (binfo))
2806 /* There's no need to modify the vtable for a non-virtual primary
2807 base; we're not going to use that vtable anyhow. We do still
2808 need to do this for virtual primary bases, as they could become
2809 non-primary in a construction vtable. */
2810 return NULL_TREE;
2812 make_new_vtable (t, binfo);
2814 /* Now, go through each of the virtual functions in the virtual
2815 function table for BINFO. Find the final overrider, and update
2816 the BINFO_VIRTUALS list appropriately. */
2817 for (ix = 0, virtuals = BINFO_VIRTUALS (binfo),
2818 old_virtuals = BINFO_VIRTUALS (TYPE_BINFO (BINFO_TYPE (binfo)));
2819 virtuals;
2820 ix++, virtuals = TREE_CHAIN (virtuals),
2821 old_virtuals = TREE_CHAIN (old_virtuals))
2822 update_vtable_entry_for_fn (t,
2823 binfo,
2824 BV_FN (old_virtuals),
2825 &virtuals, ix);
2827 return NULL_TREE;
2830 /* Update all of the primary and secondary vtables for T. Create new
2831 vtables as required, and initialize their RTTI information. Each
2832 of the functions in VIRTUALS is declared in T and may override a
2833 virtual function from a base class; find and modify the appropriate
2834 entries to point to the overriding functions. Returns a list, in
2835 declaration order, of the virtual functions that are declared in T,
2836 but do not appear in the primary base class vtable, and which
2837 should therefore be appended to the end of the vtable for T. */
2839 static tree
2840 modify_all_vtables (tree t, tree virtuals)
2842 tree binfo = TYPE_BINFO (t);
2843 tree *fnsp;
2845 /* Mangle the vtable name before entering dfs_walk (c++/51884). */
2846 if (TYPE_CONTAINS_VPTR_P (t))
2847 get_vtable_decl (t, false);
2849 /* Update all of the vtables. */
2850 dfs_walk_once (binfo, dfs_modify_vtables, NULL, t);
2852 /* Add virtual functions not already in our primary vtable. These
2853 will be both those introduced by this class, and those overridden
2854 from secondary bases. It does not include virtuals merely
2855 inherited from secondary bases. */
2856 for (fnsp = &virtuals; *fnsp; )
2858 tree fn = TREE_VALUE (*fnsp);
2860 if (!value_member (fn, BINFO_VIRTUALS (binfo))
2861 || DECL_VINDEX (fn) == error_mark_node)
2863 /* We don't need to adjust the `this' pointer when
2864 calling this function. */
2865 BV_DELTA (*fnsp) = integer_zero_node;
2866 BV_VCALL_INDEX (*fnsp) = NULL_TREE;
2868 /* This is a function not already in our vtable. Keep it. */
2869 fnsp = &TREE_CHAIN (*fnsp);
2871 else
2872 /* We've already got an entry for this function. Skip it. */
2873 *fnsp = TREE_CHAIN (*fnsp);
2876 return virtuals;
2879 /* Get the base virtual function declarations in T that have the
2880 indicated NAME. */
2882 static void
2883 get_basefndecls (tree name, tree t, vec<tree> *base_fndecls)
2885 tree methods;
2886 int n_baseclasses = BINFO_N_BASE_BINFOS (TYPE_BINFO (t));
2887 int i;
2889 /* Find virtual functions in T with the indicated NAME. */
2890 i = lookup_fnfields_1 (t, name);
2891 bool found_decls = false;
2892 if (i != -1)
2893 for (methods = (*CLASSTYPE_METHOD_VEC (t))[i];
2894 methods;
2895 methods = OVL_NEXT (methods))
2897 tree method = OVL_CURRENT (methods);
2899 if (TREE_CODE (method) == FUNCTION_DECL
2900 && DECL_VINDEX (method))
2902 base_fndecls->safe_push (method);
2903 found_decls = true;
2907 if (found_decls)
2908 return;
2910 for (i = 0; i < n_baseclasses; i++)
2912 tree basetype = BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (t), i));
2913 get_basefndecls (name, basetype, base_fndecls);
2917 /* If this declaration supersedes the declaration of
2918 a method declared virtual in the base class, then
2919 mark this field as being virtual as well. */
2921 void
2922 check_for_override (tree decl, tree ctype)
2924 bool overrides_found = false;
2925 if (TREE_CODE (decl) == TEMPLATE_DECL)
2926 /* In [temp.mem] we have:
2928 A specialization of a member function template does not
2929 override a virtual function from a base class. */
2930 return;
2931 if ((DECL_DESTRUCTOR_P (decl)
2932 || IDENTIFIER_VIRTUAL_P (DECL_NAME (decl))
2933 || DECL_CONV_FN_P (decl))
2934 && look_for_overrides (ctype, decl)
2935 && !DECL_STATIC_FUNCTION_P (decl))
2936 /* Set DECL_VINDEX to a value that is neither an INTEGER_CST nor
2937 the error_mark_node so that we know it is an overriding
2938 function. */
2940 DECL_VINDEX (decl) = decl;
2941 overrides_found = true;
2942 if (warn_override && !DECL_OVERRIDE_P (decl)
2943 && !DECL_DESTRUCTOR_P (decl))
2944 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wsuggest_override,
2945 "%q+D can be marked override", decl);
2948 if (DECL_VIRTUAL_P (decl))
2950 if (!DECL_VINDEX (decl))
2951 DECL_VINDEX (decl) = error_mark_node;
2952 IDENTIFIER_VIRTUAL_P (DECL_NAME (decl)) = 1;
2953 if (DECL_DESTRUCTOR_P (decl))
2954 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (ctype) = true;
2956 else if (DECL_FINAL_P (decl))
2957 error ("%q+#D marked %<final%>, but is not virtual", decl);
2958 if (DECL_OVERRIDE_P (decl) && !overrides_found)
2959 error ("%q+#D marked %<override%>, but does not override", decl);
2962 /* Warn about hidden virtual functions that are not overridden in t.
2963 We know that constructors and destructors don't apply. */
2965 static void
2966 warn_hidden (tree t)
2968 vec<tree, va_gc> *method_vec = CLASSTYPE_METHOD_VEC (t);
2969 tree fns;
2970 size_t i;
2972 /* We go through each separately named virtual function. */
2973 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
2974 vec_safe_iterate (method_vec, i, &fns);
2975 ++i)
2977 tree fn;
2978 tree name;
2979 tree fndecl;
2980 tree base_binfo;
2981 tree binfo;
2982 int j;
2984 /* All functions in this slot in the CLASSTYPE_METHOD_VEC will
2985 have the same name. Figure out what name that is. */
2986 name = DECL_NAME (OVL_CURRENT (fns));
2987 /* There are no possibly hidden functions yet. */
2988 auto_vec<tree, 20> base_fndecls;
2989 /* Iterate through all of the base classes looking for possibly
2990 hidden functions. */
2991 for (binfo = TYPE_BINFO (t), j = 0;
2992 BINFO_BASE_ITERATE (binfo, j, base_binfo); j++)
2994 tree basetype = BINFO_TYPE (base_binfo);
2995 get_basefndecls (name, basetype, &base_fndecls);
2998 /* If there are no functions to hide, continue. */
2999 if (base_fndecls.is_empty ())
3000 continue;
3002 /* Remove any overridden functions. */
3003 for (fn = fns; fn; fn = OVL_NEXT (fn))
3005 fndecl = OVL_CURRENT (fn);
3006 if (TREE_CODE (fndecl) == FUNCTION_DECL
3007 && DECL_VINDEX (fndecl))
3009 /* If the method from the base class has the same
3010 signature as the method from the derived class, it
3011 has been overridden. */
3012 for (size_t k = 0; k < base_fndecls.length (); k++)
3013 if (base_fndecls[k]
3014 && same_signature_p (fndecl, base_fndecls[k]))
3015 base_fndecls[k] = NULL_TREE;
3019 /* Now give a warning for all base functions without overriders,
3020 as they are hidden. */
3021 size_t k;
3022 tree base_fndecl;
3023 FOR_EACH_VEC_ELT (base_fndecls, k, base_fndecl)
3024 if (base_fndecl)
3026 /* Here we know it is a hider, and no overrider exists. */
3027 warning (OPT_Woverloaded_virtual, "%q+D was hidden", base_fndecl);
3028 warning (OPT_Woverloaded_virtual, " by %q+D", fns);
3033 /* Recursive helper for finish_struct_anon. */
3035 static void
3036 finish_struct_anon_r (tree field, bool complain)
3038 bool is_union = TREE_CODE (TREE_TYPE (field)) == UNION_TYPE;
3039 tree elt = TYPE_FIELDS (TREE_TYPE (field));
3040 for (; elt; elt = DECL_CHAIN (elt))
3042 /* We're generally only interested in entities the user
3043 declared, but we also find nested classes by noticing
3044 the TYPE_DECL that we create implicitly. You're
3045 allowed to put one anonymous union inside another,
3046 though, so we explicitly tolerate that. We use
3047 TYPE_ANONYMOUS_P rather than ANON_AGGR_TYPE_P so that
3048 we also allow unnamed types used for defining fields. */
3049 if (DECL_ARTIFICIAL (elt)
3050 && (!DECL_IMPLICIT_TYPEDEF_P (elt)
3051 || TYPE_ANONYMOUS_P (TREE_TYPE (elt))))
3052 continue;
3054 if (TREE_CODE (elt) != FIELD_DECL)
3056 /* We already complained about static data members in
3057 finish_static_data_member_decl. */
3058 if (complain && TREE_CODE (elt) != VAR_DECL)
3060 if (is_union)
3061 permerror (input_location,
3062 "%q+#D invalid; an anonymous union can "
3063 "only have non-static data members", elt);
3064 else
3065 permerror (input_location,
3066 "%q+#D invalid; an anonymous struct can "
3067 "only have non-static data members", elt);
3069 continue;
3072 if (complain)
3074 if (TREE_PRIVATE (elt))
3076 if (is_union)
3077 permerror (input_location,
3078 "private member %q+#D in anonymous union", elt);
3079 else
3080 permerror (input_location,
3081 "private member %q+#D in anonymous struct", elt);
3083 else if (TREE_PROTECTED (elt))
3085 if (is_union)
3086 permerror (input_location,
3087 "protected member %q+#D in anonymous union", elt);
3088 else
3089 permerror (input_location,
3090 "protected member %q+#D in anonymous struct", elt);
3094 TREE_PRIVATE (elt) = TREE_PRIVATE (field);
3095 TREE_PROTECTED (elt) = TREE_PROTECTED (field);
3097 /* Recurse into the anonymous aggregates to handle correctly
3098 access control (c++/24926):
3100 class A {
3101 union {
3102 union {
3103 int i;
3108 int j=A().i; */
3109 if (DECL_NAME (elt) == NULL_TREE
3110 && ANON_AGGR_TYPE_P (TREE_TYPE (elt)))
3111 finish_struct_anon_r (elt, /*complain=*/false);
3115 /* Check for things that are invalid. There are probably plenty of other
3116 things we should check for also. */
3118 static void
3119 finish_struct_anon (tree t)
3121 for (tree field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
3123 if (TREE_STATIC (field))
3124 continue;
3125 if (TREE_CODE (field) != FIELD_DECL)
3126 continue;
3128 if (DECL_NAME (field) == NULL_TREE
3129 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
3130 finish_struct_anon_r (field, /*complain=*/true);
3134 /* Add T to CLASSTYPE_DECL_LIST of current_class_type which
3135 will be used later during class template instantiation.
3136 When FRIEND_P is zero, T can be a static member data (VAR_DECL),
3137 a non-static member data (FIELD_DECL), a member function
3138 (FUNCTION_DECL), a nested type (RECORD_TYPE, ENUM_TYPE),
3139 a typedef (TYPE_DECL) or a member class template (TEMPLATE_DECL)
3140 When FRIEND_P is nonzero, T is either a friend class
3141 (RECORD_TYPE, TEMPLATE_DECL) or a friend function
3142 (FUNCTION_DECL, TEMPLATE_DECL). */
3144 void
3145 maybe_add_class_template_decl_list (tree type, tree t, int friend_p)
3147 /* Save some memory by not creating TREE_LIST if TYPE is not template. */
3148 if (CLASSTYPE_TEMPLATE_INFO (type))
3149 CLASSTYPE_DECL_LIST (type)
3150 = tree_cons (friend_p ? NULL_TREE : type,
3151 t, CLASSTYPE_DECL_LIST (type));
3154 /* This function is called from declare_virt_assop_and_dtor via
3155 dfs_walk_all.
3157 DATA is a type that direcly or indirectly inherits the base
3158 represented by BINFO. If BINFO contains a virtual assignment [copy
3159 assignment or move assigment] operator or a virtual constructor,
3160 declare that function in DATA if it hasn't been already declared. */
3162 static tree
3163 dfs_declare_virt_assop_and_dtor (tree binfo, void *data)
3165 tree bv, fn, t = (tree)data;
3166 tree opname = ansi_assopname (NOP_EXPR);
3168 gcc_assert (t && CLASS_TYPE_P (t));
3169 gcc_assert (binfo && TREE_CODE (binfo) == TREE_BINFO);
3171 if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
3172 /* A base without a vtable needs no modification, and its bases
3173 are uninteresting. */
3174 return dfs_skip_bases;
3176 if (BINFO_PRIMARY_P (binfo))
3177 /* If this is a primary base, then we have already looked at the
3178 virtual functions of its vtable. */
3179 return NULL_TREE;
3181 for (bv = BINFO_VIRTUALS (binfo); bv; bv = TREE_CHAIN (bv))
3183 fn = BV_FN (bv);
3185 if (DECL_NAME (fn) == opname)
3187 if (CLASSTYPE_LAZY_COPY_ASSIGN (t))
3188 lazily_declare_fn (sfk_copy_assignment, t);
3189 if (CLASSTYPE_LAZY_MOVE_ASSIGN (t))
3190 lazily_declare_fn (sfk_move_assignment, t);
3192 else if (DECL_DESTRUCTOR_P (fn)
3193 && CLASSTYPE_LAZY_DESTRUCTOR (t))
3194 lazily_declare_fn (sfk_destructor, t);
3197 return NULL_TREE;
3200 /* If the class type T has a direct or indirect base that contains a
3201 virtual assignment operator or a virtual destructor, declare that
3202 function in T if it hasn't been already declared. */
3204 static void
3205 declare_virt_assop_and_dtor (tree t)
3207 if (!(TYPE_POLYMORPHIC_P (t)
3208 && (CLASSTYPE_LAZY_COPY_ASSIGN (t)
3209 || CLASSTYPE_LAZY_MOVE_ASSIGN (t)
3210 || CLASSTYPE_LAZY_DESTRUCTOR (t))))
3211 return;
3213 dfs_walk_all (TYPE_BINFO (t),
3214 dfs_declare_virt_assop_and_dtor,
3215 NULL, t);
3218 /* Declare the inheriting constructor for class T inherited from base
3219 constructor CTOR with the parameter array PARMS of size NPARMS. */
3221 static void
3222 one_inheriting_sig (tree t, tree ctor, tree *parms, int nparms)
3224 /* We don't declare an inheriting ctor that would be a default,
3225 copy or move ctor for derived or base. */
3226 if (nparms == 0)
3227 return;
3228 if (nparms == 1
3229 && TREE_CODE (parms[0]) == REFERENCE_TYPE)
3231 tree parm = TYPE_MAIN_VARIANT (TREE_TYPE (parms[0]));
3232 if (parm == t || parm == DECL_CONTEXT (ctor))
3233 return;
3236 tree parmlist = void_list_node;
3237 for (int i = nparms - 1; i >= 0; i--)
3238 parmlist = tree_cons (NULL_TREE, parms[i], parmlist);
3239 tree fn = implicitly_declare_fn (sfk_inheriting_constructor,
3240 t, false, ctor, parmlist);
3241 if (add_method (t, fn, NULL_TREE))
3243 DECL_CHAIN (fn) = TYPE_METHODS (t);
3244 TYPE_METHODS (t) = fn;
3248 /* Declare all the inheriting constructors for class T inherited from base
3249 constructor CTOR. */
3251 static void
3252 one_inherited_ctor (tree ctor, tree t)
3254 tree parms = FUNCTION_FIRST_USER_PARMTYPE (ctor);
3256 tree *new_parms = XALLOCAVEC (tree, list_length (parms));
3257 int i = 0;
3258 for (; parms && parms != void_list_node; parms = TREE_CHAIN (parms))
3260 if (TREE_PURPOSE (parms))
3261 one_inheriting_sig (t, ctor, new_parms, i);
3262 new_parms[i++] = TREE_VALUE (parms);
3264 one_inheriting_sig (t, ctor, new_parms, i);
3265 if (parms == NULL_TREE)
3267 if (warning (OPT_Winherited_variadic_ctor,
3268 "the ellipsis in %qD is not inherited", ctor))
3269 inform (DECL_SOURCE_LOCATION (ctor), "%qD declared here", ctor);
3273 /* Create default constructors, assignment operators, and so forth for
3274 the type indicated by T, if they are needed. CANT_HAVE_CONST_CTOR,
3275 and CANT_HAVE_CONST_ASSIGNMENT are nonzero if, for whatever reason,
3276 the class cannot have a default constructor, copy constructor
3277 taking a const reference argument, or an assignment operator taking
3278 a const reference, respectively. */
3280 static void
3281 add_implicitly_declared_members (tree t, tree* access_decls,
3282 int cant_have_const_cctor,
3283 int cant_have_const_assignment)
3285 bool move_ok = false;
3287 if (cxx_dialect >= cxx11 && !CLASSTYPE_DESTRUCTORS (t)
3288 && !TYPE_HAS_COPY_CTOR (t) && !TYPE_HAS_COPY_ASSIGN (t)
3289 && !type_has_move_constructor (t) && !type_has_move_assign (t))
3290 move_ok = true;
3292 /* Destructor. */
3293 if (!CLASSTYPE_DESTRUCTORS (t))
3295 /* In general, we create destructors lazily. */
3296 CLASSTYPE_LAZY_DESTRUCTOR (t) = 1;
3298 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
3299 && TYPE_FOR_JAVA (t))
3300 /* But if this is a Java class, any non-trivial destructor is
3301 invalid, even if compiler-generated. Therefore, if the
3302 destructor is non-trivial we create it now. */
3303 lazily_declare_fn (sfk_destructor, t);
3306 /* [class.ctor]
3308 If there is no user-declared constructor for a class, a default
3309 constructor is implicitly declared. */
3310 if (! TYPE_HAS_USER_CONSTRUCTOR (t))
3312 TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 1;
3313 CLASSTYPE_LAZY_DEFAULT_CTOR (t) = 1;
3314 if (cxx_dialect >= cxx11)
3315 TYPE_HAS_CONSTEXPR_CTOR (t)
3316 /* This might force the declaration. */
3317 = type_has_constexpr_default_constructor (t);
3320 /* [class.ctor]
3322 If a class definition does not explicitly declare a copy
3323 constructor, one is declared implicitly. */
3324 if (! TYPE_HAS_COPY_CTOR (t) && ! TYPE_FOR_JAVA (t))
3326 TYPE_HAS_COPY_CTOR (t) = 1;
3327 TYPE_HAS_CONST_COPY_CTOR (t) = !cant_have_const_cctor;
3328 CLASSTYPE_LAZY_COPY_CTOR (t) = 1;
3329 if (move_ok)
3330 CLASSTYPE_LAZY_MOVE_CTOR (t) = 1;
3333 /* If there is no assignment operator, one will be created if and
3334 when it is needed. For now, just record whether or not the type
3335 of the parameter to the assignment operator will be a const or
3336 non-const reference. */
3337 if (!TYPE_HAS_COPY_ASSIGN (t) && !TYPE_FOR_JAVA (t))
3339 TYPE_HAS_COPY_ASSIGN (t) = 1;
3340 TYPE_HAS_CONST_COPY_ASSIGN (t) = !cant_have_const_assignment;
3341 CLASSTYPE_LAZY_COPY_ASSIGN (t) = 1;
3342 if (move_ok && !LAMBDA_TYPE_P (t))
3343 CLASSTYPE_LAZY_MOVE_ASSIGN (t) = 1;
3346 /* We can't be lazy about declaring functions that might override
3347 a virtual function from a base class. */
3348 declare_virt_assop_and_dtor (t);
3350 while (*access_decls)
3352 tree using_decl = TREE_VALUE (*access_decls);
3353 tree decl = USING_DECL_DECLS (using_decl);
3354 if (DECL_NAME (using_decl) == ctor_identifier)
3356 /* declare, then remove the decl */
3357 tree ctor_list = decl;
3358 location_t loc = input_location;
3359 input_location = DECL_SOURCE_LOCATION (using_decl);
3360 if (ctor_list)
3361 for (; ctor_list; ctor_list = OVL_NEXT (ctor_list))
3362 one_inherited_ctor (OVL_CURRENT (ctor_list), t);
3363 *access_decls = TREE_CHAIN (*access_decls);
3364 input_location = loc;
3366 else
3367 access_decls = &TREE_CHAIN (*access_decls);
3371 /* Subroutine of insert_into_classtype_sorted_fields. Recursively
3372 count the number of fields in TYPE, including anonymous union
3373 members. */
3375 static int
3376 count_fields (tree fields)
3378 tree x;
3379 int n_fields = 0;
3380 for (x = fields; x; x = DECL_CHAIN (x))
3382 if (TREE_CODE (x) == FIELD_DECL && ANON_AGGR_TYPE_P (TREE_TYPE (x)))
3383 n_fields += count_fields (TYPE_FIELDS (TREE_TYPE (x)));
3384 else
3385 n_fields += 1;
3387 return n_fields;
3390 /* Subroutine of insert_into_classtype_sorted_fields. Recursively add
3391 all the fields in the TREE_LIST FIELDS to the SORTED_FIELDS_TYPE
3392 elts, starting at offset IDX. */
3394 static int
3395 add_fields_to_record_type (tree fields, struct sorted_fields_type *field_vec, int idx)
3397 tree x;
3398 for (x = fields; x; x = DECL_CHAIN (x))
3400 if (TREE_CODE (x) == FIELD_DECL && ANON_AGGR_TYPE_P (TREE_TYPE (x)))
3401 idx = add_fields_to_record_type (TYPE_FIELDS (TREE_TYPE (x)), field_vec, idx);
3402 else
3403 field_vec->elts[idx++] = x;
3405 return idx;
3408 /* Add all of the enum values of ENUMTYPE, to the FIELD_VEC elts,
3409 starting at offset IDX. */
3411 static int
3412 add_enum_fields_to_record_type (tree enumtype,
3413 struct sorted_fields_type *field_vec,
3414 int idx)
3416 tree values;
3417 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
3418 field_vec->elts[idx++] = TREE_VALUE (values);
3419 return idx;
3422 /* FIELD is a bit-field. We are finishing the processing for its
3423 enclosing type. Issue any appropriate messages and set appropriate
3424 flags. Returns false if an error has been diagnosed. */
3426 static bool
3427 check_bitfield_decl (tree field)
3429 tree type = TREE_TYPE (field);
3430 tree w;
3432 /* Extract the declared width of the bitfield, which has been
3433 temporarily stashed in DECL_INITIAL. */
3434 w = DECL_INITIAL (field);
3435 gcc_assert (w != NULL_TREE);
3436 /* Remove the bit-field width indicator so that the rest of the
3437 compiler does not treat that value as an initializer. */
3438 DECL_INITIAL (field) = NULL_TREE;
3440 /* Detect invalid bit-field type. */
3441 if (!INTEGRAL_OR_ENUMERATION_TYPE_P (type))
3443 error ("bit-field %q+#D with non-integral type", field);
3444 w = error_mark_node;
3446 else
3448 location_t loc = input_location;
3449 /* Avoid the non_lvalue wrapper added by fold for PLUS_EXPRs. */
3450 STRIP_NOPS (w);
3452 /* detect invalid field size. */
3453 input_location = DECL_SOURCE_LOCATION (field);
3454 w = cxx_constant_value (w);
3455 input_location = loc;
3457 if (TREE_CODE (w) != INTEGER_CST)
3459 error ("bit-field %q+D width not an integer constant", field);
3460 w = error_mark_node;
3462 else if (tree_int_cst_sgn (w) < 0)
3464 error ("negative width in bit-field %q+D", field);
3465 w = error_mark_node;
3467 else if (integer_zerop (w) && DECL_NAME (field) != 0)
3469 error ("zero width for bit-field %q+D", field);
3470 w = error_mark_node;
3472 else if ((TREE_CODE (type) != ENUMERAL_TYPE
3473 && TREE_CODE (type) != BOOLEAN_TYPE
3474 && compare_tree_int (w, TYPE_PRECISION (type)) > 0)
3475 || ((TREE_CODE (type) == ENUMERAL_TYPE
3476 || TREE_CODE (type) == BOOLEAN_TYPE)
3477 && tree_int_cst_lt (TYPE_SIZE (type), w)))
3478 warning (0, "width of %q+D exceeds its type", field);
3479 else if (TREE_CODE (type) == ENUMERAL_TYPE
3480 && (0 > (compare_tree_int
3481 (w, TYPE_PRECISION (ENUM_UNDERLYING_TYPE (type))))))
3482 warning (0, "%q+D is too small to hold all values of %q#T", field, type);
3485 if (w != error_mark_node)
3487 DECL_SIZE (field) = convert (bitsizetype, w);
3488 DECL_BIT_FIELD (field) = 1;
3489 return true;
3491 else
3493 /* Non-bit-fields are aligned for their type. */
3494 DECL_BIT_FIELD (field) = 0;
3495 CLEAR_DECL_C_BIT_FIELD (field);
3496 return false;
3500 /* FIELD is a non bit-field. We are finishing the processing for its
3501 enclosing type T. Issue any appropriate messages and set appropriate
3502 flags. */
3504 static void
3505 check_field_decl (tree field,
3506 tree t,
3507 int* cant_have_const_ctor,
3508 int* no_const_asn_ref,
3509 int* any_default_members)
3511 tree type = strip_array_types (TREE_TYPE (field));
3513 /* In C++98 an anonymous union cannot contain any fields which would change
3514 the settings of CANT_HAVE_CONST_CTOR and friends. */
3515 if (ANON_UNION_TYPE_P (type) && cxx_dialect < cxx11)
3517 /* And, we don't set TYPE_HAS_CONST_COPY_CTOR, etc., for anonymous
3518 structs. So, we recurse through their fields here. */
3519 else if (ANON_AGGR_TYPE_P (type))
3521 tree fields;
3523 for (fields = TYPE_FIELDS (type); fields; fields = DECL_CHAIN (fields))
3524 if (TREE_CODE (fields) == FIELD_DECL && !DECL_C_BIT_FIELD (field))
3525 check_field_decl (fields, t, cant_have_const_ctor,
3526 no_const_asn_ref, any_default_members);
3528 /* Check members with class type for constructors, destructors,
3529 etc. */
3530 else if (CLASS_TYPE_P (type))
3532 /* Never let anything with uninheritable virtuals
3533 make it through without complaint. */
3534 abstract_virtuals_error (field, type);
3536 if (TREE_CODE (t) == UNION_TYPE && cxx_dialect < cxx11)
3538 static bool warned;
3539 int oldcount = errorcount;
3540 if (TYPE_NEEDS_CONSTRUCTING (type))
3541 error ("member %q+#D with constructor not allowed in union",
3542 field);
3543 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3544 error ("member %q+#D with destructor not allowed in union", field);
3545 if (TYPE_HAS_COMPLEX_COPY_ASSIGN (type))
3546 error ("member %q+#D with copy assignment operator not allowed in union",
3547 field);
3548 if (!warned && errorcount > oldcount)
3550 inform (DECL_SOURCE_LOCATION (field), "unrestricted unions "
3551 "only available with -std=c++11 or -std=gnu++11");
3552 warned = true;
3555 else
3557 TYPE_NEEDS_CONSTRUCTING (t) |= TYPE_NEEDS_CONSTRUCTING (type);
3558 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
3559 |= TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type);
3560 TYPE_HAS_COMPLEX_COPY_ASSIGN (t)
3561 |= (TYPE_HAS_COMPLEX_COPY_ASSIGN (type)
3562 || !TYPE_HAS_COPY_ASSIGN (type));
3563 TYPE_HAS_COMPLEX_COPY_CTOR (t) |= (TYPE_HAS_COMPLEX_COPY_CTOR (type)
3564 || !TYPE_HAS_COPY_CTOR (type));
3565 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t) |= TYPE_HAS_COMPLEX_MOVE_ASSIGN (type);
3566 TYPE_HAS_COMPLEX_MOVE_CTOR (t) |= TYPE_HAS_COMPLEX_MOVE_CTOR (type);
3567 TYPE_HAS_COMPLEX_DFLT (t) |= (!TYPE_HAS_DEFAULT_CONSTRUCTOR (type)
3568 || TYPE_HAS_COMPLEX_DFLT (type));
3571 if (TYPE_HAS_COPY_CTOR (type)
3572 && !TYPE_HAS_CONST_COPY_CTOR (type))
3573 *cant_have_const_ctor = 1;
3575 if (TYPE_HAS_COPY_ASSIGN (type)
3576 && !TYPE_HAS_CONST_COPY_ASSIGN (type))
3577 *no_const_asn_ref = 1;
3580 check_abi_tags (t, field);
3582 if (DECL_INITIAL (field) != NULL_TREE)
3584 /* `build_class_init_list' does not recognize
3585 non-FIELD_DECLs. */
3586 if (TREE_CODE (t) == UNION_TYPE && *any_default_members != 0)
3587 error ("multiple fields in union %qT initialized", t);
3588 *any_default_members = 1;
3592 /* Check the data members (both static and non-static), class-scoped
3593 typedefs, etc., appearing in the declaration of T. Issue
3594 appropriate diagnostics. Sets ACCESS_DECLS to a list (in
3595 declaration order) of access declarations; each TREE_VALUE in this
3596 list is a USING_DECL.
3598 In addition, set the following flags:
3600 EMPTY_P
3601 The class is empty, i.e., contains no non-static data members.
3603 CANT_HAVE_CONST_CTOR_P
3604 This class cannot have an implicitly generated copy constructor
3605 taking a const reference.
3607 CANT_HAVE_CONST_ASN_REF
3608 This class cannot have an implicitly generated assignment
3609 operator taking a const reference.
3611 All of these flags should be initialized before calling this
3612 function.
3614 Returns a pointer to the end of the TYPE_FIELDs chain; additional
3615 fields can be added by adding to this chain. */
3617 static void
3618 check_field_decls (tree t, tree *access_decls,
3619 int *cant_have_const_ctor_p,
3620 int *no_const_asn_ref_p)
3622 tree *field;
3623 tree *next;
3624 bool has_pointers;
3625 int any_default_members;
3626 int cant_pack = 0;
3627 int field_access = -1;
3629 /* Assume there are no access declarations. */
3630 *access_decls = NULL_TREE;
3631 /* Assume this class has no pointer members. */
3632 has_pointers = false;
3633 /* Assume none of the members of this class have default
3634 initializations. */
3635 any_default_members = 0;
3637 for (field = &TYPE_FIELDS (t); *field; field = next)
3639 tree x = *field;
3640 tree type = TREE_TYPE (x);
3641 int this_field_access;
3643 next = &DECL_CHAIN (x);
3645 if (TREE_CODE (x) == USING_DECL)
3647 /* Save the access declarations for our caller. */
3648 *access_decls = tree_cons (NULL_TREE, x, *access_decls);
3649 continue;
3652 if (TREE_CODE (x) == TYPE_DECL
3653 || TREE_CODE (x) == TEMPLATE_DECL)
3654 continue;
3656 /* If we've gotten this far, it's a data member, possibly static,
3657 or an enumerator. */
3658 if (TREE_CODE (x) != CONST_DECL)
3659 DECL_CONTEXT (x) = t;
3661 /* When this goes into scope, it will be a non-local reference. */
3662 DECL_NONLOCAL (x) = 1;
3664 if (TREE_CODE (t) == UNION_TYPE
3665 && cxx_dialect < cxx11)
3667 /* [class.union] (C++98)
3669 If a union contains a static data member, or a member of
3670 reference type, the program is ill-formed.
3672 In C++11 this limitation doesn't exist anymore. */
3673 if (VAR_P (x))
3675 error ("in C++98 %q+D may not be static because it is "
3676 "a member of a union", x);
3677 continue;
3679 if (TREE_CODE (type) == REFERENCE_TYPE)
3681 error ("in C++98 %q+D may not have reference type %qT "
3682 "because it is a member of a union", x, type);
3683 continue;
3687 /* Perform error checking that did not get done in
3688 grokdeclarator. */
3689 if (TREE_CODE (type) == FUNCTION_TYPE)
3691 error ("field %q+D invalidly declared function type", x);
3692 type = build_pointer_type (type);
3693 TREE_TYPE (x) = type;
3695 else if (TREE_CODE (type) == METHOD_TYPE)
3697 error ("field %q+D invalidly declared method type", x);
3698 type = build_pointer_type (type);
3699 TREE_TYPE (x) = type;
3702 if (type == error_mark_node)
3703 continue;
3705 if (TREE_CODE (x) == CONST_DECL || VAR_P (x))
3706 continue;
3708 /* Now it can only be a FIELD_DECL. */
3710 if (TREE_PRIVATE (x) || TREE_PROTECTED (x))
3711 CLASSTYPE_NON_AGGREGATE (t) = 1;
3713 /* If at least one non-static data member is non-literal, the whole
3714 class becomes non-literal. Per Core/1453, volatile non-static
3715 data members and base classes are also not allowed.
3716 Note: if the type is incomplete we will complain later on. */
3717 if (COMPLETE_TYPE_P (type)
3718 && (!literal_type_p (type) || CP_TYPE_VOLATILE_P (type)))
3719 CLASSTYPE_LITERAL_P (t) = false;
3721 /* A standard-layout class is a class that:
3723 has the same access control (Clause 11) for all non-static data members,
3724 ... */
3725 this_field_access = TREE_PROTECTED (x) ? 1 : TREE_PRIVATE (x) ? 2 : 0;
3726 if (field_access == -1)
3727 field_access = this_field_access;
3728 else if (this_field_access != field_access)
3729 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
3731 /* If this is of reference type, check if it needs an init. */
3732 if (TREE_CODE (type) == REFERENCE_TYPE)
3734 CLASSTYPE_NON_LAYOUT_POD_P (t) = 1;
3735 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
3736 if (DECL_INITIAL (x) == NULL_TREE)
3737 SET_CLASSTYPE_REF_FIELDS_NEED_INIT (t, 1);
3738 if (cxx_dialect < cxx11)
3740 /* ARM $12.6.2: [A member initializer list] (or, for an
3741 aggregate, initialization by a brace-enclosed list) is the
3742 only way to initialize nonstatic const and reference
3743 members. */
3744 TYPE_HAS_COMPLEX_COPY_ASSIGN (t) = 1;
3745 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t) = 1;
3749 type = strip_array_types (type);
3751 if (TYPE_PACKED (t))
3753 if (!layout_pod_type_p (type) && !TYPE_PACKED (type))
3755 warning
3757 "ignoring packed attribute because of unpacked non-POD field %q+#D",
3759 cant_pack = 1;
3761 else if (DECL_C_BIT_FIELD (x)
3762 || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT)
3763 DECL_PACKED (x) = 1;
3766 if (DECL_C_BIT_FIELD (x) && integer_zerop (DECL_INITIAL (x)))
3767 /* We don't treat zero-width bitfields as making a class
3768 non-empty. */
3770 else
3772 /* The class is non-empty. */
3773 CLASSTYPE_EMPTY_P (t) = 0;
3774 /* The class is not even nearly empty. */
3775 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
3776 /* If one of the data members contains an empty class,
3777 so does T. */
3778 if (CLASS_TYPE_P (type)
3779 && CLASSTYPE_CONTAINS_EMPTY_CLASS_P (type))
3780 CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t) = 1;
3783 /* This is used by -Weffc++ (see below). Warn only for pointers
3784 to members which might hold dynamic memory. So do not warn
3785 for pointers to functions or pointers to members. */
3786 if (TYPE_PTR_P (type)
3787 && !TYPE_PTRFN_P (type))
3788 has_pointers = true;
3790 if (CLASS_TYPE_P (type))
3792 if (CLASSTYPE_REF_FIELDS_NEED_INIT (type))
3793 SET_CLASSTYPE_REF_FIELDS_NEED_INIT (t, 1);
3794 if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (type))
3795 SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT (t, 1);
3798 if (DECL_MUTABLE_P (x) || TYPE_HAS_MUTABLE_P (type))
3799 CLASSTYPE_HAS_MUTABLE (t) = 1;
3801 if (DECL_MUTABLE_P (x))
3803 if (CP_TYPE_CONST_P (type))
3805 error ("member %q+D cannot be declared both %<const%> "
3806 "and %<mutable%>", x);
3807 continue;
3809 if (TREE_CODE (type) == REFERENCE_TYPE)
3811 error ("member %q+D cannot be declared as a %<mutable%> "
3812 "reference", x);
3813 continue;
3817 if (! layout_pod_type_p (type))
3818 /* DR 148 now allows pointers to members (which are POD themselves),
3819 to be allowed in POD structs. */
3820 CLASSTYPE_NON_LAYOUT_POD_P (t) = 1;
3822 if (!std_layout_type_p (type))
3823 CLASSTYPE_NON_STD_LAYOUT (t) = 1;
3825 if (! zero_init_p (type))
3826 CLASSTYPE_NON_ZERO_INIT_P (t) = 1;
3828 /* We set DECL_C_BIT_FIELD in grokbitfield.
3829 If the type and width are valid, we'll also set DECL_BIT_FIELD. */
3830 if (! DECL_C_BIT_FIELD (x) || ! check_bitfield_decl (x))
3831 check_field_decl (x, t,
3832 cant_have_const_ctor_p,
3833 no_const_asn_ref_p,
3834 &any_default_members);
3836 /* Now that we've removed bit-field widths from DECL_INITIAL,
3837 anything left in DECL_INITIAL is an NSDMI that makes the class
3838 non-aggregate in C++11. */
3839 if (DECL_INITIAL (x) && cxx_dialect < cxx14)
3840 CLASSTYPE_NON_AGGREGATE (t) = true;
3842 /* If any field is const, the structure type is pseudo-const. */
3843 if (CP_TYPE_CONST_P (type))
3845 C_TYPE_FIELDS_READONLY (t) = 1;
3846 if (DECL_INITIAL (x) == NULL_TREE)
3847 SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT (t, 1);
3848 if (cxx_dialect < cxx11)
3850 /* ARM $12.6.2: [A member initializer list] (or, for an
3851 aggregate, initialization by a brace-enclosed list) is the
3852 only way to initialize nonstatic const and reference
3853 members. */
3854 TYPE_HAS_COMPLEX_COPY_ASSIGN (t) = 1;
3855 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t) = 1;
3858 /* A field that is pseudo-const makes the structure likewise. */
3859 else if (CLASS_TYPE_P (type))
3861 C_TYPE_FIELDS_READONLY (t) |= C_TYPE_FIELDS_READONLY (type);
3862 SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT (t,
3863 CLASSTYPE_READONLY_FIELDS_NEED_INIT (t)
3864 | CLASSTYPE_READONLY_FIELDS_NEED_INIT (type));
3867 /* Core issue 80: A nonstatic data member is required to have a
3868 different name from the class iff the class has a
3869 user-declared constructor. */
3870 if (constructor_name_p (DECL_NAME (x), t)
3871 && TYPE_HAS_USER_CONSTRUCTOR (t))
3872 permerror (input_location, "field %q+#D with same name as class", x);
3875 /* Effective C++ rule 11: if a class has dynamic memory held by pointers,
3876 it should also define a copy constructor and an assignment operator to
3877 implement the correct copy semantic (deep vs shallow, etc.). As it is
3878 not feasible to check whether the constructors do allocate dynamic memory
3879 and store it within members, we approximate the warning like this:
3881 -- Warn only if there are members which are pointers
3882 -- Warn only if there is a non-trivial constructor (otherwise,
3883 there cannot be memory allocated).
3884 -- Warn only if there is a non-trivial destructor. We assume that the
3885 user at least implemented the cleanup correctly, and a destructor
3886 is needed to free dynamic memory.
3888 This seems enough for practical purposes. */
3889 if (warn_ecpp
3890 && has_pointers
3891 && TYPE_HAS_USER_CONSTRUCTOR (t)
3892 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t)
3893 && !(TYPE_HAS_COPY_CTOR (t) && TYPE_HAS_COPY_ASSIGN (t)))
3895 warning (OPT_Weffc__, "%q#T has pointer data members", t);
3897 if (! TYPE_HAS_COPY_CTOR (t))
3899 warning (OPT_Weffc__,
3900 " but does not override %<%T(const %T&)%>", t, t);
3901 if (!TYPE_HAS_COPY_ASSIGN (t))
3902 warning (OPT_Weffc__, " or %<operator=(const %T&)%>", t);
3904 else if (! TYPE_HAS_COPY_ASSIGN (t))
3905 warning (OPT_Weffc__,
3906 " but does not override %<operator=(const %T&)%>", t);
3909 /* Non-static data member initializers make the default constructor
3910 non-trivial. */
3911 if (any_default_members)
3913 TYPE_NEEDS_CONSTRUCTING (t) = true;
3914 TYPE_HAS_COMPLEX_DFLT (t) = true;
3917 /* If any of the fields couldn't be packed, unset TYPE_PACKED. */
3918 if (cant_pack)
3919 TYPE_PACKED (t) = 0;
3921 /* Check anonymous struct/anonymous union fields. */
3922 finish_struct_anon (t);
3924 /* We've built up the list of access declarations in reverse order.
3925 Fix that now. */
3926 *access_decls = nreverse (*access_decls);
3929 /* If TYPE is an empty class type, records its OFFSET in the table of
3930 OFFSETS. */
3932 static int
3933 record_subobject_offset (tree type, tree offset, splay_tree offsets)
3935 splay_tree_node n;
3937 if (!is_empty_class (type))
3938 return 0;
3940 /* Record the location of this empty object in OFFSETS. */
3941 n = splay_tree_lookup (offsets, (splay_tree_key) offset);
3942 if (!n)
3943 n = splay_tree_insert (offsets,
3944 (splay_tree_key) offset,
3945 (splay_tree_value) NULL_TREE);
3946 n->value = ((splay_tree_value)
3947 tree_cons (NULL_TREE,
3948 type,
3949 (tree) n->value));
3951 return 0;
3954 /* Returns nonzero if TYPE is an empty class type and there is
3955 already an entry in OFFSETS for the same TYPE as the same OFFSET. */
3957 static int
3958 check_subobject_offset (tree type, tree offset, splay_tree offsets)
3960 splay_tree_node n;
3961 tree t;
3963 if (!is_empty_class (type))
3964 return 0;
3966 /* Record the location of this empty object in OFFSETS. */
3967 n = splay_tree_lookup (offsets, (splay_tree_key) offset);
3968 if (!n)
3969 return 0;
3971 for (t = (tree) n->value; t; t = TREE_CHAIN (t))
3972 if (same_type_p (TREE_VALUE (t), type))
3973 return 1;
3975 return 0;
3978 /* Walk through all the subobjects of TYPE (located at OFFSET). Call
3979 F for every subobject, passing it the type, offset, and table of
3980 OFFSETS. If VBASES_P is one, then virtual non-primary bases should
3981 be traversed.
3983 If MAX_OFFSET is non-NULL, then subobjects with an offset greater
3984 than MAX_OFFSET will not be walked.
3986 If F returns a nonzero value, the traversal ceases, and that value
3987 is returned. Otherwise, returns zero. */
3989 static int
3990 walk_subobject_offsets (tree type,
3991 subobject_offset_fn f,
3992 tree offset,
3993 splay_tree offsets,
3994 tree max_offset,
3995 int vbases_p)
3997 int r = 0;
3998 tree type_binfo = NULL_TREE;
4000 /* If this OFFSET is bigger than the MAX_OFFSET, then we should
4001 stop. */
4002 if (max_offset && tree_int_cst_lt (max_offset, offset))
4003 return 0;
4005 if (type == error_mark_node)
4006 return 0;
4008 if (!TYPE_P (type))
4010 type_binfo = type;
4011 type = BINFO_TYPE (type);
4014 if (CLASS_TYPE_P (type))
4016 tree field;
4017 tree binfo;
4018 int i;
4020 /* Avoid recursing into objects that are not interesting. */
4021 if (!CLASSTYPE_CONTAINS_EMPTY_CLASS_P (type))
4022 return 0;
4024 /* Record the location of TYPE. */
4025 r = (*f) (type, offset, offsets);
4026 if (r)
4027 return r;
4029 /* Iterate through the direct base classes of TYPE. */
4030 if (!type_binfo)
4031 type_binfo = TYPE_BINFO (type);
4032 for (i = 0; BINFO_BASE_ITERATE (type_binfo, i, binfo); i++)
4034 tree binfo_offset;
4036 if (BINFO_VIRTUAL_P (binfo))
4037 continue;
4039 tree orig_binfo;
4040 /* We cannot rely on BINFO_OFFSET being set for the base
4041 class yet, but the offsets for direct non-virtual
4042 bases can be calculated by going back to the TYPE. */
4043 orig_binfo = BINFO_BASE_BINFO (TYPE_BINFO (type), i);
4044 binfo_offset = size_binop (PLUS_EXPR,
4045 offset,
4046 BINFO_OFFSET (orig_binfo));
4048 r = walk_subobject_offsets (binfo,
4050 binfo_offset,
4051 offsets,
4052 max_offset,
4053 /*vbases_p=*/0);
4054 if (r)
4055 return r;
4058 if (CLASSTYPE_VBASECLASSES (type))
4060 unsigned ix;
4061 vec<tree, va_gc> *vbases;
4063 /* Iterate through the virtual base classes of TYPE. In G++
4064 3.2, we included virtual bases in the direct base class
4065 loop above, which results in incorrect results; the
4066 correct offsets for virtual bases are only known when
4067 working with the most derived type. */
4068 if (vbases_p)
4069 for (vbases = CLASSTYPE_VBASECLASSES (type), ix = 0;
4070 vec_safe_iterate (vbases, ix, &binfo); ix++)
4072 r = walk_subobject_offsets (binfo,
4074 size_binop (PLUS_EXPR,
4075 offset,
4076 BINFO_OFFSET (binfo)),
4077 offsets,
4078 max_offset,
4079 /*vbases_p=*/0);
4080 if (r)
4081 return r;
4083 else
4085 /* We still have to walk the primary base, if it is
4086 virtual. (If it is non-virtual, then it was walked
4087 above.) */
4088 tree vbase = get_primary_binfo (type_binfo);
4090 if (vbase && BINFO_VIRTUAL_P (vbase)
4091 && BINFO_PRIMARY_P (vbase)
4092 && BINFO_INHERITANCE_CHAIN (vbase) == type_binfo)
4094 r = (walk_subobject_offsets
4095 (vbase, f, offset,
4096 offsets, max_offset, /*vbases_p=*/0));
4097 if (r)
4098 return r;
4103 /* Iterate through the fields of TYPE. */
4104 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
4105 if (TREE_CODE (field) == FIELD_DECL
4106 && TREE_TYPE (field) != error_mark_node
4107 && !DECL_ARTIFICIAL (field))
4109 tree field_offset;
4111 field_offset = byte_position (field);
4113 r = walk_subobject_offsets (TREE_TYPE (field),
4115 size_binop (PLUS_EXPR,
4116 offset,
4117 field_offset),
4118 offsets,
4119 max_offset,
4120 /*vbases_p=*/1);
4121 if (r)
4122 return r;
4125 else if (TREE_CODE (type) == ARRAY_TYPE)
4127 tree element_type = strip_array_types (type);
4128 tree domain = TYPE_DOMAIN (type);
4129 tree index;
4131 /* Avoid recursing into objects that are not interesting. */
4132 if (!CLASS_TYPE_P (element_type)
4133 || !CLASSTYPE_CONTAINS_EMPTY_CLASS_P (element_type))
4134 return 0;
4136 /* Step through each of the elements in the array. */
4137 for (index = size_zero_node;
4138 !tree_int_cst_lt (TYPE_MAX_VALUE (domain), index);
4139 index = size_binop (PLUS_EXPR, index, size_one_node))
4141 r = walk_subobject_offsets (TREE_TYPE (type),
4143 offset,
4144 offsets,
4145 max_offset,
4146 /*vbases_p=*/1);
4147 if (r)
4148 return r;
4149 offset = size_binop (PLUS_EXPR, offset,
4150 TYPE_SIZE_UNIT (TREE_TYPE (type)));
4151 /* If this new OFFSET is bigger than the MAX_OFFSET, then
4152 there's no point in iterating through the remaining
4153 elements of the array. */
4154 if (max_offset && tree_int_cst_lt (max_offset, offset))
4155 break;
4159 return 0;
4162 /* Record all of the empty subobjects of TYPE (either a type or a
4163 binfo). If IS_DATA_MEMBER is true, then a non-static data member
4164 is being placed at OFFSET; otherwise, it is a base class that is
4165 being placed at OFFSET. */
4167 static void
4168 record_subobject_offsets (tree type,
4169 tree offset,
4170 splay_tree offsets,
4171 bool is_data_member)
4173 tree max_offset;
4174 /* If recording subobjects for a non-static data member or a
4175 non-empty base class , we do not need to record offsets beyond
4176 the size of the biggest empty class. Additional data members
4177 will go at the end of the class. Additional base classes will go
4178 either at offset zero (if empty, in which case they cannot
4179 overlap with offsets past the size of the biggest empty class) or
4180 at the end of the class.
4182 However, if we are placing an empty base class, then we must record
4183 all offsets, as either the empty class is at offset zero (where
4184 other empty classes might later be placed) or at the end of the
4185 class (where other objects might then be placed, so other empty
4186 subobjects might later overlap). */
4187 if (is_data_member
4188 || !is_empty_class (BINFO_TYPE (type)))
4189 max_offset = sizeof_biggest_empty_class;
4190 else
4191 max_offset = NULL_TREE;
4192 walk_subobject_offsets (type, record_subobject_offset, offset,
4193 offsets, max_offset, is_data_member);
4196 /* Returns nonzero if any of the empty subobjects of TYPE (located at
4197 OFFSET) conflict with entries in OFFSETS. If VBASES_P is nonzero,
4198 virtual bases of TYPE are examined. */
4200 static int
4201 layout_conflict_p (tree type,
4202 tree offset,
4203 splay_tree offsets,
4204 int vbases_p)
4206 splay_tree_node max_node;
4208 /* Get the node in OFFSETS that indicates the maximum offset where
4209 an empty subobject is located. */
4210 max_node = splay_tree_max (offsets);
4211 /* If there aren't any empty subobjects, then there's no point in
4212 performing this check. */
4213 if (!max_node)
4214 return 0;
4216 return walk_subobject_offsets (type, check_subobject_offset, offset,
4217 offsets, (tree) (max_node->key),
4218 vbases_p);
4221 /* DECL is a FIELD_DECL corresponding either to a base subobject of a
4222 non-static data member of the type indicated by RLI. BINFO is the
4223 binfo corresponding to the base subobject, OFFSETS maps offsets to
4224 types already located at those offsets. This function determines
4225 the position of the DECL. */
4227 static void
4228 layout_nonempty_base_or_field (record_layout_info rli,
4229 tree decl,
4230 tree binfo,
4231 splay_tree offsets)
4233 tree offset = NULL_TREE;
4234 bool field_p;
4235 tree type;
4237 if (binfo)
4239 /* For the purposes of determining layout conflicts, we want to
4240 use the class type of BINFO; TREE_TYPE (DECL) will be the
4241 CLASSTYPE_AS_BASE version, which does not contain entries for
4242 zero-sized bases. */
4243 type = TREE_TYPE (binfo);
4244 field_p = false;
4246 else
4248 type = TREE_TYPE (decl);
4249 field_p = true;
4252 /* Try to place the field. It may take more than one try if we have
4253 a hard time placing the field without putting two objects of the
4254 same type at the same address. */
4255 while (1)
4257 struct record_layout_info_s old_rli = *rli;
4259 /* Place this field. */
4260 place_field (rli, decl);
4261 offset = byte_position (decl);
4263 /* We have to check to see whether or not there is already
4264 something of the same type at the offset we're about to use.
4265 For example, consider:
4267 struct S {};
4268 struct T : public S { int i; };
4269 struct U : public S, public T {};
4271 Here, we put S at offset zero in U. Then, we can't put T at
4272 offset zero -- its S component would be at the same address
4273 as the S we already allocated. So, we have to skip ahead.
4274 Since all data members, including those whose type is an
4275 empty class, have nonzero size, any overlap can happen only
4276 with a direct or indirect base-class -- it can't happen with
4277 a data member. */
4278 /* In a union, overlap is permitted; all members are placed at
4279 offset zero. */
4280 if (TREE_CODE (rli->t) == UNION_TYPE)
4281 break;
4282 if (layout_conflict_p (field_p ? type : binfo, offset,
4283 offsets, field_p))
4285 /* Strip off the size allocated to this field. That puts us
4286 at the first place we could have put the field with
4287 proper alignment. */
4288 *rli = old_rli;
4290 /* Bump up by the alignment required for the type. */
4291 rli->bitpos
4292 = size_binop (PLUS_EXPR, rli->bitpos,
4293 bitsize_int (binfo
4294 ? CLASSTYPE_ALIGN (type)
4295 : TYPE_ALIGN (type)));
4296 normalize_rli (rli);
4298 else
4299 /* There was no conflict. We're done laying out this field. */
4300 break;
4303 /* Now that we know where it will be placed, update its
4304 BINFO_OFFSET. */
4305 if (binfo && CLASS_TYPE_P (BINFO_TYPE (binfo)))
4306 /* Indirect virtual bases may have a nonzero BINFO_OFFSET at
4307 this point because their BINFO_OFFSET is copied from another
4308 hierarchy. Therefore, we may not need to add the entire
4309 OFFSET. */
4310 propagate_binfo_offsets (binfo,
4311 size_diffop_loc (input_location,
4312 convert (ssizetype, offset),
4313 convert (ssizetype,
4314 BINFO_OFFSET (binfo))));
4317 /* Returns true if TYPE is empty and OFFSET is nonzero. */
4319 static int
4320 empty_base_at_nonzero_offset_p (tree type,
4321 tree offset,
4322 splay_tree /*offsets*/)
4324 return is_empty_class (type) && !integer_zerop (offset);
4327 /* Layout the empty base BINFO. EOC indicates the byte currently just
4328 past the end of the class, and should be correctly aligned for a
4329 class of the type indicated by BINFO; OFFSETS gives the offsets of
4330 the empty bases allocated so far. T is the most derived
4331 type. Return nonzero iff we added it at the end. */
4333 static bool
4334 layout_empty_base (record_layout_info rli, tree binfo,
4335 tree eoc, splay_tree offsets)
4337 tree alignment;
4338 tree basetype = BINFO_TYPE (binfo);
4339 bool atend = false;
4341 /* This routine should only be used for empty classes. */
4342 gcc_assert (is_empty_class (basetype));
4343 alignment = ssize_int (CLASSTYPE_ALIGN_UNIT (basetype));
4345 if (!integer_zerop (BINFO_OFFSET (binfo)))
4346 propagate_binfo_offsets
4347 (binfo, size_diffop_loc (input_location,
4348 size_zero_node, BINFO_OFFSET (binfo)));
4350 /* This is an empty base class. We first try to put it at offset
4351 zero. */
4352 if (layout_conflict_p (binfo,
4353 BINFO_OFFSET (binfo),
4354 offsets,
4355 /*vbases_p=*/0))
4357 /* That didn't work. Now, we move forward from the next
4358 available spot in the class. */
4359 atend = true;
4360 propagate_binfo_offsets (binfo, convert (ssizetype, eoc));
4361 while (1)
4363 if (!layout_conflict_p (binfo,
4364 BINFO_OFFSET (binfo),
4365 offsets,
4366 /*vbases_p=*/0))
4367 /* We finally found a spot where there's no overlap. */
4368 break;
4370 /* There's overlap here, too. Bump along to the next spot. */
4371 propagate_binfo_offsets (binfo, alignment);
4375 if (CLASSTYPE_USER_ALIGN (basetype))
4377 rli->record_align = MAX (rli->record_align, CLASSTYPE_ALIGN (basetype));
4378 if (warn_packed)
4379 rli->unpacked_align = MAX (rli->unpacked_align, CLASSTYPE_ALIGN (basetype));
4380 TYPE_USER_ALIGN (rli->t) = 1;
4383 return atend;
4386 /* Layout the base given by BINFO in the class indicated by RLI.
4387 *BASE_ALIGN is a running maximum of the alignments of
4388 any base class. OFFSETS gives the location of empty base
4389 subobjects. T is the most derived type. Return nonzero if the new
4390 object cannot be nearly-empty. A new FIELD_DECL is inserted at
4391 *NEXT_FIELD, unless BINFO is for an empty base class.
4393 Returns the location at which the next field should be inserted. */
4395 static tree *
4396 build_base_field (record_layout_info rli, tree binfo,
4397 splay_tree offsets, tree *next_field)
4399 tree t = rli->t;
4400 tree basetype = BINFO_TYPE (binfo);
4402 if (!COMPLETE_TYPE_P (basetype))
4403 /* This error is now reported in xref_tag, thus giving better
4404 location information. */
4405 return next_field;
4407 /* Place the base class. */
4408 if (!is_empty_class (basetype))
4410 tree decl;
4412 /* The containing class is non-empty because it has a non-empty
4413 base class. */
4414 CLASSTYPE_EMPTY_P (t) = 0;
4416 /* Create the FIELD_DECL. */
4417 decl = build_decl (input_location,
4418 FIELD_DECL, NULL_TREE, CLASSTYPE_AS_BASE (basetype));
4419 DECL_ARTIFICIAL (decl) = 1;
4420 DECL_IGNORED_P (decl) = 1;
4421 DECL_FIELD_CONTEXT (decl) = t;
4422 if (CLASSTYPE_AS_BASE (basetype))
4424 DECL_SIZE (decl) = CLASSTYPE_SIZE (basetype);
4425 DECL_SIZE_UNIT (decl) = CLASSTYPE_SIZE_UNIT (basetype);
4426 DECL_ALIGN (decl) = CLASSTYPE_ALIGN (basetype);
4427 DECL_USER_ALIGN (decl) = CLASSTYPE_USER_ALIGN (basetype);
4428 DECL_MODE (decl) = TYPE_MODE (basetype);
4429 DECL_FIELD_IS_BASE (decl) = 1;
4431 /* Try to place the field. It may take more than one try if we
4432 have a hard time placing the field without putting two
4433 objects of the same type at the same address. */
4434 layout_nonempty_base_or_field (rli, decl, binfo, offsets);
4435 /* Add the new FIELD_DECL to the list of fields for T. */
4436 DECL_CHAIN (decl) = *next_field;
4437 *next_field = decl;
4438 next_field = &DECL_CHAIN (decl);
4441 else
4443 tree eoc;
4444 bool atend;
4446 /* On some platforms (ARM), even empty classes will not be
4447 byte-aligned. */
4448 eoc = round_up_loc (input_location,
4449 rli_size_unit_so_far (rli),
4450 CLASSTYPE_ALIGN_UNIT (basetype));
4451 atend = layout_empty_base (rli, binfo, eoc, offsets);
4452 /* A nearly-empty class "has no proper base class that is empty,
4453 not morally virtual, and at an offset other than zero." */
4454 if (!BINFO_VIRTUAL_P (binfo) && CLASSTYPE_NEARLY_EMPTY_P (t))
4456 if (atend)
4457 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
4458 /* The check above (used in G++ 3.2) is insufficient because
4459 an empty class placed at offset zero might itself have an
4460 empty base at a nonzero offset. */
4461 else if (walk_subobject_offsets (basetype,
4462 empty_base_at_nonzero_offset_p,
4463 size_zero_node,
4464 /*offsets=*/NULL,
4465 /*max_offset=*/NULL_TREE,
4466 /*vbases_p=*/true))
4467 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
4470 /* We do not create a FIELD_DECL for empty base classes because
4471 it might overlap some other field. We want to be able to
4472 create CONSTRUCTORs for the class by iterating over the
4473 FIELD_DECLs, and the back end does not handle overlapping
4474 FIELD_DECLs. */
4476 /* An empty virtual base causes a class to be non-empty
4477 -- but in that case we do not need to clear CLASSTYPE_EMPTY_P
4478 here because that was already done when the virtual table
4479 pointer was created. */
4482 /* Record the offsets of BINFO and its base subobjects. */
4483 record_subobject_offsets (binfo,
4484 BINFO_OFFSET (binfo),
4485 offsets,
4486 /*is_data_member=*/false);
4488 return next_field;
4491 /* Layout all of the non-virtual base classes. Record empty
4492 subobjects in OFFSETS. T is the most derived type. Return nonzero
4493 if the type cannot be nearly empty. The fields created
4494 corresponding to the base classes will be inserted at
4495 *NEXT_FIELD. */
4497 static void
4498 build_base_fields (record_layout_info rli,
4499 splay_tree offsets, tree *next_field)
4501 /* Chain to hold all the new FIELD_DECLs which stand in for base class
4502 subobjects. */
4503 tree t = rli->t;
4504 int n_baseclasses = BINFO_N_BASE_BINFOS (TYPE_BINFO (t));
4505 int i;
4507 /* The primary base class is always allocated first. */
4508 if (CLASSTYPE_HAS_PRIMARY_BASE_P (t))
4509 next_field = build_base_field (rli, CLASSTYPE_PRIMARY_BINFO (t),
4510 offsets, next_field);
4512 /* Now allocate the rest of the bases. */
4513 for (i = 0; i < n_baseclasses; ++i)
4515 tree base_binfo;
4517 base_binfo = BINFO_BASE_BINFO (TYPE_BINFO (t), i);
4519 /* The primary base was already allocated above, so we don't
4520 need to allocate it again here. */
4521 if (base_binfo == CLASSTYPE_PRIMARY_BINFO (t))
4522 continue;
4524 /* Virtual bases are added at the end (a primary virtual base
4525 will have already been added). */
4526 if (BINFO_VIRTUAL_P (base_binfo))
4527 continue;
4529 next_field = build_base_field (rli, base_binfo,
4530 offsets, next_field);
4534 /* Go through the TYPE_METHODS of T issuing any appropriate
4535 diagnostics, figuring out which methods override which other
4536 methods, and so forth. */
4538 static void
4539 check_methods (tree t)
4541 tree x;
4543 for (x = TYPE_METHODS (t); x; x = DECL_CHAIN (x))
4545 check_for_override (x, t);
4546 if (DECL_PURE_VIRTUAL_P (x) && (TREE_CODE (x) != FUNCTION_DECL || ! DECL_VINDEX (x)))
4547 error ("initializer specified for non-virtual method %q+D", x);
4548 /* The name of the field is the original field name
4549 Save this in auxiliary field for later overloading. */
4550 if (TREE_CODE (x) == FUNCTION_DECL && DECL_VINDEX (x))
4552 TYPE_POLYMORPHIC_P (t) = 1;
4553 if (DECL_PURE_VIRTUAL_P (x))
4554 vec_safe_push (CLASSTYPE_PURE_VIRTUALS (t), x);
4556 /* All user-provided destructors are non-trivial.
4557 Constructors and assignment ops are handled in
4558 grok_special_member_properties. */
4559 if (DECL_DESTRUCTOR_P (x) && user_provided_p (x))
4560 TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t) = 1;
4564 /* FN is a constructor or destructor. Clone the declaration to create
4565 a specialized in-charge or not-in-charge version, as indicated by
4566 NAME. */
4568 static tree
4569 build_clone (tree fn, tree name)
4571 tree parms;
4572 tree clone;
4574 /* Copy the function. */
4575 clone = copy_decl (fn);
4576 /* Reset the function name. */
4577 DECL_NAME (clone) = name;
4578 /* Remember where this function came from. */
4579 DECL_ABSTRACT_ORIGIN (clone) = fn;
4580 /* Make it easy to find the CLONE given the FN. */
4581 DECL_CHAIN (clone) = DECL_CHAIN (fn);
4582 DECL_CHAIN (fn) = clone;
4584 /* If this is a template, do the rest on the DECL_TEMPLATE_RESULT. */
4585 if (TREE_CODE (clone) == TEMPLATE_DECL)
4587 tree result = build_clone (DECL_TEMPLATE_RESULT (clone), name);
4588 DECL_TEMPLATE_RESULT (clone) = result;
4589 DECL_TEMPLATE_INFO (result) = copy_node (DECL_TEMPLATE_INFO (result));
4590 DECL_TI_TEMPLATE (result) = clone;
4591 TREE_TYPE (clone) = TREE_TYPE (result);
4592 return clone;
4595 SET_DECL_ASSEMBLER_NAME (clone, NULL_TREE);
4596 DECL_CLONED_FUNCTION (clone) = fn;
4597 /* There's no pending inline data for this function. */
4598 DECL_PENDING_INLINE_INFO (clone) = NULL;
4599 DECL_PENDING_INLINE_P (clone) = 0;
4601 /* The base-class destructor is not virtual. */
4602 if (name == base_dtor_identifier)
4604 DECL_VIRTUAL_P (clone) = 0;
4605 if (TREE_CODE (clone) != TEMPLATE_DECL)
4606 DECL_VINDEX (clone) = NULL_TREE;
4609 /* If there was an in-charge parameter, drop it from the function
4610 type. */
4611 if (DECL_HAS_IN_CHARGE_PARM_P (clone))
4613 tree basetype;
4614 tree parmtypes;
4615 tree exceptions;
4617 exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (clone));
4618 basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (clone));
4619 parmtypes = TYPE_ARG_TYPES (TREE_TYPE (clone));
4620 /* Skip the `this' parameter. */
4621 parmtypes = TREE_CHAIN (parmtypes);
4622 /* Skip the in-charge parameter. */
4623 parmtypes = TREE_CHAIN (parmtypes);
4624 /* And the VTT parm, in a complete [cd]tor. */
4625 if (DECL_HAS_VTT_PARM_P (fn)
4626 && ! DECL_NEEDS_VTT_PARM_P (clone))
4627 parmtypes = TREE_CHAIN (parmtypes);
4628 /* If this is subobject constructor or destructor, add the vtt
4629 parameter. */
4630 TREE_TYPE (clone)
4631 = build_method_type_directly (basetype,
4632 TREE_TYPE (TREE_TYPE (clone)),
4633 parmtypes);
4634 if (exceptions)
4635 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone),
4636 exceptions);
4637 TREE_TYPE (clone)
4638 = cp_build_type_attribute_variant (TREE_TYPE (clone),
4639 TYPE_ATTRIBUTES (TREE_TYPE (fn)));
4642 /* Copy the function parameters. */
4643 DECL_ARGUMENTS (clone) = copy_list (DECL_ARGUMENTS (clone));
4644 /* Remove the in-charge parameter. */
4645 if (DECL_HAS_IN_CHARGE_PARM_P (clone))
4647 DECL_CHAIN (DECL_ARGUMENTS (clone))
4648 = DECL_CHAIN (DECL_CHAIN (DECL_ARGUMENTS (clone)));
4649 DECL_HAS_IN_CHARGE_PARM_P (clone) = 0;
4651 /* And the VTT parm, in a complete [cd]tor. */
4652 if (DECL_HAS_VTT_PARM_P (fn))
4654 if (DECL_NEEDS_VTT_PARM_P (clone))
4655 DECL_HAS_VTT_PARM_P (clone) = 1;
4656 else
4658 DECL_CHAIN (DECL_ARGUMENTS (clone))
4659 = DECL_CHAIN (DECL_CHAIN (DECL_ARGUMENTS (clone)));
4660 DECL_HAS_VTT_PARM_P (clone) = 0;
4664 for (parms = DECL_ARGUMENTS (clone); parms; parms = DECL_CHAIN (parms))
4666 DECL_CONTEXT (parms) = clone;
4667 cxx_dup_lang_specific_decl (parms);
4670 /* Create the RTL for this function. */
4671 SET_DECL_RTL (clone, NULL);
4672 rest_of_decl_compilation (clone, /*top_level=*/1, at_eof);
4674 if (pch_file)
4675 note_decl_for_pch (clone);
4677 return clone;
4680 /* Implementation of DECL_CLONED_FUNCTION and DECL_CLONED_FUNCTION_P, do
4681 not invoke this function directly.
4683 For a non-thunk function, returns the address of the slot for storing
4684 the function it is a clone of. Otherwise returns NULL_TREE.
4686 If JUST_TESTING, looks through TEMPLATE_DECL and returns NULL if
4687 cloned_function is unset. This is to support the separate
4688 DECL_CLONED_FUNCTION and DECL_CLONED_FUNCTION_P modes; using the latter
4689 on a template makes sense, but not the former. */
4691 tree *
4692 decl_cloned_function_p (const_tree decl, bool just_testing)
4694 tree *ptr;
4695 if (just_testing)
4696 decl = STRIP_TEMPLATE (decl);
4698 if (TREE_CODE (decl) != FUNCTION_DECL
4699 || !DECL_LANG_SPECIFIC (decl)
4700 || DECL_LANG_SPECIFIC (decl)->u.fn.thunk_p)
4702 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
4703 if (!just_testing)
4704 lang_check_failed (__FILE__, __LINE__, __FUNCTION__);
4705 else
4706 #endif
4707 return NULL;
4710 ptr = &DECL_LANG_SPECIFIC (decl)->u.fn.u5.cloned_function;
4711 if (just_testing && *ptr == NULL_TREE)
4712 return NULL;
4713 else
4714 return ptr;
4717 /* Produce declarations for all appropriate clones of FN. If
4718 UPDATE_METHOD_VEC_P is nonzero, the clones are added to the
4719 CLASTYPE_METHOD_VEC as well. */
4721 void
4722 clone_function_decl (tree fn, int update_method_vec_p)
4724 tree clone;
4726 /* Avoid inappropriate cloning. */
4727 if (DECL_CHAIN (fn)
4728 && DECL_CLONED_FUNCTION_P (DECL_CHAIN (fn)))
4729 return;
4731 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn))
4733 /* For each constructor, we need two variants: an in-charge version
4734 and a not-in-charge version. */
4735 clone = build_clone (fn, complete_ctor_identifier);
4736 if (update_method_vec_p)
4737 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4738 clone = build_clone (fn, base_ctor_identifier);
4739 if (update_method_vec_p)
4740 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4742 else
4744 gcc_assert (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (fn));
4746 /* For each destructor, we need three variants: an in-charge
4747 version, a not-in-charge version, and an in-charge deleting
4748 version. We clone the deleting version first because that
4749 means it will go second on the TYPE_METHODS list -- and that
4750 corresponds to the correct layout order in the virtual
4751 function table.
4753 For a non-virtual destructor, we do not build a deleting
4754 destructor. */
4755 if (DECL_VIRTUAL_P (fn))
4757 clone = build_clone (fn, deleting_dtor_identifier);
4758 if (update_method_vec_p)
4759 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4761 clone = build_clone (fn, complete_dtor_identifier);
4762 if (update_method_vec_p)
4763 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4764 clone = build_clone (fn, base_dtor_identifier);
4765 if (update_method_vec_p)
4766 add_method (DECL_CONTEXT (clone), clone, NULL_TREE);
4769 /* Note that this is an abstract function that is never emitted. */
4770 DECL_ABSTRACT_P (fn) = true;
4773 /* DECL is an in charge constructor, which is being defined. This will
4774 have had an in class declaration, from whence clones were
4775 declared. An out-of-class definition can specify additional default
4776 arguments. As it is the clones that are involved in overload
4777 resolution, we must propagate the information from the DECL to its
4778 clones. */
4780 void
4781 adjust_clone_args (tree decl)
4783 tree clone;
4785 for (clone = DECL_CHAIN (decl); clone && DECL_CLONED_FUNCTION_P (clone);
4786 clone = DECL_CHAIN (clone))
4788 tree orig_clone_parms = TYPE_ARG_TYPES (TREE_TYPE (clone));
4789 tree orig_decl_parms = TYPE_ARG_TYPES (TREE_TYPE (decl));
4790 tree decl_parms, clone_parms;
4792 clone_parms = orig_clone_parms;
4794 /* Skip the 'this' parameter. */
4795 orig_clone_parms = TREE_CHAIN (orig_clone_parms);
4796 orig_decl_parms = TREE_CHAIN (orig_decl_parms);
4798 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
4799 orig_decl_parms = TREE_CHAIN (orig_decl_parms);
4800 if (DECL_HAS_VTT_PARM_P (decl))
4801 orig_decl_parms = TREE_CHAIN (orig_decl_parms);
4803 clone_parms = orig_clone_parms;
4804 if (DECL_HAS_VTT_PARM_P (clone))
4805 clone_parms = TREE_CHAIN (clone_parms);
4807 for (decl_parms = orig_decl_parms; decl_parms;
4808 decl_parms = TREE_CHAIN (decl_parms),
4809 clone_parms = TREE_CHAIN (clone_parms))
4811 gcc_assert (same_type_p (TREE_TYPE (decl_parms),
4812 TREE_TYPE (clone_parms)));
4814 if (TREE_PURPOSE (decl_parms) && !TREE_PURPOSE (clone_parms))
4816 /* A default parameter has been added. Adjust the
4817 clone's parameters. */
4818 tree exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (clone));
4819 tree attrs = TYPE_ATTRIBUTES (TREE_TYPE (clone));
4820 tree basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (clone));
4821 tree type;
4823 clone_parms = orig_decl_parms;
4825 if (DECL_HAS_VTT_PARM_P (clone))
4827 clone_parms = tree_cons (TREE_PURPOSE (orig_clone_parms),
4828 TREE_VALUE (orig_clone_parms),
4829 clone_parms);
4830 TREE_TYPE (clone_parms) = TREE_TYPE (orig_clone_parms);
4832 type = build_method_type_directly (basetype,
4833 TREE_TYPE (TREE_TYPE (clone)),
4834 clone_parms);
4835 if (exceptions)
4836 type = build_exception_variant (type, exceptions);
4837 if (attrs)
4838 type = cp_build_type_attribute_variant (type, attrs);
4839 TREE_TYPE (clone) = type;
4841 clone_parms = NULL_TREE;
4842 break;
4845 gcc_assert (!clone_parms);
4849 /* For each of the constructors and destructors in T, create an
4850 in-charge and not-in-charge variant. */
4852 static void
4853 clone_constructors_and_destructors (tree t)
4855 tree fns;
4857 /* If for some reason we don't have a CLASSTYPE_METHOD_VEC, we bail
4858 out now. */
4859 if (!CLASSTYPE_METHOD_VEC (t))
4860 return;
4862 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4863 clone_function_decl (OVL_CURRENT (fns), /*update_method_vec_p=*/1);
4864 for (fns = CLASSTYPE_DESTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4865 clone_function_decl (OVL_CURRENT (fns), /*update_method_vec_p=*/1);
4868 /* Deduce noexcept for a destructor DTOR. */
4870 void
4871 deduce_noexcept_on_destructor (tree dtor)
4873 if (!TYPE_RAISES_EXCEPTIONS (TREE_TYPE (dtor)))
4875 tree eh_spec = unevaluated_noexcept_spec ();
4876 TREE_TYPE (dtor) = build_exception_variant (TREE_TYPE (dtor), eh_spec);
4880 /* For each destructor in T, deduce noexcept:
4882 12.4/3: A declaration of a destructor that does not have an
4883 exception-specification is implicitly considered to have the
4884 same exception-specification as an implicit declaration (15.4). */
4886 static void
4887 deduce_noexcept_on_destructors (tree t)
4889 /* If for some reason we don't have a CLASSTYPE_METHOD_VEC, we bail
4890 out now. */
4891 if (!CLASSTYPE_METHOD_VEC (t))
4892 return;
4894 for (tree fns = CLASSTYPE_DESTRUCTORS (t); fns; fns = OVL_NEXT (fns))
4895 deduce_noexcept_on_destructor (OVL_CURRENT (fns));
4898 /* Subroutine of set_one_vmethod_tm_attributes. Search base classes
4899 of TYPE for virtual functions which FNDECL overrides. Return a
4900 mask of the tm attributes found therein. */
4902 static int
4903 look_for_tm_attr_overrides (tree type, tree fndecl)
4905 tree binfo = TYPE_BINFO (type);
4906 tree base_binfo;
4907 int ix, found = 0;
4909 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ++ix)
4911 tree o, basetype = BINFO_TYPE (base_binfo);
4913 if (!TYPE_POLYMORPHIC_P (basetype))
4914 continue;
4916 o = look_for_overrides_here (basetype, fndecl);
4917 if (o)
4918 found |= tm_attr_to_mask (find_tm_attribute
4919 (TYPE_ATTRIBUTES (TREE_TYPE (o))));
4920 else
4921 found |= look_for_tm_attr_overrides (basetype, fndecl);
4924 return found;
4927 /* Subroutine of set_method_tm_attributes. Handle the checks and
4928 inheritance for one virtual method FNDECL. */
4930 static void
4931 set_one_vmethod_tm_attributes (tree type, tree fndecl)
4933 tree tm_attr;
4934 int found, have;
4936 found = look_for_tm_attr_overrides (type, fndecl);
4938 /* If FNDECL doesn't actually override anything (i.e. T is the
4939 class that first declares FNDECL virtual), then we're done. */
4940 if (found == 0)
4941 return;
4943 tm_attr = find_tm_attribute (TYPE_ATTRIBUTES (TREE_TYPE (fndecl)));
4944 have = tm_attr_to_mask (tm_attr);
4946 /* Intel STM Language Extension 3.0, Section 4.2 table 4:
4947 tm_pure must match exactly, otherwise no weakening of
4948 tm_safe > tm_callable > nothing. */
4949 /* ??? The tm_pure attribute didn't make the transition to the
4950 multivendor language spec. */
4951 if (have == TM_ATTR_PURE)
4953 if (found != TM_ATTR_PURE)
4955 found &= -found;
4956 goto err_override;
4959 /* If the overridden function is tm_pure, then FNDECL must be. */
4960 else if (found == TM_ATTR_PURE && tm_attr)
4961 goto err_override;
4962 /* Look for base class combinations that cannot be satisfied. */
4963 else if (found != TM_ATTR_PURE && (found & TM_ATTR_PURE))
4965 found &= ~TM_ATTR_PURE;
4966 found &= -found;
4967 error_at (DECL_SOURCE_LOCATION (fndecl),
4968 "method overrides both %<transaction_pure%> and %qE methods",
4969 tm_mask_to_attr (found));
4971 /* If FNDECL did not declare an attribute, then inherit the most
4972 restrictive one. */
4973 else if (tm_attr == NULL)
4975 apply_tm_attr (fndecl, tm_mask_to_attr (found & -found));
4977 /* Otherwise validate that we're not weaker than a function
4978 that is being overridden. */
4979 else
4981 found &= -found;
4982 if (found <= TM_ATTR_CALLABLE && have > found)
4983 goto err_override;
4985 return;
4987 err_override:
4988 error_at (DECL_SOURCE_LOCATION (fndecl),
4989 "method declared %qE overriding %qE method",
4990 tm_attr, tm_mask_to_attr (found));
4993 /* For each of the methods in T, propagate a class-level tm attribute. */
4995 static void
4996 set_method_tm_attributes (tree t)
4998 tree class_tm_attr, fndecl;
5000 /* Don't bother collecting tm attributes if transactional memory
5001 support is not enabled. */
5002 if (!flag_tm)
5003 return;
5005 /* Process virtual methods first, as they inherit directly from the
5006 base virtual function and also require validation of new attributes. */
5007 if (TYPE_CONTAINS_VPTR_P (t))
5009 tree vchain;
5010 for (vchain = BINFO_VIRTUALS (TYPE_BINFO (t)); vchain;
5011 vchain = TREE_CHAIN (vchain))
5013 fndecl = BV_FN (vchain);
5014 if (DECL_THUNK_P (fndecl))
5015 fndecl = THUNK_TARGET (fndecl);
5016 set_one_vmethod_tm_attributes (t, fndecl);
5020 /* If the class doesn't have an attribute, nothing more to do. */
5021 class_tm_attr = find_tm_attribute (TYPE_ATTRIBUTES (t));
5022 if (class_tm_attr == NULL)
5023 return;
5025 /* Any method that does not yet have a tm attribute inherits
5026 the one from the class. */
5027 for (fndecl = TYPE_METHODS (t); fndecl; fndecl = TREE_CHAIN (fndecl))
5029 if (!find_tm_attribute (TYPE_ATTRIBUTES (TREE_TYPE (fndecl))))
5030 apply_tm_attr (fndecl, class_tm_attr);
5034 /* Returns true iff class T has a user-defined constructor other than
5035 the default constructor. */
5037 bool
5038 type_has_user_nondefault_constructor (tree t)
5040 tree fns;
5042 if (!TYPE_HAS_USER_CONSTRUCTOR (t))
5043 return false;
5045 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
5047 tree fn = OVL_CURRENT (fns);
5048 if (!DECL_ARTIFICIAL (fn)
5049 && (TREE_CODE (fn) == TEMPLATE_DECL
5050 || (skip_artificial_parms_for (fn, DECL_ARGUMENTS (fn))
5051 != NULL_TREE)))
5052 return true;
5055 return false;
5058 /* Returns the defaulted constructor if T has one. Otherwise, returns
5059 NULL_TREE. */
5061 tree
5062 in_class_defaulted_default_constructor (tree t)
5064 tree fns, args;
5066 if (!TYPE_HAS_USER_CONSTRUCTOR (t))
5067 return NULL_TREE;
5069 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
5071 tree fn = OVL_CURRENT (fns);
5073 if (DECL_DEFAULTED_IN_CLASS_P (fn))
5075 args = FUNCTION_FIRST_USER_PARMTYPE (fn);
5076 while (args && TREE_PURPOSE (args))
5077 args = TREE_CHAIN (args);
5078 if (!args || args == void_list_node)
5079 return fn;
5083 return NULL_TREE;
5086 /* Returns true iff FN is a user-provided function, i.e. user-declared
5087 and not defaulted at its first declaration; or explicit, private,
5088 protected, or non-const. */
5090 bool
5091 user_provided_p (tree fn)
5093 if (TREE_CODE (fn) == TEMPLATE_DECL)
5094 return true;
5095 else
5096 return (!DECL_ARTIFICIAL (fn)
5097 && !(DECL_INITIALIZED_IN_CLASS_P (fn)
5098 && (DECL_DEFAULTED_FN (fn) || DECL_DELETED_FN (fn))));
5101 /* Returns true iff class T has a user-provided constructor. */
5103 bool
5104 type_has_user_provided_constructor (tree t)
5106 tree fns;
5108 if (!CLASS_TYPE_P (t))
5109 return false;
5111 if (!TYPE_HAS_USER_CONSTRUCTOR (t))
5112 return false;
5114 /* This can happen in error cases; avoid crashing. */
5115 if (!CLASSTYPE_METHOD_VEC (t))
5116 return false;
5118 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
5119 if (user_provided_p (OVL_CURRENT (fns)))
5120 return true;
5122 return false;
5125 /* Returns true iff class T has a non-user-provided (i.e. implicitly
5126 declared or explicitly defaulted in the class body) default
5127 constructor. */
5129 bool
5130 type_has_non_user_provided_default_constructor (tree t)
5132 tree fns;
5134 if (!TYPE_HAS_DEFAULT_CONSTRUCTOR (t))
5135 return false;
5136 if (CLASSTYPE_LAZY_DEFAULT_CTOR (t))
5137 return true;
5139 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
5141 tree fn = OVL_CURRENT (fns);
5142 if (TREE_CODE (fn) == FUNCTION_DECL
5143 && !user_provided_p (fn)
5144 && sufficient_parms_p (FUNCTION_FIRST_USER_PARMTYPE (fn)))
5145 return true;
5148 return false;
5151 /* TYPE is being used as a virtual base, and has a non-trivial move
5152 assignment. Return true if this is due to there being a user-provided
5153 move assignment in TYPE or one of its subobjects; if there isn't, then
5154 multiple move assignment can't cause any harm. */
5156 bool
5157 vbase_has_user_provided_move_assign (tree type)
5159 /* Does the type itself have a user-provided move assignment operator? */
5160 for (tree fns
5161 = lookup_fnfields_slot_nolazy (type, ansi_assopname (NOP_EXPR));
5162 fns; fns = OVL_NEXT (fns))
5164 tree fn = OVL_CURRENT (fns);
5165 if (move_fn_p (fn) && user_provided_p (fn))
5166 return true;
5169 /* Do any of its bases? */
5170 tree binfo = TYPE_BINFO (type);
5171 tree base_binfo;
5172 for (int i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
5173 if (vbase_has_user_provided_move_assign (BINFO_TYPE (base_binfo)))
5174 return true;
5176 /* Or non-static data members? */
5177 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
5179 if (TREE_CODE (field) == FIELD_DECL
5180 && CLASS_TYPE_P (TREE_TYPE (field))
5181 && vbase_has_user_provided_move_assign (TREE_TYPE (field)))
5182 return true;
5185 /* Seems not. */
5186 return false;
5189 /* If default-initialization leaves part of TYPE uninitialized, returns
5190 a DECL for the field or TYPE itself (DR 253). */
5192 tree
5193 default_init_uninitialized_part (tree type)
5195 tree t, r, binfo;
5196 int i;
5198 type = strip_array_types (type);
5199 if (!CLASS_TYPE_P (type))
5200 return type;
5201 if (!type_has_non_user_provided_default_constructor (type))
5202 return NULL_TREE;
5203 for (binfo = TYPE_BINFO (type), i = 0;
5204 BINFO_BASE_ITERATE (binfo, i, t); ++i)
5206 r = default_init_uninitialized_part (BINFO_TYPE (t));
5207 if (r)
5208 return r;
5210 for (t = TYPE_FIELDS (type); t; t = DECL_CHAIN (t))
5211 if (TREE_CODE (t) == FIELD_DECL
5212 && !DECL_ARTIFICIAL (t)
5213 && !DECL_INITIAL (t))
5215 r = default_init_uninitialized_part (TREE_TYPE (t));
5216 if (r)
5217 return DECL_P (r) ? r : t;
5220 return NULL_TREE;
5223 /* Returns true iff for class T, a trivial synthesized default constructor
5224 would be constexpr. */
5226 bool
5227 trivial_default_constructor_is_constexpr (tree t)
5229 /* A defaulted trivial default constructor is constexpr
5230 if there is nothing to initialize. */
5231 gcc_assert (!TYPE_HAS_COMPLEX_DFLT (t));
5232 return is_really_empty_class (t);
5235 /* Returns true iff class T has a constexpr default constructor. */
5237 bool
5238 type_has_constexpr_default_constructor (tree t)
5240 tree fns;
5242 if (!CLASS_TYPE_P (t))
5244 /* The caller should have stripped an enclosing array. */
5245 gcc_assert (TREE_CODE (t) != ARRAY_TYPE);
5246 return false;
5248 if (CLASSTYPE_LAZY_DEFAULT_CTOR (t))
5250 if (!TYPE_HAS_COMPLEX_DFLT (t))
5251 return trivial_default_constructor_is_constexpr (t);
5252 /* Non-trivial, we need to check subobject constructors. */
5253 lazily_declare_fn (sfk_constructor, t);
5255 fns = locate_ctor (t);
5256 return (fns && DECL_DECLARED_CONSTEXPR_P (fns));
5259 /* Returns true iff class TYPE has a virtual destructor. */
5261 bool
5262 type_has_virtual_destructor (tree type)
5264 tree dtor;
5266 if (!CLASS_TYPE_P (type))
5267 return false;
5269 gcc_assert (COMPLETE_TYPE_P (type));
5270 dtor = CLASSTYPE_DESTRUCTORS (type);
5271 return (dtor && DECL_VIRTUAL_P (dtor));
5274 /* Returns true iff class T has a move constructor. */
5276 bool
5277 type_has_move_constructor (tree t)
5279 tree fns;
5281 if (CLASSTYPE_LAZY_MOVE_CTOR (t))
5283 gcc_assert (COMPLETE_TYPE_P (t));
5284 lazily_declare_fn (sfk_move_constructor, t);
5287 if (!CLASSTYPE_METHOD_VEC (t))
5288 return false;
5290 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
5291 if (move_fn_p (OVL_CURRENT (fns)))
5292 return true;
5294 return false;
5297 /* Returns true iff class T has a move assignment operator. */
5299 bool
5300 type_has_move_assign (tree t)
5302 tree fns;
5304 if (CLASSTYPE_LAZY_MOVE_ASSIGN (t))
5306 gcc_assert (COMPLETE_TYPE_P (t));
5307 lazily_declare_fn (sfk_move_assignment, t);
5310 for (fns = lookup_fnfields_slot_nolazy (t, ansi_assopname (NOP_EXPR));
5311 fns; fns = OVL_NEXT (fns))
5312 if (move_fn_p (OVL_CURRENT (fns)))
5313 return true;
5315 return false;
5318 /* Returns true iff class T has a move constructor that was explicitly
5319 declared in the class body. Note that this is different from
5320 "user-provided", which doesn't include functions that are defaulted in
5321 the class. */
5323 bool
5324 type_has_user_declared_move_constructor (tree t)
5326 tree fns;
5328 if (CLASSTYPE_LAZY_MOVE_CTOR (t))
5329 return false;
5331 if (!CLASSTYPE_METHOD_VEC (t))
5332 return false;
5334 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
5336 tree fn = OVL_CURRENT (fns);
5337 if (move_fn_p (fn) && !DECL_ARTIFICIAL (fn))
5338 return true;
5341 return false;
5344 /* Returns true iff class T has a move assignment operator that was
5345 explicitly declared in the class body. */
5347 bool
5348 type_has_user_declared_move_assign (tree t)
5350 tree fns;
5352 if (CLASSTYPE_LAZY_MOVE_ASSIGN (t))
5353 return false;
5355 for (fns = lookup_fnfields_slot_nolazy (t, ansi_assopname (NOP_EXPR));
5356 fns; fns = OVL_NEXT (fns))
5358 tree fn = OVL_CURRENT (fns);
5359 if (move_fn_p (fn) && !DECL_ARTIFICIAL (fn))
5360 return true;
5363 return false;
5366 /* Nonzero if we need to build up a constructor call when initializing an
5367 object of this class, either because it has a user-declared constructor
5368 or because it doesn't have a default constructor (so we need to give an
5369 error if no initializer is provided). Use TYPE_NEEDS_CONSTRUCTING when
5370 what you care about is whether or not an object can be produced by a
5371 constructor (e.g. so we don't set TREE_READONLY on const variables of
5372 such type); use this function when what you care about is whether or not
5373 to try to call a constructor to create an object. The latter case is
5374 the former plus some cases of constructors that cannot be called. */
5376 bool
5377 type_build_ctor_call (tree t)
5379 tree inner;
5380 if (TYPE_NEEDS_CONSTRUCTING (t))
5381 return true;
5382 inner = strip_array_types (t);
5383 if (!CLASS_TYPE_P (inner) || ANON_AGGR_TYPE_P (inner))
5384 return false;
5385 if (!TYPE_HAS_DEFAULT_CONSTRUCTOR (inner))
5386 return true;
5387 if (cxx_dialect < cxx11)
5388 return false;
5389 /* A user-declared constructor might be private, and a constructor might
5390 be trivial but deleted. */
5391 for (tree fns = lookup_fnfields_slot (inner, complete_ctor_identifier);
5392 fns; fns = OVL_NEXT (fns))
5394 tree fn = OVL_CURRENT (fns);
5395 if (!DECL_ARTIFICIAL (fn)
5396 || DECL_DELETED_FN (fn))
5397 return true;
5399 return false;
5402 /* Like type_build_ctor_call, but for destructors. */
5404 bool
5405 type_build_dtor_call (tree t)
5407 tree inner;
5408 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t))
5409 return true;
5410 inner = strip_array_types (t);
5411 if (!CLASS_TYPE_P (inner) || ANON_AGGR_TYPE_P (inner)
5412 || !COMPLETE_TYPE_P (inner))
5413 return false;
5414 if (cxx_dialect < cxx11)
5415 return false;
5416 /* A user-declared destructor might be private, and a destructor might
5417 be trivial but deleted. */
5418 for (tree fns = lookup_fnfields_slot (inner, complete_dtor_identifier);
5419 fns; fns = OVL_NEXT (fns))
5421 tree fn = OVL_CURRENT (fns);
5422 if (!DECL_ARTIFICIAL (fn)
5423 || DECL_DELETED_FN (fn))
5424 return true;
5426 return false;
5429 /* Remove all zero-width bit-fields from T. */
5431 static void
5432 remove_zero_width_bit_fields (tree t)
5434 tree *fieldsp;
5436 fieldsp = &TYPE_FIELDS (t);
5437 while (*fieldsp)
5439 if (TREE_CODE (*fieldsp) == FIELD_DECL
5440 && DECL_C_BIT_FIELD (*fieldsp)
5441 /* We should not be confused by the fact that grokbitfield
5442 temporarily sets the width of the bit field into
5443 DECL_INITIAL (*fieldsp).
5444 check_bitfield_decl eventually sets DECL_SIZE (*fieldsp)
5445 to that width. */
5446 && (DECL_SIZE (*fieldsp) == NULL_TREE
5447 || integer_zerop (DECL_SIZE (*fieldsp))))
5448 *fieldsp = DECL_CHAIN (*fieldsp);
5449 else
5450 fieldsp = &DECL_CHAIN (*fieldsp);
5454 /* Returns TRUE iff we need a cookie when dynamically allocating an
5455 array whose elements have the indicated class TYPE. */
5457 static bool
5458 type_requires_array_cookie (tree type)
5460 tree fns;
5461 bool has_two_argument_delete_p = false;
5463 gcc_assert (CLASS_TYPE_P (type));
5465 /* If there's a non-trivial destructor, we need a cookie. In order
5466 to iterate through the array calling the destructor for each
5467 element, we'll have to know how many elements there are. */
5468 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
5469 return true;
5471 /* If the usual deallocation function is a two-argument whose second
5472 argument is of type `size_t', then we have to pass the size of
5473 the array to the deallocation function, so we will need to store
5474 a cookie. */
5475 fns = lookup_fnfields (TYPE_BINFO (type),
5476 ansi_opname (VEC_DELETE_EXPR),
5477 /*protect=*/0);
5478 /* If there are no `operator []' members, or the lookup is
5479 ambiguous, then we don't need a cookie. */
5480 if (!fns || fns == error_mark_node)
5481 return false;
5482 /* Loop through all of the functions. */
5483 for (fns = BASELINK_FUNCTIONS (fns); fns; fns = OVL_NEXT (fns))
5485 tree fn;
5486 tree second_parm;
5488 /* Select the current function. */
5489 fn = OVL_CURRENT (fns);
5490 /* See if this function is a one-argument delete function. If
5491 it is, then it will be the usual deallocation function. */
5492 second_parm = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (fn)));
5493 if (second_parm == void_list_node)
5494 return false;
5495 /* Do not consider this function if its second argument is an
5496 ellipsis. */
5497 if (!second_parm)
5498 continue;
5499 /* Otherwise, if we have a two-argument function and the second
5500 argument is `size_t', it will be the usual deallocation
5501 function -- unless there is one-argument function, too. */
5502 if (TREE_CHAIN (second_parm) == void_list_node
5503 && same_type_p (TREE_VALUE (second_parm), size_type_node))
5504 has_two_argument_delete_p = true;
5507 return has_two_argument_delete_p;
5510 /* Finish computing the `literal type' property of class type T.
5512 At this point, we have already processed base classes and
5513 non-static data members. We need to check whether the copy
5514 constructor is trivial, the destructor is trivial, and there
5515 is a trivial default constructor or at least one constexpr
5516 constructor other than the copy constructor. */
5518 static void
5519 finalize_literal_type_property (tree t)
5521 tree fn;
5523 if (cxx_dialect < cxx11
5524 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t))
5525 CLASSTYPE_LITERAL_P (t) = false;
5526 else if (CLASSTYPE_LITERAL_P (t) && !TYPE_HAS_TRIVIAL_DFLT (t)
5527 && CLASSTYPE_NON_AGGREGATE (t)
5528 && !TYPE_HAS_CONSTEXPR_CTOR (t))
5529 CLASSTYPE_LITERAL_P (t) = false;
5531 if (!CLASSTYPE_LITERAL_P (t))
5532 for (fn = TYPE_METHODS (t); fn; fn = DECL_CHAIN (fn))
5533 if (DECL_DECLARED_CONSTEXPR_P (fn)
5534 && TREE_CODE (fn) != TEMPLATE_DECL
5535 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
5536 && !DECL_CONSTRUCTOR_P (fn))
5538 DECL_DECLARED_CONSTEXPR_P (fn) = false;
5539 if (!DECL_GENERATED_P (fn))
5541 error ("enclosing class of constexpr non-static member "
5542 "function %q+#D is not a literal type", fn);
5543 explain_non_literal_class (t);
5548 /* T is a non-literal type used in a context which requires a constant
5549 expression. Explain why it isn't literal. */
5551 void
5552 explain_non_literal_class (tree t)
5554 static hash_set<tree> *diagnosed;
5556 if (!CLASS_TYPE_P (t))
5557 return;
5558 t = TYPE_MAIN_VARIANT (t);
5560 if (diagnosed == NULL)
5561 diagnosed = new hash_set<tree>;
5562 if (diagnosed->add (t))
5563 /* Already explained. */
5564 return;
5566 inform (0, "%q+T is not literal because:", t);
5567 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t))
5568 inform (0, " %q+T has a non-trivial destructor", t);
5569 else if (CLASSTYPE_NON_AGGREGATE (t)
5570 && !TYPE_HAS_TRIVIAL_DFLT (t)
5571 && !TYPE_HAS_CONSTEXPR_CTOR (t))
5573 inform (0, " %q+T is not an aggregate, does not have a trivial "
5574 "default constructor, and has no constexpr constructor that "
5575 "is not a copy or move constructor", t);
5576 if (type_has_non_user_provided_default_constructor (t))
5578 /* Note that we can't simply call locate_ctor because when the
5579 constructor is deleted it just returns NULL_TREE. */
5580 tree fns;
5581 for (fns = CLASSTYPE_CONSTRUCTORS (t); fns; fns = OVL_NEXT (fns))
5583 tree fn = OVL_CURRENT (fns);
5584 tree parms = TYPE_ARG_TYPES (TREE_TYPE (fn));
5586 parms = skip_artificial_parms_for (fn, parms);
5588 if (sufficient_parms_p (parms))
5590 if (DECL_DELETED_FN (fn))
5591 maybe_explain_implicit_delete (fn);
5592 else
5593 explain_invalid_constexpr_fn (fn);
5594 break;
5599 else
5601 tree binfo, base_binfo, field; int i;
5602 for (binfo = TYPE_BINFO (t), i = 0;
5603 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
5605 tree basetype = TREE_TYPE (base_binfo);
5606 if (!CLASSTYPE_LITERAL_P (basetype))
5608 inform (0, " base class %qT of %q+T is non-literal",
5609 basetype, t);
5610 explain_non_literal_class (basetype);
5611 return;
5614 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
5616 tree ftype;
5617 if (TREE_CODE (field) != FIELD_DECL)
5618 continue;
5619 ftype = TREE_TYPE (field);
5620 if (!literal_type_p (ftype))
5622 inform (0, " non-static data member %q+D has "
5623 "non-literal type", field);
5624 if (CLASS_TYPE_P (ftype))
5625 explain_non_literal_class (ftype);
5627 if (CP_TYPE_VOLATILE_P (ftype))
5628 inform (0, " non-static data member %q+D has "
5629 "volatile type", field);
5634 /* Check the validity of the bases and members declared in T. Add any
5635 implicitly-generated functions (like copy-constructors and
5636 assignment operators). Compute various flag bits (like
5637 CLASSTYPE_NON_LAYOUT_POD_T) for T. This routine works purely at the C++
5638 level: i.e., independently of the ABI in use. */
5640 static void
5641 check_bases_and_members (tree t)
5643 /* Nonzero if the implicitly generated copy constructor should take
5644 a non-const reference argument. */
5645 int cant_have_const_ctor;
5646 /* Nonzero if the implicitly generated assignment operator
5647 should take a non-const reference argument. */
5648 int no_const_asn_ref;
5649 tree access_decls;
5650 bool saved_complex_asn_ref;
5651 bool saved_nontrivial_dtor;
5652 tree fn;
5654 /* By default, we use const reference arguments and generate default
5655 constructors. */
5656 cant_have_const_ctor = 0;
5657 no_const_asn_ref = 0;
5659 /* Check all the base-classes. */
5660 check_bases (t, &cant_have_const_ctor,
5661 &no_const_asn_ref);
5663 /* Deduce noexcept on destructors. This needs to happen after we've set
5664 triviality flags appropriately for our bases. */
5665 if (cxx_dialect >= cxx11)
5666 deduce_noexcept_on_destructors (t);
5668 /* Check all the method declarations. */
5669 check_methods (t);
5671 /* Save the initial values of these flags which only indicate whether
5672 or not the class has user-provided functions. As we analyze the
5673 bases and members we can set these flags for other reasons. */
5674 saved_complex_asn_ref = TYPE_HAS_COMPLEX_COPY_ASSIGN (t);
5675 saved_nontrivial_dtor = TYPE_HAS_NONTRIVIAL_DESTRUCTOR (t);
5677 /* Check all the data member declarations. We cannot call
5678 check_field_decls until we have called check_bases check_methods,
5679 as check_field_decls depends on TYPE_HAS_NONTRIVIAL_DESTRUCTOR
5680 being set appropriately. */
5681 check_field_decls (t, &access_decls,
5682 &cant_have_const_ctor,
5683 &no_const_asn_ref);
5685 /* A nearly-empty class has to be vptr-containing; a nearly empty
5686 class contains just a vptr. */
5687 if (!TYPE_CONTAINS_VPTR_P (t))
5688 CLASSTYPE_NEARLY_EMPTY_P (t) = 0;
5690 /* Do some bookkeeping that will guide the generation of implicitly
5691 declared member functions. */
5692 TYPE_HAS_COMPLEX_COPY_CTOR (t) |= TYPE_CONTAINS_VPTR_P (t);
5693 TYPE_HAS_COMPLEX_MOVE_CTOR (t) |= TYPE_CONTAINS_VPTR_P (t);
5694 /* We need to call a constructor for this class if it has a
5695 user-provided constructor, or if the default constructor is going
5696 to initialize the vptr. (This is not an if-and-only-if;
5697 TYPE_NEEDS_CONSTRUCTING is set elsewhere if bases or members
5698 themselves need constructing.) */
5699 TYPE_NEEDS_CONSTRUCTING (t)
5700 |= (type_has_user_provided_constructor (t) || TYPE_CONTAINS_VPTR_P (t));
5701 /* [dcl.init.aggr]
5703 An aggregate is an array or a class with no user-provided
5704 constructors ... and no virtual functions.
5706 Again, other conditions for being an aggregate are checked
5707 elsewhere. */
5708 CLASSTYPE_NON_AGGREGATE (t)
5709 |= (type_has_user_provided_constructor (t) || TYPE_POLYMORPHIC_P (t));
5710 /* This is the C++98/03 definition of POD; it changed in C++0x, but we
5711 retain the old definition internally for ABI reasons. */
5712 CLASSTYPE_NON_LAYOUT_POD_P (t)
5713 |= (CLASSTYPE_NON_AGGREGATE (t)
5714 || saved_nontrivial_dtor || saved_complex_asn_ref);
5715 CLASSTYPE_NON_STD_LAYOUT (t) |= TYPE_CONTAINS_VPTR_P (t);
5716 TYPE_HAS_COMPLEX_COPY_ASSIGN (t) |= TYPE_CONTAINS_VPTR_P (t);
5717 TYPE_HAS_COMPLEX_MOVE_ASSIGN (t) |= TYPE_CONTAINS_VPTR_P (t);
5718 TYPE_HAS_COMPLEX_DFLT (t) |= TYPE_CONTAINS_VPTR_P (t);
5720 /* If the only explicitly declared default constructor is user-provided,
5721 set TYPE_HAS_COMPLEX_DFLT. */
5722 if (!TYPE_HAS_COMPLEX_DFLT (t)
5723 && TYPE_HAS_DEFAULT_CONSTRUCTOR (t)
5724 && !type_has_non_user_provided_default_constructor (t))
5725 TYPE_HAS_COMPLEX_DFLT (t) = true;
5727 /* Warn if a public base of a polymorphic type has an accessible
5728 non-virtual destructor. It is only now that we know the class is
5729 polymorphic. Although a polymorphic base will have a already
5730 been diagnosed during its definition, we warn on use too. */
5731 if (TYPE_POLYMORPHIC_P (t) && warn_nonvdtor)
5733 tree binfo = TYPE_BINFO (t);
5734 vec<tree, va_gc> *accesses = BINFO_BASE_ACCESSES (binfo);
5735 tree base_binfo;
5736 unsigned i;
5738 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
5740 tree basetype = TREE_TYPE (base_binfo);
5742 if ((*accesses)[i] == access_public_node
5743 && (TYPE_POLYMORPHIC_P (basetype) || warn_ecpp)
5744 && accessible_nvdtor_p (basetype))
5745 warning (OPT_Wnon_virtual_dtor,
5746 "base class %q#T has accessible non-virtual destructor",
5747 basetype);
5751 /* If the class has no user-declared constructor, but does have
5752 non-static const or reference data members that can never be
5753 initialized, issue a warning. */
5754 if (warn_uninitialized
5755 /* Classes with user-declared constructors are presumed to
5756 initialize these members. */
5757 && !TYPE_HAS_USER_CONSTRUCTOR (t)
5758 /* Aggregates can be initialized with brace-enclosed
5759 initializers. */
5760 && CLASSTYPE_NON_AGGREGATE (t))
5762 tree field;
5764 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
5766 tree type;
5768 if (TREE_CODE (field) != FIELD_DECL
5769 || DECL_INITIAL (field) != NULL_TREE)
5770 continue;
5772 type = TREE_TYPE (field);
5773 if (TREE_CODE (type) == REFERENCE_TYPE)
5774 warning (OPT_Wuninitialized, "non-static reference %q+#D "
5775 "in class without a constructor", field);
5776 else if (CP_TYPE_CONST_P (type)
5777 && (!CLASS_TYPE_P (type)
5778 || !TYPE_HAS_DEFAULT_CONSTRUCTOR (type)))
5779 warning (OPT_Wuninitialized, "non-static const member %q+#D "
5780 "in class without a constructor", field);
5784 /* Synthesize any needed methods. */
5785 add_implicitly_declared_members (t, &access_decls,
5786 cant_have_const_ctor,
5787 no_const_asn_ref);
5789 /* Check defaulted declarations here so we have cant_have_const_ctor
5790 and don't need to worry about clones. */
5791 for (fn = TYPE_METHODS (t); fn; fn = DECL_CHAIN (fn))
5792 if (!DECL_ARTIFICIAL (fn) && DECL_DEFAULTED_IN_CLASS_P (fn))
5794 int copy = copy_fn_p (fn);
5795 if (copy > 0)
5797 bool imp_const_p
5798 = (DECL_CONSTRUCTOR_P (fn) ? !cant_have_const_ctor
5799 : !no_const_asn_ref);
5800 bool fn_const_p = (copy == 2);
5802 if (fn_const_p && !imp_const_p)
5803 /* If the function is defaulted outside the class, we just
5804 give the synthesis error. */
5805 error ("%q+D declared to take const reference, but implicit "
5806 "declaration would take non-const", fn);
5808 defaulted_late_check (fn);
5811 if (LAMBDA_TYPE_P (t))
5813 /* "This class type is not an aggregate." */
5814 CLASSTYPE_NON_AGGREGATE (t) = 1;
5817 /* Compute the 'literal type' property before we
5818 do anything with non-static member functions. */
5819 finalize_literal_type_property (t);
5821 /* Create the in-charge and not-in-charge variants of constructors
5822 and destructors. */
5823 clone_constructors_and_destructors (t);
5825 /* Process the using-declarations. */
5826 for (; access_decls; access_decls = TREE_CHAIN (access_decls))
5827 handle_using_decl (TREE_VALUE (access_decls), t);
5829 /* Build and sort the CLASSTYPE_METHOD_VEC. */
5830 finish_struct_methods (t);
5832 /* Figure out whether or not we will need a cookie when dynamically
5833 allocating an array of this type. */
5834 TYPE_LANG_SPECIFIC (t)->u.c.vec_new_uses_cookie
5835 = type_requires_array_cookie (t);
5838 /* If T needs a pointer to its virtual function table, set TYPE_VFIELD
5839 accordingly. If a new vfield was created (because T doesn't have a
5840 primary base class), then the newly created field is returned. It
5841 is not added to the TYPE_FIELDS list; it is the caller's
5842 responsibility to do that. Accumulate declared virtual functions
5843 on VIRTUALS_P. */
5845 static tree
5846 create_vtable_ptr (tree t, tree* virtuals_p)
5848 tree fn;
5850 /* Collect the virtual functions declared in T. */
5851 for (fn = TYPE_METHODS (t); fn; fn = DECL_CHAIN (fn))
5852 if (TREE_CODE (fn) == FUNCTION_DECL
5853 && DECL_VINDEX (fn) && !DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (fn)
5854 && TREE_CODE (DECL_VINDEX (fn)) != INTEGER_CST)
5856 tree new_virtual = make_node (TREE_LIST);
5858 BV_FN (new_virtual) = fn;
5859 BV_DELTA (new_virtual) = integer_zero_node;
5860 BV_VCALL_INDEX (new_virtual) = NULL_TREE;
5862 TREE_CHAIN (new_virtual) = *virtuals_p;
5863 *virtuals_p = new_virtual;
5866 /* If we couldn't find an appropriate base class, create a new field
5867 here. Even if there weren't any new virtual functions, we might need a
5868 new virtual function table if we're supposed to include vptrs in
5869 all classes that need them. */
5870 if (!TYPE_VFIELD (t) && (*virtuals_p || TYPE_CONTAINS_VPTR_P (t)))
5872 /* We build this decl with vtbl_ptr_type_node, which is a
5873 `vtable_entry_type*'. It might seem more precise to use
5874 `vtable_entry_type (*)[N]' where N is the number of virtual
5875 functions. However, that would require the vtable pointer in
5876 base classes to have a different type than the vtable pointer
5877 in derived classes. We could make that happen, but that
5878 still wouldn't solve all the problems. In particular, the
5879 type-based alias analysis code would decide that assignments
5880 to the base class vtable pointer can't alias assignments to
5881 the derived class vtable pointer, since they have different
5882 types. Thus, in a derived class destructor, where the base
5883 class constructor was inlined, we could generate bad code for
5884 setting up the vtable pointer.
5886 Therefore, we use one type for all vtable pointers. We still
5887 use a type-correct type; it's just doesn't indicate the array
5888 bounds. That's better than using `void*' or some such; it's
5889 cleaner, and it let's the alias analysis code know that these
5890 stores cannot alias stores to void*! */
5891 tree field;
5893 field = build_decl (input_location,
5894 FIELD_DECL, get_vfield_name (t), vtbl_ptr_type_node);
5895 DECL_VIRTUAL_P (field) = 1;
5896 DECL_ARTIFICIAL (field) = 1;
5897 DECL_FIELD_CONTEXT (field) = t;
5898 DECL_FCONTEXT (field) = t;
5899 if (TYPE_PACKED (t))
5900 DECL_PACKED (field) = 1;
5902 TYPE_VFIELD (t) = field;
5904 /* This class is non-empty. */
5905 CLASSTYPE_EMPTY_P (t) = 0;
5907 return field;
5910 return NULL_TREE;
5913 /* Add OFFSET to all base types of BINFO which is a base in the
5914 hierarchy dominated by T.
5916 OFFSET, which is a type offset, is number of bytes. */
5918 static void
5919 propagate_binfo_offsets (tree binfo, tree offset)
5921 int i;
5922 tree primary_binfo;
5923 tree base_binfo;
5925 /* Update BINFO's offset. */
5926 BINFO_OFFSET (binfo)
5927 = convert (sizetype,
5928 size_binop (PLUS_EXPR,
5929 convert (ssizetype, BINFO_OFFSET (binfo)),
5930 offset));
5932 /* Find the primary base class. */
5933 primary_binfo = get_primary_binfo (binfo);
5935 if (primary_binfo && BINFO_INHERITANCE_CHAIN (primary_binfo) == binfo)
5936 propagate_binfo_offsets (primary_binfo, offset);
5938 /* Scan all of the bases, pushing the BINFO_OFFSET adjust
5939 downwards. */
5940 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
5942 /* Don't do the primary base twice. */
5943 if (base_binfo == primary_binfo)
5944 continue;
5946 if (BINFO_VIRTUAL_P (base_binfo))
5947 continue;
5949 propagate_binfo_offsets (base_binfo, offset);
5953 /* Set BINFO_OFFSET for all of the virtual bases for RLI->T. Update
5954 TYPE_ALIGN and TYPE_SIZE for T. OFFSETS gives the location of
5955 empty subobjects of T. */
5957 static void
5958 layout_virtual_bases (record_layout_info rli, splay_tree offsets)
5960 tree vbase;
5961 tree t = rli->t;
5962 tree *next_field;
5964 if (BINFO_N_BASE_BINFOS (TYPE_BINFO (t)) == 0)
5965 return;
5967 /* Find the last field. The artificial fields created for virtual
5968 bases will go after the last extant field to date. */
5969 next_field = &TYPE_FIELDS (t);
5970 while (*next_field)
5971 next_field = &DECL_CHAIN (*next_field);
5973 /* Go through the virtual bases, allocating space for each virtual
5974 base that is not already a primary base class. These are
5975 allocated in inheritance graph order. */
5976 for (vbase = TYPE_BINFO (t); vbase; vbase = TREE_CHAIN (vbase))
5978 if (!BINFO_VIRTUAL_P (vbase))
5979 continue;
5981 if (!BINFO_PRIMARY_P (vbase))
5983 /* This virtual base is not a primary base of any class in the
5984 hierarchy, so we have to add space for it. */
5985 next_field = build_base_field (rli, vbase,
5986 offsets, next_field);
5991 /* Returns the offset of the byte just past the end of the base class
5992 BINFO. */
5994 static tree
5995 end_of_base (tree binfo)
5997 tree size;
5999 if (!CLASSTYPE_AS_BASE (BINFO_TYPE (binfo)))
6000 size = TYPE_SIZE_UNIT (char_type_node);
6001 else if (is_empty_class (BINFO_TYPE (binfo)))
6002 /* An empty class has zero CLASSTYPE_SIZE_UNIT, but we need to
6003 allocate some space for it. It cannot have virtual bases, so
6004 TYPE_SIZE_UNIT is fine. */
6005 size = TYPE_SIZE_UNIT (BINFO_TYPE (binfo));
6006 else
6007 size = CLASSTYPE_SIZE_UNIT (BINFO_TYPE (binfo));
6009 return size_binop (PLUS_EXPR, BINFO_OFFSET (binfo), size);
6012 /* Returns the offset of the byte just past the end of the base class
6013 with the highest offset in T. If INCLUDE_VIRTUALS_P is zero, then
6014 only non-virtual bases are included. */
6016 static tree
6017 end_of_class (tree t, int include_virtuals_p)
6019 tree result = size_zero_node;
6020 vec<tree, va_gc> *vbases;
6021 tree binfo;
6022 tree base_binfo;
6023 tree offset;
6024 int i;
6026 for (binfo = TYPE_BINFO (t), i = 0;
6027 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
6029 if (!include_virtuals_p
6030 && BINFO_VIRTUAL_P (base_binfo)
6031 && (!BINFO_PRIMARY_P (base_binfo)
6032 || BINFO_INHERITANCE_CHAIN (base_binfo) != TYPE_BINFO (t)))
6033 continue;
6035 offset = end_of_base (base_binfo);
6036 if (tree_int_cst_lt (result, offset))
6037 result = offset;
6040 if (include_virtuals_p)
6041 for (vbases = CLASSTYPE_VBASECLASSES (t), i = 0;
6042 vec_safe_iterate (vbases, i, &base_binfo); i++)
6044 offset = end_of_base (base_binfo);
6045 if (tree_int_cst_lt (result, offset))
6046 result = offset;
6049 return result;
6052 /* Warn about bases of T that are inaccessible because they are
6053 ambiguous. For example:
6055 struct S {};
6056 struct T : public S {};
6057 struct U : public S, public T {};
6059 Here, `(S*) new U' is not allowed because there are two `S'
6060 subobjects of U. */
6062 static void
6063 warn_about_ambiguous_bases (tree t)
6065 int i;
6066 vec<tree, va_gc> *vbases;
6067 tree basetype;
6068 tree binfo;
6069 tree base_binfo;
6071 /* If there are no repeated bases, nothing can be ambiguous. */
6072 if (!CLASSTYPE_REPEATED_BASE_P (t))
6073 return;
6075 /* Check direct bases. */
6076 for (binfo = TYPE_BINFO (t), i = 0;
6077 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
6079 basetype = BINFO_TYPE (base_binfo);
6081 if (!uniquely_derived_from_p (basetype, t))
6082 warning (0, "direct base %qT inaccessible in %qT due to ambiguity",
6083 basetype, t);
6086 /* Check for ambiguous virtual bases. */
6087 if (extra_warnings)
6088 for (vbases = CLASSTYPE_VBASECLASSES (t), i = 0;
6089 vec_safe_iterate (vbases, i, &binfo); i++)
6091 basetype = BINFO_TYPE (binfo);
6093 if (!uniquely_derived_from_p (basetype, t))
6094 warning (OPT_Wextra, "virtual base %qT inaccessible in %qT due "
6095 "to ambiguity", basetype, t);
6099 /* Compare two INTEGER_CSTs K1 and K2. */
6101 static int
6102 splay_tree_compare_integer_csts (splay_tree_key k1, splay_tree_key k2)
6104 return tree_int_cst_compare ((tree) k1, (tree) k2);
6107 /* Increase the size indicated in RLI to account for empty classes
6108 that are "off the end" of the class. */
6110 static void
6111 include_empty_classes (record_layout_info rli)
6113 tree eoc;
6114 tree rli_size;
6116 /* It might be the case that we grew the class to allocate a
6117 zero-sized base class. That won't be reflected in RLI, yet,
6118 because we are willing to overlay multiple bases at the same
6119 offset. However, now we need to make sure that RLI is big enough
6120 to reflect the entire class. */
6121 eoc = end_of_class (rli->t,
6122 CLASSTYPE_AS_BASE (rli->t) != NULL_TREE);
6123 rli_size = rli_size_unit_so_far (rli);
6124 if (TREE_CODE (rli_size) == INTEGER_CST
6125 && tree_int_cst_lt (rli_size, eoc))
6127 /* The size should have been rounded to a whole byte. */
6128 gcc_assert (tree_int_cst_equal
6129 (rli->bitpos, round_down (rli->bitpos, BITS_PER_UNIT)));
6130 rli->bitpos
6131 = size_binop (PLUS_EXPR,
6132 rli->bitpos,
6133 size_binop (MULT_EXPR,
6134 convert (bitsizetype,
6135 size_binop (MINUS_EXPR,
6136 eoc, rli_size)),
6137 bitsize_int (BITS_PER_UNIT)));
6138 normalize_rli (rli);
6142 /* Calculate the TYPE_SIZE, TYPE_ALIGN, etc for T. Calculate
6143 BINFO_OFFSETs for all of the base-classes. Position the vtable
6144 pointer. Accumulate declared virtual functions on VIRTUALS_P. */
6146 static void
6147 layout_class_type (tree t, tree *virtuals_p)
6149 tree non_static_data_members;
6150 tree field;
6151 tree vptr;
6152 record_layout_info rli;
6153 /* Maps offsets (represented as INTEGER_CSTs) to a TREE_LIST of
6154 types that appear at that offset. */
6155 splay_tree empty_base_offsets;
6156 /* True if the last field laid out was a bit-field. */
6157 bool last_field_was_bitfield = false;
6158 /* The location at which the next field should be inserted. */
6159 tree *next_field;
6160 /* T, as a base class. */
6161 tree base_t;
6163 /* Keep track of the first non-static data member. */
6164 non_static_data_members = TYPE_FIELDS (t);
6166 /* Start laying out the record. */
6167 rli = start_record_layout (t);
6169 /* Mark all the primary bases in the hierarchy. */
6170 determine_primary_bases (t);
6172 /* Create a pointer to our virtual function table. */
6173 vptr = create_vtable_ptr (t, virtuals_p);
6175 /* The vptr is always the first thing in the class. */
6176 if (vptr)
6178 DECL_CHAIN (vptr) = TYPE_FIELDS (t);
6179 TYPE_FIELDS (t) = vptr;
6180 next_field = &DECL_CHAIN (vptr);
6181 place_field (rli, vptr);
6183 else
6184 next_field = &TYPE_FIELDS (t);
6186 /* Build FIELD_DECLs for all of the non-virtual base-types. */
6187 empty_base_offsets = splay_tree_new (splay_tree_compare_integer_csts,
6188 NULL, NULL);
6189 build_base_fields (rli, empty_base_offsets, next_field);
6191 /* Layout the non-static data members. */
6192 for (field = non_static_data_members; field; field = DECL_CHAIN (field))
6194 tree type;
6195 tree padding;
6197 /* We still pass things that aren't non-static data members to
6198 the back end, in case it wants to do something with them. */
6199 if (TREE_CODE (field) != FIELD_DECL)
6201 place_field (rli, field);
6202 /* If the static data member has incomplete type, keep track
6203 of it so that it can be completed later. (The handling
6204 of pending statics in finish_record_layout is
6205 insufficient; consider:
6207 struct S1;
6208 struct S2 { static S1 s1; };
6210 At this point, finish_record_layout will be called, but
6211 S1 is still incomplete.) */
6212 if (VAR_P (field))
6214 maybe_register_incomplete_var (field);
6215 /* The visibility of static data members is determined
6216 at their point of declaration, not their point of
6217 definition. */
6218 determine_visibility (field);
6220 continue;
6223 type = TREE_TYPE (field);
6224 if (type == error_mark_node)
6225 continue;
6227 padding = NULL_TREE;
6229 /* If this field is a bit-field whose width is greater than its
6230 type, then there are some special rules for allocating
6231 it. */
6232 if (DECL_C_BIT_FIELD (field)
6233 && tree_int_cst_lt (TYPE_SIZE (type), DECL_SIZE (field)))
6235 unsigned int itk;
6236 tree integer_type;
6237 bool was_unnamed_p = false;
6238 /* We must allocate the bits as if suitably aligned for the
6239 longest integer type that fits in this many bits. type
6240 of the field. Then, we are supposed to use the left over
6241 bits as additional padding. */
6242 for (itk = itk_char; itk != itk_none; ++itk)
6243 if (integer_types[itk] != NULL_TREE
6244 && (tree_int_cst_lt (size_int (MAX_FIXED_MODE_SIZE),
6245 TYPE_SIZE (integer_types[itk]))
6246 || tree_int_cst_lt (DECL_SIZE (field),
6247 TYPE_SIZE (integer_types[itk]))))
6248 break;
6250 /* ITK now indicates a type that is too large for the
6251 field. We have to back up by one to find the largest
6252 type that fits. */
6255 --itk;
6256 integer_type = integer_types[itk];
6257 } while (itk > 0 && integer_type == NULL_TREE);
6259 /* Figure out how much additional padding is required. */
6260 if (tree_int_cst_lt (TYPE_SIZE (integer_type), DECL_SIZE (field)))
6262 if (TREE_CODE (t) == UNION_TYPE)
6263 /* In a union, the padding field must have the full width
6264 of the bit-field; all fields start at offset zero. */
6265 padding = DECL_SIZE (field);
6266 else
6267 padding = size_binop (MINUS_EXPR, DECL_SIZE (field),
6268 TYPE_SIZE (integer_type));
6271 /* An unnamed bitfield does not normally affect the
6272 alignment of the containing class on a target where
6273 PCC_BITFIELD_TYPE_MATTERS. But, the C++ ABI does not
6274 make any exceptions for unnamed bitfields when the
6275 bitfields are longer than their types. Therefore, we
6276 temporarily give the field a name. */
6277 if (PCC_BITFIELD_TYPE_MATTERS && !DECL_NAME (field))
6279 was_unnamed_p = true;
6280 DECL_NAME (field) = make_anon_name ();
6283 DECL_SIZE (field) = TYPE_SIZE (integer_type);
6284 DECL_ALIGN (field) = TYPE_ALIGN (integer_type);
6285 DECL_USER_ALIGN (field) = TYPE_USER_ALIGN (integer_type);
6286 layout_nonempty_base_or_field (rli, field, NULL_TREE,
6287 empty_base_offsets);
6288 if (was_unnamed_p)
6289 DECL_NAME (field) = NULL_TREE;
6290 /* Now that layout has been performed, set the size of the
6291 field to the size of its declared type; the rest of the
6292 field is effectively invisible. */
6293 DECL_SIZE (field) = TYPE_SIZE (type);
6294 /* We must also reset the DECL_MODE of the field. */
6295 DECL_MODE (field) = TYPE_MODE (type);
6297 else
6298 layout_nonempty_base_or_field (rli, field, NULL_TREE,
6299 empty_base_offsets);
6301 /* Remember the location of any empty classes in FIELD. */
6302 record_subobject_offsets (TREE_TYPE (field),
6303 byte_position(field),
6304 empty_base_offsets,
6305 /*is_data_member=*/true);
6307 /* If a bit-field does not immediately follow another bit-field,
6308 and yet it starts in the middle of a byte, we have failed to
6309 comply with the ABI. */
6310 if (warn_abi
6311 && DECL_C_BIT_FIELD (field)
6312 /* The TREE_NO_WARNING flag gets set by Objective-C when
6313 laying out an Objective-C class. The ObjC ABI differs
6314 from the C++ ABI, and so we do not want a warning
6315 here. */
6316 && !TREE_NO_WARNING (field)
6317 && !last_field_was_bitfield
6318 && !integer_zerop (size_binop (TRUNC_MOD_EXPR,
6319 DECL_FIELD_BIT_OFFSET (field),
6320 bitsize_unit_node)))
6321 warning (OPT_Wabi, "offset of %q+D is not ABI-compliant and may "
6322 "change in a future version of GCC", field);
6324 /* The middle end uses the type of expressions to determine the
6325 possible range of expression values. In order to optimize
6326 "x.i > 7" to "false" for a 2-bit bitfield "i", the middle end
6327 must be made aware of the width of "i", via its type.
6329 Because C++ does not have integer types of arbitrary width,
6330 we must (for the purposes of the front end) convert from the
6331 type assigned here to the declared type of the bitfield
6332 whenever a bitfield expression is used as an rvalue.
6333 Similarly, when assigning a value to a bitfield, the value
6334 must be converted to the type given the bitfield here. */
6335 if (DECL_C_BIT_FIELD (field))
6337 unsigned HOST_WIDE_INT width;
6338 tree ftype = TREE_TYPE (field);
6339 width = tree_to_uhwi (DECL_SIZE (field));
6340 if (width != TYPE_PRECISION (ftype))
6342 TREE_TYPE (field)
6343 = c_build_bitfield_integer_type (width,
6344 TYPE_UNSIGNED (ftype));
6345 TREE_TYPE (field)
6346 = cp_build_qualified_type (TREE_TYPE (field),
6347 cp_type_quals (ftype));
6351 /* If we needed additional padding after this field, add it
6352 now. */
6353 if (padding)
6355 tree padding_field;
6357 padding_field = build_decl (input_location,
6358 FIELD_DECL,
6359 NULL_TREE,
6360 char_type_node);
6361 DECL_BIT_FIELD (padding_field) = 1;
6362 DECL_SIZE (padding_field) = padding;
6363 DECL_CONTEXT (padding_field) = t;
6364 DECL_ARTIFICIAL (padding_field) = 1;
6365 DECL_IGNORED_P (padding_field) = 1;
6366 layout_nonempty_base_or_field (rli, padding_field,
6367 NULL_TREE,
6368 empty_base_offsets);
6371 last_field_was_bitfield = DECL_C_BIT_FIELD (field);
6374 if (!integer_zerop (rli->bitpos))
6376 /* Make sure that we are on a byte boundary so that the size of
6377 the class without virtual bases will always be a round number
6378 of bytes. */
6379 rli->bitpos = round_up_loc (input_location, rli->bitpos, BITS_PER_UNIT);
6380 normalize_rli (rli);
6383 /* Delete all zero-width bit-fields from the list of fields. Now
6384 that the type is laid out they are no longer important. */
6385 remove_zero_width_bit_fields (t);
6387 /* Create the version of T used for virtual bases. We do not use
6388 make_class_type for this version; this is an artificial type. For
6389 a POD type, we just reuse T. */
6390 if (CLASSTYPE_NON_LAYOUT_POD_P (t) || CLASSTYPE_EMPTY_P (t))
6392 base_t = make_node (TREE_CODE (t));
6394 /* Set the size and alignment for the new type. */
6395 tree eoc;
6397 /* If the ABI version is not at least two, and the last
6398 field was a bit-field, RLI may not be on a byte
6399 boundary. In particular, rli_size_unit_so_far might
6400 indicate the last complete byte, while rli_size_so_far
6401 indicates the total number of bits used. Therefore,
6402 rli_size_so_far, rather than rli_size_unit_so_far, is
6403 used to compute TYPE_SIZE_UNIT. */
6404 eoc = end_of_class (t, /*include_virtuals_p=*/0);
6405 TYPE_SIZE_UNIT (base_t)
6406 = size_binop (MAX_EXPR,
6407 convert (sizetype,
6408 size_binop (CEIL_DIV_EXPR,
6409 rli_size_so_far (rli),
6410 bitsize_int (BITS_PER_UNIT))),
6411 eoc);
6412 TYPE_SIZE (base_t)
6413 = size_binop (MAX_EXPR,
6414 rli_size_so_far (rli),
6415 size_binop (MULT_EXPR,
6416 convert (bitsizetype, eoc),
6417 bitsize_int (BITS_PER_UNIT)));
6418 TYPE_ALIGN (base_t) = rli->record_align;
6419 TYPE_USER_ALIGN (base_t) = TYPE_USER_ALIGN (t);
6421 /* Copy the fields from T. */
6422 next_field = &TYPE_FIELDS (base_t);
6423 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
6424 if (TREE_CODE (field) == FIELD_DECL)
6426 *next_field = build_decl (input_location,
6427 FIELD_DECL,
6428 DECL_NAME (field),
6429 TREE_TYPE (field));
6430 DECL_CONTEXT (*next_field) = base_t;
6431 DECL_FIELD_OFFSET (*next_field) = DECL_FIELD_OFFSET (field);
6432 DECL_FIELD_BIT_OFFSET (*next_field)
6433 = DECL_FIELD_BIT_OFFSET (field);
6434 DECL_SIZE (*next_field) = DECL_SIZE (field);
6435 DECL_MODE (*next_field) = DECL_MODE (field);
6436 next_field = &DECL_CHAIN (*next_field);
6439 /* Record the base version of the type. */
6440 CLASSTYPE_AS_BASE (t) = base_t;
6441 TYPE_CONTEXT (base_t) = t;
6443 else
6444 CLASSTYPE_AS_BASE (t) = t;
6446 /* Every empty class contains an empty class. */
6447 if (CLASSTYPE_EMPTY_P (t))
6448 CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t) = 1;
6450 /* Set the TYPE_DECL for this type to contain the right
6451 value for DECL_OFFSET, so that we can use it as part
6452 of a COMPONENT_REF for multiple inheritance. */
6453 layout_decl (TYPE_MAIN_DECL (t), 0);
6455 /* Now fix up any virtual base class types that we left lying
6456 around. We must get these done before we try to lay out the
6457 virtual function table. As a side-effect, this will remove the
6458 base subobject fields. */
6459 layout_virtual_bases (rli, empty_base_offsets);
6461 /* Make sure that empty classes are reflected in RLI at this
6462 point. */
6463 include_empty_classes(rli);
6465 /* Make sure not to create any structures with zero size. */
6466 if (integer_zerop (rli_size_unit_so_far (rli)) && CLASSTYPE_EMPTY_P (t))
6467 place_field (rli,
6468 build_decl (input_location,
6469 FIELD_DECL, NULL_TREE, char_type_node));
6471 /* If this is a non-POD, declaring it packed makes a difference to how it
6472 can be used as a field; don't let finalize_record_size undo it. */
6473 if (TYPE_PACKED (t) && !layout_pod_type_p (t))
6474 rli->packed_maybe_necessary = true;
6476 /* Let the back end lay out the type. */
6477 finish_record_layout (rli, /*free_p=*/true);
6479 if (TYPE_SIZE_UNIT (t)
6480 && TREE_CODE (TYPE_SIZE_UNIT (t)) == INTEGER_CST
6481 && !TREE_OVERFLOW (TYPE_SIZE_UNIT (t))
6482 && !valid_constant_size_p (TYPE_SIZE_UNIT (t)))
6483 error ("type %qT is too large", t);
6485 /* Warn about bases that can't be talked about due to ambiguity. */
6486 warn_about_ambiguous_bases (t);
6488 /* Now that we're done with layout, give the base fields the real types. */
6489 for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
6490 if (DECL_ARTIFICIAL (field) && IS_FAKE_BASE_TYPE (TREE_TYPE (field)))
6491 TREE_TYPE (field) = TYPE_CONTEXT (TREE_TYPE (field));
6493 /* Clean up. */
6494 splay_tree_delete (empty_base_offsets);
6496 if (CLASSTYPE_EMPTY_P (t)
6497 && tree_int_cst_lt (sizeof_biggest_empty_class,
6498 TYPE_SIZE_UNIT (t)))
6499 sizeof_biggest_empty_class = TYPE_SIZE_UNIT (t);
6502 /* Determine the "key method" for the class type indicated by TYPE,
6503 and set CLASSTYPE_KEY_METHOD accordingly. */
6505 void
6506 determine_key_method (tree type)
6508 tree method;
6510 if (TYPE_FOR_JAVA (type)
6511 || processing_template_decl
6512 || CLASSTYPE_TEMPLATE_INSTANTIATION (type)
6513 || CLASSTYPE_INTERFACE_KNOWN (type))
6514 return;
6516 /* The key method is the first non-pure virtual function that is not
6517 inline at the point of class definition. On some targets the
6518 key function may not be inline; those targets should not call
6519 this function until the end of the translation unit. */
6520 for (method = TYPE_METHODS (type); method != NULL_TREE;
6521 method = DECL_CHAIN (method))
6522 if (TREE_CODE (method) == FUNCTION_DECL
6523 && DECL_VINDEX (method) != NULL_TREE
6524 && ! DECL_DECLARED_INLINE_P (method)
6525 && ! DECL_PURE_VIRTUAL_P (method))
6527 CLASSTYPE_KEY_METHOD (type) = method;
6528 break;
6531 return;
6535 /* Allocate and return an instance of struct sorted_fields_type with
6536 N fields. */
6538 static struct sorted_fields_type *
6539 sorted_fields_type_new (int n)
6541 struct sorted_fields_type *sft;
6542 sft = (sorted_fields_type *) ggc_internal_alloc (sizeof (sorted_fields_type)
6543 + n * sizeof (tree));
6544 sft->len = n;
6546 return sft;
6550 /* Perform processing required when the definition of T (a class type)
6551 is complete. */
6553 void
6554 finish_struct_1 (tree t)
6556 tree x;
6557 /* A TREE_LIST. The TREE_VALUE of each node is a FUNCTION_DECL. */
6558 tree virtuals = NULL_TREE;
6560 if (COMPLETE_TYPE_P (t))
6562 gcc_assert (MAYBE_CLASS_TYPE_P (t));
6563 error ("redefinition of %q#T", t);
6564 popclass ();
6565 return;
6568 /* If this type was previously laid out as a forward reference,
6569 make sure we lay it out again. */
6570 TYPE_SIZE (t) = NULL_TREE;
6571 CLASSTYPE_PRIMARY_BINFO (t) = NULL_TREE;
6573 /* Make assumptions about the class; we'll reset the flags if
6574 necessary. */
6575 CLASSTYPE_EMPTY_P (t) = 1;
6576 CLASSTYPE_NEARLY_EMPTY_P (t) = 1;
6577 CLASSTYPE_CONTAINS_EMPTY_CLASS_P (t) = 0;
6578 CLASSTYPE_LITERAL_P (t) = true;
6580 /* Do end-of-class semantic processing: checking the validity of the
6581 bases and members and add implicitly generated methods. */
6582 check_bases_and_members (t);
6584 /* Find the key method. */
6585 if (TYPE_CONTAINS_VPTR_P (t))
6587 /* The Itanium C++ ABI permits the key method to be chosen when
6588 the class is defined -- even though the key method so
6589 selected may later turn out to be an inline function. On
6590 some systems (such as ARM Symbian OS) the key method cannot
6591 be determined until the end of the translation unit. On such
6592 systems, we leave CLASSTYPE_KEY_METHOD set to NULL, which
6593 will cause the class to be added to KEYED_CLASSES. Then, in
6594 finish_file we will determine the key method. */
6595 if (targetm.cxx.key_method_may_be_inline ())
6596 determine_key_method (t);
6598 /* If a polymorphic class has no key method, we may emit the vtable
6599 in every translation unit where the class definition appears. If
6600 we're devirtualizing, we can look into the vtable even if we
6601 aren't emitting it. */
6602 if (CLASSTYPE_KEY_METHOD (t) == NULL_TREE)
6603 keyed_classes = tree_cons (NULL_TREE, t, keyed_classes);
6606 /* Layout the class itself. */
6607 layout_class_type (t, &virtuals);
6608 if (CLASSTYPE_AS_BASE (t) != t)
6609 /* We use the base type for trivial assignments, and hence it
6610 needs a mode. */
6611 compute_record_mode (CLASSTYPE_AS_BASE (t));
6613 virtuals = modify_all_vtables (t, nreverse (virtuals));
6615 /* If necessary, create the primary vtable for this class. */
6616 if (virtuals || TYPE_CONTAINS_VPTR_P (t))
6618 /* We must enter these virtuals into the table. */
6619 if (!CLASSTYPE_HAS_PRIMARY_BASE_P (t))
6620 build_primary_vtable (NULL_TREE, t);
6621 else if (! BINFO_NEW_VTABLE_MARKED (TYPE_BINFO (t)))
6622 /* Here we know enough to change the type of our virtual
6623 function table, but we will wait until later this function. */
6624 build_primary_vtable (CLASSTYPE_PRIMARY_BINFO (t), t);
6626 /* If we're warning about ABI tags, check the types of the new
6627 virtual functions. */
6628 if (warn_abi_tag)
6629 for (tree v = virtuals; v; v = TREE_CHAIN (v))
6630 check_abi_tags (t, TREE_VALUE (v));
6633 if (TYPE_CONTAINS_VPTR_P (t))
6635 int vindex;
6636 tree fn;
6638 if (BINFO_VTABLE (TYPE_BINFO (t)))
6639 gcc_assert (DECL_VIRTUAL_P (BINFO_VTABLE (TYPE_BINFO (t))));
6640 if (!CLASSTYPE_HAS_PRIMARY_BASE_P (t))
6641 gcc_assert (BINFO_VIRTUALS (TYPE_BINFO (t)) == NULL_TREE);
6643 /* Add entries for virtual functions introduced by this class. */
6644 BINFO_VIRTUALS (TYPE_BINFO (t))
6645 = chainon (BINFO_VIRTUALS (TYPE_BINFO (t)), virtuals);
6647 /* Set DECL_VINDEX for all functions declared in this class. */
6648 for (vindex = 0, fn = BINFO_VIRTUALS (TYPE_BINFO (t));
6650 fn = TREE_CHAIN (fn),
6651 vindex += (TARGET_VTABLE_USES_DESCRIPTORS
6652 ? TARGET_VTABLE_USES_DESCRIPTORS : 1))
6654 tree fndecl = BV_FN (fn);
6656 if (DECL_THUNK_P (fndecl))
6657 /* A thunk. We should never be calling this entry directly
6658 from this vtable -- we'd use the entry for the non
6659 thunk base function. */
6660 DECL_VINDEX (fndecl) = NULL_TREE;
6661 else if (TREE_CODE (DECL_VINDEX (fndecl)) != INTEGER_CST)
6662 DECL_VINDEX (fndecl) = build_int_cst (NULL_TREE, vindex);
6666 finish_struct_bits (t);
6667 set_method_tm_attributes (t);
6669 /* Complete the rtl for any static member objects of the type we're
6670 working on. */
6671 for (x = TYPE_FIELDS (t); x; x = DECL_CHAIN (x))
6672 if (VAR_P (x) && TREE_STATIC (x)
6673 && TREE_TYPE (x) != error_mark_node
6674 && same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (x)), t))
6675 DECL_MODE (x) = TYPE_MODE (t);
6676 else if (TYPE_REVERSE_STORAGE_ORDER (t)
6677 && TREE_CODE (x) == FIELD_DECL
6678 && TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
6680 tree ftype = TREE_TYPE (x);
6682 ftype = TREE_TYPE (ftype);
6683 while (TREE_CODE (ftype) == ARRAY_TYPE);
6684 if (!RECORD_OR_UNION_TYPE_P (ftype))
6686 tree *ftypep = &TREE_TYPE (x);
6687 do {
6688 *ftypep = build_distinct_type_copy (*ftypep);
6689 TYPE_REVERSE_STORAGE_ORDER (*ftypep) = 1;
6690 ftypep = &TREE_TYPE (*ftypep);
6691 } while (TREE_CODE (*ftypep) == ARRAY_TYPE);
6695 /* Done with FIELDS...now decide whether to sort these for
6696 faster lookups later.
6698 We use a small number because most searches fail (succeeding
6699 ultimately as the search bores through the inheritance
6700 hierarchy), and we want this failure to occur quickly. */
6702 insert_into_classtype_sorted_fields (TYPE_FIELDS (t), t, 8);
6704 /* Complain if one of the field types requires lower visibility. */
6705 constrain_class_visibility (t);
6707 /* Make the rtl for any new vtables we have created, and unmark
6708 the base types we marked. */
6709 finish_vtbls (t);
6711 /* Build the VTT for T. */
6712 build_vtt (t);
6714 /* This warning does not make sense for Java classes, since they
6715 cannot have destructors. */
6716 if (!TYPE_FOR_JAVA (t) && warn_nonvdtor
6717 && TYPE_POLYMORPHIC_P (t) && accessible_nvdtor_p (t)
6718 && !CLASSTYPE_FINAL (t))
6719 warning (OPT_Wnon_virtual_dtor,
6720 "%q#T has virtual functions and accessible"
6721 " non-virtual destructor", t);
6723 complete_vars (t);
6725 if (warn_overloaded_virtual)
6726 warn_hidden (t);
6728 /* Class layout, assignment of virtual table slots, etc., is now
6729 complete. Give the back end a chance to tweak the visibility of
6730 the class or perform any other required target modifications. */
6731 targetm.cxx.adjust_class_at_definition (t);
6733 maybe_suppress_debug_info (t);
6735 if (flag_vtable_verify)
6736 vtv_save_class_info (t);
6738 dump_class_hierarchy (t);
6740 /* Finish debugging output for this type. */
6741 rest_of_type_compilation (t, ! LOCAL_CLASS_P (t));
6743 if (TYPE_TRANSPARENT_AGGR (t))
6745 tree field = first_field (t);
6746 if (field == NULL_TREE || error_operand_p (field))
6748 error ("type transparent %q#T does not have any fields", t);
6749 TYPE_TRANSPARENT_AGGR (t) = 0;
6751 else if (DECL_ARTIFICIAL (field))
6753 if (DECL_FIELD_IS_BASE (field))
6754 error ("type transparent class %qT has base classes", t);
6755 else
6757 gcc_checking_assert (DECL_VIRTUAL_P (field));
6758 error ("type transparent class %qT has virtual functions", t);
6760 TYPE_TRANSPARENT_AGGR (t) = 0;
6762 else if (TYPE_MODE (t) != DECL_MODE (field))
6764 error ("type transparent %q#T cannot be made transparent because "
6765 "the type of the first field has a different ABI from the "
6766 "class overall", t);
6767 TYPE_TRANSPARENT_AGGR (t) = 0;
6772 /* Insert FIELDS into T for the sorted case if the FIELDS count is
6773 equal to THRESHOLD or greater than THRESHOLD. */
6775 static void
6776 insert_into_classtype_sorted_fields (tree fields, tree t, int threshold)
6778 int n_fields = count_fields (fields);
6779 if (n_fields >= threshold)
6781 struct sorted_fields_type *field_vec = sorted_fields_type_new (n_fields);
6782 add_fields_to_record_type (fields, field_vec, 0);
6783 qsort (field_vec->elts, n_fields, sizeof (tree), field_decl_cmp);
6784 CLASSTYPE_SORTED_FIELDS (t) = field_vec;
6788 /* Insert lately defined enum ENUMTYPE into T for the sorted case. */
6790 void
6791 insert_late_enum_def_into_classtype_sorted_fields (tree enumtype, tree t)
6793 struct sorted_fields_type *sorted_fields = CLASSTYPE_SORTED_FIELDS (t);
6794 if (sorted_fields)
6796 int i;
6797 int n_fields
6798 = list_length (TYPE_VALUES (enumtype)) + sorted_fields->len;
6799 struct sorted_fields_type *field_vec = sorted_fields_type_new (n_fields);
6801 for (i = 0; i < sorted_fields->len; ++i)
6802 field_vec->elts[i] = sorted_fields->elts[i];
6804 add_enum_fields_to_record_type (enumtype, field_vec,
6805 sorted_fields->len);
6806 qsort (field_vec->elts, n_fields, sizeof (tree), field_decl_cmp);
6807 CLASSTYPE_SORTED_FIELDS (t) = field_vec;
6811 /* When T was built up, the member declarations were added in reverse
6812 order. Rearrange them to declaration order. */
6814 void
6815 unreverse_member_declarations (tree t)
6817 tree next;
6818 tree prev;
6819 tree x;
6821 /* The following lists are all in reverse order. Put them in
6822 declaration order now. */
6823 TYPE_METHODS (t) = nreverse (TYPE_METHODS (t));
6824 CLASSTYPE_DECL_LIST (t) = nreverse (CLASSTYPE_DECL_LIST (t));
6826 /* Actually, for the TYPE_FIELDS, only the non TYPE_DECLs are in
6827 reverse order, so we can't just use nreverse. */
6828 prev = NULL_TREE;
6829 for (x = TYPE_FIELDS (t);
6830 x && TREE_CODE (x) != TYPE_DECL;
6831 x = next)
6833 next = DECL_CHAIN (x);
6834 DECL_CHAIN (x) = prev;
6835 prev = x;
6837 if (prev)
6839 DECL_CHAIN (TYPE_FIELDS (t)) = x;
6840 if (prev)
6841 TYPE_FIELDS (t) = prev;
6845 tree
6846 finish_struct (tree t, tree attributes)
6848 location_t saved_loc = input_location;
6850 /* Now that we've got all the field declarations, reverse everything
6851 as necessary. */
6852 unreverse_member_declarations (t);
6854 cplus_decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
6856 /* Nadger the current location so that diagnostics point to the start of
6857 the struct, not the end. */
6858 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (t));
6860 if (processing_template_decl)
6862 tree x;
6864 finish_struct_methods (t);
6865 TYPE_SIZE (t) = bitsize_zero_node;
6866 TYPE_SIZE_UNIT (t) = size_zero_node;
6868 /* We need to emit an error message if this type was used as a parameter
6869 and it is an abstract type, even if it is a template. We construct
6870 a simple CLASSTYPE_PURE_VIRTUALS list without taking bases into
6871 account and we call complete_vars with this type, which will check
6872 the PARM_DECLS. Note that while the type is being defined,
6873 CLASSTYPE_PURE_VIRTUALS contains the list of the inline friends
6874 (see CLASSTYPE_INLINE_FRIENDS) so we need to clear it. */
6875 CLASSTYPE_PURE_VIRTUALS (t) = NULL;
6876 for (x = TYPE_METHODS (t); x; x = DECL_CHAIN (x))
6877 if (DECL_PURE_VIRTUAL_P (x))
6878 vec_safe_push (CLASSTYPE_PURE_VIRTUALS (t), x);
6879 complete_vars (t);
6880 /* We need to add the target functions to the CLASSTYPE_METHOD_VEC if
6881 an enclosing scope is a template class, so that this function be
6882 found by lookup_fnfields_1 when the using declaration is not
6883 instantiated yet. */
6884 for (x = TYPE_FIELDS (t); x; x = DECL_CHAIN (x))
6885 if (TREE_CODE (x) == USING_DECL)
6887 tree fn = strip_using_decl (x);
6888 if (is_overloaded_fn (fn))
6889 for (; fn; fn = OVL_NEXT (fn))
6890 add_method (t, OVL_CURRENT (fn), x);
6893 /* Remember current #pragma pack value. */
6894 TYPE_PRECISION (t) = maximum_field_alignment;
6896 /* Fix up any variants we've already built. */
6897 for (x = TYPE_NEXT_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
6899 TYPE_SIZE (x) = TYPE_SIZE (t);
6900 TYPE_SIZE_UNIT (x) = TYPE_SIZE_UNIT (t);
6901 TYPE_FIELDS (x) = TYPE_FIELDS (t);
6902 TYPE_METHODS (x) = TYPE_METHODS (t);
6905 else
6906 finish_struct_1 (t);
6908 if (is_std_init_list (t))
6910 /* People keep complaining that the compiler crashes on an invalid
6911 definition of initializer_list, so I guess we should explicitly
6912 reject it. What the compiler internals care about is that it's a
6913 template and has a pointer field followed by an integer field. */
6914 bool ok = false;
6915 if (processing_template_decl)
6917 tree f = next_initializable_field (TYPE_FIELDS (t));
6918 if (f && TREE_CODE (TREE_TYPE (f)) == POINTER_TYPE)
6920 f = next_initializable_field (DECL_CHAIN (f));
6921 if (f && same_type_p (TREE_TYPE (f), size_type_node))
6922 ok = true;
6925 if (!ok)
6926 fatal_error (input_location,
6927 "definition of std::initializer_list does not match "
6928 "#include <initializer_list>");
6931 input_location = saved_loc;
6933 TYPE_BEING_DEFINED (t) = 0;
6935 if (current_class_type)
6936 popclass ();
6937 else
6938 error ("trying to finish struct, but kicked out due to previous parse errors");
6940 if (processing_template_decl && at_function_scope_p ()
6941 /* Lambdas are defined by the LAMBDA_EXPR. */
6942 && !LAMBDA_TYPE_P (t))
6943 add_stmt (build_min (TAG_DEFN, t));
6945 return t;
6948 /* Hash table to avoid endless recursion when handling references. */
6949 static hash_table<pointer_hash<tree_node> > *fixed_type_or_null_ref_ht;
6951 /* Return the dynamic type of INSTANCE, if known.
6952 Used to determine whether the virtual function table is needed
6953 or not.
6955 *NONNULL is set iff INSTANCE can be known to be nonnull, regardless
6956 of our knowledge of its type. *NONNULL should be initialized
6957 before this function is called. */
6959 static tree
6960 fixed_type_or_null (tree instance, int *nonnull, int *cdtorp)
6962 #define RECUR(T) fixed_type_or_null((T), nonnull, cdtorp)
6964 switch (TREE_CODE (instance))
6966 case INDIRECT_REF:
6967 if (POINTER_TYPE_P (TREE_TYPE (instance)))
6968 return NULL_TREE;
6969 else
6970 return RECUR (TREE_OPERAND (instance, 0));
6972 case CALL_EXPR:
6973 /* This is a call to a constructor, hence it's never zero. */
6974 if (TREE_HAS_CONSTRUCTOR (instance))
6976 if (nonnull)
6977 *nonnull = 1;
6978 return TREE_TYPE (instance);
6980 return NULL_TREE;
6982 case SAVE_EXPR:
6983 /* This is a call to a constructor, hence it's never zero. */
6984 if (TREE_HAS_CONSTRUCTOR (instance))
6986 if (nonnull)
6987 *nonnull = 1;
6988 return TREE_TYPE (instance);
6990 return RECUR (TREE_OPERAND (instance, 0));
6992 case POINTER_PLUS_EXPR:
6993 case PLUS_EXPR:
6994 case MINUS_EXPR:
6995 if (TREE_CODE (TREE_OPERAND (instance, 0)) == ADDR_EXPR)
6996 return RECUR (TREE_OPERAND (instance, 0));
6997 if (TREE_CODE (TREE_OPERAND (instance, 1)) == INTEGER_CST)
6998 /* Propagate nonnull. */
6999 return RECUR (TREE_OPERAND (instance, 0));
7001 return NULL_TREE;
7003 CASE_CONVERT:
7004 return RECUR (TREE_OPERAND (instance, 0));
7006 case ADDR_EXPR:
7007 instance = TREE_OPERAND (instance, 0);
7008 if (nonnull)
7010 /* Just because we see an ADDR_EXPR doesn't mean we're dealing
7011 with a real object -- given &p->f, p can still be null. */
7012 tree t = get_base_address (instance);
7013 /* ??? Probably should check DECL_WEAK here. */
7014 if (t && DECL_P (t))
7015 *nonnull = 1;
7017 return RECUR (instance);
7019 case COMPONENT_REF:
7020 /* If this component is really a base class reference, then the field
7021 itself isn't definitive. */
7022 if (DECL_FIELD_IS_BASE (TREE_OPERAND (instance, 1)))
7023 return RECUR (TREE_OPERAND (instance, 0));
7024 return RECUR (TREE_OPERAND (instance, 1));
7026 case VAR_DECL:
7027 case FIELD_DECL:
7028 if (TREE_CODE (TREE_TYPE (instance)) == ARRAY_TYPE
7029 && MAYBE_CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (instance))))
7031 if (nonnull)
7032 *nonnull = 1;
7033 return TREE_TYPE (TREE_TYPE (instance));
7035 /* fall through... */
7036 case TARGET_EXPR:
7037 case PARM_DECL:
7038 case RESULT_DECL:
7039 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (instance)))
7041 if (nonnull)
7042 *nonnull = 1;
7043 return TREE_TYPE (instance);
7045 else if (instance == current_class_ptr)
7047 if (nonnull)
7048 *nonnull = 1;
7050 /* if we're in a ctor or dtor, we know our type. If
7051 current_class_ptr is set but we aren't in a function, we're in
7052 an NSDMI (and therefore a constructor). */
7053 if (current_scope () != current_function_decl
7054 || (DECL_LANG_SPECIFIC (current_function_decl)
7055 && (DECL_CONSTRUCTOR_P (current_function_decl)
7056 || DECL_DESTRUCTOR_P (current_function_decl))))
7058 if (cdtorp)
7059 *cdtorp = 1;
7060 return TREE_TYPE (TREE_TYPE (instance));
7063 else if (TREE_CODE (TREE_TYPE (instance)) == REFERENCE_TYPE)
7065 /* We only need one hash table because it is always left empty. */
7066 if (!fixed_type_or_null_ref_ht)
7067 fixed_type_or_null_ref_ht
7068 = new hash_table<pointer_hash<tree_node> > (37);
7070 /* Reference variables should be references to objects. */
7071 if (nonnull)
7072 *nonnull = 1;
7074 /* Enter the INSTANCE in a table to prevent recursion; a
7075 variable's initializer may refer to the variable
7076 itself. */
7077 if (VAR_P (instance)
7078 && DECL_INITIAL (instance)
7079 && !type_dependent_expression_p_push (DECL_INITIAL (instance))
7080 && !fixed_type_or_null_ref_ht->find (instance))
7082 tree type;
7083 tree_node **slot;
7085 slot = fixed_type_or_null_ref_ht->find_slot (instance, INSERT);
7086 *slot = instance;
7087 type = RECUR (DECL_INITIAL (instance));
7088 fixed_type_or_null_ref_ht->remove_elt (instance);
7090 return type;
7093 return NULL_TREE;
7095 default:
7096 return NULL_TREE;
7098 #undef RECUR
7101 /* Return nonzero if the dynamic type of INSTANCE is known, and
7102 equivalent to the static type. We also handle the case where
7103 INSTANCE is really a pointer. Return negative if this is a
7104 ctor/dtor. There the dynamic type is known, but this might not be
7105 the most derived base of the original object, and hence virtual
7106 bases may not be laid out according to this type.
7108 Used to determine whether the virtual function table is needed
7109 or not.
7111 *NONNULL is set iff INSTANCE can be known to be nonnull, regardless
7112 of our knowledge of its type. *NONNULL should be initialized
7113 before this function is called. */
7116 resolves_to_fixed_type_p (tree instance, int* nonnull)
7118 tree t = TREE_TYPE (instance);
7119 int cdtorp = 0;
7120 tree fixed;
7122 /* processing_template_decl can be false in a template if we're in
7123 instantiate_non_dependent_expr, but we still want to suppress
7124 this check. */
7125 if (in_template_function ())
7127 /* In a template we only care about the type of the result. */
7128 if (nonnull)
7129 *nonnull = true;
7130 return true;
7133 fixed = fixed_type_or_null (instance, nonnull, &cdtorp);
7134 if (fixed == NULL_TREE)
7135 return 0;
7136 if (POINTER_TYPE_P (t))
7137 t = TREE_TYPE (t);
7138 if (!same_type_ignoring_top_level_qualifiers_p (t, fixed))
7139 return 0;
7140 return cdtorp ? -1 : 1;
7144 void
7145 init_class_processing (void)
7147 current_class_depth = 0;
7148 current_class_stack_size = 10;
7149 current_class_stack
7150 = XNEWVEC (struct class_stack_node, current_class_stack_size);
7151 vec_alloc (local_classes, 8);
7152 sizeof_biggest_empty_class = size_zero_node;
7154 ridpointers[(int) RID_PUBLIC] = access_public_node;
7155 ridpointers[(int) RID_PRIVATE] = access_private_node;
7156 ridpointers[(int) RID_PROTECTED] = access_protected_node;
7159 /* Restore the cached PREVIOUS_CLASS_LEVEL. */
7161 static void
7162 restore_class_cache (void)
7164 tree type;
7166 /* We are re-entering the same class we just left, so we don't
7167 have to search the whole inheritance matrix to find all the
7168 decls to bind again. Instead, we install the cached
7169 class_shadowed list and walk through it binding names. */
7170 push_binding_level (previous_class_level);
7171 class_binding_level = previous_class_level;
7172 /* Restore IDENTIFIER_TYPE_VALUE. */
7173 for (type = class_binding_level->type_shadowed;
7174 type;
7175 type = TREE_CHAIN (type))
7176 SET_IDENTIFIER_TYPE_VALUE (TREE_PURPOSE (type), TREE_TYPE (type));
7179 /* Set global variables CURRENT_CLASS_NAME and CURRENT_CLASS_TYPE as
7180 appropriate for TYPE.
7182 So that we may avoid calls to lookup_name, we cache the _TYPE
7183 nodes of local TYPE_DECLs in the TREE_TYPE field of the name.
7185 For multiple inheritance, we perform a two-pass depth-first search
7186 of the type lattice. */
7188 void
7189 pushclass (tree type)
7191 class_stack_node_t csn;
7193 type = TYPE_MAIN_VARIANT (type);
7195 /* Make sure there is enough room for the new entry on the stack. */
7196 if (current_class_depth + 1 >= current_class_stack_size)
7198 current_class_stack_size *= 2;
7199 current_class_stack
7200 = XRESIZEVEC (struct class_stack_node, current_class_stack,
7201 current_class_stack_size);
7204 /* Insert a new entry on the class stack. */
7205 csn = current_class_stack + current_class_depth;
7206 csn->name = current_class_name;
7207 csn->type = current_class_type;
7208 csn->access = current_access_specifier;
7209 csn->names_used = 0;
7210 csn->hidden = 0;
7211 current_class_depth++;
7213 /* Now set up the new type. */
7214 current_class_name = TYPE_NAME (type);
7215 if (TREE_CODE (current_class_name) == TYPE_DECL)
7216 current_class_name = DECL_NAME (current_class_name);
7217 current_class_type = type;
7219 /* By default, things in classes are private, while things in
7220 structures or unions are public. */
7221 current_access_specifier = (CLASSTYPE_DECLARED_CLASS (type)
7222 ? access_private_node
7223 : access_public_node);
7225 if (previous_class_level
7226 && type != previous_class_level->this_entity
7227 && current_class_depth == 1)
7229 /* Forcibly remove any old class remnants. */
7230 invalidate_class_lookup_cache ();
7233 if (!previous_class_level
7234 || type != previous_class_level->this_entity
7235 || current_class_depth > 1)
7236 pushlevel_class ();
7237 else
7238 restore_class_cache ();
7241 /* When we exit a toplevel class scope, we save its binding level so
7242 that we can restore it quickly. Here, we've entered some other
7243 class, so we must invalidate our cache. */
7245 void
7246 invalidate_class_lookup_cache (void)
7248 previous_class_level = NULL;
7251 /* Get out of the current class scope. If we were in a class scope
7252 previously, that is the one popped to. */
7254 void
7255 popclass (void)
7257 poplevel_class ();
7259 current_class_depth--;
7260 current_class_name = current_class_stack[current_class_depth].name;
7261 current_class_type = current_class_stack[current_class_depth].type;
7262 current_access_specifier = current_class_stack[current_class_depth].access;
7263 if (current_class_stack[current_class_depth].names_used)
7264 splay_tree_delete (current_class_stack[current_class_depth].names_used);
7267 /* Mark the top of the class stack as hidden. */
7269 void
7270 push_class_stack (void)
7272 if (current_class_depth)
7273 ++current_class_stack[current_class_depth - 1].hidden;
7276 /* Mark the top of the class stack as un-hidden. */
7278 void
7279 pop_class_stack (void)
7281 if (current_class_depth)
7282 --current_class_stack[current_class_depth - 1].hidden;
7285 /* Returns 1 if the class type currently being defined is either T or
7286 a nested type of T. */
7288 bool
7289 currently_open_class (tree t)
7291 int i;
7293 if (!CLASS_TYPE_P (t))
7294 return false;
7296 t = TYPE_MAIN_VARIANT (t);
7298 /* We start looking from 1 because entry 0 is from global scope,
7299 and has no type. */
7300 for (i = current_class_depth; i > 0; --i)
7302 tree c;
7303 if (i == current_class_depth)
7304 c = current_class_type;
7305 else
7307 if (current_class_stack[i].hidden)
7308 break;
7309 c = current_class_stack[i].type;
7311 if (!c)
7312 continue;
7313 if (same_type_p (c, t))
7314 return true;
7316 return false;
7319 /* If either current_class_type or one of its enclosing classes are derived
7320 from T, return the appropriate type. Used to determine how we found
7321 something via unqualified lookup. */
7323 tree
7324 currently_open_derived_class (tree t)
7326 int i;
7328 /* The bases of a dependent type are unknown. */
7329 if (dependent_type_p (t))
7330 return NULL_TREE;
7332 if (!current_class_type)
7333 return NULL_TREE;
7335 if (DERIVED_FROM_P (t, current_class_type))
7336 return current_class_type;
7338 for (i = current_class_depth - 1; i > 0; --i)
7340 if (current_class_stack[i].hidden)
7341 break;
7342 if (DERIVED_FROM_P (t, current_class_stack[i].type))
7343 return current_class_stack[i].type;
7346 return NULL_TREE;
7349 /* Return the outermost enclosing class type that is still open, or
7350 NULL_TREE. */
7352 tree
7353 outermost_open_class (void)
7355 if (!current_class_type)
7356 return NULL_TREE;
7357 tree r = NULL_TREE;
7358 if (TYPE_BEING_DEFINED (current_class_type))
7359 r = current_class_type;
7360 for (int i = current_class_depth - 1; i > 0; --i)
7362 if (current_class_stack[i].hidden)
7363 break;
7364 tree t = current_class_stack[i].type;
7365 if (!TYPE_BEING_DEFINED (t))
7366 break;
7367 r = t;
7369 return r;
7372 /* Returns the innermost class type which is not a lambda closure type. */
7374 tree
7375 current_nonlambda_class_type (void)
7377 int i;
7379 /* We start looking from 1 because entry 0 is from global scope,
7380 and has no type. */
7381 for (i = current_class_depth; i > 0; --i)
7383 tree c;
7384 if (i == current_class_depth)
7385 c = current_class_type;
7386 else
7388 if (current_class_stack[i].hidden)
7389 break;
7390 c = current_class_stack[i].type;
7392 if (!c)
7393 continue;
7394 if (!LAMBDA_TYPE_P (c))
7395 return c;
7397 return NULL_TREE;
7400 /* When entering a class scope, all enclosing class scopes' names with
7401 static meaning (static variables, static functions, types and
7402 enumerators) have to be visible. This recursive function calls
7403 pushclass for all enclosing class contexts until global or a local
7404 scope is reached. TYPE is the enclosed class. */
7406 void
7407 push_nested_class (tree type)
7409 /* A namespace might be passed in error cases, like A::B:C. */
7410 if (type == NULL_TREE
7411 || !CLASS_TYPE_P (type))
7412 return;
7414 push_nested_class (DECL_CONTEXT (TYPE_MAIN_DECL (type)));
7416 pushclass (type);
7419 /* Undoes a push_nested_class call. */
7421 void
7422 pop_nested_class (void)
7424 tree context = DECL_CONTEXT (TYPE_MAIN_DECL (current_class_type));
7426 popclass ();
7427 if (context && CLASS_TYPE_P (context))
7428 pop_nested_class ();
7431 /* Returns the number of extern "LANG" blocks we are nested within. */
7434 current_lang_depth (void)
7436 return vec_safe_length (current_lang_base);
7439 /* Set global variables CURRENT_LANG_NAME to appropriate value
7440 so that behavior of name-mangling machinery is correct. */
7442 void
7443 push_lang_context (tree name)
7445 vec_safe_push (current_lang_base, current_lang_name);
7447 if (name == lang_name_cplusplus)
7449 current_lang_name = name;
7451 else if (name == lang_name_java)
7453 current_lang_name = name;
7454 /* DECL_IGNORED_P is initially set for these types, to avoid clutter.
7455 (See record_builtin_java_type in decl.c.) However, that causes
7456 incorrect debug entries if these types are actually used.
7457 So we re-enable debug output after extern "Java". */
7458 DECL_IGNORED_P (TYPE_NAME (java_byte_type_node)) = 0;
7459 DECL_IGNORED_P (TYPE_NAME (java_short_type_node)) = 0;
7460 DECL_IGNORED_P (TYPE_NAME (java_int_type_node)) = 0;
7461 DECL_IGNORED_P (TYPE_NAME (java_long_type_node)) = 0;
7462 DECL_IGNORED_P (TYPE_NAME (java_float_type_node)) = 0;
7463 DECL_IGNORED_P (TYPE_NAME (java_double_type_node)) = 0;
7464 DECL_IGNORED_P (TYPE_NAME (java_char_type_node)) = 0;
7465 DECL_IGNORED_P (TYPE_NAME (java_boolean_type_node)) = 0;
7467 else if (name == lang_name_c)
7469 current_lang_name = name;
7471 else
7472 error ("language string %<\"%E\"%> not recognized", name);
7475 /* Get out of the current language scope. */
7477 void
7478 pop_lang_context (void)
7480 current_lang_name = current_lang_base->pop ();
7483 /* Type instantiation routines. */
7485 /* Given an OVERLOAD and a TARGET_TYPE, return the function that
7486 matches the TARGET_TYPE. If there is no satisfactory match, return
7487 error_mark_node, and issue an error & warning messages under
7488 control of FLAGS. Permit pointers to member function if FLAGS
7489 permits. If TEMPLATE_ONLY, the name of the overloaded function was
7490 a template-id, and EXPLICIT_TARGS are the explicitly provided
7491 template arguments.
7493 If OVERLOAD is for one or more member functions, then ACCESS_PATH
7494 is the base path used to reference those member functions. If
7495 the address is resolved to a member function, access checks will be
7496 performed and errors issued if appropriate. */
7498 static tree
7499 resolve_address_of_overloaded_function (tree target_type,
7500 tree overload,
7501 tsubst_flags_t complain,
7502 bool template_only,
7503 tree explicit_targs,
7504 tree access_path)
7506 /* Here's what the standard says:
7508 [over.over]
7510 If the name is a function template, template argument deduction
7511 is done, and if the argument deduction succeeds, the deduced
7512 arguments are used to generate a single template function, which
7513 is added to the set of overloaded functions considered.
7515 Non-member functions and static member functions match targets of
7516 type "pointer-to-function" or "reference-to-function." Nonstatic
7517 member functions match targets of type "pointer-to-member
7518 function;" the function type of the pointer to member is used to
7519 select the member function from the set of overloaded member
7520 functions. If a nonstatic member function is selected, the
7521 reference to the overloaded function name is required to have the
7522 form of a pointer to member as described in 5.3.1.
7524 If more than one function is selected, any template functions in
7525 the set are eliminated if the set also contains a non-template
7526 function, and any given template function is eliminated if the
7527 set contains a second template function that is more specialized
7528 than the first according to the partial ordering rules 14.5.5.2.
7529 After such eliminations, if any, there shall remain exactly one
7530 selected function. */
7532 int is_ptrmem = 0;
7533 /* We store the matches in a TREE_LIST rooted here. The functions
7534 are the TREE_PURPOSE, not the TREE_VALUE, in this list, for easy
7535 interoperability with most_specialized_instantiation. */
7536 tree matches = NULL_TREE;
7537 tree fn;
7538 tree target_fn_type;
7540 /* By the time we get here, we should be seeing only real
7541 pointer-to-member types, not the internal POINTER_TYPE to
7542 METHOD_TYPE representation. */
7543 gcc_assert (!TYPE_PTR_P (target_type)
7544 || TREE_CODE (TREE_TYPE (target_type)) != METHOD_TYPE);
7546 gcc_assert (is_overloaded_fn (overload));
7548 /* Check that the TARGET_TYPE is reasonable. */
7549 if (TYPE_PTRFN_P (target_type)
7550 || TYPE_REFFN_P (target_type))
7551 /* This is OK. */;
7552 else if (TYPE_PTRMEMFUNC_P (target_type))
7553 /* This is OK, too. */
7554 is_ptrmem = 1;
7555 else if (TREE_CODE (target_type) == FUNCTION_TYPE)
7556 /* This is OK, too. This comes from a conversion to reference
7557 type. */
7558 target_type = build_reference_type (target_type);
7559 else
7561 if (complain & tf_error)
7562 error ("cannot resolve overloaded function %qD based on"
7563 " conversion to type %qT",
7564 DECL_NAME (OVL_FUNCTION (overload)), target_type);
7565 return error_mark_node;
7568 /* Non-member functions and static member functions match targets of type
7569 "pointer-to-function" or "reference-to-function." Nonstatic member
7570 functions match targets of type "pointer-to-member-function;" the
7571 function type of the pointer to member is used to select the member
7572 function from the set of overloaded member functions.
7574 So figure out the FUNCTION_TYPE that we want to match against. */
7575 target_fn_type = static_fn_type (target_type);
7577 /* If we can find a non-template function that matches, we can just
7578 use it. There's no point in generating template instantiations
7579 if we're just going to throw them out anyhow. But, of course, we
7580 can only do this when we don't *need* a template function. */
7581 if (!template_only)
7583 tree fns;
7585 for (fns = overload; fns; fns = OVL_NEXT (fns))
7587 tree fn = OVL_CURRENT (fns);
7589 if (TREE_CODE (fn) == TEMPLATE_DECL)
7590 /* We're not looking for templates just yet. */
7591 continue;
7593 if ((TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
7594 != is_ptrmem)
7595 /* We're looking for a non-static member, and this isn't
7596 one, or vice versa. */
7597 continue;
7599 /* Ignore functions which haven't been explicitly
7600 declared. */
7601 if (DECL_ANTICIPATED (fn))
7602 continue;
7604 /* See if there's a match. */
7605 if (same_type_p (target_fn_type, static_fn_type (fn)))
7606 matches = tree_cons (fn, NULL_TREE, matches);
7610 /* Now, if we've already got a match (or matches), there's no need
7611 to proceed to the template functions. But, if we don't have a
7612 match we need to look at them, too. */
7613 if (!matches)
7615 tree target_arg_types;
7616 tree target_ret_type;
7617 tree fns;
7618 tree *args;
7619 unsigned int nargs, ia;
7620 tree arg;
7622 target_arg_types = TYPE_ARG_TYPES (target_fn_type);
7623 target_ret_type = TREE_TYPE (target_fn_type);
7625 nargs = list_length (target_arg_types);
7626 args = XALLOCAVEC (tree, nargs);
7627 for (arg = target_arg_types, ia = 0;
7628 arg != NULL_TREE && arg != void_list_node;
7629 arg = TREE_CHAIN (arg), ++ia)
7630 args[ia] = TREE_VALUE (arg);
7631 nargs = ia;
7633 for (fns = overload; fns; fns = OVL_NEXT (fns))
7635 tree fn = OVL_CURRENT (fns);
7636 tree instantiation;
7637 tree targs;
7639 if (TREE_CODE (fn) != TEMPLATE_DECL)
7640 /* We're only looking for templates. */
7641 continue;
7643 if ((TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
7644 != is_ptrmem)
7645 /* We're not looking for a non-static member, and this is
7646 one, or vice versa. */
7647 continue;
7649 tree ret = target_ret_type;
7651 /* If the template has a deduced return type, don't expose it to
7652 template argument deduction. */
7653 if (undeduced_auto_decl (fn))
7654 ret = NULL_TREE;
7656 /* Try to do argument deduction. */
7657 targs = make_tree_vec (DECL_NTPARMS (fn));
7658 instantiation = fn_type_unification (fn, explicit_targs, targs, args,
7659 nargs, ret,
7660 DEDUCE_EXACT, LOOKUP_NORMAL,
7661 false, false);
7662 if (instantiation == error_mark_node)
7663 /* Instantiation failed. */
7664 continue;
7666 /* And now force instantiation to do return type deduction. */
7667 if (undeduced_auto_decl (instantiation))
7669 ++function_depth;
7670 instantiate_decl (instantiation, /*defer*/false, /*class*/false);
7671 --function_depth;
7673 require_deduced_type (instantiation);
7676 /* See if there's a match. */
7677 if (same_type_p (target_fn_type, static_fn_type (instantiation)))
7678 matches = tree_cons (instantiation, fn, matches);
7681 /* Now, remove all but the most specialized of the matches. */
7682 if (matches)
7684 tree match = most_specialized_instantiation (matches);
7686 if (match != error_mark_node)
7687 matches = tree_cons (TREE_PURPOSE (match),
7688 NULL_TREE,
7689 NULL_TREE);
7693 /* Now we should have exactly one function in MATCHES. */
7694 if (matches == NULL_TREE)
7696 /* There were *no* matches. */
7697 if (complain & tf_error)
7699 error ("no matches converting function %qD to type %q#T",
7700 DECL_NAME (OVL_CURRENT (overload)),
7701 target_type);
7703 print_candidates (overload);
7705 return error_mark_node;
7707 else if (TREE_CHAIN (matches))
7709 /* There were too many matches. First check if they're all
7710 the same function. */
7711 tree match = NULL_TREE;
7713 fn = TREE_PURPOSE (matches);
7715 /* For multi-versioned functions, more than one match is just fine and
7716 decls_match will return false as they are different. */
7717 for (match = TREE_CHAIN (matches); match; match = TREE_CHAIN (match))
7718 if (!decls_match (fn, TREE_PURPOSE (match))
7719 && !targetm.target_option.function_versions
7720 (fn, TREE_PURPOSE (match)))
7721 break;
7723 if (match)
7725 if (complain & tf_error)
7727 error ("converting overloaded function %qD to type %q#T is ambiguous",
7728 DECL_NAME (OVL_FUNCTION (overload)),
7729 target_type);
7731 /* Since print_candidates expects the functions in the
7732 TREE_VALUE slot, we flip them here. */
7733 for (match = matches; match; match = TREE_CHAIN (match))
7734 TREE_VALUE (match) = TREE_PURPOSE (match);
7736 print_candidates (matches);
7739 return error_mark_node;
7743 /* Good, exactly one match. Now, convert it to the correct type. */
7744 fn = TREE_PURPOSE (matches);
7746 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
7747 && !(complain & tf_ptrmem_ok) && !flag_ms_extensions)
7749 static int explained;
7751 if (!(complain & tf_error))
7752 return error_mark_node;
7754 permerror (input_location, "assuming pointer to member %qD", fn);
7755 if (!explained)
7757 inform (input_location, "(a pointer to member can only be formed with %<&%E%>)", fn);
7758 explained = 1;
7762 /* If a pointer to a function that is multi-versioned is requested, the
7763 pointer to the dispatcher function is returned instead. This works
7764 well because indirectly calling the function will dispatch the right
7765 function version at run-time. */
7766 if (DECL_FUNCTION_VERSIONED (fn))
7768 fn = get_function_version_dispatcher (fn);
7769 if (fn == NULL)
7770 return error_mark_node;
7771 /* Mark all the versions corresponding to the dispatcher as used. */
7772 if (!(complain & tf_conv))
7773 mark_versions_used (fn);
7776 /* If we're doing overload resolution purely for the purpose of
7777 determining conversion sequences, we should not consider the
7778 function used. If this conversion sequence is selected, the
7779 function will be marked as used at this point. */
7780 if (!(complain & tf_conv))
7782 /* Make =delete work with SFINAE. */
7783 if (DECL_DELETED_FN (fn) && !(complain & tf_error))
7784 return error_mark_node;
7785 if (!mark_used (fn, complain) && !(complain & tf_error))
7786 return error_mark_node;
7789 /* We could not check access to member functions when this
7790 expression was originally created since we did not know at that
7791 time to which function the expression referred. */
7792 if (DECL_FUNCTION_MEMBER_P (fn))
7794 gcc_assert (access_path);
7795 perform_or_defer_access_check (access_path, fn, fn, complain);
7798 if (TYPE_PTRFN_P (target_type) || TYPE_PTRMEMFUNC_P (target_type))
7799 return cp_build_addr_expr (fn, complain);
7800 else
7802 /* The target must be a REFERENCE_TYPE. Above, cp_build_unary_op
7803 will mark the function as addressed, but here we must do it
7804 explicitly. */
7805 cxx_mark_addressable (fn);
7807 return fn;
7811 /* This function will instantiate the type of the expression given in
7812 RHS to match the type of LHSTYPE. If errors exist, then return
7813 error_mark_node. COMPLAIN is a bit mask. If TF_ERROR is set, then
7814 we complain on errors. If we are not complaining, never modify rhs,
7815 as overload resolution wants to try many possible instantiations, in
7816 the hope that at least one will work.
7818 For non-recursive calls, LHSTYPE should be a function, pointer to
7819 function, or a pointer to member function. */
7821 tree
7822 instantiate_type (tree lhstype, tree rhs, tsubst_flags_t complain)
7824 tsubst_flags_t complain_in = complain;
7825 tree access_path = NULL_TREE;
7827 complain &= ~tf_ptrmem_ok;
7829 if (lhstype == unknown_type_node)
7831 if (complain & tf_error)
7832 error ("not enough type information");
7833 return error_mark_node;
7836 if (TREE_TYPE (rhs) != NULL_TREE && ! (type_unknown_p (rhs)))
7838 tree fntype = non_reference (lhstype);
7839 if (same_type_p (fntype, TREE_TYPE (rhs)))
7840 return rhs;
7841 if (flag_ms_extensions
7842 && TYPE_PTRMEMFUNC_P (fntype)
7843 && !TYPE_PTRMEMFUNC_P (TREE_TYPE (rhs)))
7844 /* Microsoft allows `A::f' to be resolved to a
7845 pointer-to-member. */
7847 else
7849 if (complain & tf_error)
7850 error ("cannot convert %qE from type %qT to type %qT",
7851 rhs, TREE_TYPE (rhs), fntype);
7852 return error_mark_node;
7856 if (BASELINK_P (rhs))
7858 access_path = BASELINK_ACCESS_BINFO (rhs);
7859 rhs = BASELINK_FUNCTIONS (rhs);
7862 /* If we are in a template, and have a NON_DEPENDENT_EXPR, we cannot
7863 deduce any type information. */
7864 if (TREE_CODE (rhs) == NON_DEPENDENT_EXPR)
7866 if (complain & tf_error)
7867 error ("not enough type information");
7868 return error_mark_node;
7871 /* There only a few kinds of expressions that may have a type
7872 dependent on overload resolution. */
7873 gcc_assert (TREE_CODE (rhs) == ADDR_EXPR
7874 || TREE_CODE (rhs) == COMPONENT_REF
7875 || is_overloaded_fn (rhs)
7876 || (flag_ms_extensions && TREE_CODE (rhs) == FUNCTION_DECL));
7878 /* This should really only be used when attempting to distinguish
7879 what sort of a pointer to function we have. For now, any
7880 arithmetic operation which is not supported on pointers
7881 is rejected as an error. */
7883 switch (TREE_CODE (rhs))
7885 case COMPONENT_REF:
7887 tree member = TREE_OPERAND (rhs, 1);
7889 member = instantiate_type (lhstype, member, complain);
7890 if (member != error_mark_node
7891 && TREE_SIDE_EFFECTS (TREE_OPERAND (rhs, 0)))
7892 /* Do not lose object's side effects. */
7893 return build2 (COMPOUND_EXPR, TREE_TYPE (member),
7894 TREE_OPERAND (rhs, 0), member);
7895 return member;
7898 case OFFSET_REF:
7899 rhs = TREE_OPERAND (rhs, 1);
7900 if (BASELINK_P (rhs))
7901 return instantiate_type (lhstype, rhs, complain_in);
7903 /* This can happen if we are forming a pointer-to-member for a
7904 member template. */
7905 gcc_assert (TREE_CODE (rhs) == TEMPLATE_ID_EXPR);
7907 /* Fall through. */
7909 case TEMPLATE_ID_EXPR:
7911 tree fns = TREE_OPERAND (rhs, 0);
7912 tree args = TREE_OPERAND (rhs, 1);
7914 return
7915 resolve_address_of_overloaded_function (lhstype, fns, complain_in,
7916 /*template_only=*/true,
7917 args, access_path);
7920 case OVERLOAD:
7921 case FUNCTION_DECL:
7922 return
7923 resolve_address_of_overloaded_function (lhstype, rhs, complain_in,
7924 /*template_only=*/false,
7925 /*explicit_targs=*/NULL_TREE,
7926 access_path);
7928 case ADDR_EXPR:
7930 if (PTRMEM_OK_P (rhs))
7931 complain |= tf_ptrmem_ok;
7933 return instantiate_type (lhstype, TREE_OPERAND (rhs, 0), complain);
7936 case ERROR_MARK:
7937 return error_mark_node;
7939 default:
7940 gcc_unreachable ();
7942 return error_mark_node;
7945 /* Return the name of the virtual function pointer field
7946 (as an IDENTIFIER_NODE) for the given TYPE. Note that
7947 this may have to look back through base types to find the
7948 ultimate field name. (For single inheritance, these could
7949 all be the same name. Who knows for multiple inheritance). */
7951 static tree
7952 get_vfield_name (tree type)
7954 tree binfo, base_binfo;
7955 char *buf;
7957 for (binfo = TYPE_BINFO (type);
7958 BINFO_N_BASE_BINFOS (binfo);
7959 binfo = base_binfo)
7961 base_binfo = BINFO_BASE_BINFO (binfo, 0);
7963 if (BINFO_VIRTUAL_P (base_binfo)
7964 || !TYPE_CONTAINS_VPTR_P (BINFO_TYPE (base_binfo)))
7965 break;
7968 type = BINFO_TYPE (binfo);
7969 buf = (char *) alloca (sizeof (VFIELD_NAME_FORMAT)
7970 + TYPE_NAME_LENGTH (type) + 2);
7971 sprintf (buf, VFIELD_NAME_FORMAT,
7972 IDENTIFIER_POINTER (constructor_name (type)));
7973 return get_identifier (buf);
7976 void
7977 print_class_statistics (void)
7979 if (! GATHER_STATISTICS)
7980 return;
7982 fprintf (stderr, "convert_harshness = %d\n", n_convert_harshness);
7983 fprintf (stderr, "compute_conversion_costs = %d\n", n_compute_conversion_costs);
7984 if (n_vtables)
7986 fprintf (stderr, "vtables = %d; vtable searches = %d\n",
7987 n_vtables, n_vtable_searches);
7988 fprintf (stderr, "vtable entries = %d; vtable elems = %d\n",
7989 n_vtable_entries, n_vtable_elems);
7993 /* Build a dummy reference to ourselves so Derived::Base (and A::A) works,
7994 according to [class]:
7995 The class-name is also inserted
7996 into the scope of the class itself. For purposes of access checking,
7997 the inserted class name is treated as if it were a public member name. */
7999 void
8000 build_self_reference (void)
8002 tree name = constructor_name (current_class_type);
8003 tree value = build_lang_decl (TYPE_DECL, name, current_class_type);
8004 tree saved_cas;
8006 DECL_NONLOCAL (value) = 1;
8007 DECL_CONTEXT (value) = current_class_type;
8008 DECL_ARTIFICIAL (value) = 1;
8009 SET_DECL_SELF_REFERENCE_P (value);
8010 set_underlying_type (value);
8012 if (processing_template_decl)
8013 value = push_template_decl (value);
8015 saved_cas = current_access_specifier;
8016 current_access_specifier = access_public_node;
8017 finish_member_declaration (value);
8018 current_access_specifier = saved_cas;
8021 /* Returns 1 if TYPE contains only padding bytes. */
8024 is_empty_class (tree type)
8026 if (type == error_mark_node)
8027 return 0;
8029 if (! CLASS_TYPE_P (type))
8030 return 0;
8032 return CLASSTYPE_EMPTY_P (type);
8035 /* Returns true if TYPE contains no actual data, just various
8036 possible combinations of empty classes and possibly a vptr. */
8038 bool
8039 is_really_empty_class (tree type)
8041 if (CLASS_TYPE_P (type))
8043 tree field;
8044 tree binfo;
8045 tree base_binfo;
8046 int i;
8048 /* CLASSTYPE_EMPTY_P isn't set properly until the class is actually laid
8049 out, but we'd like to be able to check this before then. */
8050 if (COMPLETE_TYPE_P (type) && is_empty_class (type))
8051 return true;
8053 for (binfo = TYPE_BINFO (type), i = 0;
8054 BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
8055 if (!is_really_empty_class (BINFO_TYPE (base_binfo)))
8056 return false;
8057 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
8058 if (TREE_CODE (field) == FIELD_DECL
8059 && !DECL_ARTIFICIAL (field)
8060 && !is_really_empty_class (TREE_TYPE (field)))
8061 return false;
8062 return true;
8064 else if (TREE_CODE (type) == ARRAY_TYPE)
8065 return is_really_empty_class (TREE_TYPE (type));
8066 return false;
8069 /* Note that NAME was looked up while the current class was being
8070 defined and that the result of that lookup was DECL. */
8072 void
8073 maybe_note_name_used_in_class (tree name, tree decl)
8075 splay_tree names_used;
8077 /* If we're not defining a class, there's nothing to do. */
8078 if (!(innermost_scope_kind() == sk_class
8079 && TYPE_BEING_DEFINED (current_class_type)
8080 && !LAMBDA_TYPE_P (current_class_type)))
8081 return;
8083 /* If there's already a binding for this NAME, then we don't have
8084 anything to worry about. */
8085 if (lookup_member (current_class_type, name,
8086 /*protect=*/0, /*want_type=*/false, tf_warning_or_error))
8087 return;
8089 if (!current_class_stack[current_class_depth - 1].names_used)
8090 current_class_stack[current_class_depth - 1].names_used
8091 = splay_tree_new (splay_tree_compare_pointers, 0, 0);
8092 names_used = current_class_stack[current_class_depth - 1].names_used;
8094 splay_tree_insert (names_used,
8095 (splay_tree_key) name,
8096 (splay_tree_value) decl);
8099 /* Note that NAME was declared (as DECL) in the current class. Check
8100 to see that the declaration is valid. */
8102 void
8103 note_name_declared_in_class (tree name, tree decl)
8105 splay_tree names_used;
8106 splay_tree_node n;
8108 /* Look to see if we ever used this name. */
8109 names_used
8110 = current_class_stack[current_class_depth - 1].names_used;
8111 if (!names_used)
8112 return;
8113 /* The C language allows members to be declared with a type of the same
8114 name, and the C++ standard says this diagnostic is not required. So
8115 allow it in extern "C" blocks unless predantic is specified.
8116 Allow it in all cases if -ms-extensions is specified. */
8117 if ((!pedantic && current_lang_name == lang_name_c)
8118 || flag_ms_extensions)
8119 return;
8120 n = splay_tree_lookup (names_used, (splay_tree_key) name);
8121 if (n)
8123 /* [basic.scope.class]
8125 A name N used in a class S shall refer to the same declaration
8126 in its context and when re-evaluated in the completed scope of
8127 S. */
8128 permerror (input_location, "declaration of %q#D", decl);
8129 permerror (input_location, "changes meaning of %qD from %q+#D",
8130 DECL_NAME (OVL_CURRENT (decl)), (tree) n->value);
8134 /* Returns the VAR_DECL for the complete vtable associated with BINFO.
8135 Secondary vtables are merged with primary vtables; this function
8136 will return the VAR_DECL for the primary vtable. */
8138 tree
8139 get_vtbl_decl_for_binfo (tree binfo)
8141 tree decl;
8143 decl = BINFO_VTABLE (binfo);
8144 if (decl && TREE_CODE (decl) == POINTER_PLUS_EXPR)
8146 gcc_assert (TREE_CODE (TREE_OPERAND (decl, 0)) == ADDR_EXPR);
8147 decl = TREE_OPERAND (TREE_OPERAND (decl, 0), 0);
8149 if (decl)
8150 gcc_assert (VAR_P (decl));
8151 return decl;
8155 /* Returns the binfo for the primary base of BINFO. If the resulting
8156 BINFO is a virtual base, and it is inherited elsewhere in the
8157 hierarchy, then the returned binfo might not be the primary base of
8158 BINFO in the complete object. Check BINFO_PRIMARY_P or
8159 BINFO_LOST_PRIMARY_P to be sure. */
8161 static tree
8162 get_primary_binfo (tree binfo)
8164 tree primary_base;
8166 primary_base = CLASSTYPE_PRIMARY_BINFO (BINFO_TYPE (binfo));
8167 if (!primary_base)
8168 return NULL_TREE;
8170 return copied_binfo (primary_base, binfo);
8173 /* If INDENTED_P is zero, indent to INDENT. Return nonzero. */
8175 static int
8176 maybe_indent_hierarchy (FILE * stream, int indent, int indented_p)
8178 if (!indented_p)
8179 fprintf (stream, "%*s", indent, "");
8180 return 1;
8183 /* Dump the offsets of all the bases rooted at BINFO to STREAM.
8184 INDENT should be zero when called from the top level; it is
8185 incremented recursively. IGO indicates the next expected BINFO in
8186 inheritance graph ordering. */
8188 static tree
8189 dump_class_hierarchy_r (FILE *stream,
8190 int flags,
8191 tree binfo,
8192 tree igo,
8193 int indent)
8195 int indented = 0;
8196 tree base_binfo;
8197 int i;
8199 indented = maybe_indent_hierarchy (stream, indent, 0);
8200 fprintf (stream, "%s (0x" HOST_WIDE_INT_PRINT_HEX ") ",
8201 type_as_string (BINFO_TYPE (binfo), TFF_PLAIN_IDENTIFIER),
8202 (HOST_WIDE_INT) (uintptr_t) binfo);
8203 if (binfo != igo)
8205 fprintf (stream, "alternative-path\n");
8206 return igo;
8208 igo = TREE_CHAIN (binfo);
8210 fprintf (stream, HOST_WIDE_INT_PRINT_DEC,
8211 tree_to_shwi (BINFO_OFFSET (binfo)));
8212 if (is_empty_class (BINFO_TYPE (binfo)))
8213 fprintf (stream, " empty");
8214 else if (CLASSTYPE_NEARLY_EMPTY_P (BINFO_TYPE (binfo)))
8215 fprintf (stream, " nearly-empty");
8216 if (BINFO_VIRTUAL_P (binfo))
8217 fprintf (stream, " virtual");
8218 fprintf (stream, "\n");
8220 indented = 0;
8221 if (BINFO_PRIMARY_P (binfo))
8223 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
8224 fprintf (stream, " primary-for %s (0x" HOST_WIDE_INT_PRINT_HEX ")",
8225 type_as_string (BINFO_TYPE (BINFO_INHERITANCE_CHAIN (binfo)),
8226 TFF_PLAIN_IDENTIFIER),
8227 (HOST_WIDE_INT) (uintptr_t) BINFO_INHERITANCE_CHAIN (binfo));
8229 if (BINFO_LOST_PRIMARY_P (binfo))
8231 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
8232 fprintf (stream, " lost-primary");
8234 if (indented)
8235 fprintf (stream, "\n");
8237 if (!(flags & TDF_SLIM))
8239 int indented = 0;
8241 if (BINFO_SUBVTT_INDEX (binfo))
8243 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
8244 fprintf (stream, " subvttidx=%s",
8245 expr_as_string (BINFO_SUBVTT_INDEX (binfo),
8246 TFF_PLAIN_IDENTIFIER));
8248 if (BINFO_VPTR_INDEX (binfo))
8250 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
8251 fprintf (stream, " vptridx=%s",
8252 expr_as_string (BINFO_VPTR_INDEX (binfo),
8253 TFF_PLAIN_IDENTIFIER));
8255 if (BINFO_VPTR_FIELD (binfo))
8257 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
8258 fprintf (stream, " vbaseoffset=%s",
8259 expr_as_string (BINFO_VPTR_FIELD (binfo),
8260 TFF_PLAIN_IDENTIFIER));
8262 if (BINFO_VTABLE (binfo))
8264 indented = maybe_indent_hierarchy (stream, indent + 3, indented);
8265 fprintf (stream, " vptr=%s",
8266 expr_as_string (BINFO_VTABLE (binfo),
8267 TFF_PLAIN_IDENTIFIER));
8270 if (indented)
8271 fprintf (stream, "\n");
8274 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
8275 igo = dump_class_hierarchy_r (stream, flags, base_binfo, igo, indent + 2);
8277 return igo;
8280 /* Dump the BINFO hierarchy for T. */
8282 static void
8283 dump_class_hierarchy_1 (FILE *stream, int flags, tree t)
8285 fprintf (stream, "Class %s\n", type_as_string (t, TFF_PLAIN_IDENTIFIER));
8286 fprintf (stream, " size=%lu align=%lu\n",
8287 (unsigned long)(tree_to_shwi (TYPE_SIZE (t)) / BITS_PER_UNIT),
8288 (unsigned long)(TYPE_ALIGN (t) / BITS_PER_UNIT));
8289 fprintf (stream, " base size=%lu base align=%lu\n",
8290 (unsigned long)(tree_to_shwi (TYPE_SIZE (CLASSTYPE_AS_BASE (t)))
8291 / BITS_PER_UNIT),
8292 (unsigned long)(TYPE_ALIGN (CLASSTYPE_AS_BASE (t))
8293 / BITS_PER_UNIT));
8294 dump_class_hierarchy_r (stream, flags, TYPE_BINFO (t), TYPE_BINFO (t), 0);
8295 fprintf (stream, "\n");
8298 /* Debug interface to hierarchy dumping. */
8300 void
8301 debug_class (tree t)
8303 dump_class_hierarchy_1 (stderr, TDF_SLIM, t);
8306 static void
8307 dump_class_hierarchy (tree t)
8309 int flags;
8310 FILE *stream = get_dump_info (TDI_class, &flags);
8312 if (stream)
8314 dump_class_hierarchy_1 (stream, flags, t);
8318 static void
8319 dump_array (FILE * stream, tree decl)
8321 tree value;
8322 unsigned HOST_WIDE_INT ix;
8323 HOST_WIDE_INT elt;
8324 tree size = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (decl)));
8326 elt = (tree_to_shwi (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl))))
8327 / BITS_PER_UNIT);
8328 fprintf (stream, "%s:", decl_as_string (decl, TFF_PLAIN_IDENTIFIER));
8329 fprintf (stream, " %s entries",
8330 expr_as_string (size_binop (PLUS_EXPR, size, size_one_node),
8331 TFF_PLAIN_IDENTIFIER));
8332 fprintf (stream, "\n");
8334 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)),
8335 ix, value)
8336 fprintf (stream, "%-4ld %s\n", (long)(ix * elt),
8337 expr_as_string (value, TFF_PLAIN_IDENTIFIER));
8340 static void
8341 dump_vtable (tree t, tree binfo, tree vtable)
8343 int flags;
8344 FILE *stream = get_dump_info (TDI_class, &flags);
8346 if (!stream)
8347 return;
8349 if (!(flags & TDF_SLIM))
8351 int ctor_vtbl_p = TYPE_BINFO (t) != binfo;
8353 fprintf (stream, "%s for %s",
8354 ctor_vtbl_p ? "Construction vtable" : "Vtable",
8355 type_as_string (BINFO_TYPE (binfo), TFF_PLAIN_IDENTIFIER));
8356 if (ctor_vtbl_p)
8358 if (!BINFO_VIRTUAL_P (binfo))
8359 fprintf (stream, " (0x" HOST_WIDE_INT_PRINT_HEX " instance)",
8360 (HOST_WIDE_INT) (uintptr_t) binfo);
8361 fprintf (stream, " in %s", type_as_string (t, TFF_PLAIN_IDENTIFIER));
8363 fprintf (stream, "\n");
8364 dump_array (stream, vtable);
8365 fprintf (stream, "\n");
8369 static void
8370 dump_vtt (tree t, tree vtt)
8372 int flags;
8373 FILE *stream = get_dump_info (TDI_class, &flags);
8375 if (!stream)
8376 return;
8378 if (!(flags & TDF_SLIM))
8380 fprintf (stream, "VTT for %s\n",
8381 type_as_string (t, TFF_PLAIN_IDENTIFIER));
8382 dump_array (stream, vtt);
8383 fprintf (stream, "\n");
8387 /* Dump a function or thunk and its thunkees. */
8389 static void
8390 dump_thunk (FILE *stream, int indent, tree thunk)
8392 static const char spaces[] = " ";
8393 tree name = DECL_NAME (thunk);
8394 tree thunks;
8396 fprintf (stream, "%.*s%p %s %s", indent, spaces,
8397 (void *)thunk,
8398 !DECL_THUNK_P (thunk) ? "function"
8399 : DECL_THIS_THUNK_P (thunk) ? "this-thunk" : "covariant-thunk",
8400 name ? IDENTIFIER_POINTER (name) : "<unset>");
8401 if (DECL_THUNK_P (thunk))
8403 HOST_WIDE_INT fixed_adjust = THUNK_FIXED_OFFSET (thunk);
8404 tree virtual_adjust = THUNK_VIRTUAL_OFFSET (thunk);
8406 fprintf (stream, " fixed=" HOST_WIDE_INT_PRINT_DEC, fixed_adjust);
8407 if (!virtual_adjust)
8408 /*NOP*/;
8409 else if (DECL_THIS_THUNK_P (thunk))
8410 fprintf (stream, " vcall=" HOST_WIDE_INT_PRINT_DEC,
8411 tree_to_shwi (virtual_adjust));
8412 else
8413 fprintf (stream, " vbase=" HOST_WIDE_INT_PRINT_DEC "(%s)",
8414 tree_to_shwi (BINFO_VPTR_FIELD (virtual_adjust)),
8415 type_as_string (BINFO_TYPE (virtual_adjust), TFF_SCOPE));
8416 if (THUNK_ALIAS (thunk))
8417 fprintf (stream, " alias to %p", (void *)THUNK_ALIAS (thunk));
8419 fprintf (stream, "\n");
8420 for (thunks = DECL_THUNKS (thunk); thunks; thunks = TREE_CHAIN (thunks))
8421 dump_thunk (stream, indent + 2, thunks);
8424 /* Dump the thunks for FN. */
8426 void
8427 debug_thunks (tree fn)
8429 dump_thunk (stderr, 0, fn);
8432 /* Virtual function table initialization. */
8434 /* Create all the necessary vtables for T and its base classes. */
8436 static void
8437 finish_vtbls (tree t)
8439 tree vbase;
8440 vec<constructor_elt, va_gc> *v = NULL;
8441 tree vtable = BINFO_VTABLE (TYPE_BINFO (t));
8443 /* We lay out the primary and secondary vtables in one contiguous
8444 vtable. The primary vtable is first, followed by the non-virtual
8445 secondary vtables in inheritance graph order. */
8446 accumulate_vtbl_inits (TYPE_BINFO (t), TYPE_BINFO (t), TYPE_BINFO (t),
8447 vtable, t, &v);
8449 /* Then come the virtual bases, also in inheritance graph order. */
8450 for (vbase = TYPE_BINFO (t); vbase; vbase = TREE_CHAIN (vbase))
8452 if (!BINFO_VIRTUAL_P (vbase))
8453 continue;
8454 accumulate_vtbl_inits (vbase, vbase, TYPE_BINFO (t), vtable, t, &v);
8457 if (BINFO_VTABLE (TYPE_BINFO (t)))
8458 initialize_vtable (TYPE_BINFO (t), v);
8461 /* Initialize the vtable for BINFO with the INITS. */
8463 static void
8464 initialize_vtable (tree binfo, vec<constructor_elt, va_gc> *inits)
8466 tree decl;
8468 layout_vtable_decl (binfo, vec_safe_length (inits));
8469 decl = get_vtbl_decl_for_binfo (binfo);
8470 initialize_artificial_var (decl, inits);
8471 dump_vtable (BINFO_TYPE (binfo), binfo, decl);
8474 /* Build the VTT (virtual table table) for T.
8475 A class requires a VTT if it has virtual bases.
8477 This holds
8478 1 - primary virtual pointer for complete object T
8479 2 - secondary VTTs for each direct non-virtual base of T which requires a
8481 3 - secondary virtual pointers for each direct or indirect base of T which
8482 has virtual bases or is reachable via a virtual path from T.
8483 4 - secondary VTTs for each direct or indirect virtual base of T.
8485 Secondary VTTs look like complete object VTTs without part 4. */
8487 static void
8488 build_vtt (tree t)
8490 tree type;
8491 tree vtt;
8492 tree index;
8493 vec<constructor_elt, va_gc> *inits;
8495 /* Build up the initializers for the VTT. */
8496 inits = NULL;
8497 index = size_zero_node;
8498 build_vtt_inits (TYPE_BINFO (t), t, &inits, &index);
8500 /* If we didn't need a VTT, we're done. */
8501 if (!inits)
8502 return;
8504 /* Figure out the type of the VTT. */
8505 type = build_array_of_n_type (const_ptr_type_node,
8506 inits->length ());
8508 /* Now, build the VTT object itself. */
8509 vtt = build_vtable (t, mangle_vtt_for_type (t), type);
8510 initialize_artificial_var (vtt, inits);
8511 /* Add the VTT to the vtables list. */
8512 DECL_CHAIN (vtt) = DECL_CHAIN (CLASSTYPE_VTABLES (t));
8513 DECL_CHAIN (CLASSTYPE_VTABLES (t)) = vtt;
8515 dump_vtt (t, vtt);
8518 /* When building a secondary VTT, BINFO_VTABLE is set to a TREE_LIST with
8519 PURPOSE the RTTI_BINFO, VALUE the real vtable pointer for this binfo,
8520 and CHAIN the vtable pointer for this binfo after construction is
8521 complete. VALUE can also be another BINFO, in which case we recurse. */
8523 static tree
8524 binfo_ctor_vtable (tree binfo)
8526 tree vt;
8528 while (1)
8530 vt = BINFO_VTABLE (binfo);
8531 if (TREE_CODE (vt) == TREE_LIST)
8532 vt = TREE_VALUE (vt);
8533 if (TREE_CODE (vt) == TREE_BINFO)
8534 binfo = vt;
8535 else
8536 break;
8539 return vt;
8542 /* Data for secondary VTT initialization. */
8543 typedef struct secondary_vptr_vtt_init_data_s
8545 /* Is this the primary VTT? */
8546 bool top_level_p;
8548 /* Current index into the VTT. */
8549 tree index;
8551 /* Vector of initializers built up. */
8552 vec<constructor_elt, va_gc> *inits;
8554 /* The type being constructed by this secondary VTT. */
8555 tree type_being_constructed;
8556 } secondary_vptr_vtt_init_data;
8558 /* Recursively build the VTT-initializer for BINFO (which is in the
8559 hierarchy dominated by T). INITS points to the end of the initializer
8560 list to date. INDEX is the VTT index where the next element will be
8561 replaced. Iff BINFO is the binfo for T, this is the top level VTT (i.e.
8562 not a subvtt for some base of T). When that is so, we emit the sub-VTTs
8563 for virtual bases of T. When it is not so, we build the constructor
8564 vtables for the BINFO-in-T variant. */
8566 static void
8567 build_vtt_inits (tree binfo, tree t, vec<constructor_elt, va_gc> **inits,
8568 tree *index)
8570 int i;
8571 tree b;
8572 tree init;
8573 secondary_vptr_vtt_init_data data;
8574 int top_level_p = SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), t);
8576 /* We only need VTTs for subobjects with virtual bases. */
8577 if (!CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo)))
8578 return;
8580 /* We need to use a construction vtable if this is not the primary
8581 VTT. */
8582 if (!top_level_p)
8584 build_ctor_vtbl_group (binfo, t);
8586 /* Record the offset in the VTT where this sub-VTT can be found. */
8587 BINFO_SUBVTT_INDEX (binfo) = *index;
8590 /* Add the address of the primary vtable for the complete object. */
8591 init = binfo_ctor_vtable (binfo);
8592 CONSTRUCTOR_APPEND_ELT (*inits, NULL_TREE, init);
8593 if (top_level_p)
8595 gcc_assert (!BINFO_VPTR_INDEX (binfo));
8596 BINFO_VPTR_INDEX (binfo) = *index;
8598 *index = size_binop (PLUS_EXPR, *index, TYPE_SIZE_UNIT (ptr_type_node));
8600 /* Recursively add the secondary VTTs for non-virtual bases. */
8601 for (i = 0; BINFO_BASE_ITERATE (binfo, i, b); ++i)
8602 if (!BINFO_VIRTUAL_P (b))
8603 build_vtt_inits (b, t, inits, index);
8605 /* Add secondary virtual pointers for all subobjects of BINFO with
8606 either virtual bases or reachable along a virtual path, except
8607 subobjects that are non-virtual primary bases. */
8608 data.top_level_p = top_level_p;
8609 data.index = *index;
8610 data.inits = *inits;
8611 data.type_being_constructed = BINFO_TYPE (binfo);
8613 dfs_walk_once (binfo, dfs_build_secondary_vptr_vtt_inits, NULL, &data);
8615 *index = data.index;
8617 /* data.inits might have grown as we added secondary virtual pointers.
8618 Make sure our caller knows about the new vector. */
8619 *inits = data.inits;
8621 if (top_level_p)
8622 /* Add the secondary VTTs for virtual bases in inheritance graph
8623 order. */
8624 for (b = TYPE_BINFO (BINFO_TYPE (binfo)); b; b = TREE_CHAIN (b))
8626 if (!BINFO_VIRTUAL_P (b))
8627 continue;
8629 build_vtt_inits (b, t, inits, index);
8631 else
8632 /* Remove the ctor vtables we created. */
8633 dfs_walk_all (binfo, dfs_fixup_binfo_vtbls, NULL, binfo);
8636 /* Called from build_vtt_inits via dfs_walk. BINFO is the binfo for the base
8637 in most derived. DATA is a SECONDARY_VPTR_VTT_INIT_DATA structure. */
8639 static tree
8640 dfs_build_secondary_vptr_vtt_inits (tree binfo, void *data_)
8642 secondary_vptr_vtt_init_data *data = (secondary_vptr_vtt_init_data *)data_;
8644 /* We don't care about bases that don't have vtables. */
8645 if (!TYPE_VFIELD (BINFO_TYPE (binfo)))
8646 return dfs_skip_bases;
8648 /* We're only interested in proper subobjects of the type being
8649 constructed. */
8650 if (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), data->type_being_constructed))
8651 return NULL_TREE;
8653 /* We're only interested in bases with virtual bases or reachable
8654 via a virtual path from the type being constructed. */
8655 if (!(CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo))
8656 || binfo_via_virtual (binfo, data->type_being_constructed)))
8657 return dfs_skip_bases;
8659 /* We're not interested in non-virtual primary bases. */
8660 if (!BINFO_VIRTUAL_P (binfo) && BINFO_PRIMARY_P (binfo))
8661 return NULL_TREE;
8663 /* Record the index where this secondary vptr can be found. */
8664 if (data->top_level_p)
8666 gcc_assert (!BINFO_VPTR_INDEX (binfo));
8667 BINFO_VPTR_INDEX (binfo) = data->index;
8669 if (BINFO_VIRTUAL_P (binfo))
8671 /* It's a primary virtual base, and this is not a
8672 construction vtable. Find the base this is primary of in
8673 the inheritance graph, and use that base's vtable
8674 now. */
8675 while (BINFO_PRIMARY_P (binfo))
8676 binfo = BINFO_INHERITANCE_CHAIN (binfo);
8680 /* Add the initializer for the secondary vptr itself. */
8681 CONSTRUCTOR_APPEND_ELT (data->inits, NULL_TREE, binfo_ctor_vtable (binfo));
8683 /* Advance the vtt index. */
8684 data->index = size_binop (PLUS_EXPR, data->index,
8685 TYPE_SIZE_UNIT (ptr_type_node));
8687 return NULL_TREE;
8690 /* Called from build_vtt_inits via dfs_walk. After building
8691 constructor vtables and generating the sub-vtt from them, we need
8692 to restore the BINFO_VTABLES that were scribbled on. DATA is the
8693 binfo of the base whose sub vtt was generated. */
8695 static tree
8696 dfs_fixup_binfo_vtbls (tree binfo, void* data)
8698 tree vtable = BINFO_VTABLE (binfo);
8700 if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
8701 /* If this class has no vtable, none of its bases do. */
8702 return dfs_skip_bases;
8704 if (!vtable)
8705 /* This might be a primary base, so have no vtable in this
8706 hierarchy. */
8707 return NULL_TREE;
8709 /* If we scribbled the construction vtable vptr into BINFO, clear it
8710 out now. */
8711 if (TREE_CODE (vtable) == TREE_LIST
8712 && (TREE_PURPOSE (vtable) == (tree) data))
8713 BINFO_VTABLE (binfo) = TREE_CHAIN (vtable);
8715 return NULL_TREE;
8718 /* Build the construction vtable group for BINFO which is in the
8719 hierarchy dominated by T. */
8721 static void
8722 build_ctor_vtbl_group (tree binfo, tree t)
8724 tree type;
8725 tree vtbl;
8726 tree id;
8727 tree vbase;
8728 vec<constructor_elt, va_gc> *v;
8730 /* See if we've already created this construction vtable group. */
8731 id = mangle_ctor_vtbl_for_type (t, binfo);
8732 if (IDENTIFIER_GLOBAL_VALUE (id))
8733 return;
8735 gcc_assert (!SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), t));
8736 /* Build a version of VTBL (with the wrong type) for use in
8737 constructing the addresses of secondary vtables in the
8738 construction vtable group. */
8739 vtbl = build_vtable (t, id, ptr_type_node);
8740 DECL_CONSTRUCTION_VTABLE_P (vtbl) = 1;
8741 /* Don't export construction vtables from shared libraries. Even on
8742 targets that don't support hidden visibility, this tells
8743 can_refer_decl_in_current_unit_p not to assume that it's safe to
8744 access from a different compilation unit (bz 54314). */
8745 DECL_VISIBILITY (vtbl) = VISIBILITY_HIDDEN;
8746 DECL_VISIBILITY_SPECIFIED (vtbl) = true;
8748 v = NULL;
8749 accumulate_vtbl_inits (binfo, TYPE_BINFO (TREE_TYPE (binfo)),
8750 binfo, vtbl, t, &v);
8752 /* Add the vtables for each of our virtual bases using the vbase in T
8753 binfo. */
8754 for (vbase = TYPE_BINFO (BINFO_TYPE (binfo));
8755 vbase;
8756 vbase = TREE_CHAIN (vbase))
8758 tree b;
8760 if (!BINFO_VIRTUAL_P (vbase))
8761 continue;
8762 b = copied_binfo (vbase, binfo);
8764 accumulate_vtbl_inits (b, vbase, binfo, vtbl, t, &v);
8767 /* Figure out the type of the construction vtable. */
8768 type = build_array_of_n_type (vtable_entry_type, v->length ());
8769 layout_type (type);
8770 TREE_TYPE (vtbl) = type;
8771 DECL_SIZE (vtbl) = DECL_SIZE_UNIT (vtbl) = NULL_TREE;
8772 layout_decl (vtbl, 0);
8774 /* Initialize the construction vtable. */
8775 CLASSTYPE_VTABLES (t) = chainon (CLASSTYPE_VTABLES (t), vtbl);
8776 initialize_artificial_var (vtbl, v);
8777 dump_vtable (t, binfo, vtbl);
8780 /* Add the vtbl initializers for BINFO (and its bases other than
8781 non-virtual primaries) to the list of INITS. BINFO is in the
8782 hierarchy dominated by T. RTTI_BINFO is the binfo within T of
8783 the constructor the vtbl inits should be accumulated for. (If this
8784 is the complete object vtbl then RTTI_BINFO will be TYPE_BINFO (T).)
8785 ORIG_BINFO is the binfo for this object within BINFO_TYPE (RTTI_BINFO).
8786 BINFO is the active base equivalent of ORIG_BINFO in the inheritance
8787 graph of T. Both BINFO and ORIG_BINFO will have the same BINFO_TYPE,
8788 but are not necessarily the same in terms of layout. */
8790 static void
8791 accumulate_vtbl_inits (tree binfo,
8792 tree orig_binfo,
8793 tree rtti_binfo,
8794 tree vtbl,
8795 tree t,
8796 vec<constructor_elt, va_gc> **inits)
8798 int i;
8799 tree base_binfo;
8800 int ctor_vtbl_p = !SAME_BINFO_TYPE_P (BINFO_TYPE (rtti_binfo), t);
8802 gcc_assert (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), BINFO_TYPE (orig_binfo)));
8804 /* If it doesn't have a vptr, we don't do anything. */
8805 if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
8806 return;
8808 /* If we're building a construction vtable, we're not interested in
8809 subobjects that don't require construction vtables. */
8810 if (ctor_vtbl_p
8811 && !CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo))
8812 && !binfo_via_virtual (orig_binfo, BINFO_TYPE (rtti_binfo)))
8813 return;
8815 /* Build the initializers for the BINFO-in-T vtable. */
8816 dfs_accumulate_vtbl_inits (binfo, orig_binfo, rtti_binfo, vtbl, t, inits);
8818 /* Walk the BINFO and its bases. We walk in preorder so that as we
8819 initialize each vtable we can figure out at what offset the
8820 secondary vtable lies from the primary vtable. We can't use
8821 dfs_walk here because we need to iterate through bases of BINFO
8822 and RTTI_BINFO simultaneously. */
8823 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
8825 /* Skip virtual bases. */
8826 if (BINFO_VIRTUAL_P (base_binfo))
8827 continue;
8828 accumulate_vtbl_inits (base_binfo,
8829 BINFO_BASE_BINFO (orig_binfo, i),
8830 rtti_binfo, vtbl, t,
8831 inits);
8835 /* Called from accumulate_vtbl_inits. Adds the initializers for the
8836 BINFO vtable to L. */
8838 static void
8839 dfs_accumulate_vtbl_inits (tree binfo,
8840 tree orig_binfo,
8841 tree rtti_binfo,
8842 tree orig_vtbl,
8843 tree t,
8844 vec<constructor_elt, va_gc> **l)
8846 tree vtbl = NULL_TREE;
8847 int ctor_vtbl_p = !SAME_BINFO_TYPE_P (BINFO_TYPE (rtti_binfo), t);
8848 int n_inits;
8850 if (ctor_vtbl_p
8851 && BINFO_VIRTUAL_P (orig_binfo) && BINFO_PRIMARY_P (orig_binfo))
8853 /* In the hierarchy of BINFO_TYPE (RTTI_BINFO), this is a
8854 primary virtual base. If it is not the same primary in
8855 the hierarchy of T, we'll need to generate a ctor vtable
8856 for it, to place at its location in T. If it is the same
8857 primary, we still need a VTT entry for the vtable, but it
8858 should point to the ctor vtable for the base it is a
8859 primary for within the sub-hierarchy of RTTI_BINFO.
8861 There are three possible cases:
8863 1) We are in the same place.
8864 2) We are a primary base within a lost primary virtual base of
8865 RTTI_BINFO.
8866 3) We are primary to something not a base of RTTI_BINFO. */
8868 tree b;
8869 tree last = NULL_TREE;
8871 /* First, look through the bases we are primary to for RTTI_BINFO
8872 or a virtual base. */
8873 b = binfo;
8874 while (BINFO_PRIMARY_P (b))
8876 b = BINFO_INHERITANCE_CHAIN (b);
8877 last = b;
8878 if (BINFO_VIRTUAL_P (b) || b == rtti_binfo)
8879 goto found;
8881 /* If we run out of primary links, keep looking down our
8882 inheritance chain; we might be an indirect primary. */
8883 for (b = last; b; b = BINFO_INHERITANCE_CHAIN (b))
8884 if (BINFO_VIRTUAL_P (b) || b == rtti_binfo)
8885 break;
8886 found:
8888 /* If we found RTTI_BINFO, this is case 1. If we found a virtual
8889 base B and it is a base of RTTI_BINFO, this is case 2. In
8890 either case, we share our vtable with LAST, i.e. the
8891 derived-most base within B of which we are a primary. */
8892 if (b == rtti_binfo
8893 || (b && binfo_for_vbase (BINFO_TYPE (b), BINFO_TYPE (rtti_binfo))))
8894 /* Just set our BINFO_VTABLE to point to LAST, as we may not have
8895 set LAST's BINFO_VTABLE yet. We'll extract the actual vptr in
8896 binfo_ctor_vtable after everything's been set up. */
8897 vtbl = last;
8899 /* Otherwise, this is case 3 and we get our own. */
8901 else if (!BINFO_NEW_VTABLE_MARKED (orig_binfo))
8902 return;
8904 n_inits = vec_safe_length (*l);
8906 if (!vtbl)
8908 tree index;
8909 int non_fn_entries;
8911 /* Add the initializer for this vtable. */
8912 build_vtbl_initializer (binfo, orig_binfo, t, rtti_binfo,
8913 &non_fn_entries, l);
8915 /* Figure out the position to which the VPTR should point. */
8916 vtbl = build1 (ADDR_EXPR, vtbl_ptr_type_node, orig_vtbl);
8917 index = size_binop (MULT_EXPR,
8918 TYPE_SIZE_UNIT (vtable_entry_type),
8919 size_int (non_fn_entries + n_inits));
8920 vtbl = fold_build_pointer_plus (vtbl, index);
8923 if (ctor_vtbl_p)
8924 /* For a construction vtable, we can't overwrite BINFO_VTABLE.
8925 So, we make a TREE_LIST. Later, dfs_fixup_binfo_vtbls will
8926 straighten this out. */
8927 BINFO_VTABLE (binfo) = tree_cons (rtti_binfo, vtbl, BINFO_VTABLE (binfo));
8928 else if (BINFO_PRIMARY_P (binfo) && BINFO_VIRTUAL_P (binfo))
8929 /* Throw away any unneeded intializers. */
8930 (*l)->truncate (n_inits);
8931 else
8932 /* For an ordinary vtable, set BINFO_VTABLE. */
8933 BINFO_VTABLE (binfo) = vtbl;
8936 static GTY(()) tree abort_fndecl_addr;
8938 /* Construct the initializer for BINFO's virtual function table. BINFO
8939 is part of the hierarchy dominated by T. If we're building a
8940 construction vtable, the ORIG_BINFO is the binfo we should use to
8941 find the actual function pointers to put in the vtable - but they
8942 can be overridden on the path to most-derived in the graph that
8943 ORIG_BINFO belongs. Otherwise,
8944 ORIG_BINFO should be the same as BINFO. The RTTI_BINFO is the
8945 BINFO that should be indicated by the RTTI information in the
8946 vtable; it will be a base class of T, rather than T itself, if we
8947 are building a construction vtable.
8949 The value returned is a TREE_LIST suitable for wrapping in a
8950 CONSTRUCTOR to use as the DECL_INITIAL for a vtable. If
8951 NON_FN_ENTRIES_P is not NULL, *NON_FN_ENTRIES_P is set to the
8952 number of non-function entries in the vtable.
8954 It might seem that this function should never be called with a
8955 BINFO for which BINFO_PRIMARY_P holds, the vtable for such a
8956 base is always subsumed by a derived class vtable. However, when
8957 we are building construction vtables, we do build vtables for
8958 primary bases; we need these while the primary base is being
8959 constructed. */
8961 static void
8962 build_vtbl_initializer (tree binfo,
8963 tree orig_binfo,
8964 tree t,
8965 tree rtti_binfo,
8966 int* non_fn_entries_p,
8967 vec<constructor_elt, va_gc> **inits)
8969 tree v;
8970 vtbl_init_data vid;
8971 unsigned ix, jx;
8972 tree vbinfo;
8973 vec<tree, va_gc> *vbases;
8974 constructor_elt *e;
8976 /* Initialize VID. */
8977 memset (&vid, 0, sizeof (vid));
8978 vid.binfo = binfo;
8979 vid.derived = t;
8980 vid.rtti_binfo = rtti_binfo;
8981 vid.primary_vtbl_p = SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), t);
8982 vid.ctor_vtbl_p = !SAME_BINFO_TYPE_P (BINFO_TYPE (rtti_binfo), t);
8983 vid.generate_vcall_entries = true;
8984 /* The first vbase or vcall offset is at index -3 in the vtable. */
8985 vid.index = ssize_int(-3 * TARGET_VTABLE_DATA_ENTRY_DISTANCE);
8987 /* Add entries to the vtable for RTTI. */
8988 build_rtti_vtbl_entries (binfo, &vid);
8990 /* Create an array for keeping track of the functions we've
8991 processed. When we see multiple functions with the same
8992 signature, we share the vcall offsets. */
8993 vec_alloc (vid.fns, 32);
8994 /* Add the vcall and vbase offset entries. */
8995 build_vcall_and_vbase_vtbl_entries (binfo, &vid);
8997 /* Clear BINFO_VTABLE_PATH_MARKED; it's set by
8998 build_vbase_offset_vtbl_entries. */
8999 for (vbases = CLASSTYPE_VBASECLASSES (t), ix = 0;
9000 vec_safe_iterate (vbases, ix, &vbinfo); ix++)
9001 BINFO_VTABLE_PATH_MARKED (vbinfo) = 0;
9003 /* If the target requires padding between data entries, add that now. */
9004 if (TARGET_VTABLE_DATA_ENTRY_DISTANCE > 1)
9006 int n_entries = vec_safe_length (vid.inits);
9008 vec_safe_grow (vid.inits, TARGET_VTABLE_DATA_ENTRY_DISTANCE * n_entries);
9010 /* Move data entries into their new positions and add padding
9011 after the new positions. Iterate backwards so we don't
9012 overwrite entries that we would need to process later. */
9013 for (ix = n_entries - 1;
9014 vid.inits->iterate (ix, &e);
9015 ix--)
9017 int j;
9018 int new_position = (TARGET_VTABLE_DATA_ENTRY_DISTANCE * ix
9019 + (TARGET_VTABLE_DATA_ENTRY_DISTANCE - 1));
9021 (*vid.inits)[new_position] = *e;
9023 for (j = 1; j < TARGET_VTABLE_DATA_ENTRY_DISTANCE; ++j)
9025 constructor_elt *f = &(*vid.inits)[new_position - j];
9026 f->index = NULL_TREE;
9027 f->value = build1 (NOP_EXPR, vtable_entry_type,
9028 null_pointer_node);
9033 if (non_fn_entries_p)
9034 *non_fn_entries_p = vec_safe_length (vid.inits);
9036 /* The initializers for virtual functions were built up in reverse
9037 order. Straighten them out and add them to the running list in one
9038 step. */
9039 jx = vec_safe_length (*inits);
9040 vec_safe_grow (*inits, jx + vid.inits->length ());
9042 for (ix = vid.inits->length () - 1;
9043 vid.inits->iterate (ix, &e);
9044 ix--, jx++)
9045 (**inits)[jx] = *e;
9047 /* Go through all the ordinary virtual functions, building up
9048 initializers. */
9049 for (v = BINFO_VIRTUALS (orig_binfo); v; v = TREE_CHAIN (v))
9051 tree delta;
9052 tree vcall_index;
9053 tree fn, fn_original;
9054 tree init = NULL_TREE;
9056 fn = BV_FN (v);
9057 fn_original = fn;
9058 if (DECL_THUNK_P (fn))
9060 if (!DECL_NAME (fn))
9061 finish_thunk (fn);
9062 if (THUNK_ALIAS (fn))
9064 fn = THUNK_ALIAS (fn);
9065 BV_FN (v) = fn;
9067 fn_original = THUNK_TARGET (fn);
9070 /* If the only definition of this function signature along our
9071 primary base chain is from a lost primary, this vtable slot will
9072 never be used, so just zero it out. This is important to avoid
9073 requiring extra thunks which cannot be generated with the function.
9075 We first check this in update_vtable_entry_for_fn, so we handle
9076 restored primary bases properly; we also need to do it here so we
9077 zero out unused slots in ctor vtables, rather than filling them
9078 with erroneous values (though harmless, apart from relocation
9079 costs). */
9080 if (BV_LOST_PRIMARY (v))
9081 init = size_zero_node;
9083 if (! init)
9085 /* Pull the offset for `this', and the function to call, out of
9086 the list. */
9087 delta = BV_DELTA (v);
9088 vcall_index = BV_VCALL_INDEX (v);
9090 gcc_assert (TREE_CODE (delta) == INTEGER_CST);
9091 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
9093 /* You can't call an abstract virtual function; it's abstract.
9094 So, we replace these functions with __pure_virtual. */
9095 if (DECL_PURE_VIRTUAL_P (fn_original))
9097 fn = abort_fndecl;
9098 if (!TARGET_VTABLE_USES_DESCRIPTORS)
9100 if (abort_fndecl_addr == NULL)
9101 abort_fndecl_addr
9102 = fold_convert (vfunc_ptr_type_node,
9103 build_fold_addr_expr (fn));
9104 init = abort_fndecl_addr;
9107 /* Likewise for deleted virtuals. */
9108 else if (DECL_DELETED_FN (fn_original))
9110 fn = get_identifier ("__cxa_deleted_virtual");
9111 if (!get_global_value_if_present (fn, &fn))
9112 fn = push_library_fn (fn, (build_function_type_list
9113 (void_type_node, NULL_TREE)),
9114 NULL_TREE, ECF_NORETURN);
9115 if (!TARGET_VTABLE_USES_DESCRIPTORS)
9116 init = fold_convert (vfunc_ptr_type_node,
9117 build_fold_addr_expr (fn));
9119 else
9121 if (!integer_zerop (delta) || vcall_index)
9123 fn = make_thunk (fn, /*this_adjusting=*/1, delta, vcall_index);
9124 if (!DECL_NAME (fn))
9125 finish_thunk (fn);
9127 /* Take the address of the function, considering it to be of an
9128 appropriate generic type. */
9129 if (!TARGET_VTABLE_USES_DESCRIPTORS)
9130 init = fold_convert (vfunc_ptr_type_node,
9131 build_fold_addr_expr (fn));
9132 /* Don't refer to a virtual destructor from a constructor
9133 vtable or a vtable for an abstract class, since destroying
9134 an object under construction is undefined behavior and we
9135 don't want it to be considered a candidate for speculative
9136 devirtualization. But do create the thunk for ABI
9137 compliance. */
9138 if (DECL_DESTRUCTOR_P (fn_original)
9139 && (CLASSTYPE_PURE_VIRTUALS (DECL_CONTEXT (fn_original))
9140 || orig_binfo != binfo))
9141 init = size_zero_node;
9145 /* And add it to the chain of initializers. */
9146 if (TARGET_VTABLE_USES_DESCRIPTORS)
9148 int i;
9149 if (init == size_zero_node)
9150 for (i = 0; i < TARGET_VTABLE_USES_DESCRIPTORS; ++i)
9151 CONSTRUCTOR_APPEND_ELT (*inits, NULL_TREE, init);
9152 else
9153 for (i = 0; i < TARGET_VTABLE_USES_DESCRIPTORS; ++i)
9155 tree fdesc = build2 (FDESC_EXPR, vfunc_ptr_type_node,
9156 fn, build_int_cst (NULL_TREE, i));
9157 TREE_CONSTANT (fdesc) = 1;
9159 CONSTRUCTOR_APPEND_ELT (*inits, NULL_TREE, fdesc);
9162 else
9163 CONSTRUCTOR_APPEND_ELT (*inits, NULL_TREE, init);
9167 /* Adds to vid->inits the initializers for the vbase and vcall
9168 offsets in BINFO, which is in the hierarchy dominated by T. */
9170 static void
9171 build_vcall_and_vbase_vtbl_entries (tree binfo, vtbl_init_data* vid)
9173 tree b;
9175 /* If this is a derived class, we must first create entries
9176 corresponding to the primary base class. */
9177 b = get_primary_binfo (binfo);
9178 if (b)
9179 build_vcall_and_vbase_vtbl_entries (b, vid);
9181 /* Add the vbase entries for this base. */
9182 build_vbase_offset_vtbl_entries (binfo, vid);
9183 /* Add the vcall entries for this base. */
9184 build_vcall_offset_vtbl_entries (binfo, vid);
9187 /* Returns the initializers for the vbase offset entries in the vtable
9188 for BINFO (which is part of the class hierarchy dominated by T), in
9189 reverse order. VBASE_OFFSET_INDEX gives the vtable index
9190 where the next vbase offset will go. */
9192 static void
9193 build_vbase_offset_vtbl_entries (tree binfo, vtbl_init_data* vid)
9195 tree vbase;
9196 tree t;
9197 tree non_primary_binfo;
9199 /* If there are no virtual baseclasses, then there is nothing to
9200 do. */
9201 if (!CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo)))
9202 return;
9204 t = vid->derived;
9206 /* We might be a primary base class. Go up the inheritance hierarchy
9207 until we find the most derived class of which we are a primary base:
9208 it is the offset of that which we need to use. */
9209 non_primary_binfo = binfo;
9210 while (BINFO_INHERITANCE_CHAIN (non_primary_binfo))
9212 tree b;
9214 /* If we have reached a virtual base, then it must be a primary
9215 base (possibly multi-level) of vid->binfo, or we wouldn't
9216 have called build_vcall_and_vbase_vtbl_entries for it. But it
9217 might be a lost primary, so just skip down to vid->binfo. */
9218 if (BINFO_VIRTUAL_P (non_primary_binfo))
9220 non_primary_binfo = vid->binfo;
9221 break;
9224 b = BINFO_INHERITANCE_CHAIN (non_primary_binfo);
9225 if (get_primary_binfo (b) != non_primary_binfo)
9226 break;
9227 non_primary_binfo = b;
9230 /* Go through the virtual bases, adding the offsets. */
9231 for (vbase = TYPE_BINFO (BINFO_TYPE (binfo));
9232 vbase;
9233 vbase = TREE_CHAIN (vbase))
9235 tree b;
9236 tree delta;
9238 if (!BINFO_VIRTUAL_P (vbase))
9239 continue;
9241 /* Find the instance of this virtual base in the complete
9242 object. */
9243 b = copied_binfo (vbase, binfo);
9245 /* If we've already got an offset for this virtual base, we
9246 don't need another one. */
9247 if (BINFO_VTABLE_PATH_MARKED (b))
9248 continue;
9249 BINFO_VTABLE_PATH_MARKED (b) = 1;
9251 /* Figure out where we can find this vbase offset. */
9252 delta = size_binop (MULT_EXPR,
9253 vid->index,
9254 convert (ssizetype,
9255 TYPE_SIZE_UNIT (vtable_entry_type)));
9256 if (vid->primary_vtbl_p)
9257 BINFO_VPTR_FIELD (b) = delta;
9259 if (binfo != TYPE_BINFO (t))
9260 /* The vbase offset had better be the same. */
9261 gcc_assert (tree_int_cst_equal (delta, BINFO_VPTR_FIELD (vbase)));
9263 /* The next vbase will come at a more negative offset. */
9264 vid->index = size_binop (MINUS_EXPR, vid->index,
9265 ssize_int (TARGET_VTABLE_DATA_ENTRY_DISTANCE));
9267 /* The initializer is the delta from BINFO to this virtual base.
9268 The vbase offsets go in reverse inheritance-graph order, and
9269 we are walking in inheritance graph order so these end up in
9270 the right order. */
9271 delta = size_diffop_loc (input_location,
9272 BINFO_OFFSET (b), BINFO_OFFSET (non_primary_binfo));
9274 CONSTRUCTOR_APPEND_ELT (vid->inits, NULL_TREE,
9275 fold_build1_loc (input_location, NOP_EXPR,
9276 vtable_entry_type, delta));
9280 /* Adds the initializers for the vcall offset entries in the vtable
9281 for BINFO (which is part of the class hierarchy dominated by VID->DERIVED)
9282 to VID->INITS. */
9284 static void
9285 build_vcall_offset_vtbl_entries (tree binfo, vtbl_init_data* vid)
9287 /* We only need these entries if this base is a virtual base. We
9288 compute the indices -- but do not add to the vtable -- when
9289 building the main vtable for a class. */
9290 if (binfo == TYPE_BINFO (vid->derived)
9291 || (BINFO_VIRTUAL_P (binfo)
9292 /* If BINFO is RTTI_BINFO, then (since BINFO does not
9293 correspond to VID->DERIVED), we are building a primary
9294 construction virtual table. Since this is a primary
9295 virtual table, we do not need the vcall offsets for
9296 BINFO. */
9297 && binfo != vid->rtti_binfo))
9299 /* We need a vcall offset for each of the virtual functions in this
9300 vtable. For example:
9302 class A { virtual void f (); };
9303 class B1 : virtual public A { virtual void f (); };
9304 class B2 : virtual public A { virtual void f (); };
9305 class C: public B1, public B2 { virtual void f (); };
9307 A C object has a primary base of B1, which has a primary base of A. A
9308 C also has a secondary base of B2, which no longer has a primary base
9309 of A. So the B2-in-C construction vtable needs a secondary vtable for
9310 A, which will adjust the A* to a B2* to call f. We have no way of
9311 knowing what (or even whether) this offset will be when we define B2,
9312 so we store this "vcall offset" in the A sub-vtable and look it up in
9313 a "virtual thunk" for B2::f.
9315 We need entries for all the functions in our primary vtable and
9316 in our non-virtual bases' secondary vtables. */
9317 vid->vbase = binfo;
9318 /* If we are just computing the vcall indices -- but do not need
9319 the actual entries -- not that. */
9320 if (!BINFO_VIRTUAL_P (binfo))
9321 vid->generate_vcall_entries = false;
9322 /* Now, walk through the non-virtual bases, adding vcall offsets. */
9323 add_vcall_offset_vtbl_entries_r (binfo, vid);
9327 /* Build vcall offsets, starting with those for BINFO. */
9329 static void
9330 add_vcall_offset_vtbl_entries_r (tree binfo, vtbl_init_data* vid)
9332 int i;
9333 tree primary_binfo;
9334 tree base_binfo;
9336 /* Don't walk into virtual bases -- except, of course, for the
9337 virtual base for which we are building vcall offsets. Any
9338 primary virtual base will have already had its offsets generated
9339 through the recursion in build_vcall_and_vbase_vtbl_entries. */
9340 if (BINFO_VIRTUAL_P (binfo) && vid->vbase != binfo)
9341 return;
9343 /* If BINFO has a primary base, process it first. */
9344 primary_binfo = get_primary_binfo (binfo);
9345 if (primary_binfo)
9346 add_vcall_offset_vtbl_entries_r (primary_binfo, vid);
9348 /* Add BINFO itself to the list. */
9349 add_vcall_offset_vtbl_entries_1 (binfo, vid);
9351 /* Scan the non-primary bases of BINFO. */
9352 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
9353 if (base_binfo != primary_binfo)
9354 add_vcall_offset_vtbl_entries_r (base_binfo, vid);
9357 /* Called from build_vcall_offset_vtbl_entries_r. */
9359 static void
9360 add_vcall_offset_vtbl_entries_1 (tree binfo, vtbl_init_data* vid)
9362 /* Make entries for the rest of the virtuals. */
9363 tree orig_fn;
9365 /* The ABI requires that the methods be processed in declaration
9366 order. */
9367 for (orig_fn = TYPE_METHODS (BINFO_TYPE (binfo));
9368 orig_fn;
9369 orig_fn = DECL_CHAIN (orig_fn))
9370 if (TREE_CODE (orig_fn) == FUNCTION_DECL && DECL_VINDEX (orig_fn))
9371 add_vcall_offset (orig_fn, binfo, vid);
9374 /* Add a vcall offset entry for ORIG_FN to the vtable. */
9376 static void
9377 add_vcall_offset (tree orig_fn, tree binfo, vtbl_init_data *vid)
9379 size_t i;
9380 tree vcall_offset;
9381 tree derived_entry;
9383 /* If there is already an entry for a function with the same
9384 signature as FN, then we do not need a second vcall offset.
9385 Check the list of functions already present in the derived
9386 class vtable. */
9387 FOR_EACH_VEC_SAFE_ELT (vid->fns, i, derived_entry)
9389 if (same_signature_p (derived_entry, orig_fn)
9390 /* We only use one vcall offset for virtual destructors,
9391 even though there are two virtual table entries. */
9392 || (DECL_DESTRUCTOR_P (derived_entry)
9393 && DECL_DESTRUCTOR_P (orig_fn)))
9394 return;
9397 /* If we are building these vcall offsets as part of building
9398 the vtable for the most derived class, remember the vcall
9399 offset. */
9400 if (vid->binfo == TYPE_BINFO (vid->derived))
9402 tree_pair_s elt = {orig_fn, vid->index};
9403 vec_safe_push (CLASSTYPE_VCALL_INDICES (vid->derived), elt);
9406 /* The next vcall offset will be found at a more negative
9407 offset. */
9408 vid->index = size_binop (MINUS_EXPR, vid->index,
9409 ssize_int (TARGET_VTABLE_DATA_ENTRY_DISTANCE));
9411 /* Keep track of this function. */
9412 vec_safe_push (vid->fns, orig_fn);
9414 if (vid->generate_vcall_entries)
9416 tree base;
9417 tree fn;
9419 /* Find the overriding function. */
9420 fn = find_final_overrider (vid->rtti_binfo, binfo, orig_fn);
9421 if (fn == error_mark_node)
9422 vcall_offset = build_zero_cst (vtable_entry_type);
9423 else
9425 base = TREE_VALUE (fn);
9427 /* The vbase we're working on is a primary base of
9428 vid->binfo. But it might be a lost primary, so its
9429 BINFO_OFFSET might be wrong, so we just use the
9430 BINFO_OFFSET from vid->binfo. */
9431 vcall_offset = size_diffop_loc (input_location,
9432 BINFO_OFFSET (base),
9433 BINFO_OFFSET (vid->binfo));
9434 vcall_offset = fold_build1_loc (input_location,
9435 NOP_EXPR, vtable_entry_type,
9436 vcall_offset);
9438 /* Add the initializer to the vtable. */
9439 CONSTRUCTOR_APPEND_ELT (vid->inits, NULL_TREE, vcall_offset);
9443 /* Return vtbl initializers for the RTTI entries corresponding to the
9444 BINFO's vtable. The RTTI entries should indicate the object given
9445 by VID->rtti_binfo. */
9447 static void
9448 build_rtti_vtbl_entries (tree binfo, vtbl_init_data* vid)
9450 tree b;
9451 tree t;
9452 tree offset;
9453 tree decl;
9454 tree init;
9456 t = BINFO_TYPE (vid->rtti_binfo);
9458 /* To find the complete object, we will first convert to our most
9459 primary base, and then add the offset in the vtbl to that value. */
9460 b = binfo;
9461 while (CLASSTYPE_HAS_PRIMARY_BASE_P (BINFO_TYPE (b))
9462 && !BINFO_LOST_PRIMARY_P (b))
9464 tree primary_base;
9466 primary_base = get_primary_binfo (b);
9467 gcc_assert (BINFO_PRIMARY_P (primary_base)
9468 && BINFO_INHERITANCE_CHAIN (primary_base) == b);
9469 b = primary_base;
9471 offset = size_diffop_loc (input_location,
9472 BINFO_OFFSET (vid->rtti_binfo), BINFO_OFFSET (b));
9474 /* The second entry is the address of the typeinfo object. */
9475 if (flag_rtti)
9476 decl = build_address (get_tinfo_decl (t));
9477 else
9478 decl = integer_zero_node;
9480 /* Convert the declaration to a type that can be stored in the
9481 vtable. */
9482 init = build_nop (vfunc_ptr_type_node, decl);
9483 CONSTRUCTOR_APPEND_ELT (vid->inits, NULL_TREE, init);
9485 /* Add the offset-to-top entry. It comes earlier in the vtable than
9486 the typeinfo entry. Convert the offset to look like a
9487 function pointer, so that we can put it in the vtable. */
9488 init = build_nop (vfunc_ptr_type_node, offset);
9489 CONSTRUCTOR_APPEND_ELT (vid->inits, NULL_TREE, init);
9492 /* TRUE iff TYPE is uniquely derived from PARENT. Ignores
9493 accessibility. */
9495 bool
9496 uniquely_derived_from_p (tree parent, tree type)
9498 tree base = lookup_base (type, parent, ba_unique, NULL, tf_none);
9499 return base && base != error_mark_node;
9502 /* TRUE iff TYPE is publicly & uniquely derived from PARENT. */
9504 bool
9505 publicly_uniquely_derived_p (tree parent, tree type)
9507 tree base = lookup_base (type, parent, ba_ignore_scope | ba_check,
9508 NULL, tf_none);
9509 return base && base != error_mark_node;
9512 /* CTX1 and CTX2 are declaration contexts. Return the innermost common
9513 class between them, if any. */
9515 tree
9516 common_enclosing_class (tree ctx1, tree ctx2)
9518 if (!TYPE_P (ctx1) || !TYPE_P (ctx2))
9519 return NULL_TREE;
9520 gcc_assert (ctx1 == TYPE_MAIN_VARIANT (ctx1)
9521 && ctx2 == TYPE_MAIN_VARIANT (ctx2));
9522 if (ctx1 == ctx2)
9523 return ctx1;
9524 for (tree t = ctx1; TYPE_P (t); t = TYPE_CONTEXT (t))
9525 TYPE_MARKED_P (t) = true;
9526 tree found = NULL_TREE;
9527 for (tree t = ctx2; TYPE_P (t); t = TYPE_CONTEXT (t))
9528 if (TYPE_MARKED_P (t))
9530 found = t;
9531 break;
9533 for (tree t = ctx1; TYPE_P (t); t = TYPE_CONTEXT (t))
9534 TYPE_MARKED_P (t) = false;
9535 return found;
9538 #include "gt-cp-class.h"