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