364e8f26b779328f9f6d71a20d559f2dc48045a4
[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 && !TYPE_HAS_ASSIGN_REF (type)
1371 && !TYPE_FOR_JAVA (type))
1372 lazily_declare_fn (sfk_assignment_operator, type);
1373 }
1374
1375 method_vec = CLASSTYPE_METHOD_VEC (type);
1376 if (!method_vec)
1377 return -1;
1378
1379 #ifdef GATHER_STATISTICS
1380 n_calls_lookup_fnfields_1++;
1381 #endif /* GATHER_STATISTICS */
1382
1383 /* Constructors are first... */
1384 if (name == ctor_identifier)
1385 {
1386 fn = CLASSTYPE_CONSTRUCTORS (type);
1387 return fn ? CLASSTYPE_CONSTRUCTOR_SLOT : -1;
1388 }
1389 /* and destructors are second. */
1390 if (name == dtor_identifier)
1391 {
1392 fn = CLASSTYPE_DESTRUCTORS (type);
1393 return fn ? CLASSTYPE_DESTRUCTOR_SLOT : -1;
1394 }
1395 if (IDENTIFIER_TYPENAME_P (name))
1396 return lookup_conversion_operator (type, TREE_TYPE (name));
1397
1398 /* Skip the conversion operators. */
1399 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
1400 VEC_iterate (tree, method_vec, i, fn);
1401 ++i)
1402 if (!DECL_CONV_FN_P (OVL_CURRENT (fn)))
1403 break;
1404
1405 /* If the type is complete, use binary search. */
1406 if (COMPLETE_TYPE_P (type))
1407 {
1408 int lo;
1409 int hi;
1410
1411 lo = i;
1412 hi = VEC_length (tree, method_vec);
1413 while (lo < hi)
1414 {
1415 i = (lo + hi) / 2;
1416
1417 #ifdef GATHER_STATISTICS
1418 n_outer_fields_searched++;
1419 #endif /* GATHER_STATISTICS */
1420
1421 tmp = VEC_index (tree, method_vec, i);
1422 tmp = DECL_NAME (OVL_CURRENT (tmp));
1423 if (tmp > name)
1424 hi = i;
1425 else if (tmp < name)
1426 lo = i + 1;
1427 else
1428 return i;
1429 }
1430 }
1431 else
1432 for (; VEC_iterate (tree, method_vec, i, fn); ++i)
1433 {
1434 #ifdef GATHER_STATISTICS
1435 n_outer_fields_searched++;
1436 #endif /* GATHER_STATISTICS */
1437 if (DECL_NAME (OVL_CURRENT (fn)) == name)
1438 return i;
1439 }
1440
1441 return -1;
1442 }
1443
1444 /* DECL is the result of a qualified name lookup. QUALIFYING_SCOPE is
1445 the class or namespace used to qualify the name. CONTEXT_CLASS is
1446 the class corresponding to the object in which DECL will be used.
1447 Return a possibly modified version of DECL that takes into account
1448 the CONTEXT_CLASS.
1449
1450 In particular, consider an expression like `B::m' in the context of
1451 a derived class `D'. If `B::m' has been resolved to a BASELINK,
1452 then the most derived class indicated by the BASELINK_BINFO will be
1453 `B', not `D'. This function makes that adjustment. */
1454
1455 tree
1456 adjust_result_of_qualified_name_lookup (tree decl,
1457 tree qualifying_scope,
1458 tree context_class)
1459 {
1460 if (context_class && CLASS_TYPE_P (qualifying_scope)
1461 && DERIVED_FROM_P (qualifying_scope, context_class)
1462 && BASELINK_P (decl))
1463 {
1464 tree base;
1465
1466 my_friendly_assert (CLASS_TYPE_P (context_class), 20020808);
1467
1468 /* Look for the QUALIFYING_SCOPE as a base of the CONTEXT_CLASS.
1469 Because we do not yet know which function will be chosen by
1470 overload resolution, we cannot yet check either accessibility
1471 or ambiguity -- in either case, the choice of a static member
1472 function might make the usage valid. */
1473 base = lookup_base (context_class, qualifying_scope,
1474 ba_ignore | ba_quiet, NULL);
1475 if (base)
1476 {
1477 BASELINK_ACCESS_BINFO (decl) = base;
1478 BASELINK_BINFO (decl)
1479 = lookup_base (base, BINFO_TYPE (BASELINK_BINFO (decl)),
1480 ba_ignore | ba_quiet,
1481 NULL);
1482 }
1483 }
1484
1485 return decl;
1486 }
1487
1488 \f
1489 /* Walk the class hierarchy dominated by TYPE. FN is called for each
1490 type in the hierarchy, in a breadth-first preorder traversal.
1491 If it ever returns a non-NULL value, that value is immediately
1492 returned and the walk is terminated. At each node, FN is passed a
1493 BINFO indicating the path from the currently visited base-class to
1494 TYPE. Before each base-class is walked QFN is called. If the
1495 value returned is nonzero, the base-class is walked; otherwise it
1496 is not. If QFN is NULL, it is treated as a function which always
1497 returns 1. Both FN and QFN are passed the DATA whenever they are
1498 called.
1499
1500 Implementation notes: Uses a circular queue, which starts off on
1501 the stack but gets moved to the malloc arena if it needs to be
1502 enlarged. The underflow and overflow conditions are
1503 indistinguishable except by context: if head == tail and we just
1504 moved the head pointer, the queue is empty, but if we just moved
1505 the tail pointer, the queue is full.
1506 Start with enough room for ten concurrent base classes. That
1507 will be enough for most hierarchies. */
1508 #define BFS_WALK_INITIAL_QUEUE_SIZE 10
1509
1510 static tree
1511 bfs_walk (tree binfo,
1512 tree (*fn) (tree, void *),
1513 tree (*qfn) (tree, int, void *),
1514 void *data)
1515 {
1516 tree rval = NULL_TREE;
1517
1518 tree bases_initial[BFS_WALK_INITIAL_QUEUE_SIZE];
1519 /* A circular queue of the base classes of BINFO. These will be
1520 built up in breadth-first order, except where QFN prunes the
1521 search. */
1522 size_t head, tail;
1523 size_t base_buffer_size = BFS_WALK_INITIAL_QUEUE_SIZE;
1524 tree *base_buffer = bases_initial;
1525
1526 head = tail = 0;
1527 base_buffer[tail++] = binfo;
1528
1529 while (head != tail)
1530 {
1531 int n_bases, ix;
1532 tree binfo = base_buffer[head++];
1533 if (head == base_buffer_size)
1534 head = 0;
1535
1536 /* Is this the one we're looking for? If so, we're done. */
1537 rval = fn (binfo, data);
1538 if (rval)
1539 goto done;
1540
1541 n_bases = BINFO_N_BASE_BINFOS (binfo);
1542 for (ix = 0; ix != n_bases; ix++)
1543 {
1544 tree base_binfo;
1545
1546 if (qfn)
1547 base_binfo = (*qfn) (binfo, ix, data);
1548 else
1549 base_binfo = BINFO_BASE_BINFO (binfo, ix);
1550
1551 if (base_binfo)
1552 {
1553 base_buffer[tail++] = base_binfo;
1554 if (tail == base_buffer_size)
1555 tail = 0;
1556 if (tail == head)
1557 {
1558 tree *new_buffer = xmalloc (2 * base_buffer_size
1559 * sizeof (tree));
1560 memcpy (&new_buffer[0], &base_buffer[0],
1561 tail * sizeof (tree));
1562 memcpy (&new_buffer[head + base_buffer_size],
1563 &base_buffer[head],
1564 (base_buffer_size - head) * sizeof (tree));
1565 if (base_buffer_size != BFS_WALK_INITIAL_QUEUE_SIZE)
1566 free (base_buffer);
1567 base_buffer = new_buffer;
1568 head += base_buffer_size;
1569 base_buffer_size *= 2;
1570 }
1571 }
1572 }
1573 }
1574
1575 done:
1576 if (base_buffer_size != BFS_WALK_INITIAL_QUEUE_SIZE)
1577 free (base_buffer);
1578 return rval;
1579 }
1580
1581 /* Exactly like bfs_walk, except that a depth-first traversal is
1582 performed, and PREFN is called in preorder, while POSTFN is called
1583 in postorder. */
1584
1585 tree
1586 dfs_walk_real (tree binfo,
1587 tree (*prefn) (tree, void *),
1588 tree (*postfn) (tree, void *),
1589 tree (*qfn) (tree, int, void *),
1590 void *data)
1591 {
1592 int i;
1593 tree base_binfo;
1594 tree rval = NULL_TREE;
1595
1596 /* Call the pre-order walking function. */
1597 if (prefn)
1598 {
1599 rval = (*prefn) (binfo, data);
1600 if (rval)
1601 return rval;
1602 }
1603
1604 /* Process the basetypes. */
1605 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
1606 {
1607 if (qfn)
1608 {
1609 base_binfo = (*qfn) (binfo, i, data);
1610 if (!base_binfo)
1611 continue;
1612 }
1613 rval = dfs_walk_real (base_binfo, prefn, postfn, qfn, data);
1614 if (rval)
1615 return rval;
1616 }
1617
1618 /* Call the post-order walking function. */
1619 if (postfn)
1620 rval = (*postfn) (binfo, data);
1621
1622 return rval;
1623 }
1624
1625 /* Exactly like bfs_walk, except that a depth-first post-order traversal is
1626 performed. */
1627
1628 tree
1629 dfs_walk (tree binfo,
1630 tree (*fn) (tree, void *),
1631 tree (*qfn) (tree, int, void *),
1632 void *data)
1633 {
1634 return dfs_walk_real (binfo, 0, fn, qfn, data);
1635 }
1636
1637 /* Check that virtual overrider OVERRIDER is acceptable for base function
1638 BASEFN. Issue diagnostic, and return zero, if unacceptable. */
1639
1640 int
1641 check_final_overrider (tree overrider, tree basefn)
1642 {
1643 tree over_type = TREE_TYPE (overrider);
1644 tree base_type = TREE_TYPE (basefn);
1645 tree over_return = TREE_TYPE (over_type);
1646 tree base_return = TREE_TYPE (base_type);
1647 tree over_throw = TYPE_RAISES_EXCEPTIONS (over_type);
1648 tree base_throw = TYPE_RAISES_EXCEPTIONS (base_type);
1649 int fail = 0;
1650
1651 if (DECL_INVALID_OVERRIDER_P (overrider))
1652 return 0;
1653
1654 if (same_type_p (base_return, over_return))
1655 /* OK */;
1656 else if ((CLASS_TYPE_P (over_return) && CLASS_TYPE_P (base_return))
1657 || (TREE_CODE (base_return) == TREE_CODE (over_return)
1658 && POINTER_TYPE_P (base_return)))
1659 {
1660 /* Potentially covariant. */
1661 unsigned base_quals, over_quals;
1662
1663 fail = !POINTER_TYPE_P (base_return);
1664 if (!fail)
1665 {
1666 fail = cp_type_quals (base_return) != cp_type_quals (over_return);
1667
1668 base_return = TREE_TYPE (base_return);
1669 over_return = TREE_TYPE (over_return);
1670 }
1671 base_quals = cp_type_quals (base_return);
1672 over_quals = cp_type_quals (over_return);
1673
1674 if ((base_quals & over_quals) != over_quals)
1675 fail = 1;
1676
1677 if (CLASS_TYPE_P (base_return) && CLASS_TYPE_P (over_return))
1678 {
1679 tree binfo = lookup_base (over_return, base_return,
1680 ba_check | ba_quiet, NULL);
1681
1682 if (!binfo)
1683 fail = 1;
1684 }
1685 else if (!pedantic
1686 && can_convert (TREE_TYPE (base_type), TREE_TYPE (over_type)))
1687 /* GNU extension, allow trivial pointer conversions such as
1688 converting to void *, or qualification conversion. */
1689 {
1690 /* can_convert will permit user defined conversion from a
1691 (reference to) class type. We must reject them. */
1692 over_return = non_reference (TREE_TYPE (over_type));
1693 if (CLASS_TYPE_P (over_return))
1694 fail = 2;
1695 }
1696 else
1697 fail = 2;
1698 }
1699 else
1700 fail = 2;
1701 if (!fail)
1702 /* OK */;
1703 else
1704 {
1705 if (fail == 1)
1706 {
1707 cp_error_at ("invalid covariant return type for `%#D'", overrider);
1708 cp_error_at (" overriding `%#D'", basefn);
1709 }
1710 else
1711 {
1712 cp_error_at ("conflicting return type specified for `%#D'",
1713 overrider);
1714 cp_error_at (" overriding `%#D'", basefn);
1715 }
1716 DECL_INVALID_OVERRIDER_P (overrider) = 1;
1717 return 0;
1718 }
1719
1720 /* Check throw specifier is at least as strict. */
1721 if (!comp_except_specs (base_throw, over_throw, 0))
1722 {
1723 cp_error_at ("looser throw specifier for `%#F'", overrider);
1724 cp_error_at (" overriding `%#F'", basefn);
1725 DECL_INVALID_OVERRIDER_P (overrider) = 1;
1726 return 0;
1727 }
1728
1729 return 1;
1730 }
1731
1732 /* Given a class TYPE, and a function decl FNDECL, look for
1733 virtual functions in TYPE's hierarchy which FNDECL overrides.
1734 We do not look in TYPE itself, only its bases.
1735
1736 Returns nonzero, if we find any. Set FNDECL's DECL_VIRTUAL_P, if we
1737 find that it overrides anything.
1738
1739 We check that every function which is overridden, is correctly
1740 overridden. */
1741
1742 int
1743 look_for_overrides (tree type, tree fndecl)
1744 {
1745 tree binfo = TYPE_BINFO (type);
1746 tree base_binfo;
1747 int ix;
1748 int found = 0;
1749
1750 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
1751 {
1752 tree basetype = BINFO_TYPE (base_binfo);
1753
1754 if (TYPE_POLYMORPHIC_P (basetype))
1755 found += look_for_overrides_r (basetype, fndecl);
1756 }
1757 return found;
1758 }
1759
1760 /* Look in TYPE for virtual functions with the same signature as
1761 FNDECL. */
1762
1763 tree
1764 look_for_overrides_here (tree type, tree fndecl)
1765 {
1766 int ix;
1767
1768 /* If there are no methods in TYPE (meaning that only implicitly
1769 declared methods will ever be provided for TYPE), then there are
1770 no virtual functions. */
1771 if (!CLASSTYPE_METHOD_VEC (type))
1772 return NULL_TREE;
1773
1774 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (fndecl))
1775 ix = CLASSTYPE_DESTRUCTOR_SLOT;
1776 else
1777 ix = lookup_fnfields_1 (type, DECL_NAME (fndecl));
1778 if (ix >= 0)
1779 {
1780 tree fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), ix);
1781
1782 for (; fns; fns = OVL_NEXT (fns))
1783 {
1784 tree fn = OVL_CURRENT (fns);
1785
1786 if (!DECL_VIRTUAL_P (fn))
1787 /* Not a virtual. */;
1788 else if (DECL_CONTEXT (fn) != type)
1789 /* Introduced with a using declaration. */;
1790 else if (DECL_STATIC_FUNCTION_P (fndecl))
1791 {
1792 tree btypes = TYPE_ARG_TYPES (TREE_TYPE (fn));
1793 tree dtypes = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
1794 if (compparms (TREE_CHAIN (btypes), dtypes))
1795 return fn;
1796 }
1797 else if (same_signature_p (fndecl, fn))
1798 return fn;
1799 }
1800 }
1801 return NULL_TREE;
1802 }
1803
1804 /* Look in TYPE for virtual functions overridden by FNDECL. Check both
1805 TYPE itself and its bases. */
1806
1807 static int
1808 look_for_overrides_r (tree type, tree fndecl)
1809 {
1810 tree fn = look_for_overrides_here (type, fndecl);
1811 if (fn)
1812 {
1813 if (DECL_STATIC_FUNCTION_P (fndecl))
1814 {
1815 /* A static member function cannot match an inherited
1816 virtual member function. */
1817 cp_error_at ("`%#D' cannot be declared", fndecl);
1818 cp_error_at (" since `%#D' declared in base class", fn);
1819 }
1820 else
1821 {
1822 /* It's definitely virtual, even if not explicitly set. */
1823 DECL_VIRTUAL_P (fndecl) = 1;
1824 check_final_overrider (fndecl, fn);
1825 }
1826 return 1;
1827 }
1828
1829 /* We failed to find one declared in this class. Look in its bases. */
1830 return look_for_overrides (type, fndecl);
1831 }
1832
1833 /* Called via dfs_walk from dfs_get_pure_virtuals. */
1834
1835 static tree
1836 dfs_get_pure_virtuals (tree binfo, void *data)
1837 {
1838 tree type = (tree) data;
1839
1840 /* We're not interested in primary base classes; the derived class
1841 of which they are a primary base will contain the information we
1842 need. */
1843 if (!BINFO_PRIMARY_P (binfo))
1844 {
1845 tree virtuals;
1846
1847 for (virtuals = BINFO_VIRTUALS (binfo);
1848 virtuals;
1849 virtuals = TREE_CHAIN (virtuals))
1850 if (DECL_PURE_VIRTUAL_P (BV_FN (virtuals)))
1851 CLASSTYPE_PURE_VIRTUALS (type)
1852 = tree_cons (NULL_TREE, BV_FN (virtuals),
1853 CLASSTYPE_PURE_VIRTUALS (type));
1854 }
1855
1856 BINFO_MARKED (binfo) = 1;
1857
1858 return NULL_TREE;
1859 }
1860
1861 /* Set CLASSTYPE_PURE_VIRTUALS for TYPE. */
1862
1863 void
1864 get_pure_virtuals (tree type)
1865 {
1866 unsigned ix;
1867 tree binfo;
1868 VEC (tree) *vbases;
1869
1870 /* Clear the CLASSTYPE_PURE_VIRTUALS list; whatever is already there
1871 is going to be overridden. */
1872 CLASSTYPE_PURE_VIRTUALS (type) = NULL_TREE;
1873 /* Now, run through all the bases which are not primary bases, and
1874 collect the pure virtual functions. We look at the vtable in
1875 each class to determine what pure virtual functions are present.
1876 (A primary base is not interesting because the derived class of
1877 which it is a primary base will contain vtable entries for the
1878 pure virtuals in the base class. */
1879 dfs_walk (TYPE_BINFO (type), dfs_get_pure_virtuals, unmarkedp, type);
1880 dfs_walk (TYPE_BINFO (type), dfs_unmark, markedp, type);
1881
1882 /* Put the pure virtuals in dfs order. */
1883 CLASSTYPE_PURE_VIRTUALS (type) = nreverse (CLASSTYPE_PURE_VIRTUALS (type));
1884
1885 for (vbases = CLASSTYPE_VBASECLASSES (type), ix = 0;
1886 VEC_iterate (tree, vbases, ix, binfo); ix++)
1887 {
1888 tree virtuals;
1889
1890 for (virtuals = BINFO_VIRTUALS (binfo); virtuals;
1891 virtuals = TREE_CHAIN (virtuals))
1892 {
1893 tree base_fndecl = BV_FN (virtuals);
1894 if (DECL_NEEDS_FINAL_OVERRIDER_P (base_fndecl))
1895 error ("`%#D' needs a final overrider", base_fndecl);
1896 }
1897 }
1898 }
1899 \f
1900 /* DEPTH-FIRST SEARCH ROUTINES. */
1901
1902 tree
1903 markedp (tree derived, int ix, void *data ATTRIBUTE_UNUSED)
1904 {
1905 tree binfo = BINFO_BASE_BINFO (derived, ix);
1906
1907 return BINFO_MARKED (binfo) ? binfo : NULL_TREE;
1908 }
1909
1910 tree
1911 unmarkedp (tree derived, int ix, void *data ATTRIBUTE_UNUSED)
1912 {
1913 tree binfo = BINFO_BASE_BINFO (derived, ix);
1914
1915 return !BINFO_MARKED (binfo) ? binfo : NULL_TREE;
1916 }
1917
1918 /* The worker functions for `dfs_walk'. These do not need to
1919 test anything (vis a vis marking) if they are paired with
1920 a predicate function (above). */
1921
1922 tree
1923 dfs_unmark (tree binfo, void *data ATTRIBUTE_UNUSED)
1924 {
1925 BINFO_MARKED (binfo) = 0;
1926 return NULL_TREE;
1927 }
1928
1929 \f
1930 /* Debug info for C++ classes can get very large; try to avoid
1931 emitting it everywhere.
1932
1933 Note that this optimization wins even when the target supports
1934 BINCL (if only slightly), and reduces the amount of work for the
1935 linker. */
1936
1937 void
1938 maybe_suppress_debug_info (tree t)
1939 {
1940 /* We can't do the usual TYPE_DECL_SUPPRESS_DEBUG thing with DWARF, which
1941 does not support name references between translation units. It supports
1942 symbolic references between translation units, but only within a single
1943 executable or shared library.
1944
1945 For DWARF 2, we handle TYPE_DECL_SUPPRESS_DEBUG by pretending
1946 that the type was never defined, so we only get the members we
1947 actually define. */
1948 if (write_symbols == DWARF_DEBUG || write_symbols == NO_DEBUG)
1949 return;
1950
1951 /* We might have set this earlier in cp_finish_decl. */
1952 TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 0;
1953
1954 /* If we already know how we're handling this class, handle debug info
1955 the same way. */
1956 if (CLASSTYPE_INTERFACE_KNOWN (t))
1957 {
1958 if (CLASSTYPE_INTERFACE_ONLY (t))
1959 TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 1;
1960 /* else don't set it. */
1961 }
1962 /* If the class has a vtable, write out the debug info along with
1963 the vtable. */
1964 else if (TYPE_CONTAINS_VPTR_P (t))
1965 TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 1;
1966
1967 /* Otherwise, just emit the debug info normally. */
1968 }
1969
1970 /* Note that we want debugging information for a base class of a class
1971 whose vtable is being emitted. Normally, this would happen because
1972 calling the constructor for a derived class implies calling the
1973 constructors for all bases, which involve initializing the
1974 appropriate vptr with the vtable for the base class; but in the
1975 presence of optimization, this initialization may be optimized
1976 away, so we tell finish_vtable_vardecl that we want the debugging
1977 information anyway. */
1978
1979 static tree
1980 dfs_debug_mark (tree binfo, void *data ATTRIBUTE_UNUSED)
1981 {
1982 tree t = BINFO_TYPE (binfo);
1983
1984 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
1985
1986 return NULL_TREE;
1987 }
1988
1989 /* Returns BINFO if we haven't already noted that we want debugging
1990 info for this base class. */
1991
1992 static tree
1993 dfs_debug_unmarkedp (tree derived, int ix, void *data ATTRIBUTE_UNUSED)
1994 {
1995 tree binfo = BINFO_BASE_BINFO (derived, ix);
1996
1997 return (!CLASSTYPE_DEBUG_REQUESTED (BINFO_TYPE (binfo))
1998 ? binfo : NULL_TREE);
1999 }
2000
2001 /* Write out the debugging information for TYPE, whose vtable is being
2002 emitted. Also walk through our bases and note that we want to
2003 write out information for them. This avoids the problem of not
2004 writing any debug info for intermediate basetypes whose
2005 constructors, and thus the references to their vtables, and thus
2006 the vtables themselves, were optimized away. */
2007
2008 void
2009 note_debug_info_needed (tree type)
2010 {
2011 if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)))
2012 {
2013 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)) = 0;
2014 rest_of_type_compilation (type, toplevel_bindings_p ());
2015 }
2016
2017 dfs_walk (TYPE_BINFO (type), dfs_debug_mark, dfs_debug_unmarkedp, 0);
2018 }
2019 \f
2020 void
2021 print_search_statistics (void)
2022 {
2023 #ifdef GATHER_STATISTICS
2024 fprintf (stderr, "%d fields searched in %d[%d] calls to lookup_field[_1]\n",
2025 n_fields_searched, n_calls_lookup_field, n_calls_lookup_field_1);
2026 fprintf (stderr, "%d fnfields searched in %d calls to lookup_fnfields\n",
2027 n_outer_fields_searched, n_calls_lookup_fnfields);
2028 fprintf (stderr, "%d calls to get_base_type\n", n_calls_get_base_type);
2029 #else /* GATHER_STATISTICS */
2030 fprintf (stderr, "no search statistics\n");
2031 #endif /* GATHER_STATISTICS */
2032 }
2033
2034 void
2035 reinit_search_statistics (void)
2036 {
2037 #ifdef GATHER_STATISTICS
2038 n_fields_searched = 0;
2039 n_calls_lookup_field = 0, n_calls_lookup_field_1 = 0;
2040 n_calls_lookup_fnfields = 0, n_calls_lookup_fnfields_1 = 0;
2041 n_calls_get_base_type = 0;
2042 n_outer_fields_searched = 0;
2043 n_contexts_saved = 0;
2044 #endif /* GATHER_STATISTICS */
2045 }
2046
2047 static tree
2048 add_conversions (tree binfo, void *data)
2049 {
2050 size_t i;
2051 VEC(tree) *method_vec = CLASSTYPE_METHOD_VEC (BINFO_TYPE (binfo));
2052 tree *conversions = (tree *) data;
2053 tree tmp;
2054
2055 /* Some builtin types have no method vector, not even an empty one. */
2056 if (!method_vec)
2057 return NULL_TREE;
2058
2059 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
2060 VEC_iterate (tree, method_vec, i, tmp);
2061 ++i)
2062 {
2063 tree name;
2064
2065 if (!DECL_CONV_FN_P (OVL_CURRENT (tmp)))
2066 break;
2067
2068 name = DECL_NAME (OVL_CURRENT (tmp));
2069
2070 /* Make sure we don't already have this conversion. */
2071 if (! IDENTIFIER_MARKED (name))
2072 {
2073 tree t;
2074
2075 /* Make sure that we do not already have a conversion
2076 operator for this type. Merely checking the NAME is not
2077 enough because two conversion operators to the same type
2078 may not have the same NAME. */
2079 for (t = *conversions; t; t = TREE_CHAIN (t))
2080 {
2081 tree fn;
2082 for (fn = TREE_VALUE (t); fn; fn = OVL_NEXT (fn))
2083 if (same_type_p (TREE_TYPE (name),
2084 DECL_CONV_FN_TYPE (OVL_CURRENT (fn))))
2085 break;
2086 if (fn)
2087 break;
2088 }
2089 if (!t)
2090 {
2091 *conversions = tree_cons (binfo, tmp, *conversions);
2092 IDENTIFIER_MARKED (name) = 1;
2093 }
2094 }
2095 }
2096 return NULL_TREE;
2097 }
2098
2099 /* Return a TREE_LIST containing all the non-hidden user-defined
2100 conversion functions for TYPE (and its base-classes). The
2101 TREE_VALUE of each node is a FUNCTION_DECL or an OVERLOAD
2102 containing the conversion functions. The TREE_PURPOSE is the BINFO
2103 from which the conversion functions in this node were selected. */
2104
2105 tree
2106 lookup_conversions (tree type)
2107 {
2108 tree t;
2109 tree conversions = NULL_TREE;
2110
2111 complete_type (type);
2112 if (TYPE_BINFO (type))
2113 bfs_walk (TYPE_BINFO (type), add_conversions, 0, &conversions);
2114
2115 for (t = conversions; t; t = TREE_CHAIN (t))
2116 IDENTIFIER_MARKED (DECL_NAME (OVL_CURRENT (TREE_VALUE (t)))) = 0;
2117
2118 return conversions;
2119 }
2120
2121 struct overlap_info
2122 {
2123 tree compare_type;
2124 int found_overlap;
2125 };
2126
2127 /* Check whether the empty class indicated by EMPTY_BINFO is also present
2128 at offset 0 in COMPARE_TYPE, and set found_overlap if so. */
2129
2130 static tree
2131 dfs_check_overlap (tree empty_binfo, void *data)
2132 {
2133 struct overlap_info *oi = (struct overlap_info *) data;
2134 tree binfo;
2135
2136 for (binfo = TYPE_BINFO (oi->compare_type);
2137 ;
2138 binfo = BINFO_BASE_BINFO (binfo, 0))
2139 {
2140 if (BINFO_TYPE (binfo) == BINFO_TYPE (empty_binfo))
2141 {
2142 oi->found_overlap = 1;
2143 break;
2144 }
2145 else if (!BINFO_N_BASE_BINFOS (binfo))
2146 break;
2147 }
2148
2149 return NULL_TREE;
2150 }
2151
2152 /* Trivial function to stop base traversal when we find something. */
2153
2154 static tree
2155 dfs_no_overlap_yet (tree derived, int ix, void *data)
2156 {
2157 tree binfo = BINFO_BASE_BINFO (derived, ix);
2158 struct overlap_info *oi = (struct overlap_info *) data;
2159
2160 return !oi->found_overlap ? binfo : NULL_TREE;
2161 }
2162
2163 /* Returns nonzero if EMPTY_TYPE or any of its bases can also be found at
2164 offset 0 in NEXT_TYPE. Used in laying out empty base class subobjects. */
2165
2166 int
2167 types_overlap_p (tree empty_type, tree next_type)
2168 {
2169 struct overlap_info oi;
2170
2171 if (! IS_AGGR_TYPE (next_type))
2172 return 0;
2173 oi.compare_type = next_type;
2174 oi.found_overlap = 0;
2175 dfs_walk (TYPE_BINFO (empty_type), dfs_check_overlap,
2176 dfs_no_overlap_yet, &oi);
2177 return oi.found_overlap;
2178 }
2179
2180 /* Returns the binfo of the first direct or indirect virtual base derived
2181 from BINFO, or NULL if binfo is not via virtual. */
2182
2183 tree
2184 binfo_from_vbase (tree binfo)
2185 {
2186 for (; binfo; binfo = BINFO_INHERITANCE_CHAIN (binfo))
2187 {
2188 if (BINFO_VIRTUAL_P (binfo))
2189 return binfo;
2190 }
2191 return NULL_TREE;
2192 }
2193
2194 /* Returns the binfo of the first direct or indirect virtual base derived
2195 from BINFO up to the TREE_TYPE, LIMIT, or NULL if binfo is not
2196 via virtual. */
2197
2198 tree
2199 binfo_via_virtual (tree binfo, tree limit)
2200 {
2201 for (; binfo && (!limit || !same_type_p (BINFO_TYPE (binfo), limit));
2202 binfo = BINFO_INHERITANCE_CHAIN (binfo))
2203 {
2204 if (BINFO_VIRTUAL_P (binfo))
2205 return binfo;
2206 }
2207 return NULL_TREE;
2208 }
2209
2210 /* BINFO is a base binfo in the complete type BINFO_TYPE (HERE).
2211 Find the equivalent binfo within whatever graph HERE is located.
2212 This is the inverse of original_binfo. */
2213
2214 tree
2215 copied_binfo (tree binfo, tree here)
2216 {
2217 tree result = NULL_TREE;
2218
2219 if (BINFO_VIRTUAL_P (binfo))
2220 {
2221 tree t;
2222
2223 for (t = here; BINFO_INHERITANCE_CHAIN (t);
2224 t = BINFO_INHERITANCE_CHAIN (t))
2225 continue;
2226
2227 result = binfo_for_vbase (BINFO_TYPE (binfo), BINFO_TYPE (t));
2228 }
2229 else if (BINFO_INHERITANCE_CHAIN (binfo))
2230 {
2231 tree cbinfo;
2232 tree base_binfo;
2233 int ix;
2234
2235 cbinfo = copied_binfo (BINFO_INHERITANCE_CHAIN (binfo), here);
2236 for (ix = 0; BINFO_BASE_ITERATE (cbinfo, ix, base_binfo); ix++)
2237 if (BINFO_TYPE (base_binfo) == BINFO_TYPE (binfo))
2238 {
2239 result = base_binfo;
2240 break;
2241 }
2242 }
2243 else
2244 {
2245 my_friendly_assert (BINFO_TYPE (here) == BINFO_TYPE (binfo), 20030202);
2246 result = here;
2247 }
2248
2249 my_friendly_assert (result, 20030202);
2250 return result;
2251 }
2252
2253 tree
2254 binfo_for_vbase (tree base, tree t)
2255 {
2256 unsigned ix;
2257 tree binfo;
2258 VEC (tree) *vbases;
2259
2260 for (vbases = CLASSTYPE_VBASECLASSES (t), ix = 0;
2261 VEC_iterate (tree, vbases, ix, binfo); ix++)
2262 if (BINFO_TYPE (binfo) == base)
2263 return binfo;
2264 return NULL;
2265 }
2266
2267 /* BINFO is some base binfo of HERE, within some other
2268 hierarchy. Return the equivalent binfo, but in the hierarchy
2269 dominated by HERE. This is the inverse of copied_binfo. If BINFO
2270 is not a base binfo of HERE, returns NULL_TREE. */
2271
2272 tree
2273 original_binfo (tree binfo, tree here)
2274 {
2275 tree result = NULL;
2276
2277 if (BINFO_TYPE (binfo) == BINFO_TYPE (here))
2278 result = here;
2279 else if (BINFO_VIRTUAL_P (binfo))
2280 result = (CLASSTYPE_VBASECLASSES (BINFO_TYPE (here))
2281 ? binfo_for_vbase (BINFO_TYPE (binfo), BINFO_TYPE (here))
2282 : NULL_TREE);
2283 else if (BINFO_INHERITANCE_CHAIN (binfo))
2284 {
2285 tree base_binfos;
2286
2287 base_binfos = original_binfo (BINFO_INHERITANCE_CHAIN (binfo), here);
2288 if (base_binfos)
2289 {
2290 int ix;
2291 tree base_binfo;
2292
2293 for (ix = 0; (base_binfo = BINFO_BASE_BINFO (base_binfos, ix)); ix++)
2294 if (BINFO_TYPE (base_binfo) == BINFO_TYPE (binfo))
2295 {
2296 result = base_binfo;
2297 break;
2298 }
2299 }
2300 }
2301
2302 return result;
2303 }
2304