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