Merge trunk version 195164 into gupc branch.
[official-gcc.git] / gcc / cp / search.c
blob4cc02ba7dfc149944570cf3e6345933af8fd6821
1 /* Breadth-first and depth-first routines for
2 searching multiple-inheritance lattice for GNU C++.
3 Copyright (C) 1987-2013 Free Software Foundation, Inc.
4 Contributed by Michael Tiemann (tiemann@cygnus.com)
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* High-level class interface. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "cp-tree.h"
30 #include "intl.h"
31 #include "flags.h"
32 #include "toplev.h"
33 #include "target.h"
35 static int is_subobject_of_p (tree, tree);
36 static tree dfs_lookup_base (tree, void *);
37 static tree dfs_dcast_hint_pre (tree, void *);
38 static tree dfs_dcast_hint_post (tree, void *);
39 static tree dfs_debug_mark (tree, void *);
40 static tree dfs_walk_once_r (tree, tree (*pre_fn) (tree, void *),
41 tree (*post_fn) (tree, void *), void *data);
42 static void dfs_unmark_r (tree);
43 static int check_hidden_convs (tree, int, int, tree, tree, tree);
44 static tree split_conversions (tree, tree, tree, tree);
45 static int lookup_conversions_r (tree, int, int,
46 tree, tree, tree, tree, tree *, tree *);
47 static int look_for_overrides_r (tree, tree);
48 static tree lookup_field_r (tree, void *);
49 static tree dfs_accessible_post (tree, void *);
50 static tree dfs_walk_once_accessible_r (tree, bool, bool,
51 tree (*pre_fn) (tree, void *),
52 tree (*post_fn) (tree, void *),
53 void *data);
54 static tree dfs_walk_once_accessible (tree, bool,
55 tree (*pre_fn) (tree, void *),
56 tree (*post_fn) (tree, void *),
57 void *data);
58 static tree dfs_access_in_type (tree, void *);
59 static access_kind access_in_type (tree, tree);
60 static int protected_accessible_p (tree, tree, tree);
61 static int friend_accessible_p (tree, tree, tree);
62 static tree dfs_get_pure_virtuals (tree, void *);
65 /* Variables for gathering statistics. */
66 static int n_fields_searched;
67 static int n_calls_lookup_field, n_calls_lookup_field_1;
68 static int n_calls_lookup_fnfields, n_calls_lookup_fnfields_1;
69 static int n_calls_get_base_type;
70 static int n_outer_fields_searched;
71 static int n_contexts_saved;
74 /* Data for lookup_base and its workers. */
76 struct lookup_base_data_s
78 tree t; /* type being searched. */
79 tree base; /* The base type we're looking for. */
80 tree binfo; /* Found binfo. */
81 bool via_virtual; /* Found via a virtual path. */
82 bool ambiguous; /* Found multiply ambiguous */
83 bool repeated_base; /* Whether there are repeated bases in the
84 hierarchy. */
85 bool want_any; /* Whether we want any matching binfo. */
88 /* Worker function for lookup_base. See if we've found the desired
89 base and update DATA_ (a pointer to LOOKUP_BASE_DATA_S). */
91 static tree
92 dfs_lookup_base (tree binfo, void *data_)
94 struct lookup_base_data_s *data = (struct lookup_base_data_s *) data_;
96 if (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), data->base))
98 if (!data->binfo)
100 data->binfo = binfo;
101 data->via_virtual
102 = binfo_via_virtual (data->binfo, data->t) != NULL_TREE;
104 if (!data->repeated_base)
105 /* If there are no repeated bases, we can stop now. */
106 return binfo;
108 if (data->want_any && !data->via_virtual)
109 /* If this is a non-virtual base, then we can't do
110 better. */
111 return binfo;
113 return dfs_skip_bases;
115 else
117 gcc_assert (binfo != data->binfo);
119 /* We've found more than one matching binfo. */
120 if (!data->want_any)
122 /* This is immediately ambiguous. */
123 data->binfo = NULL_TREE;
124 data->ambiguous = true;
125 return error_mark_node;
128 /* Prefer one via a non-virtual path. */
129 if (!binfo_via_virtual (binfo, data->t))
131 data->binfo = binfo;
132 data->via_virtual = false;
133 return binfo;
136 /* There must be repeated bases, otherwise we'd have stopped
137 on the first base we found. */
138 return dfs_skip_bases;
142 return NULL_TREE;
145 /* Returns true if type BASE is accessible in T. (BASE is known to be
146 a (possibly non-proper) base class of T.) If CONSIDER_LOCAL_P is
147 true, consider any special access of the current scope, or access
148 bestowed by friendship. */
150 bool
151 accessible_base_p (tree t, tree base, bool consider_local_p)
153 tree decl;
155 /* [class.access.base]
157 A base class is said to be accessible if an invented public
158 member of the base class is accessible.
160 If BASE is a non-proper base, this condition is trivially
161 true. */
162 if (same_type_p (t, base))
163 return true;
164 /* Rather than inventing a public member, we use the implicit
165 public typedef created in the scope of every class. */
166 decl = TYPE_FIELDS (base);
167 while (!DECL_SELF_REFERENCE_P (decl))
168 decl = DECL_CHAIN (decl);
169 while (ANON_AGGR_TYPE_P (t))
170 t = TYPE_CONTEXT (t);
171 return accessible_p (t, decl, consider_local_p);
174 /* Lookup BASE in the hierarchy dominated by T. Do access checking as
175 ACCESS specifies. Return the binfo we discover. If KIND_PTR is
176 non-NULL, fill with information about what kind of base we
177 discovered.
179 If the base is inaccessible, or ambiguous, then error_mark_node is
180 returned. If the tf_error bit of COMPLAIN is not set, no error
181 is issued. */
183 tree
184 lookup_base (tree t, tree base, base_access access,
185 base_kind *kind_ptr, tsubst_flags_t complain)
187 tree binfo;
188 tree t_binfo;
189 base_kind bk;
191 if (t == error_mark_node || base == error_mark_node)
193 if (kind_ptr)
194 *kind_ptr = bk_not_base;
195 return error_mark_node;
197 gcc_assert (TYPE_P (base));
199 if (!TYPE_P (t))
201 t_binfo = t;
202 t = BINFO_TYPE (t);
204 else
206 t = complete_type (TYPE_MAIN_VARIANT (t));
207 t_binfo = TYPE_BINFO (t);
210 base = TYPE_MAIN_VARIANT (base);
212 /* If BASE is incomplete, it can't be a base of T--and instantiating it
213 might cause an error. */
214 if (t_binfo && CLASS_TYPE_P (base) && COMPLETE_OR_OPEN_TYPE_P (base))
216 struct lookup_base_data_s data;
218 data.t = t;
219 data.base = base;
220 data.binfo = NULL_TREE;
221 data.ambiguous = data.via_virtual = false;
222 data.repeated_base = CLASSTYPE_REPEATED_BASE_P (t);
223 data.want_any = access == ba_any;
225 dfs_walk_once (t_binfo, dfs_lookup_base, NULL, &data);
226 binfo = data.binfo;
228 if (!binfo)
229 bk = data.ambiguous ? bk_ambig : bk_not_base;
230 else if (binfo == t_binfo)
231 bk = bk_same_type;
232 else if (data.via_virtual)
233 bk = bk_via_virtual;
234 else
235 bk = bk_proper_base;
237 else
239 binfo = NULL_TREE;
240 bk = bk_not_base;
243 /* Check that the base is unambiguous and accessible. */
244 if (access != ba_any)
245 switch (bk)
247 case bk_not_base:
248 break;
250 case bk_ambig:
251 if (complain & tf_error)
252 error ("%qT is an ambiguous base of %qT", base, t);
253 binfo = error_mark_node;
254 break;
256 default:
257 if ((access & ba_check_bit)
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, !(access & ba_ignore_scope)))
267 if (complain & tf_error)
268 error ("%qT is an inaccessible base of %qT", base, t);
269 binfo = error_mark_node;
270 bk = bk_inaccessible;
272 break;
275 if (kind_ptr)
276 *kind_ptr = bk;
278 return binfo;
281 /* Data for dcast_base_hint walker. */
283 struct dcast_data_s
285 tree subtype; /* The base type we're looking for. */
286 int virt_depth; /* Number of virtual bases encountered from most
287 derived. */
288 tree offset; /* Best hint offset discovered so far. */
289 bool repeated_base; /* Whether there are repeated bases in the
290 hierarchy. */
293 /* Worker for dcast_base_hint. Search for the base type being cast
294 from. */
296 static tree
297 dfs_dcast_hint_pre (tree binfo, void *data_)
299 struct dcast_data_s *data = (struct dcast_data_s *) data_;
301 if (BINFO_VIRTUAL_P (binfo))
302 data->virt_depth++;
304 if (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), data->subtype))
306 if (data->virt_depth)
308 data->offset = ssize_int (-1);
309 return data->offset;
311 if (data->offset)
312 data->offset = ssize_int (-3);
313 else
314 data->offset = BINFO_OFFSET (binfo);
316 return data->repeated_base ? dfs_skip_bases : data->offset;
319 return NULL_TREE;
322 /* Worker for dcast_base_hint. Track the virtual depth. */
324 static tree
325 dfs_dcast_hint_post (tree binfo, void *data_)
327 struct dcast_data_s *data = (struct dcast_data_s *) data_;
329 if (BINFO_VIRTUAL_P (binfo))
330 data->virt_depth--;
332 return NULL_TREE;
335 /* The dynamic cast runtime needs a hint about how the static SUBTYPE type
336 started from is related to the required TARGET type, in order to optimize
337 the inheritance graph search. This information is independent of the
338 current context, and ignores private paths, hence get_base_distance is
339 inappropriate. Return a TREE specifying the base offset, BOFF.
340 BOFF >= 0, there is only one public non-virtual SUBTYPE base at offset BOFF,
341 and there are no public virtual SUBTYPE bases.
342 BOFF == -1, SUBTYPE occurs as multiple public virtual or non-virtual bases.
343 BOFF == -2, SUBTYPE is not a public base.
344 BOFF == -3, SUBTYPE occurs as multiple public non-virtual bases. */
346 tree
347 dcast_base_hint (tree subtype, tree target)
349 struct dcast_data_s data;
351 data.subtype = subtype;
352 data.virt_depth = 0;
353 data.offset = NULL_TREE;
354 data.repeated_base = CLASSTYPE_REPEATED_BASE_P (target);
356 dfs_walk_once_accessible (TYPE_BINFO (target), /*friends=*/false,
357 dfs_dcast_hint_pre, dfs_dcast_hint_post, &data);
358 return data.offset ? data.offset : ssize_int (-2);
361 /* Search for a member with name NAME in a multiple inheritance
362 lattice specified by TYPE. If it does not exist, return NULL_TREE.
363 If the member is ambiguously referenced, return `error_mark_node'.
364 Otherwise, return a DECL with the indicated name. If WANT_TYPE is
365 true, type declarations are preferred. */
367 /* Do a 1-level search for NAME as a member of TYPE. The caller must
368 figure out whether it can access this field. (Since it is only one
369 level, this is reasonable.) */
371 tree
372 lookup_field_1 (tree type, tree name, bool want_type)
374 tree field;
376 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
378 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
379 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
380 || TREE_CODE (type) == TYPENAME_TYPE)
381 /* The TYPE_FIELDS of a TEMPLATE_TYPE_PARM and
382 BOUND_TEMPLATE_TEMPLATE_PARM are not fields at all;
383 instead TYPE_FIELDS is the TEMPLATE_PARM_INDEX. (Miraculously,
384 the code often worked even when we treated the index as a list
385 of fields!)
386 The TYPE_FIELDS of TYPENAME_TYPE is its TYPENAME_TYPE_FULLNAME. */
387 return NULL_TREE;
389 if (CLASSTYPE_SORTED_FIELDS (type))
391 tree *fields = &CLASSTYPE_SORTED_FIELDS (type)->elts[0];
392 int lo = 0, hi = CLASSTYPE_SORTED_FIELDS (type)->len;
393 int i;
395 while (lo < hi)
397 i = (lo + hi) / 2;
399 if (GATHER_STATISTICS)
400 n_fields_searched++;
402 if (DECL_NAME (fields[i]) > name)
403 hi = i;
404 else if (DECL_NAME (fields[i]) < name)
405 lo = i + 1;
406 else
408 field = NULL_TREE;
410 /* We might have a nested class and a field with the
411 same name; we sorted them appropriately via
412 field_decl_cmp, so just look for the first or last
413 field with this name. */
414 if (want_type)
417 field = fields[i--];
418 while (i >= lo && DECL_NAME (fields[i]) == name);
419 if (TREE_CODE (field) != TYPE_DECL
420 && !DECL_TYPE_TEMPLATE_P (field))
421 field = NULL_TREE;
423 else
426 field = fields[i++];
427 while (i < hi && DECL_NAME (fields[i]) == name);
430 if (field)
432 field = strip_using_decl (field);
433 if (is_overloaded_fn (field))
434 field = NULL_TREE;
437 return field;
440 return NULL_TREE;
443 field = TYPE_FIELDS (type);
445 if (GATHER_STATISTICS)
446 n_calls_lookup_field_1++;
448 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
450 tree decl = field;
452 if (GATHER_STATISTICS)
453 n_fields_searched++;
455 gcc_assert (DECL_P (field));
456 if (DECL_NAME (field) == NULL_TREE
457 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
459 tree temp = lookup_field_1 (TREE_TYPE (field), name, want_type);
460 if (temp)
461 return temp;
464 if (TREE_CODE (decl) == USING_DECL
465 && DECL_NAME (decl) == name)
467 decl = strip_using_decl (decl);
468 if (is_overloaded_fn (decl))
469 continue;
472 if (DECL_NAME (decl) == name
473 && (!want_type
474 || TREE_CODE (decl) == TYPE_DECL
475 || DECL_TYPE_TEMPLATE_P (decl)))
476 return decl;
478 /* Not found. */
479 if (name == vptr_identifier)
481 /* Give the user what s/he thinks s/he wants. */
482 if (TYPE_POLYMORPHIC_P (type))
483 return TYPE_VFIELD (type);
485 return NULL_TREE;
488 /* Return the FUNCTION_DECL, RECORD_TYPE, UNION_TYPE, or
489 NAMESPACE_DECL corresponding to the innermost non-block scope. */
491 tree
492 current_scope (void)
494 /* There are a number of cases we need to be aware of here:
495 current_class_type current_function_decl
496 global NULL NULL
497 fn-local NULL SET
498 class-local SET NULL
499 class->fn SET SET
500 fn->class SET SET
502 Those last two make life interesting. If we're in a function which is
503 itself inside a class, we need decls to go into the fn's decls (our
504 second case below). But if we're in a class and the class itself is
505 inside a function, we need decls to go into the decls for the class. To
506 achieve this last goal, we must see if, when both current_class_ptr and
507 current_function_decl are set, the class was declared inside that
508 function. If so, we know to put the decls into the class's scope. */
509 if (current_function_decl && current_class_type
510 && ((DECL_FUNCTION_MEMBER_P (current_function_decl)
511 && same_type_p (DECL_CONTEXT (current_function_decl),
512 current_class_type))
513 || (DECL_FRIEND_CONTEXT (current_function_decl)
514 && same_type_p (DECL_FRIEND_CONTEXT (current_function_decl),
515 current_class_type))))
516 return current_function_decl;
517 if (current_class_type)
518 return current_class_type;
519 if (current_function_decl)
520 return current_function_decl;
521 return current_namespace;
524 /* Returns nonzero if we are currently in a function scope. Note
525 that this function returns zero if we are within a local class, but
526 not within a member function body of the local class. */
529 at_function_scope_p (void)
531 tree cs = current_scope ();
532 /* Also check cfun to make sure that we're really compiling
533 this function (as opposed to having set current_function_decl
534 for access checking or some such). */
535 return (cs && TREE_CODE (cs) == FUNCTION_DECL
536 && cfun && cfun->decl == current_function_decl);
539 /* Returns true if the innermost active scope is a class scope. */
541 bool
542 at_class_scope_p (void)
544 tree cs = current_scope ();
545 return cs && TYPE_P (cs);
548 /* Returns true if the innermost active scope is a namespace scope. */
550 bool
551 at_namespace_scope_p (void)
553 tree cs = current_scope ();
554 return cs && TREE_CODE (cs) == NAMESPACE_DECL;
557 /* Return the scope of DECL, as appropriate when doing name-lookup. */
559 tree
560 context_for_name_lookup (tree decl)
562 /* [class.union]
564 For the purposes of name lookup, after the anonymous union
565 definition, the members of the anonymous union are considered to
566 have been defined in the scope in which the anonymous union is
567 declared. */
568 tree context = DECL_CONTEXT (decl);
570 while (context && TYPE_P (context)
571 && (ANON_AGGR_TYPE_P (context) || UNSCOPED_ENUM_P (context)))
572 context = TYPE_CONTEXT (context);
573 if (!context)
574 context = global_namespace;
576 return context;
579 /* The accessibility routines use BINFO_ACCESS for scratch space
580 during the computation of the accessibility of some declaration. */
582 #define BINFO_ACCESS(NODE) \
583 ((access_kind) ((TREE_PUBLIC (NODE) << 1) | TREE_PRIVATE (NODE)))
585 /* Set the access associated with NODE to ACCESS. */
587 #define SET_BINFO_ACCESS(NODE, ACCESS) \
588 ((TREE_PUBLIC (NODE) = ((ACCESS) & 2) != 0), \
589 (TREE_PRIVATE (NODE) = ((ACCESS) & 1) != 0))
591 /* Called from access_in_type via dfs_walk. Calculate the access to
592 DATA (which is really a DECL) in BINFO. */
594 static tree
595 dfs_access_in_type (tree binfo, void *data)
597 tree decl = (tree) data;
598 tree type = BINFO_TYPE (binfo);
599 access_kind access = ak_none;
601 if (context_for_name_lookup (decl) == type)
603 /* If we have descended to the scope of DECL, just note the
604 appropriate access. */
605 if (TREE_PRIVATE (decl))
606 access = ak_private;
607 else if (TREE_PROTECTED (decl))
608 access = ak_protected;
609 else
610 access = ak_public;
612 else
614 /* First, check for an access-declaration that gives us more
615 access to the DECL. */
616 if (DECL_LANG_SPECIFIC (decl) && !DECL_DISCRIMINATOR_P (decl))
618 tree decl_access = purpose_member (type, DECL_ACCESS (decl));
620 if (decl_access)
622 decl_access = TREE_VALUE (decl_access);
624 if (decl_access == access_public_node)
625 access = ak_public;
626 else if (decl_access == access_protected_node)
627 access = ak_protected;
628 else if (decl_access == access_private_node)
629 access = ak_private;
630 else
631 gcc_unreachable ();
635 if (!access)
637 int i;
638 tree base_binfo;
639 vec<tree, va_gc> *accesses;
641 /* Otherwise, scan our baseclasses, and pick the most favorable
642 access. */
643 accesses = BINFO_BASE_ACCESSES (binfo);
644 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
646 tree base_access = (*accesses)[i];
647 access_kind base_access_now = BINFO_ACCESS (base_binfo);
649 if (base_access_now == ak_none || base_access_now == ak_private)
650 /* If it was not accessible in the base, or only
651 accessible as a private member, we can't access it
652 all. */
653 base_access_now = ak_none;
654 else if (base_access == access_protected_node)
655 /* Public and protected members in the base become
656 protected here. */
657 base_access_now = ak_protected;
658 else if (base_access == access_private_node)
659 /* Public and protected members in the base become
660 private here. */
661 base_access_now = ak_private;
663 /* See if the new access, via this base, gives more
664 access than our previous best access. */
665 if (base_access_now != ak_none
666 && (access == ak_none || base_access_now < access))
668 access = base_access_now;
670 /* If the new access is public, we can't do better. */
671 if (access == ak_public)
672 break;
678 /* Note the access to DECL in TYPE. */
679 SET_BINFO_ACCESS (binfo, access);
681 return NULL_TREE;
684 /* Return the access to DECL in TYPE. */
686 static access_kind
687 access_in_type (tree type, tree decl)
689 tree binfo = TYPE_BINFO (type);
691 /* We must take into account
693 [class.paths]
695 If a name can be reached by several paths through a multiple
696 inheritance graph, the access is that of the path that gives
697 most access.
699 The algorithm we use is to make a post-order depth-first traversal
700 of the base-class hierarchy. As we come up the tree, we annotate
701 each node with the most lenient access. */
702 dfs_walk_once (binfo, NULL, dfs_access_in_type, decl);
704 return BINFO_ACCESS (binfo);
707 /* Returns nonzero if it is OK to access DECL through an object
708 indicated by BINFO in the context of DERIVED. */
710 static int
711 protected_accessible_p (tree decl, tree derived, tree binfo)
713 access_kind access;
715 /* We're checking this clause from [class.access.base]
717 m as a member of N is protected, and the reference occurs in a
718 member or friend of class N, or in a member or friend of a
719 class P derived from N, where m as a member of P is public, private
720 or protected.
722 Here DERIVED is a possible P, DECL is m and BINFO_TYPE (binfo) is N. */
724 /* If DERIVED isn't derived from N, then it can't be a P. */
725 if (!DERIVED_FROM_P (BINFO_TYPE (binfo), derived))
726 return 0;
728 access = access_in_type (derived, decl);
730 /* If m is inaccessible in DERIVED, then it's not a P. */
731 if (access == ak_none)
732 return 0;
734 /* [class.protected]
736 When a friend or a member function of a derived class references
737 a protected nonstatic member of a base class, an access check
738 applies in addition to those described earlier in clause
739 _class.access_) Except when forming a pointer to member
740 (_expr.unary.op_), the access must be through a pointer to,
741 reference to, or object of the derived class itself (or any class
742 derived from that class) (_expr.ref_). If the access is to form
743 a pointer to member, the nested-name-specifier shall name the
744 derived class (or any class derived from that class). */
745 if (DECL_NONSTATIC_MEMBER_P (decl))
747 /* We can tell through what the reference is occurring by
748 chasing BINFO up to the root. */
749 tree t = binfo;
750 while (BINFO_INHERITANCE_CHAIN (t))
751 t = BINFO_INHERITANCE_CHAIN (t);
753 if (!DERIVED_FROM_P (derived, BINFO_TYPE (t)))
754 return 0;
757 return 1;
760 /* Returns nonzero if SCOPE is a friend of a type which would be able
761 to access DECL through the object indicated by BINFO. */
763 static int
764 friend_accessible_p (tree scope, tree decl, tree binfo)
766 tree befriending_classes;
767 tree t;
769 if (!scope)
770 return 0;
772 if (TREE_CODE (scope) == FUNCTION_DECL
773 || DECL_FUNCTION_TEMPLATE_P (scope))
774 befriending_classes = DECL_BEFRIENDING_CLASSES (scope);
775 else if (TYPE_P (scope))
776 befriending_classes = CLASSTYPE_BEFRIENDING_CLASSES (scope);
777 else
778 return 0;
780 for (t = befriending_classes; t; t = TREE_CHAIN (t))
781 if (protected_accessible_p (decl, TREE_VALUE (t), binfo))
782 return 1;
784 /* Nested classes have the same access as their enclosing types, as
785 per DR 45 (this is a change from the standard). */
786 if (TYPE_P (scope))
787 for (t = TYPE_CONTEXT (scope); t && TYPE_P (t); t = TYPE_CONTEXT (t))
788 if (protected_accessible_p (decl, t, binfo))
789 return 1;
791 if (TREE_CODE (scope) == FUNCTION_DECL
792 || DECL_FUNCTION_TEMPLATE_P (scope))
794 /* Perhaps this SCOPE is a member of a class which is a
795 friend. */
796 if (DECL_CLASS_SCOPE_P (scope)
797 && friend_accessible_p (DECL_CONTEXT (scope), decl, binfo))
798 return 1;
800 /* Or an instantiation of something which is a friend. */
801 if (DECL_TEMPLATE_INFO (scope))
803 int ret;
804 /* Increment processing_template_decl to make sure that
805 dependent_type_p works correctly. */
806 ++processing_template_decl;
807 ret = friend_accessible_p (DECL_TI_TEMPLATE (scope), decl, binfo);
808 --processing_template_decl;
809 return ret;
813 return 0;
816 /* Called via dfs_walk_once_accessible from accessible_p */
818 static tree
819 dfs_accessible_post (tree binfo, void * /*data*/)
821 if (BINFO_ACCESS (binfo) != ak_none)
823 tree scope = current_scope ();
824 if (scope && TREE_CODE (scope) != NAMESPACE_DECL
825 && is_friend (BINFO_TYPE (binfo), scope))
826 return binfo;
829 return NULL_TREE;
832 /* Like accessible_p below, but within a template returns true iff DECL is
833 accessible in TYPE to all possible instantiations of the template. */
836 accessible_in_template_p (tree type, tree decl)
838 int save_ptd = processing_template_decl;
839 processing_template_decl = 0;
840 int val = accessible_p (type, decl, false);
841 processing_template_decl = save_ptd;
842 return val;
845 /* DECL is a declaration from a base class of TYPE, which was the
846 class used to name DECL. Return nonzero if, in the current
847 context, DECL is accessible. If TYPE is actually a BINFO node,
848 then we can tell in what context the access is occurring by looking
849 at the most derived class along the path indicated by BINFO. If
850 CONSIDER_LOCAL is true, do consider special access the current
851 scope or friendship thereof we might have. */
854 accessible_p (tree type, tree decl, bool consider_local_p)
856 tree binfo;
857 tree scope;
858 access_kind access;
860 /* Nonzero if it's OK to access DECL if it has protected
861 accessibility in TYPE. */
862 int protected_ok = 0;
864 /* If this declaration is in a block or namespace scope, there's no
865 access control. */
866 if (!TYPE_P (context_for_name_lookup (decl)))
867 return 1;
869 /* There is no need to perform access checks inside a thunk. */
870 scope = current_scope ();
871 if (scope && DECL_THUNK_P (scope))
872 return 1;
874 /* In a template declaration, we cannot be sure whether the
875 particular specialization that is instantiated will be a friend
876 or not. Therefore, all access checks are deferred until
877 instantiation. However, PROCESSING_TEMPLATE_DECL is set in the
878 parameter list for a template (because we may see dependent types
879 in default arguments for template parameters), and access
880 checking should be performed in the outermost parameter list. */
881 if (processing_template_decl
882 && (!processing_template_parmlist || processing_template_decl > 1))
883 return 1;
885 if (!TYPE_P (type))
887 binfo = type;
888 type = BINFO_TYPE (type);
890 else
891 binfo = TYPE_BINFO (type);
893 /* [class.access.base]
895 A member m is accessible when named in class N if
897 --m as a member of N is public, or
899 --m as a member of N is private, and the reference occurs in a
900 member or friend of class N, or
902 --m as a member of N is protected, and the reference occurs in a
903 member or friend of class N, or in a member or friend of a
904 class P derived from N, where m as a member of P is private or
905 protected, or
907 --there exists a base class B of N that is accessible at the point
908 of reference, and m is accessible when named in class B.
910 We walk the base class hierarchy, checking these conditions. */
912 if (consider_local_p)
914 /* Figure out where the reference is occurring. Check to see if
915 DECL is private or protected in this scope, since that will
916 determine whether protected access is allowed. */
917 if (current_class_type)
918 protected_ok = protected_accessible_p (decl,
919 current_class_type, binfo);
921 /* Now, loop through the classes of which we are a friend. */
922 if (!protected_ok)
923 protected_ok = friend_accessible_p (scope, decl, binfo);
926 /* Standardize the binfo that access_in_type will use. We don't
927 need to know what path was chosen from this point onwards. */
928 binfo = TYPE_BINFO (type);
930 /* Compute the accessibility of DECL in the class hierarchy
931 dominated by type. */
932 access = access_in_type (type, decl);
933 if (access == ak_public
934 || (access == ak_protected && protected_ok))
935 return 1;
937 if (!consider_local_p)
938 return 0;
940 /* Walk the hierarchy again, looking for a base class that allows
941 access. */
942 return dfs_walk_once_accessible (binfo, /*friends=*/true,
943 NULL, dfs_accessible_post, NULL)
944 != NULL_TREE;
947 struct lookup_field_info {
948 /* The type in which we're looking. */
949 tree type;
950 /* The name of the field for which we're looking. */
951 tree name;
952 /* If non-NULL, the current result of the lookup. */
953 tree rval;
954 /* The path to RVAL. */
955 tree rval_binfo;
956 /* If non-NULL, the lookup was ambiguous, and this is a list of the
957 candidates. */
958 tree ambiguous;
959 /* If nonzero, we are looking for types, not data members. */
960 int want_type;
961 /* If something went wrong, a message indicating what. */
962 const char *errstr;
965 /* Nonzero for a class member means that it is shared between all objects
966 of that class.
968 [class.member.lookup]:If the resulting set of declarations are not all
969 from sub-objects of the same type, or the set has a nonstatic member
970 and includes members from distinct sub-objects, there is an ambiguity
971 and the program is ill-formed.
973 This function checks that T contains no nonstatic members. */
976 shared_member_p (tree t)
978 if (TREE_CODE (t) == VAR_DECL || TREE_CODE (t) == TYPE_DECL \
979 || TREE_CODE (t) == CONST_DECL)
980 return 1;
981 if (is_overloaded_fn (t))
983 t = get_fns (t);
984 for (; t; t = OVL_NEXT (t))
986 tree fn = OVL_CURRENT (t);
987 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
988 return 0;
990 return 1;
992 return 0;
995 /* Routine to see if the sub-object denoted by the binfo PARENT can be
996 found as a base class and sub-object of the object denoted by
997 BINFO. */
999 static int
1000 is_subobject_of_p (tree parent, tree binfo)
1002 tree probe;
1004 for (probe = parent; probe; probe = BINFO_INHERITANCE_CHAIN (probe))
1006 if (probe == binfo)
1007 return 1;
1008 if (BINFO_VIRTUAL_P (probe))
1009 return (binfo_for_vbase (BINFO_TYPE (probe), BINFO_TYPE (binfo))
1010 != NULL_TREE);
1012 return 0;
1015 /* DATA is really a struct lookup_field_info. Look for a field with
1016 the name indicated there in BINFO. If this function returns a
1017 non-NULL value it is the result of the lookup. Called from
1018 lookup_field via breadth_first_search. */
1020 static tree
1021 lookup_field_r (tree binfo, void *data)
1023 struct lookup_field_info *lfi = (struct lookup_field_info *) data;
1024 tree type = BINFO_TYPE (binfo);
1025 tree nval = NULL_TREE;
1027 /* If this is a dependent base, don't look in it. */
1028 if (BINFO_DEPENDENT_BASE_P (binfo))
1029 return NULL_TREE;
1031 /* If this base class is hidden by the best-known value so far, we
1032 don't need to look. */
1033 if (lfi->rval_binfo && BINFO_INHERITANCE_CHAIN (binfo) == lfi->rval_binfo
1034 && !BINFO_VIRTUAL_P (binfo))
1035 return dfs_skip_bases;
1037 /* First, look for a function. There can't be a function and a data
1038 member with the same name, and if there's a function and a type
1039 with the same name, the type is hidden by the function. */
1040 if (!lfi->want_type)
1041 nval = lookup_fnfields_slot (type, lfi->name);
1043 if (!nval)
1044 /* Look for a data member or type. */
1045 nval = lookup_field_1 (type, lfi->name, lfi->want_type);
1047 /* If there is no declaration with the indicated name in this type,
1048 then there's nothing to do. */
1049 if (!nval)
1050 goto done;
1052 /* If we're looking up a type (as with an elaborated type specifier)
1053 we ignore all non-types we find. */
1054 if (lfi->want_type && TREE_CODE (nval) != TYPE_DECL
1055 && !DECL_TYPE_TEMPLATE_P (nval))
1057 if (lfi->name == TYPE_IDENTIFIER (type))
1059 /* If the aggregate has no user defined constructors, we allow
1060 it to have fields with the same name as the enclosing type.
1061 If we are looking for that name, find the corresponding
1062 TYPE_DECL. */
1063 for (nval = TREE_CHAIN (nval); nval; nval = TREE_CHAIN (nval))
1064 if (DECL_NAME (nval) == lfi->name
1065 && TREE_CODE (nval) == TYPE_DECL)
1066 break;
1068 else
1069 nval = NULL_TREE;
1070 if (!nval && CLASSTYPE_NESTED_UTDS (type) != NULL)
1072 binding_entry e = binding_table_find (CLASSTYPE_NESTED_UTDS (type),
1073 lfi->name);
1074 if (e != NULL)
1075 nval = TYPE_MAIN_DECL (e->type);
1076 else
1077 goto done;
1081 /* If the lookup already found a match, and the new value doesn't
1082 hide the old one, we might have an ambiguity. */
1083 if (lfi->rval_binfo
1084 && !is_subobject_of_p (lfi->rval_binfo, binfo))
1087 if (nval == lfi->rval && shared_member_p (nval))
1088 /* The two things are really the same. */
1090 else if (is_subobject_of_p (binfo, lfi->rval_binfo))
1091 /* The previous value hides the new one. */
1093 else
1095 /* We have a real ambiguity. We keep a chain of all the
1096 candidates. */
1097 if (!lfi->ambiguous && lfi->rval)
1099 /* This is the first time we noticed an ambiguity. Add
1100 what we previously thought was a reasonable candidate
1101 to the list. */
1102 lfi->ambiguous = tree_cons (NULL_TREE, lfi->rval, NULL_TREE);
1103 TREE_TYPE (lfi->ambiguous) = error_mark_node;
1106 /* Add the new value. */
1107 lfi->ambiguous = tree_cons (NULL_TREE, nval, lfi->ambiguous);
1108 TREE_TYPE (lfi->ambiguous) = error_mark_node;
1109 lfi->errstr = G_("request for member %qD is ambiguous");
1112 else
1114 lfi->rval = nval;
1115 lfi->rval_binfo = binfo;
1118 done:
1119 /* Don't look for constructors or destructors in base classes. */
1120 if (IDENTIFIER_CTOR_OR_DTOR_P (lfi->name))
1121 return dfs_skip_bases;
1122 return NULL_TREE;
1125 /* Return a "baselink" with BASELINK_BINFO, BASELINK_ACCESS_BINFO,
1126 BASELINK_FUNCTIONS, and BASELINK_OPTYPE set to BINFO, ACCESS_BINFO,
1127 FUNCTIONS, and OPTYPE respectively. */
1129 tree
1130 build_baselink (tree binfo, tree access_binfo, tree functions, tree optype)
1132 tree baselink;
1134 gcc_assert (TREE_CODE (functions) == FUNCTION_DECL
1135 || TREE_CODE (functions) == TEMPLATE_DECL
1136 || TREE_CODE (functions) == TEMPLATE_ID_EXPR
1137 || TREE_CODE (functions) == OVERLOAD);
1138 gcc_assert (!optype || TYPE_P (optype));
1139 gcc_assert (TREE_TYPE (functions));
1141 baselink = make_node (BASELINK);
1142 TREE_TYPE (baselink) = TREE_TYPE (functions);
1143 BASELINK_BINFO (baselink) = binfo;
1144 BASELINK_ACCESS_BINFO (baselink) = access_binfo;
1145 BASELINK_FUNCTIONS (baselink) = functions;
1146 BASELINK_OPTYPE (baselink) = optype;
1148 return baselink;
1151 /* Look for a member named NAME in an inheritance lattice dominated by
1152 XBASETYPE. If PROTECT is 0 or two, we do not check access. If it
1153 is 1, we enforce accessibility. If PROTECT is zero, then, for an
1154 ambiguous lookup, we return NULL. If PROTECT is 1, we issue error
1155 messages about inaccessible or ambiguous lookup. If PROTECT is 2,
1156 we return a TREE_LIST whose TREE_TYPE is error_mark_node and whose
1157 TREE_VALUEs are the list of ambiguous candidates.
1159 WANT_TYPE is 1 when we should only return TYPE_DECLs.
1161 If nothing can be found return NULL_TREE and do not issue an error. */
1163 tree
1164 lookup_member (tree xbasetype, tree name, int protect, bool want_type,
1165 tsubst_flags_t complain)
1167 tree rval, rval_binfo = NULL_TREE;
1168 tree type = NULL_TREE, basetype_path = NULL_TREE;
1169 struct lookup_field_info lfi;
1171 /* rval_binfo is the binfo associated with the found member, note,
1172 this can be set with useful information, even when rval is not
1173 set, because it must deal with ALL members, not just non-function
1174 members. It is used for ambiguity checking and the hidden
1175 checks. Whereas rval is only set if a proper (not hidden)
1176 non-function member is found. */
1178 const char *errstr = 0;
1180 if (name == error_mark_node
1181 || xbasetype == NULL_TREE
1182 || xbasetype == error_mark_node)
1183 return NULL_TREE;
1185 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
1187 if (TREE_CODE (xbasetype) == TREE_BINFO)
1189 type = BINFO_TYPE (xbasetype);
1190 basetype_path = xbasetype;
1192 else
1194 if (!RECORD_OR_UNION_CODE_P (TREE_CODE (xbasetype)))
1195 return NULL_TREE;
1196 type = xbasetype;
1197 xbasetype = NULL_TREE;
1200 type = complete_type (type);
1201 if (!basetype_path)
1202 basetype_path = TYPE_BINFO (type);
1204 if (!basetype_path)
1205 return NULL_TREE;
1207 if (GATHER_STATISTICS)
1208 n_calls_lookup_field++;
1210 memset (&lfi, 0, sizeof (lfi));
1211 lfi.type = type;
1212 lfi.name = name;
1213 lfi.want_type = want_type;
1214 dfs_walk_all (basetype_path, &lookup_field_r, NULL, &lfi);
1215 rval = lfi.rval;
1216 rval_binfo = lfi.rval_binfo;
1217 if (rval_binfo)
1218 type = BINFO_TYPE (rval_binfo);
1219 errstr = lfi.errstr;
1221 /* If we are not interested in ambiguities, don't report them;
1222 just return NULL_TREE. */
1223 if (!protect && lfi.ambiguous)
1224 return NULL_TREE;
1226 if (protect == 2)
1228 if (lfi.ambiguous)
1229 return lfi.ambiguous;
1230 else
1231 protect = 0;
1234 /* [class.access]
1236 In the case of overloaded function names, access control is
1237 applied to the function selected by overloaded resolution.
1239 We cannot check here, even if RVAL is only a single non-static
1240 member function, since we do not know what the "this" pointer
1241 will be. For:
1243 class A { protected: void f(); };
1244 class B : public A {
1245 void g(A *p) {
1246 f(); // OK
1247 p->f(); // Not OK.
1251 only the first call to "f" is valid. However, if the function is
1252 static, we can check. */
1253 if (rval && protect
1254 && !really_overloaded_fn (rval))
1256 tree decl = is_overloaded_fn (rval) ? get_first_fn (rval) : rval;
1257 if (!DECL_NONSTATIC_MEMBER_FUNCTION_P (decl)
1258 && !perform_or_defer_access_check (basetype_path, decl, decl,
1259 complain))
1260 rval = error_mark_node;
1263 if (errstr && protect)
1265 if (complain & tf_error)
1267 error (errstr, name, type);
1268 if (lfi.ambiguous)
1269 print_candidates (lfi.ambiguous);
1271 rval = error_mark_node;
1274 if (rval && is_overloaded_fn (rval))
1275 rval = build_baselink (rval_binfo, basetype_path, rval,
1276 (IDENTIFIER_TYPENAME_P (name)
1277 ? TREE_TYPE (name): NULL_TREE));
1278 return rval;
1281 /* Like lookup_member, except that if we find a function member we
1282 return NULL_TREE. */
1284 tree
1285 lookup_field (tree xbasetype, tree name, int protect, bool want_type)
1287 tree rval = lookup_member (xbasetype, name, protect, want_type,
1288 tf_warning_or_error);
1290 /* Ignore functions, but propagate the ambiguity list. */
1291 if (!error_operand_p (rval)
1292 && (rval && BASELINK_P (rval)))
1293 return NULL_TREE;
1295 return rval;
1298 /* Like lookup_member, except that if we find a non-function member we
1299 return NULL_TREE. */
1301 tree
1302 lookup_fnfields (tree xbasetype, tree name, int protect)
1304 tree rval = lookup_member (xbasetype, name, protect, /*want_type=*/false,
1305 tf_warning_or_error);
1307 /* Ignore non-functions, but propagate the ambiguity list. */
1308 if (!error_operand_p (rval)
1309 && (rval && !BASELINK_P (rval)))
1310 return NULL_TREE;
1312 return rval;
1315 /* Return the index in the CLASSTYPE_METHOD_VEC for CLASS_TYPE
1316 corresponding to "operator TYPE ()", or -1 if there is no such
1317 operator. Only CLASS_TYPE itself is searched; this routine does
1318 not scan the base classes of CLASS_TYPE. */
1320 static int
1321 lookup_conversion_operator (tree class_type, tree type)
1323 int tpl_slot = -1;
1325 if (TYPE_HAS_CONVERSION (class_type))
1327 int i;
1328 tree fn;
1329 vec<tree, va_gc> *methods = CLASSTYPE_METHOD_VEC (class_type);
1331 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
1332 vec_safe_iterate (methods, i, &fn); ++i)
1334 /* All the conversion operators come near the beginning of
1335 the class. Therefore, if FN is not a conversion
1336 operator, there is no matching conversion operator in
1337 CLASS_TYPE. */
1338 fn = OVL_CURRENT (fn);
1339 if (!DECL_CONV_FN_P (fn))
1340 break;
1342 if (TREE_CODE (fn) == TEMPLATE_DECL)
1343 /* All the templated conversion functions are on the same
1344 slot, so remember it. */
1345 tpl_slot = i;
1346 else if (same_type_p (DECL_CONV_FN_TYPE (fn), type))
1347 return i;
1351 return tpl_slot;
1354 /* TYPE is a class type. Return the index of the fields within
1355 the method vector with name NAME, or -1 if no such field exists.
1356 Does not lazily declare implicitly-declared member functions. */
1358 static int
1359 lookup_fnfields_idx_nolazy (tree type, tree name)
1361 vec<tree, va_gc> *method_vec;
1362 tree fn;
1363 tree tmp;
1364 size_t i;
1366 if (!CLASS_TYPE_P (type))
1367 return -1;
1369 method_vec = CLASSTYPE_METHOD_VEC (type);
1370 if (!method_vec)
1371 return -1;
1373 if (GATHER_STATISTICS)
1374 n_calls_lookup_fnfields_1++;
1376 /* Constructors are first... */
1377 if (name == ctor_identifier)
1379 fn = CLASSTYPE_CONSTRUCTORS (type);
1380 return fn ? CLASSTYPE_CONSTRUCTOR_SLOT : -1;
1382 /* and destructors are second. */
1383 if (name == dtor_identifier)
1385 fn = CLASSTYPE_DESTRUCTORS (type);
1386 return fn ? CLASSTYPE_DESTRUCTOR_SLOT : -1;
1388 if (IDENTIFIER_TYPENAME_P (name))
1389 return lookup_conversion_operator (type, TREE_TYPE (name));
1391 /* Skip the conversion operators. */
1392 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
1393 vec_safe_iterate (method_vec, i, &fn);
1394 ++i)
1395 if (!DECL_CONV_FN_P (OVL_CURRENT (fn)))
1396 break;
1398 /* If the type is complete, use binary search. */
1399 if (COMPLETE_TYPE_P (type))
1401 int lo;
1402 int hi;
1404 lo = i;
1405 hi = method_vec->length ();
1406 while (lo < hi)
1408 i = (lo + hi) / 2;
1410 if (GATHER_STATISTICS)
1411 n_outer_fields_searched++;
1413 tmp = (*method_vec)[i];
1414 tmp = DECL_NAME (OVL_CURRENT (tmp));
1415 if (tmp > name)
1416 hi = i;
1417 else if (tmp < name)
1418 lo = i + 1;
1419 else
1420 return i;
1423 else
1424 for (; vec_safe_iterate (method_vec, i, &fn); ++i)
1426 if (GATHER_STATISTICS)
1427 n_outer_fields_searched++;
1428 if (DECL_NAME (OVL_CURRENT (fn)) == name)
1429 return i;
1432 return -1;
1435 /* TYPE is a class type. Return the index of the fields within
1436 the method vector with name NAME, or -1 if no such field exists. */
1439 lookup_fnfields_1 (tree type, tree name)
1441 if (!CLASS_TYPE_P (type))
1442 return -1;
1444 if (COMPLETE_TYPE_P (type))
1446 if ((name == ctor_identifier
1447 || name == base_ctor_identifier
1448 || name == complete_ctor_identifier))
1450 if (CLASSTYPE_LAZY_DEFAULT_CTOR (type))
1451 lazily_declare_fn (sfk_constructor, type);
1452 if (CLASSTYPE_LAZY_COPY_CTOR (type))
1453 lazily_declare_fn (sfk_copy_constructor, type);
1454 if (CLASSTYPE_LAZY_MOVE_CTOR (type))
1455 lazily_declare_fn (sfk_move_constructor, type);
1457 else if (name == ansi_assopname (NOP_EXPR))
1459 if (CLASSTYPE_LAZY_COPY_ASSIGN (type))
1460 lazily_declare_fn (sfk_copy_assignment, type);
1461 if (CLASSTYPE_LAZY_MOVE_ASSIGN (type))
1462 lazily_declare_fn (sfk_move_assignment, type);
1464 else if ((name == dtor_identifier
1465 || name == base_dtor_identifier
1466 || name == complete_dtor_identifier
1467 || name == deleting_dtor_identifier)
1468 && CLASSTYPE_LAZY_DESTRUCTOR (type))
1469 lazily_declare_fn (sfk_destructor, type);
1472 return lookup_fnfields_idx_nolazy (type, name);
1475 /* TYPE is a class type. Return the field within the method vector with
1476 name NAME, or NULL_TREE if no such field exists. */
1478 tree
1479 lookup_fnfields_slot (tree type, tree name)
1481 int ix = lookup_fnfields_1 (complete_type (type), name);
1482 if (ix < 0)
1483 return NULL_TREE;
1484 return (*CLASSTYPE_METHOD_VEC (type))[ix];
1487 /* As above, but avoid lazily declaring functions. */
1489 tree
1490 lookup_fnfields_slot_nolazy (tree type, tree name)
1492 int ix = lookup_fnfields_idx_nolazy (complete_type (type), name);
1493 if (ix < 0)
1494 return NULL_TREE;
1495 return (*CLASSTYPE_METHOD_VEC (type))[ix];
1498 /* Like lookup_fnfields_1, except that the name is extracted from
1499 FUNCTION, which is a FUNCTION_DECL or a TEMPLATE_DECL. */
1502 class_method_index_for_fn (tree class_type, tree function)
1504 gcc_assert (TREE_CODE (function) == FUNCTION_DECL
1505 || DECL_FUNCTION_TEMPLATE_P (function));
1507 return lookup_fnfields_1 (class_type,
1508 DECL_CONSTRUCTOR_P (function) ? ctor_identifier :
1509 DECL_DESTRUCTOR_P (function) ? dtor_identifier :
1510 DECL_NAME (function));
1514 /* DECL is the result of a qualified name lookup. QUALIFYING_SCOPE is
1515 the class or namespace used to qualify the name. CONTEXT_CLASS is
1516 the class corresponding to the object in which DECL will be used.
1517 Return a possibly modified version of DECL that takes into account
1518 the CONTEXT_CLASS.
1520 In particular, consider an expression like `B::m' in the context of
1521 a derived class `D'. If `B::m' has been resolved to a BASELINK,
1522 then the most derived class indicated by the BASELINK_BINFO will be
1523 `B', not `D'. This function makes that adjustment. */
1525 tree
1526 adjust_result_of_qualified_name_lookup (tree decl,
1527 tree qualifying_scope,
1528 tree context_class)
1530 if (context_class && context_class != error_mark_node
1531 && CLASS_TYPE_P (context_class)
1532 && CLASS_TYPE_P (qualifying_scope)
1533 && DERIVED_FROM_P (qualifying_scope, context_class)
1534 && BASELINK_P (decl))
1536 tree base;
1538 /* Look for the QUALIFYING_SCOPE as a base of the CONTEXT_CLASS.
1539 Because we do not yet know which function will be chosen by
1540 overload resolution, we cannot yet check either accessibility
1541 or ambiguity -- in either case, the choice of a static member
1542 function might make the usage valid. */
1543 base = lookup_base (context_class, qualifying_scope,
1544 ba_unique, NULL, tf_none);
1545 if (base && base != error_mark_node)
1547 BASELINK_ACCESS_BINFO (decl) = base;
1548 BASELINK_BINFO (decl)
1549 = lookup_base (base, BINFO_TYPE (BASELINK_BINFO (decl)),
1550 ba_unique, NULL, tf_none);
1554 if (BASELINK_P (decl))
1555 BASELINK_QUALIFIED_P (decl) = true;
1557 return decl;
1561 /* Walk the class hierarchy within BINFO, in a depth-first traversal.
1562 PRE_FN is called in preorder, while POST_FN is called in postorder.
1563 If PRE_FN returns DFS_SKIP_BASES, child binfos will not be
1564 walked. If PRE_FN or POST_FN returns a different non-NULL value,
1565 that value is immediately returned and the walk is terminated. One
1566 of PRE_FN and POST_FN can be NULL. At each node, PRE_FN and
1567 POST_FN are passed the binfo to examine and the caller's DATA
1568 value. All paths are walked, thus virtual and morally virtual
1569 binfos can be multiply walked. */
1571 tree
1572 dfs_walk_all (tree binfo, tree (*pre_fn) (tree, void *),
1573 tree (*post_fn) (tree, void *), void *data)
1575 tree rval;
1576 unsigned ix;
1577 tree base_binfo;
1579 /* Call the pre-order walking function. */
1580 if (pre_fn)
1582 rval = pre_fn (binfo, data);
1583 if (rval)
1585 if (rval == dfs_skip_bases)
1586 goto skip_bases;
1587 return rval;
1591 /* Find the next child binfo to walk. */
1592 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
1594 rval = dfs_walk_all (base_binfo, pre_fn, post_fn, data);
1595 if (rval)
1596 return rval;
1599 skip_bases:
1600 /* Call the post-order walking function. */
1601 if (post_fn)
1603 rval = post_fn (binfo, data);
1604 gcc_assert (rval != dfs_skip_bases);
1605 return rval;
1608 return NULL_TREE;
1611 /* Worker for dfs_walk_once. This behaves as dfs_walk_all, except
1612 that binfos are walked at most once. */
1614 static tree
1615 dfs_walk_once_r (tree binfo, tree (*pre_fn) (tree, void *),
1616 tree (*post_fn) (tree, void *), void *data)
1618 tree rval;
1619 unsigned ix;
1620 tree base_binfo;
1622 /* Call the pre-order walking function. */
1623 if (pre_fn)
1625 rval = pre_fn (binfo, data);
1626 if (rval)
1628 if (rval == dfs_skip_bases)
1629 goto skip_bases;
1631 return rval;
1635 /* Find the next child binfo to walk. */
1636 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
1638 if (BINFO_VIRTUAL_P (base_binfo))
1640 if (BINFO_MARKED (base_binfo))
1641 continue;
1642 BINFO_MARKED (base_binfo) = 1;
1645 rval = dfs_walk_once_r (base_binfo, pre_fn, post_fn, data);
1646 if (rval)
1647 return rval;
1650 skip_bases:
1651 /* Call the post-order walking function. */
1652 if (post_fn)
1654 rval = post_fn (binfo, data);
1655 gcc_assert (rval != dfs_skip_bases);
1656 return rval;
1659 return NULL_TREE;
1662 /* Worker for dfs_walk_once. Recursively unmark the virtual base binfos of
1663 BINFO. */
1665 static void
1666 dfs_unmark_r (tree binfo)
1668 unsigned ix;
1669 tree base_binfo;
1671 /* Process the basetypes. */
1672 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
1674 if (BINFO_VIRTUAL_P (base_binfo))
1676 if (!BINFO_MARKED (base_binfo))
1677 continue;
1678 BINFO_MARKED (base_binfo) = 0;
1680 /* Only walk, if it can contain more virtual bases. */
1681 if (CLASSTYPE_VBASECLASSES (BINFO_TYPE (base_binfo)))
1682 dfs_unmark_r (base_binfo);
1686 /* Like dfs_walk_all, except that binfos are not multiply walked. For
1687 non-diamond shaped hierarchies this is the same as dfs_walk_all.
1688 For diamond shaped hierarchies we must mark the virtual bases, to
1689 avoid multiple walks. */
1691 tree
1692 dfs_walk_once (tree binfo, tree (*pre_fn) (tree, void *),
1693 tree (*post_fn) (tree, void *), void *data)
1695 static int active = 0; /* We must not be called recursively. */
1696 tree rval;
1698 gcc_assert (pre_fn || post_fn);
1699 gcc_assert (!active);
1700 active++;
1702 if (!CLASSTYPE_DIAMOND_SHAPED_P (BINFO_TYPE (binfo)))
1703 /* We are not diamond shaped, and therefore cannot encounter the
1704 same binfo twice. */
1705 rval = dfs_walk_all (binfo, pre_fn, post_fn, data);
1706 else
1708 rval = dfs_walk_once_r (binfo, pre_fn, post_fn, data);
1709 if (!BINFO_INHERITANCE_CHAIN (binfo))
1711 /* We are at the top of the hierarchy, and can use the
1712 CLASSTYPE_VBASECLASSES list for unmarking the virtual
1713 bases. */
1714 vec<tree, va_gc> *vbases;
1715 unsigned ix;
1716 tree base_binfo;
1718 for (vbases = CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo)), ix = 0;
1719 vec_safe_iterate (vbases, ix, &base_binfo); ix++)
1720 BINFO_MARKED (base_binfo) = 0;
1722 else
1723 dfs_unmark_r (binfo);
1726 active--;
1728 return rval;
1731 /* Worker function for dfs_walk_once_accessible. Behaves like
1732 dfs_walk_once_r, except (a) FRIENDS_P is true if special
1733 access given by the current context should be considered, (b) ONCE
1734 indicates whether bases should be marked during traversal. */
1736 static tree
1737 dfs_walk_once_accessible_r (tree binfo, bool friends_p, bool once,
1738 tree (*pre_fn) (tree, void *),
1739 tree (*post_fn) (tree, void *), void *data)
1741 tree rval = NULL_TREE;
1742 unsigned ix;
1743 tree base_binfo;
1745 /* Call the pre-order walking function. */
1746 if (pre_fn)
1748 rval = pre_fn (binfo, data);
1749 if (rval)
1751 if (rval == dfs_skip_bases)
1752 goto skip_bases;
1754 return rval;
1758 /* Find the next child binfo to walk. */
1759 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
1761 bool mark = once && BINFO_VIRTUAL_P (base_binfo);
1763 if (mark && BINFO_MARKED (base_binfo))
1764 continue;
1766 /* If the base is inherited via private or protected
1767 inheritance, then we can't see it, unless we are a friend of
1768 the current binfo. */
1769 if (BINFO_BASE_ACCESS (binfo, ix) != access_public_node)
1771 tree scope;
1772 if (!friends_p)
1773 continue;
1774 scope = current_scope ();
1775 if (!scope
1776 || TREE_CODE (scope) == NAMESPACE_DECL
1777 || !is_friend (BINFO_TYPE (binfo), scope))
1778 continue;
1781 if (mark)
1782 BINFO_MARKED (base_binfo) = 1;
1784 rval = dfs_walk_once_accessible_r (base_binfo, friends_p, once,
1785 pre_fn, post_fn, data);
1786 if (rval)
1787 return rval;
1790 skip_bases:
1791 /* Call the post-order walking function. */
1792 if (post_fn)
1794 rval = post_fn (binfo, data);
1795 gcc_assert (rval != dfs_skip_bases);
1796 return rval;
1799 return NULL_TREE;
1802 /* Like dfs_walk_once except that only accessible bases are walked.
1803 FRIENDS_P indicates whether friendship of the local context
1804 should be considered when determining accessibility. */
1806 static tree
1807 dfs_walk_once_accessible (tree binfo, bool friends_p,
1808 tree (*pre_fn) (tree, void *),
1809 tree (*post_fn) (tree, void *), void *data)
1811 bool diamond_shaped = CLASSTYPE_DIAMOND_SHAPED_P (BINFO_TYPE (binfo));
1812 tree rval = dfs_walk_once_accessible_r (binfo, friends_p, diamond_shaped,
1813 pre_fn, post_fn, data);
1815 if (diamond_shaped)
1817 if (!BINFO_INHERITANCE_CHAIN (binfo))
1819 /* We are at the top of the hierarchy, and can use the
1820 CLASSTYPE_VBASECLASSES list for unmarking the virtual
1821 bases. */
1822 vec<tree, va_gc> *vbases;
1823 unsigned ix;
1824 tree base_binfo;
1826 for (vbases = CLASSTYPE_VBASECLASSES (BINFO_TYPE (binfo)), ix = 0;
1827 vec_safe_iterate (vbases, ix, &base_binfo); ix++)
1828 BINFO_MARKED (base_binfo) = 0;
1830 else
1831 dfs_unmark_r (binfo);
1833 return rval;
1836 /* Check that virtual overrider OVERRIDER is acceptable for base function
1837 BASEFN. Issue diagnostic, and return zero, if unacceptable. */
1839 static int
1840 check_final_overrider (tree overrider, tree basefn)
1842 tree over_type = TREE_TYPE (overrider);
1843 tree base_type = TREE_TYPE (basefn);
1844 tree over_return = TREE_TYPE (over_type);
1845 tree base_return = TREE_TYPE (base_type);
1846 tree over_throw, base_throw;
1848 int fail = 0;
1850 if (DECL_INVALID_OVERRIDER_P (overrider))
1851 return 0;
1853 if (same_type_p (base_return, over_return))
1854 /* OK */;
1855 else if ((CLASS_TYPE_P (over_return) && CLASS_TYPE_P (base_return))
1856 || (TREE_CODE (base_return) == TREE_CODE (over_return)
1857 && POINTER_TYPE_P (base_return)))
1859 /* Potentially covariant. */
1860 unsigned base_quals, over_quals;
1862 fail = !POINTER_TYPE_P (base_return);
1863 if (!fail)
1865 fail = cp_type_quals (base_return) != cp_type_quals (over_return);
1867 base_return = TREE_TYPE (base_return);
1868 over_return = TREE_TYPE (over_return);
1870 base_quals = cp_type_quals (base_return);
1871 over_quals = cp_type_quals (over_return);
1873 if ((base_quals & over_quals) != over_quals)
1874 fail = 1;
1876 if (CLASS_TYPE_P (base_return) && CLASS_TYPE_P (over_return))
1878 /* Strictly speaking, the standard requires the return type to be
1879 complete even if it only differs in cv-quals, but that seems
1880 like a bug in the wording. */
1881 if (!same_type_ignoring_top_level_qualifiers_p (base_return,
1882 over_return))
1884 tree binfo = lookup_base (over_return, base_return,
1885 ba_check, NULL, tf_none);
1887 if (!binfo || binfo == error_mark_node)
1888 fail = 1;
1891 else if (!pedantic
1892 && can_convert (TREE_TYPE (base_type), TREE_TYPE (over_type),
1893 tf_warning_or_error))
1894 /* GNU extension, allow trivial pointer conversions such as
1895 converting to void *, or qualification conversion. */
1897 /* can_convert will permit user defined conversion from a
1898 (reference to) class type. We must reject them. */
1899 over_return = non_reference (TREE_TYPE (over_type));
1900 if (CLASS_TYPE_P (over_return))
1901 fail = 2;
1902 else
1904 warning (0, "deprecated covariant return type for %q+#D",
1905 overrider);
1906 warning (0, " overriding %q+#D", basefn);
1909 else
1910 fail = 2;
1912 else
1913 fail = 2;
1914 if (!fail)
1915 /* OK */;
1916 else
1918 if (fail == 1)
1920 error ("invalid covariant return type for %q+#D", overrider);
1921 error (" overriding %q+#D", basefn);
1923 else
1925 error ("conflicting return type specified for %q+#D", overrider);
1926 error (" overriding %q+#D", basefn);
1928 DECL_INVALID_OVERRIDER_P (overrider) = 1;
1929 return 0;
1932 /* Check throw specifier is at least as strict. */
1933 maybe_instantiate_noexcept (basefn);
1934 maybe_instantiate_noexcept (overrider);
1935 base_throw = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (basefn));
1936 over_throw = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (overrider));
1938 if (!comp_except_specs (base_throw, over_throw, ce_derived))
1940 error ("looser throw specifier for %q+#F", overrider);
1941 error (" overriding %q+#F", basefn);
1942 DECL_INVALID_OVERRIDER_P (overrider) = 1;
1943 return 0;
1946 /* Check for conflicting type attributes. */
1947 if (!comp_type_attributes (over_type, base_type))
1949 error ("conflicting type attributes specified for %q+#D", overrider);
1950 error (" overriding %q+#D", basefn);
1951 DECL_INVALID_OVERRIDER_P (overrider) = 1;
1952 return 0;
1955 if (DECL_DELETED_FN (basefn) != DECL_DELETED_FN (overrider))
1957 if (DECL_DELETED_FN (overrider))
1959 error ("deleted function %q+D", overrider);
1960 error ("overriding non-deleted function %q+D", basefn);
1961 maybe_explain_implicit_delete (overrider);
1963 else
1965 error ("non-deleted function %q+D", overrider);
1966 error ("overriding deleted function %q+D", basefn);
1968 return 0;
1970 if (DECL_FINAL_P (basefn))
1972 error ("virtual function %q+D", overrider);
1973 error ("overriding final function %q+D", basefn);
1974 return 0;
1976 return 1;
1979 /* Given a class TYPE, and a function decl FNDECL, look for
1980 virtual functions in TYPE's hierarchy which FNDECL overrides.
1981 We do not look in TYPE itself, only its bases.
1983 Returns nonzero, if we find any. Set FNDECL's DECL_VIRTUAL_P, if we
1984 find that it overrides anything.
1986 We check that every function which is overridden, is correctly
1987 overridden. */
1990 look_for_overrides (tree type, tree fndecl)
1992 tree binfo = TYPE_BINFO (type);
1993 tree base_binfo;
1994 int ix;
1995 int found = 0;
1997 /* A constructor for a class T does not override a function T
1998 in a base class. */
1999 if (DECL_CONSTRUCTOR_P (fndecl))
2000 return 0;
2002 for (ix = 0; BINFO_BASE_ITERATE (binfo, ix, base_binfo); ix++)
2004 tree basetype = BINFO_TYPE (base_binfo);
2006 if (TYPE_POLYMORPHIC_P (basetype))
2007 found += look_for_overrides_r (basetype, fndecl);
2009 return found;
2012 /* Look in TYPE for virtual functions with the same signature as
2013 FNDECL. */
2015 tree
2016 look_for_overrides_here (tree type, tree fndecl)
2018 int ix;
2020 /* If there are no methods in TYPE (meaning that only implicitly
2021 declared methods will ever be provided for TYPE), then there are
2022 no virtual functions. */
2023 if (!CLASSTYPE_METHOD_VEC (type))
2024 return NULL_TREE;
2026 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (fndecl))
2027 ix = CLASSTYPE_DESTRUCTOR_SLOT;
2028 else
2029 ix = lookup_fnfields_1 (type, DECL_NAME (fndecl));
2030 if (ix >= 0)
2032 tree fns = (*CLASSTYPE_METHOD_VEC (type))[ix];
2034 for (; fns; fns = OVL_NEXT (fns))
2036 tree fn = OVL_CURRENT (fns);
2038 if (!DECL_VIRTUAL_P (fn))
2039 /* Not a virtual. */;
2040 else if (DECL_CONTEXT (fn) != type)
2041 /* Introduced with a using declaration. */;
2042 else if (DECL_STATIC_FUNCTION_P (fndecl))
2044 tree btypes = TYPE_ARG_TYPES (TREE_TYPE (fn));
2045 tree dtypes = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2046 if (compparms (TREE_CHAIN (btypes), dtypes))
2047 return fn;
2049 else if (same_signature_p (fndecl, fn))
2050 return fn;
2053 return NULL_TREE;
2056 /* Look in TYPE for virtual functions overridden by FNDECL. Check both
2057 TYPE itself and its bases. */
2059 static int
2060 look_for_overrides_r (tree type, tree fndecl)
2062 tree fn = look_for_overrides_here (type, fndecl);
2063 if (fn)
2065 if (DECL_STATIC_FUNCTION_P (fndecl))
2067 /* A static member function cannot match an inherited
2068 virtual member function. */
2069 error ("%q+#D cannot be declared", fndecl);
2070 error (" since %q+#D declared in base class", fn);
2072 else
2074 /* It's definitely virtual, even if not explicitly set. */
2075 DECL_VIRTUAL_P (fndecl) = 1;
2076 check_final_overrider (fndecl, fn);
2078 return 1;
2081 /* We failed to find one declared in this class. Look in its bases. */
2082 return look_for_overrides (type, fndecl);
2085 /* Called via dfs_walk from dfs_get_pure_virtuals. */
2087 static tree
2088 dfs_get_pure_virtuals (tree binfo, void *data)
2090 tree type = (tree) data;
2092 /* We're not interested in primary base classes; the derived class
2093 of which they are a primary base will contain the information we
2094 need. */
2095 if (!BINFO_PRIMARY_P (binfo))
2097 tree virtuals;
2099 for (virtuals = BINFO_VIRTUALS (binfo);
2100 virtuals;
2101 virtuals = TREE_CHAIN (virtuals))
2102 if (DECL_PURE_VIRTUAL_P (BV_FN (virtuals)))
2103 vec_safe_push (CLASSTYPE_PURE_VIRTUALS (type), BV_FN (virtuals));
2106 return NULL_TREE;
2109 /* Set CLASSTYPE_PURE_VIRTUALS for TYPE. */
2111 void
2112 get_pure_virtuals (tree type)
2114 /* Clear the CLASSTYPE_PURE_VIRTUALS list; whatever is already there
2115 is going to be overridden. */
2116 CLASSTYPE_PURE_VIRTUALS (type) = NULL;
2117 /* Now, run through all the bases which are not primary bases, and
2118 collect the pure virtual functions. We look at the vtable in
2119 each class to determine what pure virtual functions are present.
2120 (A primary base is not interesting because the derived class of
2121 which it is a primary base will contain vtable entries for the
2122 pure virtuals in the base class. */
2123 dfs_walk_once (TYPE_BINFO (type), NULL, dfs_get_pure_virtuals, type);
2126 /* Debug info for C++ classes can get very large; try to avoid
2127 emitting it everywhere.
2129 Note that this optimization wins even when the target supports
2130 BINCL (if only slightly), and reduces the amount of work for the
2131 linker. */
2133 void
2134 maybe_suppress_debug_info (tree t)
2136 if (write_symbols == NO_DEBUG)
2137 return;
2139 /* We might have set this earlier in cp_finish_decl. */
2140 TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 0;
2142 /* Always emit the information for each class every time. */
2143 if (flag_emit_class_debug_always)
2144 return;
2146 /* If we already know how we're handling this class, handle debug info
2147 the same way. */
2148 if (CLASSTYPE_INTERFACE_KNOWN (t))
2150 if (CLASSTYPE_INTERFACE_ONLY (t))
2151 TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 1;
2152 /* else don't set it. */
2154 /* If the class has a vtable, write out the debug info along with
2155 the vtable. */
2156 else if (TYPE_CONTAINS_VPTR_P (t))
2157 TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 1;
2159 /* Otherwise, just emit the debug info normally. */
2162 /* Note that we want debugging information for a base class of a class
2163 whose vtable is being emitted. Normally, this would happen because
2164 calling the constructor for a derived class implies calling the
2165 constructors for all bases, which involve initializing the
2166 appropriate vptr with the vtable for the base class; but in the
2167 presence of optimization, this initialization may be optimized
2168 away, so we tell finish_vtable_vardecl that we want the debugging
2169 information anyway. */
2171 static tree
2172 dfs_debug_mark (tree binfo, void * /*data*/)
2174 tree t = BINFO_TYPE (binfo);
2176 if (CLASSTYPE_DEBUG_REQUESTED (t))
2177 return dfs_skip_bases;
2179 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
2181 return NULL_TREE;
2184 /* Write out the debugging information for TYPE, whose vtable is being
2185 emitted. Also walk through our bases and note that we want to
2186 write out information for them. This avoids the problem of not
2187 writing any debug info for intermediate basetypes whose
2188 constructors, and thus the references to their vtables, and thus
2189 the vtables themselves, were optimized away. */
2191 void
2192 note_debug_info_needed (tree type)
2194 if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)))
2196 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)) = 0;
2197 rest_of_type_compilation (type, toplevel_bindings_p ());
2200 dfs_walk_all (TYPE_BINFO (type), dfs_debug_mark, NULL, 0);
2203 void
2204 print_search_statistics (void)
2206 if (! GATHER_STATISTICS)
2208 fprintf (stderr, "no search statistics\n");
2209 return;
2212 fprintf (stderr, "%d fields searched in %d[%d] calls to lookup_field[_1]\n",
2213 n_fields_searched, n_calls_lookup_field, n_calls_lookup_field_1);
2214 fprintf (stderr, "%d fnfields searched in %d calls to lookup_fnfields\n",
2215 n_outer_fields_searched, n_calls_lookup_fnfields);
2216 fprintf (stderr, "%d calls to get_base_type\n", n_calls_get_base_type);
2219 void
2220 reinit_search_statistics (void)
2222 n_fields_searched = 0;
2223 n_calls_lookup_field = 0, n_calls_lookup_field_1 = 0;
2224 n_calls_lookup_fnfields = 0, n_calls_lookup_fnfields_1 = 0;
2225 n_calls_get_base_type = 0;
2226 n_outer_fields_searched = 0;
2227 n_contexts_saved = 0;
2230 /* Helper for lookup_conversions_r. TO_TYPE is the type converted to
2231 by a conversion op in base BINFO. VIRTUAL_DEPTH is nonzero if
2232 BINFO is morally virtual, and VIRTUALNESS is nonzero if virtual
2233 bases have been encountered already in the tree walk. PARENT_CONVS
2234 is the list of lists of conversion functions that could hide CONV
2235 and OTHER_CONVS is the list of lists of conversion functions that
2236 could hide or be hidden by CONV, should virtualness be involved in
2237 the hierarchy. Merely checking the conversion op's name is not
2238 enough because two conversion operators to the same type can have
2239 different names. Return nonzero if we are visible. */
2241 static int
2242 check_hidden_convs (tree binfo, int virtual_depth, int virtualness,
2243 tree to_type, tree parent_convs, tree other_convs)
2245 tree level, probe;
2247 /* See if we are hidden by a parent conversion. */
2248 for (level = parent_convs; level; level = TREE_CHAIN (level))
2249 for (probe = TREE_VALUE (level); probe; probe = TREE_CHAIN (probe))
2250 if (same_type_p (to_type, TREE_TYPE (probe)))
2251 return 0;
2253 if (virtual_depth || virtualness)
2255 /* In a virtual hierarchy, we could be hidden, or could hide a
2256 conversion function on the other_convs list. */
2257 for (level = other_convs; level; level = TREE_CHAIN (level))
2259 int we_hide_them;
2260 int they_hide_us;
2261 tree *prev, other;
2263 if (!(virtual_depth || TREE_STATIC (level)))
2264 /* Neither is morally virtual, so cannot hide each other. */
2265 continue;
2267 if (!TREE_VALUE (level))
2268 /* They evaporated away already. */
2269 continue;
2271 they_hide_us = (virtual_depth
2272 && original_binfo (binfo, TREE_PURPOSE (level)));
2273 we_hide_them = (!they_hide_us && TREE_STATIC (level)
2274 && original_binfo (TREE_PURPOSE (level), binfo));
2276 if (!(we_hide_them || they_hide_us))
2277 /* Neither is within the other, so no hiding can occur. */
2278 continue;
2280 for (prev = &TREE_VALUE (level), other = *prev; other;)
2282 if (same_type_p (to_type, TREE_TYPE (other)))
2284 if (they_hide_us)
2285 /* We are hidden. */
2286 return 0;
2288 if (we_hide_them)
2290 /* We hide the other one. */
2291 other = TREE_CHAIN (other);
2292 *prev = other;
2293 continue;
2296 prev = &TREE_CHAIN (other);
2297 other = *prev;
2301 return 1;
2304 /* Helper for lookup_conversions_r. PARENT_CONVS is a list of lists
2305 of conversion functions, the first slot will be for the current
2306 binfo, if MY_CONVS is non-NULL. CHILD_CONVS is the list of lists
2307 of conversion functions from children of the current binfo,
2308 concatenated with conversions from elsewhere in the hierarchy --
2309 that list begins with OTHER_CONVS. Return a single list of lists
2310 containing only conversions from the current binfo and its
2311 children. */
2313 static tree
2314 split_conversions (tree my_convs, tree parent_convs,
2315 tree child_convs, tree other_convs)
2317 tree t;
2318 tree prev;
2320 /* Remove the original other_convs portion from child_convs. */
2321 for (prev = NULL, t = child_convs;
2322 t != other_convs; prev = t, t = TREE_CHAIN (t))
2323 continue;
2325 if (prev)
2326 TREE_CHAIN (prev) = NULL_TREE;
2327 else
2328 child_convs = NULL_TREE;
2330 /* Attach the child convs to any we had at this level. */
2331 if (my_convs)
2333 my_convs = parent_convs;
2334 TREE_CHAIN (my_convs) = child_convs;
2336 else
2337 my_convs = child_convs;
2339 return my_convs;
2342 /* Worker for lookup_conversions. Lookup conversion functions in
2343 BINFO and its children. VIRTUAL_DEPTH is nonzero, if BINFO is in
2344 a morally virtual base, and VIRTUALNESS is nonzero, if we've
2345 encountered virtual bases already in the tree walk. PARENT_CONVS &
2346 PARENT_TPL_CONVS are lists of list of conversions within parent
2347 binfos. OTHER_CONVS and OTHER_TPL_CONVS are conversions found
2348 elsewhere in the tree. Return the conversions found within this
2349 portion of the graph in CONVS and TPL_CONVS. Return nonzero is we
2350 encountered virtualness. We keep template and non-template
2351 conversions separate, to avoid unnecessary type comparisons.
2353 The located conversion functions are held in lists of lists. The
2354 TREE_VALUE of the outer list is the list of conversion functions
2355 found in a particular binfo. The TREE_PURPOSE of both the outer
2356 and inner lists is the binfo at which those conversions were
2357 found. TREE_STATIC is set for those lists within of morally
2358 virtual binfos. The TREE_VALUE of the inner list is the conversion
2359 function or overload itself. The TREE_TYPE of each inner list node
2360 is the converted-to type. */
2362 static int
2363 lookup_conversions_r (tree binfo,
2364 int virtual_depth, int virtualness,
2365 tree parent_convs, tree parent_tpl_convs,
2366 tree other_convs, tree other_tpl_convs,
2367 tree *convs, tree *tpl_convs)
2369 int my_virtualness = 0;
2370 tree my_convs = NULL_TREE;
2371 tree my_tpl_convs = NULL_TREE;
2372 tree child_convs = NULL_TREE;
2373 tree child_tpl_convs = NULL_TREE;
2374 unsigned i;
2375 tree base_binfo;
2376 vec<tree, va_gc> *method_vec = CLASSTYPE_METHOD_VEC (BINFO_TYPE (binfo));
2377 tree conv;
2379 /* If we have no conversion operators, then don't look. */
2380 if (!TYPE_HAS_CONVERSION (BINFO_TYPE (binfo)))
2382 *convs = *tpl_convs = NULL_TREE;
2384 return 0;
2387 if (BINFO_VIRTUAL_P (binfo))
2388 virtual_depth++;
2390 /* First, locate the unhidden ones at this level. */
2391 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
2392 vec_safe_iterate (method_vec, i, &conv);
2393 ++i)
2395 tree cur = OVL_CURRENT (conv);
2397 if (!DECL_CONV_FN_P (cur))
2398 break;
2400 if (TREE_CODE (cur) == TEMPLATE_DECL)
2402 /* Only template conversions can be overloaded, and we must
2403 flatten them out and check each one individually. */
2404 tree tpls;
2406 for (tpls = conv; tpls; tpls = OVL_NEXT (tpls))
2408 tree tpl = OVL_CURRENT (tpls);
2409 tree type = DECL_CONV_FN_TYPE (tpl);
2411 if (check_hidden_convs (binfo, virtual_depth, virtualness,
2412 type, parent_tpl_convs, other_tpl_convs))
2414 my_tpl_convs = tree_cons (binfo, tpl, my_tpl_convs);
2415 TREE_TYPE (my_tpl_convs) = type;
2416 if (virtual_depth)
2418 TREE_STATIC (my_tpl_convs) = 1;
2419 my_virtualness = 1;
2424 else
2426 tree name = DECL_NAME (cur);
2428 if (!IDENTIFIER_MARKED (name))
2430 tree type = DECL_CONV_FN_TYPE (cur);
2431 if (type_uses_auto (type))
2433 mark_used (cur);
2434 type = DECL_CONV_FN_TYPE (cur);
2437 if (check_hidden_convs (binfo, virtual_depth, virtualness,
2438 type, parent_convs, other_convs))
2440 my_convs = tree_cons (binfo, conv, my_convs);
2441 TREE_TYPE (my_convs) = type;
2442 if (virtual_depth)
2444 TREE_STATIC (my_convs) = 1;
2445 my_virtualness = 1;
2447 IDENTIFIER_MARKED (name) = 1;
2453 if (my_convs)
2455 parent_convs = tree_cons (binfo, my_convs, parent_convs);
2456 if (virtual_depth)
2457 TREE_STATIC (parent_convs) = 1;
2460 if (my_tpl_convs)
2462 parent_tpl_convs = tree_cons (binfo, my_tpl_convs, parent_tpl_convs);
2463 if (virtual_depth)
2464 TREE_STATIC (parent_tpl_convs) = 1;
2467 child_convs = other_convs;
2468 child_tpl_convs = other_tpl_convs;
2470 /* Now iterate over each base, looking for more conversions. */
2471 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
2473 tree base_convs, base_tpl_convs;
2474 unsigned base_virtualness;
2476 base_virtualness = lookup_conversions_r (base_binfo,
2477 virtual_depth, virtualness,
2478 parent_convs, parent_tpl_convs,
2479 child_convs, child_tpl_convs,
2480 &base_convs, &base_tpl_convs);
2481 if (base_virtualness)
2482 my_virtualness = virtualness = 1;
2483 child_convs = chainon (base_convs, child_convs);
2484 child_tpl_convs = chainon (base_tpl_convs, child_tpl_convs);
2487 /* Unmark the conversions found at this level */
2488 for (conv = my_convs; conv; conv = TREE_CHAIN (conv))
2489 IDENTIFIER_MARKED (DECL_NAME (OVL_CURRENT (TREE_VALUE (conv)))) = 0;
2491 *convs = split_conversions (my_convs, parent_convs,
2492 child_convs, other_convs);
2493 *tpl_convs = split_conversions (my_tpl_convs, parent_tpl_convs,
2494 child_tpl_convs, other_tpl_convs);
2496 return my_virtualness;
2499 /* Return a TREE_LIST containing all the non-hidden user-defined
2500 conversion functions for TYPE (and its base-classes). The
2501 TREE_VALUE of each node is the FUNCTION_DECL of the conversion
2502 function. The TREE_PURPOSE is the BINFO from which the conversion
2503 functions in this node were selected. This function is effectively
2504 performing a set of member lookups as lookup_fnfield does, but
2505 using the type being converted to as the unique key, rather than the
2506 field name. */
2508 tree
2509 lookup_conversions (tree type)
2511 tree convs, tpl_convs;
2512 tree list = NULL_TREE;
2514 complete_type (type);
2515 if (!TYPE_BINFO (type))
2516 return NULL_TREE;
2518 lookup_conversions_r (TYPE_BINFO (type), 0, 0,
2519 NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE,
2520 &convs, &tpl_convs);
2522 /* Flatten the list-of-lists */
2523 for (; convs; convs = TREE_CHAIN (convs))
2525 tree probe, next;
2527 for (probe = TREE_VALUE (convs); probe; probe = next)
2529 next = TREE_CHAIN (probe);
2531 TREE_CHAIN (probe) = list;
2532 list = probe;
2536 for (; tpl_convs; tpl_convs = TREE_CHAIN (tpl_convs))
2538 tree probe, next;
2540 for (probe = TREE_VALUE (tpl_convs); probe; probe = next)
2542 next = TREE_CHAIN (probe);
2544 TREE_CHAIN (probe) = list;
2545 list = probe;
2549 return list;
2552 /* Returns the binfo of the first direct or indirect virtual base derived
2553 from BINFO, or NULL if binfo is not via virtual. */
2555 tree
2556 binfo_from_vbase (tree binfo)
2558 for (; binfo; binfo = BINFO_INHERITANCE_CHAIN (binfo))
2560 if (BINFO_VIRTUAL_P (binfo))
2561 return binfo;
2563 return NULL_TREE;
2566 /* Returns the binfo of the first direct or indirect virtual base derived
2567 from BINFO up to the TREE_TYPE, LIMIT, or NULL if binfo is not
2568 via virtual. */
2570 tree
2571 binfo_via_virtual (tree binfo, tree limit)
2573 if (limit && !CLASSTYPE_VBASECLASSES (limit))
2574 /* LIMIT has no virtual bases, so BINFO cannot be via one. */
2575 return NULL_TREE;
2577 for (; binfo && !SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), limit);
2578 binfo = BINFO_INHERITANCE_CHAIN (binfo))
2580 if (BINFO_VIRTUAL_P (binfo))
2581 return binfo;
2583 return NULL_TREE;
2586 /* BINFO is a base binfo in the complete type BINFO_TYPE (HERE).
2587 Find the equivalent binfo within whatever graph HERE is located.
2588 This is the inverse of original_binfo. */
2590 tree
2591 copied_binfo (tree binfo, tree here)
2593 tree result = NULL_TREE;
2595 if (BINFO_VIRTUAL_P (binfo))
2597 tree t;
2599 for (t = here; BINFO_INHERITANCE_CHAIN (t);
2600 t = BINFO_INHERITANCE_CHAIN (t))
2601 continue;
2603 result = binfo_for_vbase (BINFO_TYPE (binfo), BINFO_TYPE (t));
2605 else if (BINFO_INHERITANCE_CHAIN (binfo))
2607 tree cbinfo;
2608 tree base_binfo;
2609 int ix;
2611 cbinfo = copied_binfo (BINFO_INHERITANCE_CHAIN (binfo), here);
2612 for (ix = 0; BINFO_BASE_ITERATE (cbinfo, ix, base_binfo); ix++)
2613 if (SAME_BINFO_TYPE_P (BINFO_TYPE (base_binfo), BINFO_TYPE (binfo)))
2615 result = base_binfo;
2616 break;
2619 else
2621 gcc_assert (SAME_BINFO_TYPE_P (BINFO_TYPE (here), BINFO_TYPE (binfo)));
2622 result = here;
2625 gcc_assert (result);
2626 return result;
2629 tree
2630 binfo_for_vbase (tree base, tree t)
2632 unsigned ix;
2633 tree binfo;
2634 vec<tree, va_gc> *vbases;
2636 for (vbases = CLASSTYPE_VBASECLASSES (t), ix = 0;
2637 vec_safe_iterate (vbases, ix, &binfo); ix++)
2638 if (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), base))
2639 return binfo;
2640 return NULL;
2643 /* BINFO is some base binfo of HERE, within some other
2644 hierarchy. Return the equivalent binfo, but in the hierarchy
2645 dominated by HERE. This is the inverse of copied_binfo. If BINFO
2646 is not a base binfo of HERE, returns NULL_TREE. */
2648 tree
2649 original_binfo (tree binfo, tree here)
2651 tree result = NULL;
2653 if (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), BINFO_TYPE (here)))
2654 result = here;
2655 else if (BINFO_VIRTUAL_P (binfo))
2656 result = (CLASSTYPE_VBASECLASSES (BINFO_TYPE (here))
2657 ? binfo_for_vbase (BINFO_TYPE (binfo), BINFO_TYPE (here))
2658 : NULL_TREE);
2659 else if (BINFO_INHERITANCE_CHAIN (binfo))
2661 tree base_binfos;
2663 base_binfos = original_binfo (BINFO_INHERITANCE_CHAIN (binfo), here);
2664 if (base_binfos)
2666 int ix;
2667 tree base_binfo;
2669 for (ix = 0; (base_binfo = BINFO_BASE_BINFO (base_binfos, ix)); ix++)
2670 if (SAME_BINFO_TYPE_P (BINFO_TYPE (base_binfo),
2671 BINFO_TYPE (binfo)))
2673 result = base_binfo;
2674 break;
2679 return result;