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