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