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