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