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