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