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