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