re PR c++/16623 (g++ ICE in tsubst_decl:6081)
[gcc.git] / gcc / cp / search.c
1 /* Breadth-first and depth-first routines for
2 searching multiple-inheritance lattice for GNU C++.
3 Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 1999, 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
5 Contributed by Michael Tiemann (tiemann@cygnus.com)
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
13
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING. If not, write to
21 the Free Software Foundation, 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
23
24 /* High-level class interface. */
25
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "tm.h"
30 #include "tree.h"
31 #include "cp-tree.h"
32 #include "obstack.h"
33 #include "flags.h"
34 #include "rtl.h"
35 #include "output.h"
36 #include "toplev.h"
37 #include "stack.h"
38
39 struct vbase_info
40 {
41 /* The class dominating the hierarchy. */
42 tree type;
43 /* A pointer to a complete object of the indicated TYPE. */
44 tree decl_ptr;
45 tree inits;
46 };
47
48 static tree dfs_check_overlap (tree, void *);
49 static tree dfs_no_overlap_yet (tree, int, void *);
50 static base_kind lookup_base_r (tree, tree, base_access, bool, tree *);
51 static int dynamic_cast_base_recurse (tree, tree, bool, tree *);
52 static tree dfs_debug_unmarkedp (tree, int, void *);
53 static tree dfs_debug_mark (tree, void *);
54 static tree add_conversions (tree, void *);
55 static int look_for_overrides_r (tree, tree);
56 static tree bfs_walk (tree, tree (*) (tree, void *),
57 tree (*) (tree, int, void *), void *);
58 static tree lookup_field_queue_p (tree, int, void *);
59 static int shared_member_p (tree);
60 static tree lookup_field_r (tree, void *);
61 static tree dfs_accessible_queue_p (tree, int, void *);
62 static tree dfs_accessible_p (tree, void *);
63 static tree dfs_access_in_type (tree, void *);
64 static access_kind access_in_type (tree, tree);
65 static int protected_accessible_p (tree, tree, tree);
66 static int friend_accessible_p (tree, tree, tree);
67 static int template_self_reference_p (tree, tree);
68 static tree dfs_get_pure_virtuals (tree, void *);
69
70 \f
71 /* Variables for gathering statistics. */
72 #ifdef GATHER_STATISTICS
73 static int n_fields_searched;
74 static int n_calls_lookup_field, n_calls_lookup_field_1;
75 static int n_calls_lookup_fnfields, n_calls_lookup_fnfields_1;
76 static int n_calls_get_base_type;
77 static int n_outer_fields_searched;
78 static int n_contexts_saved;
79 #endif /* GATHER_STATISTICS */
80
81 \f
82 /* Worker for lookup_base. BINFO is the binfo we are searching at,
83 BASE is the RECORD_TYPE we are searching for. ACCESS is the
84 required access checks. IS_VIRTUAL indicates if BINFO is morally
85 virtual.
86
87 If BINFO is of the required type, then *BINFO_PTR is examined to
88 compare with any other instance of BASE we might have already
89 discovered. *BINFO_PTR is initialized and a base_kind return value
90 indicates what kind of base was located.
91
92 Otherwise BINFO's bases are searched. */
93
94 static base_kind
95 lookup_base_r (tree binfo, tree base, base_access access,
96 bool is_virtual, /* inside a virtual part */
97 tree *binfo_ptr)
98 {
99 int i;
100 tree base_binfo;
101 base_kind found = bk_not_base;
102
103 if (same_type_p (BINFO_TYPE (binfo), base))
104 {
105 /* We have found a base. Check against what we have found
106 already. */
107 found = bk_same_type;
108 if (is_virtual)
109 found = bk_via_virtual;
110
111 if (!*binfo_ptr)
112 *binfo_ptr = binfo;
113 else if (binfo != *binfo_ptr)
114 {
115 if (access != ba_any)
116 *binfo_ptr = NULL;
117 else if (!is_virtual)
118 /* Prefer a non-virtual base. */
119 *binfo_ptr = binfo;
120 found = bk_ambig;
121 }
122
123 return found;
124 }
125
126 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
127 {
128 base_kind bk;
129
130 bk = lookup_base_r (base_binfo, base,
131 access,
132 is_virtual || BINFO_VIRTUAL_P (base_binfo),
133 binfo_ptr);
134
135 switch (bk)
136 {
137 case bk_ambig:
138 if (access != ba_any)
139 return bk;
140 found = bk;
141 break;
142
143 case bk_same_type:
144 bk = bk_proper_base;
145 /* Fall through. */
146 case bk_proper_base:
147 my_friendly_assert (found == bk_not_base, 20010723);
148 found = bk;
149 break;
150
151 case bk_via_virtual:
152 if (found != bk_ambig)
153 found = bk;
154 break;
155
156 case bk_not_base:
157 break;
158
159 default:
160 abort ();
161 }
162 }
163 return found;
164 }
165
166 /* Returns true if type BASE is accessible in T. (BASE is known to be
167 a (possibly non-proper) base class of T.) */
168
169 bool
170 accessible_base_p (tree t, tree base)
171 {
172 tree decl;
173
174 /* [class.access.base]
175
176 A base class is said to be accessible if an invented public
177 member of the base class is accessible.
178
179 If BASE is a non-proper base, this condition is trivially
180 true. */
181 if (same_type_p (t, base))
182 return true;
183 /* Rather than inventing a public member, we use the implicit
184 public typedef created in the scope of every class. */
185 decl = TYPE_FIELDS (base);
186 while (!DECL_SELF_REFERENCE_P (decl))
187 decl = TREE_CHAIN (decl);
188 while (ANON_AGGR_TYPE_P (t))
189 t = TYPE_CONTEXT (t);
190 return accessible_p (t, decl);
191 }
192
193 /* Lookup BASE in the hierarchy dominated by T. Do access checking as
194 ACCESS specifies. Return the binfo we discover. If KIND_PTR is
195 non-NULL, fill with information about what kind of base we
196 discovered.
197
198 If the base is inaccessible, or ambiguous, and the ba_quiet bit is
199 not set in ACCESS, then an error is issued and error_mark_node is
200 returned. If the ba_quiet bit is set, then no error is issued and
201 NULL_TREE is returned. */
202
203 tree
204 lookup_base (tree t, tree base, base_access access, base_kind *kind_ptr)
205 {
206 tree binfo = NULL_TREE; /* The binfo we've found so far. */
207 tree t_binfo = NULL_TREE;
208 base_kind bk;
209
210 if (t == error_mark_node || base == error_mark_node)
211 {
212 if (kind_ptr)
213 *kind_ptr = bk_not_base;
214 return error_mark_node;
215 }
216 my_friendly_assert (TYPE_P (base), 20011127);
217
218 if (!TYPE_P (t))
219 {
220 t_binfo = t;
221 t = BINFO_TYPE (t);
222 }
223 else
224 {
225 t = complete_type (TYPE_MAIN_VARIANT (t));
226 t_binfo = TYPE_BINFO (t);
227 }
228
229 base = complete_type (TYPE_MAIN_VARIANT (base));
230
231 if (t_binfo)
232 bk = lookup_base_r (t_binfo, base, access, 0, &binfo);
233 else
234 bk = bk_not_base;
235
236 /* Check that the base is unambiguous and accessible. */
237 if (access != ba_any)
238 switch (bk)
239 {
240 case bk_not_base:
241 break;
242
243 case bk_ambig:
244 binfo = NULL_TREE;
245 if (!(access & ba_quiet))
246 {
247 error ("`%T' is an ambiguous base of `%T'", base, t);
248 binfo = error_mark_node;
249 }
250 break;
251
252 default:
253 if ((access & ~ba_quiet) != ba_ignore
254 /* If BASE is incomplete, then BASE and TYPE are probably
255 the same, in which case BASE is accessible. If they
256 are not the same, then TYPE is invalid. In that case,
257 there's no need to issue another error here, and
258 there's no implicit typedef to use in the code that
259 follows, so we skip the check. */
260 && COMPLETE_TYPE_P (base)
261 && !accessible_base_p (t, base))
262 {
263 if (!(access & ba_quiet))
264 {
265 error ("`%T' is an inaccessible base of `%T'", base, t);
266 binfo = error_mark_node;
267 }
268 else
269 binfo = NULL_TREE;
270 bk = bk_inaccessible;
271 }
272 break;
273 }
274
275 if (kind_ptr)
276 *kind_ptr = bk;
277
278 return binfo;
279 }
280
281 /* Worker function for get_dynamic_cast_base_type. */
282
283 static int
284 dynamic_cast_base_recurse (tree subtype, tree binfo, bool is_via_virtual,
285 tree *offset_ptr)
286 {
287 tree accesses;
288 tree base_binfo;
289 int i;
290 int worst = -2;
291
292 if (BINFO_TYPE (binfo) == subtype)
293 {
294 if (is_via_virtual)
295 return -1;
296 else
297 {
298 *offset_ptr = BINFO_OFFSET (binfo);
299 return 0;
300 }
301 }
302
303 accesses = BINFO_BASE_ACCESSES (binfo);
304 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
305 {
306 tree base_access = TREE_VEC_ELT (accesses, i);
307 int rval;
308
309 if (base_access != access_public_node)
310 continue;
311 rval = dynamic_cast_base_recurse
312 (subtype, base_binfo,
313 is_via_virtual || BINFO_VIRTUAL_P (base_binfo), offset_ptr);
314 if (worst == -2)
315 worst = rval;
316 else if (rval >= 0)
317 worst = worst >= 0 ? -3 : worst;
318 else if (rval == -1)
319 worst = -1;
320 else if (rval == -3 && worst != -1)
321 worst = -3;
322 }
323 return worst;
324 }
325
326 /* The dynamic cast runtime needs a hint about how the static SUBTYPE type
327 started from is related to the required TARGET type, in order to optimize
328 the inheritance graph search. This information is independent of the
329 current context, and ignores private paths, hence get_base_distance is
330 inappropriate. Return a TREE specifying the base offset, BOFF.
331 BOFF >= 0, there is only one public non-virtual SUBTYPE base at offset BOFF,
332 and there are no public virtual SUBTYPE bases.
333 BOFF == -1, SUBTYPE occurs as multiple public virtual or non-virtual bases.
334 BOFF == -2, SUBTYPE is not a public base.
335 BOFF == -3, SUBTYPE occurs as multiple public non-virtual bases. */
336
337 tree
338 get_dynamic_cast_base_type (tree subtype, tree target)
339 {
340 tree offset = NULL_TREE;
341 int boff = dynamic_cast_base_recurse (subtype, TYPE_BINFO (target),
342 false, &offset);
343
344 if (!boff)
345 return offset;
346 offset = build_int_2 (boff, -1);
347 TREE_TYPE (offset) = ssizetype;
348 return offset;
349 }
350
351 /* Search for a member with name NAME in a multiple inheritance
352 lattice specified by TYPE. If it does not exist, return NULL_TREE.
353 If the member is ambiguously referenced, return `error_mark_node'.
354 Otherwise, return a DECL with the indicated name. If WANT_TYPE is
355 true, type declarations are preferred. */
356
357 /* Do a 1-level search for NAME as a member of TYPE. The caller must
358 figure out whether it can access this field. (Since it is only one
359 level, this is reasonable.) */
360
361 tree
362 lookup_field_1 (tree type, tree name, bool want_type)
363 {
364 tree field;
365
366 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
367 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
368 || TREE_CODE (type) == TYPENAME_TYPE)
369 /* The TYPE_FIELDS of a TEMPLATE_TYPE_PARM and
370 BOUND_TEMPLATE_TEMPLATE_PARM are not fields at all;
371 instead TYPE_FIELDS is the TEMPLATE_PARM_INDEX. (Miraculously,
372 the code often worked even when we treated the index as a list
373 of fields!)
374 The TYPE_FIELDS of TYPENAME_TYPE is its TYPENAME_TYPE_FULLNAME. */
375 return NULL_TREE;
376
377 if (TYPE_NAME (type)
378 && DECL_LANG_SPECIFIC (TYPE_NAME (type))
379 && DECL_SORTED_FIELDS (TYPE_NAME (type)))
380 {
381 tree *fields = &DECL_SORTED_FIELDS (TYPE_NAME (type))->elts[0];
382 int lo = 0, hi = DECL_SORTED_FIELDS (TYPE_NAME (type))->len;
383 int i;
384
385 while (lo < hi)
386 {
387 i = (lo + hi) / 2;
388
389 #ifdef GATHER_STATISTICS
390 n_fields_searched++;
391 #endif /* GATHER_STATISTICS */
392
393 if (DECL_NAME (fields[i]) > name)
394 hi = i;
395 else if (DECL_NAME (fields[i]) < name)
396 lo = i + 1;
397 else
398 {
399 field = NULL_TREE;
400
401 /* We might have a nested class and a field with the
402 same name; we sorted them appropriately via
403 field_decl_cmp, so just look for the first or last
404 field with this name. */
405 if (want_type)
406 {
407 do
408 field = fields[i--];
409 while (i >= lo && DECL_NAME (fields[i]) == name);
410 if (TREE_CODE (field) != TYPE_DECL
411 && !DECL_CLASS_TEMPLATE_P (field))
412 field = NULL_TREE;
413 }
414 else
415 {
416 do
417 field = fields[i++];
418 while (i < hi && DECL_NAME (fields[i]) == name);
419 }
420 return field;
421 }
422 }
423 return NULL_TREE;
424 }
425
426 field = TYPE_FIELDS (type);
427
428 #ifdef GATHER_STATISTICS
429 n_calls_lookup_field_1++;
430 #endif /* GATHER_STATISTICS */
431 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
432 {
433 #ifdef GATHER_STATISTICS
434 n_fields_searched++;
435 #endif /* GATHER_STATISTICS */
436 my_friendly_assert (DECL_P (field), 0);
437 if (DECL_NAME (field) == NULL_TREE
438 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
439 {
440 tree temp = lookup_field_1 (TREE_TYPE (field), name, want_type);
441 if (temp)
442 return temp;
443 }
444 if (TREE_CODE (field) == USING_DECL)
445 {
446 /* We generally treat class-scope using-declarations as
447 ARM-style access specifications, because support for the
448 ISO semantics has not been implemented. So, in general,
449 there's no reason to return a USING_DECL, and the rest of
450 the compiler cannot handle that. Once the class is
451 defined, USING_DECLs are purged from TYPE_FIELDS; see
452 handle_using_decl. However, we make special efforts to
453 make using-declarations in template classes work
454 correctly. */
455 if (CLASSTYPE_TEMPLATE_INFO (type)
456 && !CLASSTYPE_USE_TEMPLATE (type)
457 && !TREE_TYPE (field))
458 ;
459 else
460 continue;
461 }
462
463 if (DECL_NAME (field) == name
464 && (!want_type
465 || TREE_CODE (field) == TYPE_DECL
466 || DECL_CLASS_TEMPLATE_P (field)))
467 return field;
468 }
469 /* Not found. */
470 if (name == vptr_identifier)
471 {
472 /* Give the user what s/he thinks s/he wants. */
473 if (TYPE_POLYMORPHIC_P (type))
474 return TYPE_VFIELD (type);
475 }
476 return NULL_TREE;
477 }
478
479 /* There are a number of cases we need to be aware of here:
480 current_class_type current_function_decl
481 global NULL NULL
482 fn-local NULL SET
483 class-local SET NULL
484 class->fn SET SET
485 fn->class SET SET
486
487 Those last two make life interesting. If we're in a function which is
488 itself inside a class, we need decls to go into the fn's decls (our
489 second case below). But if we're in a class and the class itself is
490 inside a function, we need decls to go into the decls for the class. To
491 achieve this last goal, we must see if, when both current_class_ptr and
492 current_function_decl are set, the class was declared inside that
493 function. If so, we know to put the decls into the class's scope. */
494
495 tree
496 current_scope (void)
497 {
498 if (current_function_decl == NULL_TREE)
499 return current_class_type;
500 if (current_class_type == NULL_TREE)
501 return current_function_decl;
502 if ((DECL_FUNCTION_MEMBER_P (current_function_decl)
503 && same_type_p (DECL_CONTEXT (current_function_decl),
504 current_class_type))
505 || (DECL_FRIEND_CONTEXT (current_function_decl)
506 && same_type_p (DECL_FRIEND_CONTEXT (current_function_decl),
507 current_class_type)))
508 return current_function_decl;
509
510 return current_class_type;
511 }
512
513 /* Returns nonzero if we are currently in a function scope. Note
514 that this function returns zero if we are within a local class, but
515 not within a member function body of the local class. */
516
517 int
518 at_function_scope_p (void)
519 {
520 tree cs = current_scope ();
521 return cs && TREE_CODE (cs) == FUNCTION_DECL;
522 }
523
524 /* Returns true if the innermost active scope is a class scope. */
525
526 bool
527 at_class_scope_p (void)
528 {
529 tree cs = current_scope ();
530 return cs && TYPE_P (cs);
531 }
532
533 /* Returns true if the innermost active scope is a namespace scope. */
534
535 bool
536 at_namespace_scope_p (void)
537 {
538 /* We are in a namespace scope if we are not it a class scope or a
539 function scope. */
540 return !current_scope();
541 }
542
543 /* Return the scope of DECL, as appropriate when doing name-lookup. */
544
545 tree
546 context_for_name_lookup (tree decl)
547 {
548 /* [class.union]
549
550 For the purposes of name lookup, after the anonymous union
551 definition, the members of the anonymous union are considered to
552 have been defined in the scope in which the anonymous union is
553 declared. */
554 tree context = DECL_CONTEXT (decl);
555
556 while (context && TYPE_P (context) && ANON_AGGR_TYPE_P (context))
557 context = TYPE_CONTEXT (context);
558 if (!context)
559 context = global_namespace;
560
561 return context;
562 }
563
564 /* The accessibility routines use BINFO_ACCESS for scratch space
565 during the computation of the accessibility of some declaration. */
566
567 #define BINFO_ACCESS(NODE) \
568 ((access_kind) ((TREE_PUBLIC (NODE) << 1) | TREE_PRIVATE (NODE)))
569
570 /* Set the access associated with NODE to ACCESS. */
571
572 #define SET_BINFO_ACCESS(NODE, ACCESS) \
573 ((TREE_PUBLIC (NODE) = ((ACCESS) & 2) != 0), \
574 (TREE_PRIVATE (NODE) = ((ACCESS) & 1) != 0))
575
576 /* Called from access_in_type via dfs_walk. Calculate the access to
577 DATA (which is really a DECL) in BINFO. */
578
579 static tree
580 dfs_access_in_type (tree binfo, void *data)
581 {
582 tree decl = (tree) data;
583 tree type = BINFO_TYPE (binfo);
584 access_kind access = ak_none;
585
586 if (context_for_name_lookup (decl) == type)
587 {
588 /* If we have descended to the scope of DECL, just note the
589 appropriate access. */
590 if (TREE_PRIVATE (decl))
591 access = ak_private;
592 else if (TREE_PROTECTED (decl))
593 access = ak_protected;
594 else
595 access = ak_public;
596 }
597 else
598 {
599 /* First, check for an access-declaration that gives us more
600 access to the DECL. The CONST_DECL for an enumeration
601 constant will not have DECL_LANG_SPECIFIC, and thus no
602 DECL_ACCESS. */
603 if (DECL_LANG_SPECIFIC (decl) && !DECL_DISCRIMINATOR_P (decl))
604 {
605 tree decl_access = purpose_member (type, DECL_ACCESS (decl));
606
607 if (decl_access)
608 {
609 decl_access = TREE_VALUE (decl_access);
610
611 if (decl_access == access_public_node)
612 access = ak_public;
613 else if (decl_access == access_protected_node)
614 access = ak_protected;
615 else if (decl_access == access_private_node)
616 access = ak_private;
617 else
618 my_friendly_assert (false, 20030217);
619 }
620 }
621
622 if (!access)
623 {
624 int i;
625 tree base_binfo, accesses;
626
627 /* Otherwise, scan our baseclasses, and pick the most favorable
628 access. */
629 accesses = BINFO_BASE_ACCESSES (binfo);
630 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
631 {
632 tree base_access = TREE_VEC_ELT (accesses, i);
633 access_kind base_access_now = BINFO_ACCESS (base_binfo);
634
635 if (base_access_now == ak_none || base_access_now == ak_private)
636 /* If it was not accessible in the base, or only
637 accessible as a private member, we can't access it
638 all. */
639 base_access_now = ak_none;
640 else if (base_access == access_protected_node)
641 /* Public and protected members in the base become
642 protected here. */
643 base_access_now = ak_protected;
644 else if (base_access == access_private_node)
645 /* Public and protected members in the base become
646 private here. */
647 base_access_now = ak_private;
648
649 /* See if the new access, via this base, gives more
650 access than our previous best access. */
651 if (base_access_now != ak_none
652 && (access == ak_none || base_access_now < access))
653 {
654 access = base_access_now;
655
656 /* If the new access is public, we can't do better. */
657 if (access == ak_public)
658 break;
659 }
660 }
661 }
662 }
663
664 /* Note the access to DECL in TYPE. */
665 SET_BINFO_ACCESS (binfo, access);
666
667 /* Mark TYPE as visited so that if we reach it again we do not
668 duplicate our efforts here. */
669 BINFO_MARKED (binfo) = 1;
670
671 return NULL_TREE;
672 }
673
674 /* Return the access to DECL in TYPE. */
675
676 static access_kind
677 access_in_type (tree type, tree decl)
678 {
679 tree binfo = TYPE_BINFO (type);
680
681 /* We must take into account
682
683 [class.paths]
684
685 If a name can be reached by several paths through a multiple
686 inheritance graph, the access is that of the path that gives
687 most access.
688
689 The algorithm we use is to make a post-order depth-first traversal
690 of the base-class hierarchy. As we come up the tree, we annotate
691 each node with the most lenient access. */
692 dfs_walk_real (binfo, 0, dfs_access_in_type, unmarkedp, decl);
693 dfs_walk (binfo, dfs_unmark, markedp, 0);
694
695 return BINFO_ACCESS (binfo);
696 }
697
698 /* Called from accessible_p via dfs_walk. */
699
700 static tree
701 dfs_accessible_queue_p (tree derived, int ix, void *data ATTRIBUTE_UNUSED)
702 {
703 tree binfo = BINFO_BASE_BINFO (derived, ix);
704
705 if (BINFO_MARKED (binfo))
706 return NULL_TREE;
707
708 /* If this class is inherited via private or protected inheritance,
709 then we can't see it, unless we are a friend of the derived class. */
710 if (BINFO_BASE_ACCESS (derived, ix) != access_public_node
711 && !is_friend (BINFO_TYPE (derived), current_scope ()))
712 return NULL_TREE;
713
714 return binfo;
715 }
716
717 /* Called from accessible_p via dfs_walk. */
718
719 static tree
720 dfs_accessible_p (tree binfo, void *data ATTRIBUTE_UNUSED)
721 {
722 access_kind access;
723
724 BINFO_MARKED (binfo) = 1;
725 access = BINFO_ACCESS (binfo);
726 if (access != ak_none
727 && is_friend (BINFO_TYPE (binfo), current_scope ()))
728 return binfo;
729
730 return NULL_TREE;
731 }
732
733 /* Returns nonzero if it is OK to access DECL through an object
734 indicated by BINFO in the context of DERIVED. */
735
736 static int
737 protected_accessible_p (tree decl, tree derived, tree binfo)
738 {
739 access_kind access;
740
741 /* We're checking this clause from [class.access.base]
742
743 m as a member of N is protected, and the reference occurs in a
744 member or friend of class N, or in a member or friend of a
745 class P derived from N, where m as a member of P is private or
746 protected.
747
748 Here DERIVED is a possible P and DECL is m. accessible_p will
749 iterate over various values of N, but the access to m in DERIVED
750 does not change.
751
752 Note that I believe that the passage above is wrong, and should read
753 "...is private or protected or public"; otherwise you get bizarre results
754 whereby a public using-decl can prevent you from accessing a protected
755 member of a base. (jason 2000/02/28) */
756
757 /* If DERIVED isn't derived from m's class, then it can't be a P. */
758 if (!DERIVED_FROM_P (context_for_name_lookup (decl), derived))
759 return 0;
760
761 access = access_in_type (derived, decl);
762
763 /* If m is inaccessible in DERIVED, then it's not a P. */
764 if (access == ak_none)
765 return 0;
766
767 /* [class.protected]
768
769 When a friend or a member function of a derived class references
770 a protected nonstatic member of a base class, an access check
771 applies in addition to those described earlier in clause
772 _class.access_) Except when forming a pointer to member
773 (_expr.unary.op_), the access must be through a pointer to,
774 reference to, or object of the derived class itself (or any class
775 derived from that class) (_expr.ref_). If the access is to form
776 a pointer to member, the nested-name-specifier shall name the
777 derived class (or any class derived from that class). */
778 if (DECL_NONSTATIC_MEMBER_P (decl))
779 {
780 /* We can tell through what the reference is occurring by
781 chasing BINFO up to the root. */
782 tree t = binfo;
783 while (BINFO_INHERITANCE_CHAIN (t))
784 t = BINFO_INHERITANCE_CHAIN (t);
785
786 if (!DERIVED_FROM_P (derived, BINFO_TYPE (t)))
787 return 0;
788 }
789
790 return 1;
791 }
792
793 /* Returns nonzero if SCOPE is a friend of a type which would be able
794 to access DECL through the object indicated by BINFO. */
795
796 static int
797 friend_accessible_p (tree scope, tree decl, tree binfo)
798 {
799 tree befriending_classes;
800 tree t;
801
802 if (!scope)
803 return 0;
804
805 if (TREE_CODE (scope) == FUNCTION_DECL
806 || DECL_FUNCTION_TEMPLATE_P (scope))
807 befriending_classes = DECL_BEFRIENDING_CLASSES (scope);
808 else if (TYPE_P (scope))
809 befriending_classes = CLASSTYPE_BEFRIENDING_CLASSES (scope);
810 else
811 return 0;
812
813 for (t = befriending_classes; t; t = TREE_CHAIN (t))
814 if (protected_accessible_p (decl, TREE_VALUE (t), binfo))
815 return 1;
816
817 /* Nested classes are implicitly friends of their enclosing types, as
818 per core issue 45 (this is a change from the standard). */
819 if (TYPE_P (scope))
820 for (t = TYPE_CONTEXT (scope); t && TYPE_P (t); t = TYPE_CONTEXT (t))
821 if (protected_accessible_p (decl, t, binfo))
822 return 1;
823
824 if (TREE_CODE (scope) == FUNCTION_DECL
825 || DECL_FUNCTION_TEMPLATE_P (scope))
826 {
827 /* Perhaps this SCOPE is a member of a class which is a
828 friend. */
829 if (DECL_CLASS_SCOPE_P (decl)
830 && friend_accessible_p (DECL_CONTEXT (scope), decl, binfo))
831 return 1;
832
833 /* Or an instantiation of something which is a friend. */
834 if (DECL_TEMPLATE_INFO (scope))
835 return friend_accessible_p (DECL_TI_TEMPLATE (scope), decl, binfo);
836 }
837 else if (CLASSTYPE_TEMPLATE_INFO (scope))
838 return friend_accessible_p (CLASSTYPE_TI_TEMPLATE (scope), decl, binfo);
839
840 return 0;
841 }
842
843 /* DECL is a declaration from a base class of TYPE, which was the
844 class used to name DECL. Return nonzero if, in the current
845 context, DECL is accessible. If TYPE is actually a BINFO node,
846 then we can tell in what context the access is occurring by looking
847 at the most derived class along the path indicated by BINFO. */
848
849 int
850 accessible_p (tree type, tree decl)
851 {
852 tree binfo;
853 tree t;
854 tree scope;
855 access_kind access;
856
857 /* Nonzero if it's OK to access DECL if it has protected
858 accessibility in TYPE. */
859 int protected_ok = 0;
860
861 /* If this declaration is in a block or namespace scope, there's no
862 access control. */
863 if (!TYPE_P (context_for_name_lookup (decl)))
864 return 1;
865
866 /* There is no need to perform access checks inside a thunk. */
867 scope = current_scope ();
868 if (scope && DECL_THUNK_P (scope))
869 return 1;
870
871 /* In a template declaration, we cannot be sure whether the
872 particular specialization that is instantiated will be a friend
873 or not. Therefore, all access checks are deferred until
874 instantiation. */
875 if (processing_template_decl)
876 return 1;
877
878 if (!TYPE_P (type))
879 {
880 binfo = type;
881 type = BINFO_TYPE (type);
882 }
883 else
884 binfo = TYPE_BINFO (type);
885
886 /* [class.access.base]
887
888 A member m is accessible when named in class N if
889
890 --m as a member of N is public, or
891
892 --m as a member of N is private, and the reference occurs in a
893 member or friend of class N, or
894
895 --m as a member of N is protected, and the reference occurs in a
896 member or friend of class N, or in a member or friend of a
897 class P derived from N, where m as a member of P is private or
898 protected, or
899
900 --there exists a base class B of N that is accessible at the point
901 of reference, and m is accessible when named in class B.
902
903 We walk the base class hierarchy, checking these conditions. */
904
905 /* Figure out where the reference is occurring. Check to see if
906 DECL is private or protected in this scope, since that will
907 determine whether protected access is allowed. */
908 if (current_class_type)
909 protected_ok = protected_accessible_p (decl, current_class_type, binfo);
910
911 /* Now, loop through the classes of which we are a friend. */
912 if (!protected_ok)
913 protected_ok = friend_accessible_p (scope, decl, binfo);
914
915 /* Standardize the binfo that access_in_type will use. We don't
916 need to know what path was chosen from this point onwards. */
917 binfo = TYPE_BINFO (type);
918
919 /* Compute the accessibility of DECL in the class hierarchy
920 dominated by type. */
921 access = access_in_type (type, decl);
922 if (access == ak_public
923 || (access == ak_protected && protected_ok))
924 return 1;
925 else
926 {
927 /* Walk the hierarchy again, looking for a base class that allows
928 access. */
929 t = dfs_walk (binfo, dfs_accessible_p, dfs_accessible_queue_p, 0);
930 /* Clear any mark bits. Note that we have to walk the whole tree
931 here, since we have aborted the previous walk from some point
932 deep in the tree. */
933 dfs_walk (binfo, dfs_unmark, 0, 0);
934
935 return t != NULL_TREE;
936 }
937 }
938
939 struct lookup_field_info {
940 /* The type in which we're looking. */
941 tree type;
942 /* The name of the field for which we're looking. */
943 tree name;
944 /* If non-NULL, the current result of the lookup. */
945 tree rval;
946 /* The path to RVAL. */
947 tree rval_binfo;
948 /* If non-NULL, the lookup was ambiguous, and this is a list of the
949 candidates. */
950 tree ambiguous;
951 /* If nonzero, we are looking for types, not data members. */
952 int want_type;
953 /* If something went wrong, a message indicating what. */
954 const char *errstr;
955 };
956
957 /* Returns nonzero if BINFO is not hidden by the value found by the
958 lookup so far. If BINFO is hidden, then there's no need to look in
959 it. DATA is really a struct lookup_field_info. Called from
960 lookup_field via breadth_first_search. */
961
962 static tree
963 lookup_field_queue_p (tree derived, int ix, void *data)
964 {
965 tree binfo = BINFO_BASE_BINFO (derived, ix);
966 struct lookup_field_info *lfi = (struct lookup_field_info *) data;
967
968 /* Don't look for constructors or destructors in base classes. */
969 if (IDENTIFIER_CTOR_OR_DTOR_P (lfi->name))
970 return NULL_TREE;
971
972 /* If this base class is hidden by the best-known value so far, we
973 don't need to look. */
974 if (lfi->rval_binfo && original_binfo (binfo, lfi->rval_binfo))
975 return NULL_TREE;
976
977 /* If this is a dependent base, don't look in it. */
978 if (BINFO_DEPENDENT_BASE_P (binfo))
979 return NULL_TREE;
980
981 return binfo;
982 }
983
984 /* Within the scope of a template class, you can refer to the to the
985 current specialization with the name of the template itself. For
986 example:
987
988 template <typename T> struct S { S* sp; }
989
990 Returns nonzero if DECL is such a declaration in a class TYPE. */
991
992 static int
993 template_self_reference_p (tree type, tree decl)
994 {
995 return (CLASSTYPE_USE_TEMPLATE (type)
996 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type))
997 && TREE_CODE (decl) == TYPE_DECL
998 && DECL_ARTIFICIAL (decl)
999 && DECL_NAME (decl) == constructor_name (type));
1000 }
1001
1002
1003 /* Nonzero for a class member means that it is shared between all objects
1004 of that class.
1005
1006 [class.member.lookup]:If the resulting set of declarations are not all
1007 from sub-objects of the same type, or the set has a nonstatic member
1008 and includes members from distinct sub-objects, there is an ambiguity
1009 and the program is ill-formed.
1010
1011 This function checks that T contains no nonstatic members. */
1012
1013 static int
1014 shared_member_p (tree t)
1015 {
1016 if (TREE_CODE (t) == VAR_DECL || TREE_CODE (t) == TYPE_DECL \
1017 || TREE_CODE (t) == CONST_DECL)
1018 return 1;
1019 if (is_overloaded_fn (t))
1020 {
1021 for (; t; t = OVL_NEXT (t))
1022 {
1023 tree fn = OVL_CURRENT (t);
1024 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
1025 return 0;
1026 }
1027 return 1;
1028 }
1029 return 0;
1030 }
1031
1032 /* DATA is really a struct lookup_field_info. Look for a field with
1033 the name indicated there in BINFO. If this function returns a
1034 non-NULL value it is the result of the lookup. Called from
1035 lookup_field via breadth_first_search. */
1036
1037 static tree
1038 lookup_field_r (tree binfo, void *data)
1039 {
1040 struct lookup_field_info *lfi = (struct lookup_field_info *) data;
1041 tree type = BINFO_TYPE (binfo);
1042 tree nval = NULL_TREE;
1043
1044 /* First, look for a function. There can't be a function and a data
1045 member with the same name, and if there's a function and a type
1046 with the same name, the type is hidden by the function. */
1047 if (!lfi->want_type)
1048 {
1049 int idx = lookup_fnfields_1 (type, lfi->name);
1050 if (idx >= 0)
1051 nval = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), idx);
1052 }
1053
1054 if (!nval)
1055 /* Look for a data member or type. */
1056 nval = lookup_field_1 (type, lfi->name, lfi->want_type);
1057
1058 /* If there is no declaration with the indicated name in this type,
1059 then there's nothing to do. */
1060 if (!nval)
1061 return NULL_TREE;
1062
1063 /* If we're looking up a type (as with an elaborated type specifier)
1064 we ignore all non-types we find. */
1065 if (lfi->want_type && TREE_CODE (nval) != TYPE_DECL
1066 && !DECL_CLASS_TEMPLATE_P (nval))
1067 {
1068 if (lfi->name == TYPE_IDENTIFIER (type))
1069 {
1070 /* If the aggregate has no user defined constructors, we allow
1071 it to have fields with the same name as the enclosing type.
1072 If we are looking for that name, find the corresponding
1073 TYPE_DECL. */
1074 for (nval = TREE_CHAIN (nval); nval; nval = TREE_CHAIN (nval))
1075 if (DECL_NAME (nval) == lfi->name
1076 && TREE_CODE (nval) == TYPE_DECL)
1077 break;
1078 }
1079 else
1080 nval = NULL_TREE;
1081 if (!nval && CLASSTYPE_NESTED_UTDS (type) != NULL)
1082 {
1083 binding_entry e = binding_table_find (CLASSTYPE_NESTED_UTDS (type),
1084 lfi->name);
1085 if (e != NULL)
1086 nval = TYPE_MAIN_DECL (e->type);
1087 else
1088 return NULL_TREE;
1089 }
1090 }
1091
1092 /* You must name a template base class with a template-id. */
1093 if (!same_type_p (type, lfi->type)
1094 && template_self_reference_p (type, nval))
1095 return NULL_TREE;
1096
1097 /* If the lookup already found a match, and the new value doesn't
1098 hide the old one, we might have an ambiguity. */
1099 if (lfi->rval_binfo && !original_binfo (lfi->rval_binfo, binfo))
1100 {
1101 if (nval == lfi->rval && shared_member_p (nval))
1102 /* The two things are really the same. */
1103 ;
1104 else if (original_binfo (binfo, lfi->rval_binfo))
1105 /* The previous value hides the new one. */
1106 ;
1107 else
1108 {
1109 /* We have a real ambiguity. We keep a chain of all the
1110 candidates. */
1111 if (!lfi->ambiguous && lfi->rval)
1112 {
1113 /* This is the first time we noticed an ambiguity. Add
1114 what we previously thought was a reasonable candidate
1115 to the list. */
1116 lfi->ambiguous = tree_cons (NULL_TREE, lfi->rval, NULL_TREE);
1117 TREE_TYPE (lfi->ambiguous) = error_mark_node;
1118 }
1119
1120 /* Add the new value. */
1121 lfi->ambiguous = tree_cons (NULL_TREE, nval, lfi->ambiguous);
1122 TREE_TYPE (lfi->ambiguous) = error_mark_node;
1123 lfi->errstr = "request for member `%D' is ambiguous";
1124 }
1125 }
1126 else
1127 {
1128 lfi->rval = nval;
1129 lfi->rval_binfo = binfo;
1130 }
1131
1132 return NULL_TREE;
1133 }
1134
1135 /* Return a "baselink" which BASELINK_BINFO, BASELINK_ACCESS_BINFO,
1136 BASELINK_FUNCTIONS, and BASELINK_OPTYPE set to BINFO, ACCESS_BINFO,
1137 FUNCTIONS, and OPTYPE respectively. */
1138
1139 tree
1140 build_baselink (tree binfo, tree access_binfo, tree functions, tree optype)
1141 {
1142 tree baselink;
1143
1144 my_friendly_assert (TREE_CODE (functions) == FUNCTION_DECL
1145 || TREE_CODE (functions) == TEMPLATE_DECL
1146 || TREE_CODE (functions) == TEMPLATE_ID_EXPR
1147 || TREE_CODE (functions) == OVERLOAD,
1148 20020730);
1149 my_friendly_assert (!optype || TYPE_P (optype), 20020730);
1150 my_friendly_assert (TREE_TYPE (functions), 20020805);
1151
1152 baselink = make_node (BASELINK);
1153 TREE_TYPE (baselink) = TREE_TYPE (functions);
1154 BASELINK_BINFO (baselink) = binfo;
1155 BASELINK_ACCESS_BINFO (baselink) = access_binfo;
1156 BASELINK_FUNCTIONS (baselink) = functions;
1157 BASELINK_OPTYPE (baselink) = optype;
1158
1159 return baselink;
1160 }
1161
1162 /* Look for a member named NAME in an inheritance lattice dominated by
1163 XBASETYPE. If PROTECT is 0 or two, we do not check access. If it
1164 is 1, we enforce accessibility. If PROTECT is zero, then, for an
1165 ambiguous lookup, we return NULL. If PROTECT is 1, we issue error
1166 messages about inaccessible or ambiguous lookup. If PROTECT is 2,
1167 we return a TREE_LIST whose TREE_TYPE is error_mark_node and whose
1168 TREE_VALUEs are the list of ambiguous candidates.
1169
1170 WANT_TYPE is 1 when we should only return TYPE_DECLs.
1171
1172 If nothing can be found return NULL_TREE and do not issue an error. */
1173
1174 tree
1175 lookup_member (tree xbasetype, tree name, int protect, bool want_type)
1176 {
1177 tree rval, rval_binfo = NULL_TREE;
1178 tree type = NULL_TREE, basetype_path = NULL_TREE;
1179 struct lookup_field_info lfi;
1180
1181 /* rval_binfo is the binfo associated with the found member, note,
1182 this can be set with useful information, even when rval is not
1183 set, because it must deal with ALL members, not just non-function
1184 members. It is used for ambiguity checking and the hidden
1185 checks. Whereas rval is only set if a proper (not hidden)
1186 non-function member is found. */
1187
1188 const char *errstr = 0;
1189
1190 my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 20030624);
1191
1192 if (TREE_CODE (xbasetype) == TREE_BINFO)
1193 {
1194 type = BINFO_TYPE (xbasetype);
1195 basetype_path = xbasetype;
1196 }
1197 else
1198 {
1199 my_friendly_assert (IS_AGGR_TYPE_CODE (TREE_CODE (xbasetype)), 20030624);
1200 type = xbasetype;
1201 xbasetype = NULL_TREE;
1202 }
1203
1204 type = complete_type (type);
1205 if (!basetype_path)
1206 basetype_path = TYPE_BINFO (type);
1207
1208 if (!basetype_path)
1209 return NULL_TREE;
1210
1211 #ifdef GATHER_STATISTICS
1212 n_calls_lookup_field++;
1213 #endif /* GATHER_STATISTICS */
1214
1215 memset (&lfi, 0, sizeof (lfi));
1216 lfi.type = type;
1217 lfi.name = name;
1218 lfi.want_type = want_type;
1219 bfs_walk (basetype_path, &lookup_field_r, &lookup_field_queue_p, &lfi);
1220 rval = lfi.rval;
1221 rval_binfo = lfi.rval_binfo;
1222 if (rval_binfo)
1223 type = BINFO_TYPE (rval_binfo);
1224 errstr = lfi.errstr;
1225
1226 /* If we are not interested in ambiguities, don't report them;
1227 just return NULL_TREE. */
1228 if (!protect && lfi.ambiguous)
1229 return NULL_TREE;
1230
1231 if (protect == 2)
1232 {
1233 if (lfi.ambiguous)
1234 return lfi.ambiguous;
1235 else
1236 protect = 0;
1237 }
1238
1239 /* [class.access]
1240
1241 In the case of overloaded function names, access control is
1242 applied to the function selected by overloaded resolution. */
1243 if (rval && protect && !is_overloaded_fn (rval))
1244 perform_or_defer_access_check (basetype_path, rval);
1245
1246 if (errstr && protect)
1247 {
1248 error (errstr, name, type);
1249 if (lfi.ambiguous)
1250 print_candidates (lfi.ambiguous);
1251 rval = error_mark_node;
1252 }
1253
1254 if (rval && is_overloaded_fn (rval))
1255 rval = build_baselink (rval_binfo, basetype_path, rval,
1256 (IDENTIFIER_TYPENAME_P (name)
1257 ? TREE_TYPE (name): NULL_TREE));
1258 return rval;
1259 }
1260
1261 /* Like lookup_member, except that if we find a function member we
1262 return NULL_TREE. */
1263
1264 tree
1265 lookup_field (tree xbasetype, tree name, int protect, bool want_type)
1266 {
1267 tree rval = lookup_member (xbasetype, name, protect, want_type);
1268
1269 /* Ignore functions, but propagate the ambiguity list. */
1270 if (!error_operand_p (rval)
1271 && (rval && BASELINK_P (rval)))
1272 return NULL_TREE;
1273
1274 return rval;
1275 }
1276
1277 /* Like lookup_member, except that if we find a non-function member we
1278 return NULL_TREE. */
1279
1280 tree
1281 lookup_fnfields (tree xbasetype, tree name, int protect)
1282 {
1283 tree rval = lookup_member (xbasetype, name, protect, /*want_type=*/false);
1284
1285 /* Ignore non-functions, but propagate the ambiguity list. */
1286 if (!error_operand_p (rval)
1287 && (rval && !BASELINK_P (rval)))
1288 return NULL_TREE;
1289
1290 return rval;
1291 }
1292
1293 /* Return the index in the CLASSTYPE_METHOD_VEC for CLASS_TYPE
1294 corresponding to "operator TYPE ()", or -1 if there is no such
1295 operator. Only CLASS_TYPE itself is searched; this routine does
1296 not scan the base classes of CLASS_TYPE. */
1297
1298 static int
1299 lookup_conversion_operator (tree class_type, tree type)
1300 {
1301 int pass;
1302 int i;
1303 tree fn;
1304 VEC(tree) *methods;
1305
1306 methods = CLASSTYPE_METHOD_VEC (class_type);
1307
1308 for (pass = 0; pass < 2; ++pass)
1309 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
1310 VEC_iterate (tree, methods, i, fn); ++i)
1311 {
1312 /* All the conversion operators come near the beginning of the
1313 class. Therefore, if FN is not a conversion operator, there
1314 is no matching conversion operator in CLASS_TYPE. */
1315 fn = OVL_CURRENT (fn);
1316 if (!DECL_CONV_FN_P (fn))
1317 break;
1318
1319 if (pass == 0)
1320 {
1321 /* On the first pass we only consider exact matches. If
1322 the types match, this slot is the one where the right
1323 conversion operators can be found. */
1324 if (TREE_CODE (fn) != TEMPLATE_DECL
1325 && same_type_p (DECL_CONV_FN_TYPE (fn), type))
1326 return i;
1327 }
1328 else
1329 {
1330 /* On the second pass we look for template conversion
1331 operators. It may be possible to instantiate the
1332 template to get the type desired. All of the template
1333 conversion operators share a slot. By looking for
1334 templates second we ensure that specializations are
1335 preferred over templates. */
1336 if (TREE_CODE (fn) == TEMPLATE_DECL)
1337 return i;
1338 }
1339 }
1340
1341 return -1;
1342 }
1343
1344 /* TYPE is a class type. Return the index of the fields within
1345 the method vector with name NAME, or -1 is no such field exists. */
1346
1347 int
1348 lookup_fnfields_1 (tree type, tree name)
1349 {
1350 VEC(tree) *method_vec;
1351 tree fn;
1352 tree tmp;
1353 size_t i;
1354
1355 if (!CLASS_TYPE_P (type))
1356 return -1;
1357
1358 if (COMPLETE_TYPE_P (type))
1359 {
1360 if ((name == ctor_identifier
1361 || name == base_ctor_identifier
1362 || name == complete_ctor_identifier))
1363 {
1364 if (CLASSTYPE_LAZY_DEFAULT_CTOR (type))
1365 lazily_declare_fn (sfk_constructor, type);
1366 if (CLASSTYPE_LAZY_COPY_CTOR (type))
1367 lazily_declare_fn (sfk_copy_constructor, type);
1368 }
1369 else if (name == ansi_assopname(NOP_EXPR)
1370 && CLASSTYPE_LAZY_ASSIGNMENT_OP (type))
1371 lazily_declare_fn (sfk_assignment_operator, type);
1372 }
1373
1374 method_vec = CLASSTYPE_METHOD_VEC (type);
1375 if (!method_vec)
1376 return -1;
1377
1378 #ifdef GATHER_STATISTICS
1379 n_calls_lookup_fnfields_1++;
1380 #endif /* GATHER_STATISTICS */
1381
1382 /* Constructors are first... */
1383 if (name == ctor_identifier)
1384 {
1385 fn = CLASSTYPE_CONSTRUCTORS (type);
1386 return fn ? CLASSTYPE_CONSTRUCTOR_SLOT : -1;
1387 }
1388 /* and destructors are second. */
1389 if (name == dtor_identifier)
1390 {
1391 fn = CLASSTYPE_DESTRUCTORS (type);
1392 return fn ? CLASSTYPE_DESTRUCTOR_SLOT : -1;
1393 }
1394 if (IDENTIFIER_TYPENAME_P (name))
1395 return lookup_conversion_operator (type, TREE_TYPE (name));
1396
1397 /* Skip the conversion operators. */
1398 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
1399 VEC_iterate (tree, method_vec, i, fn);
1400 ++i)
1401 if (!DECL_CONV_FN_P (OVL_CURRENT (fn)))
1402 break;
1403
1404 /* If the type is complete, use binary search. */
1405 if (COMPLETE_TYPE_P (type))
1406 {
1407 int lo;
1408 int hi;
1409
1410 lo = i;
1411 hi = VEC_length (tree, method_vec);
1412 while (lo < hi)
1413 {
1414 i = (lo + hi) / 2;
1415
1416 #ifdef GATHER_STATISTICS
1417 n_outer_fields_searched++;
1418 #endif /* GATHER_STATISTICS */
1419
1420 tmp = VEC_index (tree, method_vec, i);
1421 tmp = DECL_NAME (OVL_CURRENT (tmp));
1422 if (tmp > name)
1423 hi = i;
1424 else if (tmp < name)
1425 lo = i + 1;
1426 else
1427 return i;
1428 }
1429 }
1430 else
1431 for (; VEC_iterate (tree, method_vec, i, fn); ++i)
1432 {
1433 #ifdef GATHER_STATISTICS
1434 n_outer_fields_searched++;
1435 #endif /* GATHER_STATISTICS */
1436 if (DECL_NAME (OVL_CURRENT (fn)) == name)
1437 return i;
1438 }
1439
1440 return -1;
1441 }
1442
1443 /* DECL is the result of a qualified name lookup. QUALIFYING_SCOPE is
1444 the class or namespace used to qualify the name. CONTEXT_CLASS is
1445 the class corresponding to the object in which DECL will be used.
1446 Return a possibly modified version of DECL that takes into account
1447 the CONTEXT_CLASS.
1448
1449 In particular, consider an expression like `B::m' in the context of
1450 a derived class `D'. If `B::m' has been resolved to a BASELINK,
1451 then the most derived class indicated by the BASELINK_BINFO will be
1452 `B', not `D'. This function makes that adjustment. */
1453
1454 tree
1455 adjust_result_of_qualified_name_lookup (tree decl,
1456 tree qualifying_scope,
1457 tree context_class)
1458 {
1459 if (context_class && CLASS_TYPE_P (qualifying_scope)
1460 && DERIVED_FROM_P (qualifying_scope, context_class)
1461 && BASELINK_P (decl))
1462 {
1463 tree base;
1464
1465 my_friendly_assert (CLASS_TYPE_P (context_class), 20020808);
1466
1467 /* Look for the QUALIFYING_SCOPE as a base of the CONTEXT_CLASS.
1468 Because we do not yet know which function will be chosen by
1469 overload resolution, we cannot yet check either accessibility
1470 or ambiguity -- in either case, the choice of a static member
1471 function might make the usage valid. */
1472 base = lookup_base (context_class, qualifying_scope,
1473 ba_ignore | ba_quiet, NULL);
1474 if (base)
1475 {
1476 BASELINK_ACCESS_BINFO (decl) = base;
1477 BASELINK_BINFO (decl)
1478 = lookup_base (base, BINFO_TYPE (BASELINK_BINFO (decl)),
1479 ba_ignore | ba_quiet,
1480 NULL);
1481 }
1482 }
1483
1484 return decl;
1485 }
1486
1487 \f
1488 /* Walk the class hierarchy dominated by TYPE. FN is called for each
1489 type in the hierarchy, in a breadth-first preorder traversal.
1490 If it ever returns a non-NULL value, that value is immediately
1491 returned and the walk is terminated. At each node, FN is passed a
1492 BINFO indicating the path from the currently visited base-class to
1493 TYPE. Before each base-class is walked QFN is called. If the
1494 value returned is nonzero, the base-class is walked; otherwise it
1495 is not. If QFN is NULL, it is treated as a function which always
1496 returns 1. Both FN and QFN are passed the DATA whenever they are
1497 called.
1498
1499 Implementation notes: Uses a circular queue, which starts off on
1500 the stack but gets moved to the malloc arena if it needs to be
1501 enlarged. The underflow and overflow conditions are
1502 indistinguishable except by context: if head == tail and we just
1503 moved the head pointer, the queue is empty, but if we just moved
1504 the tail pointer, the queue is full.
1505 Start with enough room for ten concurrent base classes. That
1506 will be enough for most hierarchies. */
1507 #define BFS_WALK_INITIAL_QUEUE_SIZE 10
1508
1509 static tree
1510 bfs_walk (tree binfo,
1511 tree (*fn) (tree, void *),
1512 tree (*qfn) (tree, int, void *),
1513 void *data)
1514 {
1515 tree rval = NULL_TREE;
1516
1517 tree bases_initial[BFS_WALK_INITIAL_QUEUE_SIZE];
1518 /* A circular queue of the base classes of BINFO. These will be
1519 built up in breadth-first order, except where QFN prunes the
1520 search. */
1521 size_t head, tail;
1522 size_t base_buffer_size = BFS_WALK_INITIAL_QUEUE_SIZE;
1523 tree *base_buffer = bases_initial;
1524
1525 head = tail = 0;
1526 base_buffer[tail++] = binfo;
1527
1528 while (head != tail)
1529 {
1530 int n_bases, ix;
1531 tree binfo = base_buffer[head++];
1532 if (head == base_buffer_size)
1533 head = 0;
1534
1535 /* Is this the one we're looking for? If so, we're done. */
1536 rval = fn (binfo, data);
1537 if (rval)
1538 goto done;
1539
1540 n_bases = BINFO_N_BASE_BINFOS (binfo);
1541 for (ix = 0; ix != n_bases; ix++)
1542 {
1543 tree base_binfo;
1544
1545 if (qfn)
1546 base_binfo = (*qfn) (binfo, ix, data);
1547 else
1548 base_binfo = BINFO_BASE_BINFO (binfo, ix);
1549
1550 if (base_binfo)
1551 {
1552 base_buffer[tail++] = base_binfo;
1553 if (tail == base_buffer_size)
1554 tail = 0;
1555 if (tail == head)
1556 {
1557 tree *new_buffer = xmalloc (2 * base_buffer_size
1558 * sizeof (tree));
1559 memcpy (&new_buffer[0], &base_buffer[0],
1560 tail * sizeof (tree));
1561 memcpy (&new_buffer[head + base_buffer_size],
1562 &base_buffer[head],
1563 (base_buffer_size - head) * sizeof (tree));
1564 if (base_buffer_size != BFS_WALK_INITIAL_QUEUE_SIZE)
1565 free (base_buffer);
1566 base_buffer = new_buffer;
1567 head += base_buffer_size;
1568 base_buffer_size *= 2;
1569 }
1570 }
1571 }
1572 }
1573
1574 done:
1575 if (base_buffer_size != BFS_WALK_INITIAL_QUEUE_SIZE)
1576 free (base_buffer);
1577 return rval;
1578 }
1579
1580 /* Exactly like bfs_walk, except that a depth-first traversal is
1581 performed, and PREFN is called in preorder, while POSTFN is called
1582 in postorder. */
1583
1584 tree
1585 dfs_walk_real (tree binfo,
1586 tree (*prefn) (tree, void *),
1587 tree (*postfn) (tree, void *),
1588 tree (*qfn) (tree, int, void *),
1589 void *data)
1590 {
1591 int i;
1592 tree base_binfo;
1593 tree rval = NULL_TREE;
1594
1595 /* Call the pre-order walking function. */
1596 if (prefn)
1597 {
1598 rval = (*prefn) (binfo, data);
1599 if (rval)
1600 return rval;
1601 }
1602
1603 /* Process the basetypes. */
1604 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
1605 {
1606 if (qfn)
1607 {
1608 base_binfo = (*qfn) (binfo, i, data);
1609 if (!base_binfo)
1610 continue;
1611 }
1612 rval = dfs_walk_real (base_binfo, prefn, postfn, qfn, data);
1613 if (rval)
1614 return rval;
1615 }
1616
1617 /* Call the post-order walking function. */
1618 if (postfn)
1619 rval = (*postfn) (binfo, data);
1620
1621 return rval;
1622 }
1623
1624 /* Exactly like bfs_walk, except that a depth-first post-order traversal is
1625 performed. */
1626
1627 tree
1628 dfs_walk (tree binfo,
1629 tree (*fn) (tree, void *),
1630 tree (*qfn) (tree, int, void *),
1631 void *data)
1632 {
1633 return dfs_walk_real (binfo, 0, fn, qfn, data);
1634 }
1635
1636 /* Check that virtual overrider OVERRIDER is acceptable for base function
1637 BASEFN. Issue diagnostic, and return zero, if unacceptable. */
1638
1639 int
1640 check_final_overrider (tree overrider, tree basefn)
1641 {
1642 tree over_type = TREE_TYPE (overrider);
1643 tree base_type = TREE_TYPE (basefn);
1644 tree over_return = TREE_TYPE (over_type);
1645 tree base_return = TREE_TYPE (base_type);
1646 tree over_throw = TYPE_RAISES_EXCEPTIONS (over_type);
1647 tree base_throw = TYPE_RAISES_EXCEPTIONS (base_type);
1648 int fail = 0;
1649
1650 if (DECL_INVALID_OVERRIDER_P (overrider))
1651 return 0;
1652
1653 if (same_type_p (base_return, over_return))
1654 /* OK */;
1655 else if ((CLASS_TYPE_P (over_return) && CLASS_TYPE_P (base_return))
1656 || (TREE_CODE (base_return) == TREE_CODE (over_return)
1657 && POINTER_TYPE_P (base_return)))
1658 {
1659 /* Potentially covariant. */
1660 unsigned base_quals, over_quals;
1661
1662 fail = !POINTER_TYPE_P (base_return);
1663 if (!fail)
1664 {
1665 fail = cp_type_quals (base_return) != cp_type_quals (over_return);
1666
1667 base_return = TREE_TYPE (base_return);
1668 over_return = TREE_TYPE (over_return);
1669 }
1670 base_quals = cp_type_quals (base_return);
1671 over_quals = cp_type_quals (over_return);
1672
1673 if ((base_quals & over_quals) != over_quals)
1674 fail = 1;
1675
1676 if (CLASS_TYPE_P (base_return) && CLASS_TYPE_P (over_return))
1677 {
1678 tree binfo = lookup_base (over_return, base_return,
1679 ba_check | ba_quiet, NULL);
1680
1681 if (!binfo)
1682 fail = 1;
1683 }
1684 else if (!pedantic
1685 && can_convert (TREE_TYPE (base_type), TREE_TYPE (over_type)))
1686 /* GNU extension, allow trivial pointer conversions such as
1687 converting to void *, or qualification conversion. */
1688 {
1689 /* can_convert will permit user defined conversion from a
1690 (reference to) class type. We must reject them. */
1691 over_return = non_reference (TREE_TYPE (over_type));
1692 if (CLASS_TYPE_P (over_return))
1693 fail = 2;
1694 }
1695 else
1696 fail = 2;
1697 }
1698 else
1699 fail = 2;
1700 if (!fail)
1701 /* OK */;
1702 else
1703 {
1704 if (fail == 1)
1705 {
1706 cp_error_at ("invalid covariant return type for `%#D'", overrider);
1707 cp_error_at (" overriding `%#D'", basefn);
1708 }
1709 else
1710 {
1711 cp_error_at ("conflicting return type specified for `%#D'",
1712 overrider);
1713 cp_error_at (" overriding `%#D'", basefn);
1714 }
1715 DECL_INVALID_OVERRIDER_P (overrider) = 1;
1716 return 0;
1717 }
1718
1719 /* Check throw specifier is at least as strict. */
1720 if (!comp_except_specs (base_throw, over_throw, 0))
1721 {
1722 cp_error_at ("looser throw specifier for `%#F'", overrider);
1723 cp_error_at (" overriding `%#F'", basefn);
1724 DECL_INVALID_OVERRIDER_P (overrider) = 1;
1725 return 0;
1726 }
1727
1728 return 1;
1729 }
1730
1731 /* Given a class TYPE, and a function decl FNDECL, look for
1732 virtual functions in TYPE's hierarchy which FNDECL overrides.
1733 We do not look in TYPE itself, only its bases.
1734
1735 Returns nonzero, if we find any. Set FNDECL's DECL_VIRTUAL_P, if we
1736 find that it overrides anything.
1737
1738 We check that every function which is overridden, is correctly
1739 overridden. */
1740
1741 int
1742 look_for_overrides (tree type, tree fndecl)
1743 {
1744 tree binfo = TYPE_BINFO (type);
1745 tree base_binfo;
1746 int ix;
1747 int found = 0;
1748
1749 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
1750 {
1751 tree basetype = BINFO_TYPE (base_binfo);
1752
1753 if (TYPE_POLYMORPHIC_P (basetype))
1754 found += look_for_overrides_r (basetype, fndecl);
1755 }
1756 return found;
1757 }
1758
1759 /* Look in TYPE for virtual functions with the same signature as
1760 FNDECL. */
1761
1762 tree
1763 look_for_overrides_here (tree type, tree fndecl)
1764 {
1765 int ix;
1766
1767 /* If there are no methods in TYPE (meaning that only implicitly
1768 declared methods will ever be provided for TYPE), then there are
1769 no virtual functions. */
1770 if (!CLASSTYPE_METHOD_VEC (type))
1771 return NULL_TREE;
1772
1773 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (fndecl))
1774 ix = CLASSTYPE_DESTRUCTOR_SLOT;
1775 else
1776 ix = lookup_fnfields_1 (type, DECL_NAME (fndecl));
1777 if (ix >= 0)
1778 {
1779 tree fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), ix);
1780
1781 for (; fns; fns = OVL_NEXT (fns))
1782 {
1783 tree fn = OVL_CURRENT (fns);
1784
1785 if (!DECL_VIRTUAL_P (fn))
1786 /* Not a virtual. */;
1787 else if (DECL_CONTEXT (fn) != type)
1788 /* Introduced with a using declaration. */;
1789 else if (DECL_STATIC_FUNCTION_P (fndecl))
1790 {
1791 tree btypes = TYPE_ARG_TYPES (TREE_TYPE (fn));
1792 tree dtypes = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
1793 if (compparms (TREE_CHAIN (btypes), dtypes))
1794 return fn;
1795 }
1796 else if (same_signature_p (fndecl, fn))
1797 return fn;
1798 }
1799 }
1800 return NULL_TREE;
1801 }
1802
1803 /* Look in TYPE for virtual functions overridden by FNDECL. Check both
1804 TYPE itself and its bases. */
1805
1806 static int
1807 look_for_overrides_r (tree type, tree fndecl)
1808 {
1809 tree fn = look_for_overrides_here (type, fndecl);
1810 if (fn)
1811 {
1812 if (DECL_STATIC_FUNCTION_P (fndecl))
1813 {
1814 /* A static member function cannot match an inherited
1815 virtual member function. */
1816 cp_error_at ("`%#D' cannot be declared", fndecl);
1817 cp_error_at (" since `%#D' declared in base class", fn);
1818 }
1819 else
1820 {
1821 /* It's definitely virtual, even if not explicitly set. */
1822 DECL_VIRTUAL_P (fndecl) = 1;
1823 check_final_overrider (fndecl, fn);
1824 }
1825 return 1;
1826 }
1827
1828 /* We failed to find one declared in this class. Look in its bases. */
1829 return look_for_overrides (type, fndecl);
1830 }
1831
1832 /* Called via dfs_walk from dfs_get_pure_virtuals. */
1833
1834 static tree
1835 dfs_get_pure_virtuals (tree binfo, void *data)
1836 {
1837 tree type = (tree) data;
1838
1839 /* We're not interested in primary base classes; the derived class
1840 of which they are a primary base will contain the information we
1841 need. */
1842 if (!BINFO_PRIMARY_P (binfo))
1843 {
1844 tree virtuals;
1845
1846 for (virtuals = BINFO_VIRTUALS (binfo);
1847 virtuals;
1848 virtuals = TREE_CHAIN (virtuals))
1849 if (DECL_PURE_VIRTUAL_P (BV_FN (virtuals)))
1850 CLASSTYPE_PURE_VIRTUALS (type)
1851 = tree_cons (NULL_TREE, BV_FN (virtuals),
1852 CLASSTYPE_PURE_VIRTUALS (type));
1853 }
1854
1855 BINFO_MARKED (binfo) = 1;
1856
1857 return NULL_TREE;
1858 }
1859
1860 /* Set CLASSTYPE_PURE_VIRTUALS for TYPE. */
1861
1862 void
1863 get_pure_virtuals (tree type)
1864 {
1865 unsigned ix;
1866 tree binfo;
1867 VEC (tree) *vbases;
1868
1869 /* Clear the CLASSTYPE_PURE_VIRTUALS list; whatever is already there
1870 is going to be overridden. */
1871 CLASSTYPE_PURE_VIRTUALS (type) = NULL_TREE;
1872 /* Now, run through all the bases which are not primary bases, and
1873 collect the pure virtual functions. We look at the vtable in
1874 each class to determine what pure virtual functions are present.
1875 (A primary base is not interesting because the derived class of
1876 which it is a primary base will contain vtable entries for the
1877 pure virtuals in the base class. */
1878 dfs_walk (TYPE_BINFO (type), dfs_get_pure_virtuals, unmarkedp, type);
1879 dfs_walk (TYPE_BINFO (type), dfs_unmark, markedp, type);
1880
1881 /* Put the pure virtuals in dfs order. */
1882 CLASSTYPE_PURE_VIRTUALS (type) = nreverse (CLASSTYPE_PURE_VIRTUALS (type));
1883
1884 for (vbases = CLASSTYPE_VBASECLASSES (type), ix = 0;
1885 VEC_iterate (tree, vbases, ix, binfo); ix++)
1886 {
1887 tree virtuals;
1888
1889 for (virtuals = BINFO_VIRTUALS (binfo); virtuals;
1890 virtuals = TREE_CHAIN (virtuals))
1891 {
1892 tree base_fndecl = BV_FN (virtuals);
1893 if (DECL_NEEDS_FINAL_OVERRIDER_P (base_fndecl))
1894 error ("`%#D' needs a final overrider", base_fndecl);
1895 }
1896 }
1897 }
1898 \f
1899 /* DEPTH-FIRST SEARCH ROUTINES. */
1900
1901 tree
1902 markedp (tree derived, int ix, void *data ATTRIBUTE_UNUSED)
1903 {
1904 tree binfo = BINFO_BASE_BINFO (derived, ix);
1905
1906 return BINFO_MARKED (binfo) ? binfo : NULL_TREE;
1907 }
1908
1909 tree
1910 unmarkedp (tree derived, int ix, void *data ATTRIBUTE_UNUSED)
1911 {
1912 tree binfo = BINFO_BASE_BINFO (derived, ix);
1913
1914 return !BINFO_MARKED (binfo) ? binfo : NULL_TREE;
1915 }
1916
1917 /* The worker functions for `dfs_walk'. These do not need to
1918 test anything (vis a vis marking) if they are paired with
1919 a predicate function (above). */
1920
1921 tree
1922 dfs_unmark (tree binfo, void *data ATTRIBUTE_UNUSED)
1923 {
1924 BINFO_MARKED (binfo) = 0;
1925 return NULL_TREE;
1926 }
1927
1928 \f
1929 /* Debug info for C++ classes can get very large; try to avoid
1930 emitting it everywhere.
1931
1932 Note that this optimization wins even when the target supports
1933 BINCL (if only slightly), and reduces the amount of work for the
1934 linker. */
1935
1936 void
1937 maybe_suppress_debug_info (tree t)
1938 {
1939 /* We can't do the usual TYPE_DECL_SUPPRESS_DEBUG thing with DWARF, which
1940 does not support name references between translation units. It supports
1941 symbolic references between translation units, but only within a single
1942 executable or shared library.
1943
1944 For DWARF 2, we handle TYPE_DECL_SUPPRESS_DEBUG by pretending
1945 that the type was never defined, so we only get the members we
1946 actually define. */
1947 if (write_symbols == DWARF_DEBUG || write_symbols == NO_DEBUG)
1948 return;
1949
1950 /* We might have set this earlier in cp_finish_decl. */
1951 TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 0;
1952
1953 /* If we already know how we're handling this class, handle debug info
1954 the same way. */
1955 if (CLASSTYPE_INTERFACE_KNOWN (t))
1956 {
1957 if (CLASSTYPE_INTERFACE_ONLY (t))
1958 TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 1;
1959 /* else don't set it. */
1960 }
1961 /* If the class has a vtable, write out the debug info along with
1962 the vtable. */
1963 else if (TYPE_CONTAINS_VPTR_P (t))
1964 TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 1;
1965
1966 /* Otherwise, just emit the debug info normally. */
1967 }
1968
1969 /* Note that we want debugging information for a base class of a class
1970 whose vtable is being emitted. Normally, this would happen because
1971 calling the constructor for a derived class implies calling the
1972 constructors for all bases, which involve initializing the
1973 appropriate vptr with the vtable for the base class; but in the
1974 presence of optimization, this initialization may be optimized
1975 away, so we tell finish_vtable_vardecl that we want the debugging
1976 information anyway. */
1977
1978 static tree
1979 dfs_debug_mark (tree binfo, void *data ATTRIBUTE_UNUSED)
1980 {
1981 tree t = BINFO_TYPE (binfo);
1982
1983 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
1984
1985 return NULL_TREE;
1986 }
1987
1988 /* Returns BINFO if we haven't already noted that we want debugging
1989 info for this base class. */
1990
1991 static tree
1992 dfs_debug_unmarkedp (tree derived, int ix, void *data ATTRIBUTE_UNUSED)
1993 {
1994 tree binfo = BINFO_BASE_BINFO (derived, ix);
1995
1996 return (!CLASSTYPE_DEBUG_REQUESTED (BINFO_TYPE (binfo))
1997 ? binfo : NULL_TREE);
1998 }
1999
2000 /* Write out the debugging information for TYPE, whose vtable is being
2001 emitted. Also walk through our bases and note that we want to
2002 write out information for them. This avoids the problem of not
2003 writing any debug info for intermediate basetypes whose
2004 constructors, and thus the references to their vtables, and thus
2005 the vtables themselves, were optimized away. */
2006
2007 void
2008 note_debug_info_needed (tree type)
2009 {
2010 if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)))
2011 {
2012 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)) = 0;
2013 rest_of_type_compilation (type, toplevel_bindings_p ());
2014 }
2015
2016 dfs_walk (TYPE_BINFO (type), dfs_debug_mark, dfs_debug_unmarkedp, 0);
2017 }
2018 \f
2019 void
2020 print_search_statistics (void)
2021 {
2022 #ifdef GATHER_STATISTICS
2023 fprintf (stderr, "%d fields searched in %d[%d] calls to lookup_field[_1]\n",
2024 n_fields_searched, n_calls_lookup_field, n_calls_lookup_field_1);
2025 fprintf (stderr, "%d fnfields searched in %d calls to lookup_fnfields\n",
2026 n_outer_fields_searched, n_calls_lookup_fnfields);
2027 fprintf (stderr, "%d calls to get_base_type\n", n_calls_get_base_type);
2028 #else /* GATHER_STATISTICS */
2029 fprintf (stderr, "no search statistics\n");
2030 #endif /* GATHER_STATISTICS */
2031 }
2032
2033 void
2034 reinit_search_statistics (void)
2035 {
2036 #ifdef GATHER_STATISTICS
2037 n_fields_searched = 0;
2038 n_calls_lookup_field = 0, n_calls_lookup_field_1 = 0;
2039 n_calls_lookup_fnfields = 0, n_calls_lookup_fnfields_1 = 0;
2040 n_calls_get_base_type = 0;
2041 n_outer_fields_searched = 0;
2042 n_contexts_saved = 0;
2043 #endif /* GATHER_STATISTICS */
2044 }
2045
2046 static tree
2047 add_conversions (tree binfo, void *data)
2048 {
2049 size_t i;
2050 VEC(tree) *method_vec = CLASSTYPE_METHOD_VEC (BINFO_TYPE (binfo));
2051 tree *conversions = (tree *) data;
2052 tree tmp;
2053
2054 /* Some builtin types have no method vector, not even an empty one. */
2055 if (!method_vec)
2056 return NULL_TREE;
2057
2058 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
2059 VEC_iterate (tree, method_vec, i, tmp);
2060 ++i)
2061 {
2062 tree name;
2063
2064 if (!DECL_CONV_FN_P (OVL_CURRENT (tmp)))
2065 break;
2066
2067 name = DECL_NAME (OVL_CURRENT (tmp));
2068
2069 /* Make sure we don't already have this conversion. */
2070 if (! IDENTIFIER_MARKED (name))
2071 {
2072 tree t;
2073
2074 /* Make sure that we do not already have a conversion
2075 operator for this type. Merely checking the NAME is not
2076 enough because two conversion operators to the same type
2077 may not have the same NAME. */
2078 for (t = *conversions; t; t = TREE_CHAIN (t))
2079 {
2080 tree fn;
2081 for (fn = TREE_VALUE (t); fn; fn = OVL_NEXT (fn))
2082 if (same_type_p (TREE_TYPE (name),
2083 DECL_CONV_FN_TYPE (OVL_CURRENT (fn))))
2084 break;
2085 if (fn)
2086 break;
2087 }
2088 if (!t)
2089 {
2090 *conversions = tree_cons (binfo, tmp, *conversions);
2091 IDENTIFIER_MARKED (name) = 1;
2092 }
2093 }
2094 }
2095 return NULL_TREE;
2096 }
2097
2098 /* Return a TREE_LIST containing all the non-hidden user-defined
2099 conversion functions for TYPE (and its base-classes). The
2100 TREE_VALUE of each node is a FUNCTION_DECL or an OVERLOAD
2101 containing the conversion functions. The TREE_PURPOSE is the BINFO
2102 from which the conversion functions in this node were selected. */
2103
2104 tree
2105 lookup_conversions (tree type)
2106 {
2107 tree t;
2108 tree conversions = NULL_TREE;
2109
2110 complete_type (type);
2111 if (TYPE_BINFO (type))
2112 bfs_walk (TYPE_BINFO (type), add_conversions, 0, &conversions);
2113
2114 for (t = conversions; t; t = TREE_CHAIN (t))
2115 IDENTIFIER_MARKED (DECL_NAME (OVL_CURRENT (TREE_VALUE (t)))) = 0;
2116
2117 return conversions;
2118 }
2119
2120 struct overlap_info
2121 {
2122 tree compare_type;
2123 int found_overlap;
2124 };
2125
2126 /* Check whether the empty class indicated by EMPTY_BINFO is also present
2127 at offset 0 in COMPARE_TYPE, and set found_overlap if so. */
2128
2129 static tree
2130 dfs_check_overlap (tree empty_binfo, void *data)
2131 {
2132 struct overlap_info *oi = (struct overlap_info *) data;
2133 tree binfo;
2134
2135 for (binfo = TYPE_BINFO (oi->compare_type);
2136 ;
2137 binfo = BINFO_BASE_BINFO (binfo, 0))
2138 {
2139 if (BINFO_TYPE (binfo) == BINFO_TYPE (empty_binfo))
2140 {
2141 oi->found_overlap = 1;
2142 break;
2143 }
2144 else if (!BINFO_N_BASE_BINFOS (binfo))
2145 break;
2146 }
2147
2148 return NULL_TREE;
2149 }
2150
2151 /* Trivial function to stop base traversal when we find something. */
2152
2153 static tree
2154 dfs_no_overlap_yet (tree derived, int ix, void *data)
2155 {
2156 tree binfo = BINFO_BASE_BINFO (derived, ix);
2157 struct overlap_info *oi = (struct overlap_info *) data;
2158
2159 return !oi->found_overlap ? binfo : NULL_TREE;
2160 }
2161
2162 /* Returns nonzero if EMPTY_TYPE or any of its bases can also be found at
2163 offset 0 in NEXT_TYPE. Used in laying out empty base class subobjects. */
2164
2165 int
2166 types_overlap_p (tree empty_type, tree next_type)
2167 {
2168 struct overlap_info oi;
2169
2170 if (! IS_AGGR_TYPE (next_type))
2171 return 0;
2172 oi.compare_type = next_type;
2173 oi.found_overlap = 0;
2174 dfs_walk (TYPE_BINFO (empty_type), dfs_check_overlap,
2175 dfs_no_overlap_yet, &oi);
2176 return oi.found_overlap;
2177 }
2178
2179 /* Returns the binfo of the first direct or indirect virtual base derived
2180 from BINFO, or NULL if binfo is not via virtual. */
2181
2182 tree
2183 binfo_from_vbase (tree binfo)
2184 {
2185 for (; binfo; binfo = BINFO_INHERITANCE_CHAIN (binfo))
2186 {
2187 if (BINFO_VIRTUAL_P (binfo))
2188 return binfo;
2189 }
2190 return NULL_TREE;
2191 }
2192
2193 /* Returns the binfo of the first direct or indirect virtual base derived
2194 from BINFO up to the TREE_TYPE, LIMIT, or NULL if binfo is not
2195 via virtual. */
2196
2197 tree
2198 binfo_via_virtual (tree binfo, tree limit)
2199 {
2200 for (; binfo && (!limit || !same_type_p (BINFO_TYPE (binfo), limit));
2201 binfo = BINFO_INHERITANCE_CHAIN (binfo))
2202 {
2203 if (BINFO_VIRTUAL_P (binfo))
2204 return binfo;
2205 }
2206 return NULL_TREE;
2207 }
2208
2209 /* BINFO is a base binfo in the complete type BINFO_TYPE (HERE).
2210 Find the equivalent binfo within whatever graph HERE is located.
2211 This is the inverse of original_binfo. */
2212
2213 tree
2214 copied_binfo (tree binfo, tree here)
2215 {
2216 tree result = NULL_TREE;
2217
2218 if (BINFO_VIRTUAL_P (binfo))
2219 {
2220 tree t;
2221
2222 for (t = here; BINFO_INHERITANCE_CHAIN (t);
2223 t = BINFO_INHERITANCE_CHAIN (t))
2224 continue;
2225
2226 result = binfo_for_vbase (BINFO_TYPE (binfo), BINFO_TYPE (t));
2227 }
2228 else if (BINFO_INHERITANCE_CHAIN (binfo))
2229 {
2230 tree cbinfo;
2231 tree base_binfo;
2232 int ix;
2233
2234 cbinfo = copied_binfo (BINFO_INHERITANCE_CHAIN (binfo), here);
2235 for (ix = 0; BINFO_BASE_ITERATE (cbinfo, ix, base_binfo); ix++)
2236 if (BINFO_TYPE (base_binfo) == BINFO_TYPE (binfo))
2237 {
2238 result = base_binfo;
2239 break;
2240 }
2241 }
2242 else
2243 {
2244 my_friendly_assert (BINFO_TYPE (here) == BINFO_TYPE (binfo), 20030202);
2245 result = here;
2246 }
2247
2248 my_friendly_assert (result, 20030202);
2249 return result;
2250 }
2251
2252 tree
2253 binfo_for_vbase (tree base, tree t)
2254 {
2255 unsigned ix;
2256 tree binfo;
2257 VEC (tree) *vbases;
2258
2259 for (vbases = CLASSTYPE_VBASECLASSES (t), ix = 0;
2260 VEC_iterate (tree, vbases, ix, binfo); ix++)
2261 if (BINFO_TYPE (binfo) == base)
2262 return binfo;
2263 return NULL;
2264 }
2265
2266 /* BINFO is some base binfo of HERE, within some other
2267 hierarchy. Return the equivalent binfo, but in the hierarchy
2268 dominated by HERE. This is the inverse of copied_binfo. If BINFO
2269 is not a base binfo of HERE, returns NULL_TREE. */
2270
2271 tree
2272 original_binfo (tree binfo, tree here)
2273 {
2274 tree result = NULL;
2275
2276 if (BINFO_TYPE (binfo) == BINFO_TYPE (here))
2277 result = here;
2278 else if (BINFO_VIRTUAL_P (binfo))
2279 result = (CLASSTYPE_VBASECLASSES (BINFO_TYPE (here))
2280 ? binfo_for_vbase (BINFO_TYPE (binfo), BINFO_TYPE (here))
2281 : NULL_TREE);
2282 else if (BINFO_INHERITANCE_CHAIN (binfo))
2283 {
2284 tree base_binfos;
2285
2286 base_binfos = original_binfo (BINFO_INHERITANCE_CHAIN (binfo), here);
2287 if (base_binfos)
2288 {
2289 int ix;
2290 tree base_binfo;
2291
2292 for (ix = 0; (base_binfo = BINFO_BASE_BINFO (base_binfos, ix)); ix++)
2293 if (BINFO_TYPE (base_binfo) == BINFO_TYPE (binfo))
2294 {
2295 result = base_binfo;
2296 break;
2297 }
2298 }
2299 }
2300
2301 return result;
2302 }
2303