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