2002-02-19 Philip Blundell <philb@gnu.org>
[official-gcc.git] / gcc / cp / search.c
blob10ebc739f077683c3cbeb23d8aa1507796fdf65d
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 Free Software Foundation, Inc.
5 Contributed by Michael Tiemann (tiemann@cygnus.com)
7 This file is part of GNU CC.
9 GNU CC 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.
14 GNU CC 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.
19 You should have received a copy of the GNU General Public License
20 along with GNU CC; see the file COPYING. If not, write to
21 the Free Software Foundation, 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
24 /* High-level class interface. */
26 #include "config.h"
27 #include "system.h"
28 #include "tree.h"
29 #include "cp-tree.h"
30 #include "obstack.h"
31 #include "flags.h"
32 #include "rtl.h"
33 #include "output.h"
34 #include "toplev.h"
36 #define obstack_chunk_alloc xmalloc
37 #define obstack_chunk_free free
39 #include "stack.h"
41 /* Obstack used for remembering decision points of breadth-first. */
43 static struct obstack search_obstack;
45 /* Methods for pushing and popping objects to and from obstacks. */
47 struct stack_level *
48 push_stack_level (obstack, tp, size)
49 struct obstack *obstack;
50 char *tp; /* Sony NewsOS 5.0 compiler doesn't like void * here. */
51 int size;
53 struct stack_level *stack;
54 obstack_grow (obstack, tp, size);
55 stack = (struct stack_level *) ((char*)obstack_next_free (obstack) - size);
56 obstack_finish (obstack);
57 stack->obstack = obstack;
58 stack->first = (tree *) obstack_base (obstack);
59 stack->limit = obstack_room (obstack) / sizeof (tree *);
60 return stack;
63 struct stack_level *
64 pop_stack_level (stack)
65 struct stack_level *stack;
67 struct stack_level *tem = stack;
68 struct obstack *obstack = tem->obstack;
69 stack = tem->prev;
70 obstack_free (obstack, tem);
71 return stack;
74 #define search_level stack_level
75 static struct search_level *search_stack;
77 struct vbase_info
79 /* The class dominating the hierarchy. */
80 tree type;
81 /* A pointer to a complete object of the indicated TYPE. */
82 tree decl_ptr;
83 tree inits;
86 static tree lookup_field_1 PARAMS ((tree, tree));
87 static int is_subobject_of_p PARAMS ((tree, tree, tree));
88 static tree dfs_check_overlap PARAMS ((tree, void *));
89 static tree dfs_no_overlap_yet PARAMS ((tree, void *));
90 static base_kind lookup_base_r
91 PARAMS ((tree, tree, base_access, int, int, int, tree *));
92 static int dynamic_cast_base_recurse PARAMS ((tree, tree, int, tree *));
93 static tree marked_pushdecls_p PARAMS ((tree, void *));
94 static tree unmarked_pushdecls_p PARAMS ((tree, void *));
95 static tree dfs_debug_unmarkedp PARAMS ((tree, void *));
96 static tree dfs_debug_mark PARAMS ((tree, void *));
97 static tree dfs_get_vbase_types PARAMS ((tree, void *));
98 static tree dfs_push_type_decls PARAMS ((tree, void *));
99 static tree dfs_push_decls PARAMS ((tree, void *));
100 static tree dfs_unuse_fields PARAMS ((tree, void *));
101 static tree add_conversions PARAMS ((tree, void *));
102 static int covariant_return_p PARAMS ((tree, tree));
103 static int check_final_overrider PARAMS ((tree, tree));
104 static int look_for_overrides_r PARAMS ((tree, tree));
105 static struct search_level *push_search_level
106 PARAMS ((struct stack_level *, struct obstack *));
107 static struct search_level *pop_search_level
108 PARAMS ((struct stack_level *));
109 static tree bfs_walk
110 PARAMS ((tree, tree (*) (tree, void *), tree (*) (tree, void *),
111 void *));
112 static tree lookup_field_queue_p PARAMS ((tree, void *));
113 static int shared_member_p PARAMS ((tree));
114 static tree lookup_field_r PARAMS ((tree, void *));
115 static tree canonical_binfo PARAMS ((tree));
116 static tree shared_marked_p PARAMS ((tree, void *));
117 static tree shared_unmarked_p PARAMS ((tree, void *));
118 static int dependent_base_p PARAMS ((tree));
119 static tree dfs_accessible_queue_p PARAMS ((tree, void *));
120 static tree dfs_accessible_p PARAMS ((tree, void *));
121 static tree dfs_access_in_type PARAMS ((tree, void *));
122 static access_kind access_in_type PARAMS ((tree, tree));
123 static tree dfs_canonical_queue PARAMS ((tree, void *));
124 static tree dfs_assert_unmarked_p PARAMS ((tree, void *));
125 static void assert_canonical_unmarked PARAMS ((tree));
126 static int protected_accessible_p PARAMS ((tree, tree, tree));
127 static int friend_accessible_p PARAMS ((tree, tree, tree));
128 static void setup_class_bindings PARAMS ((tree, int));
129 static int template_self_reference_p PARAMS ((tree, tree));
130 static tree get_shared_vbase_if_not_primary PARAMS ((tree, void *));
131 static tree dfs_find_vbase_instance PARAMS ((tree, void *));
132 static tree dfs_get_pure_virtuals PARAMS ((tree, void *));
133 static tree dfs_build_inheritance_graph_order PARAMS ((tree, void *));
135 /* Allocate a level of searching. */
137 static struct search_level *
138 push_search_level (stack, obstack)
139 struct stack_level *stack;
140 struct obstack *obstack;
142 struct search_level tem;
144 tem.prev = stack;
145 return push_stack_level (obstack, (char *)&tem, sizeof (tem));
148 /* Discard a level of search allocation. */
150 static struct search_level *
151 pop_search_level (obstack)
152 struct stack_level *obstack;
154 register struct search_level *stack = pop_stack_level (obstack);
156 return stack;
159 /* Variables for gathering statistics. */
160 #ifdef GATHER_STATISTICS
161 static int n_fields_searched;
162 static int n_calls_lookup_field, n_calls_lookup_field_1;
163 static int n_calls_lookup_fnfields, n_calls_lookup_fnfields_1;
164 static int n_calls_get_base_type;
165 static int n_outer_fields_searched;
166 static int n_contexts_saved;
167 #endif /* GATHER_STATISTICS */
170 /* Worker for lookup_base. BINFO is the binfo we are searching at,
171 BASE is the RECORD_TYPE we are searching for. ACCESS is the
172 required access checks. WITHIN_CURRENT_SCOPE, IS_NON_PUBLIC and
173 IS_VIRTUAL indicate how BINFO was reached from the start of the
174 search. WITHIN_CURRENT_SCOPE is true if we met the current scope,
175 or friend thereof (this allows us to determine whether a protected
176 base is accessible or not). IS_NON_PUBLIC indicates whether BINFO
177 is accessible and IS_VIRTUAL indicates if it is morally virtual.
179 If BINFO is of the required type, then *BINFO_PTR is examined to
180 compare with any other instance of BASE we might have already
181 discovered. *BINFO_PTR is initialized and a base_kind return value
182 indicates what kind of base was located.
184 Otherwise BINFO's bases are searched. */
186 static base_kind
187 lookup_base_r (binfo, base, access, within_current_scope,
188 is_non_public, is_virtual, binfo_ptr)
189 tree binfo, base;
190 base_access access;
191 int within_current_scope;
192 int is_non_public; /* inside a non-public part */
193 int is_virtual; /* inside a virtual part */
194 tree *binfo_ptr;
196 int i;
197 tree bases;
198 base_kind found = bk_not_base;
200 if (access == ba_check
201 && !within_current_scope
202 && is_friend (BINFO_TYPE (binfo), current_scope ()))
204 within_current_scope = 1;
205 is_non_public = 0;
208 if (same_type_p (BINFO_TYPE (binfo), base))
210 /* We have found a base. Check against what we have found
211 already. */
212 found = bk_same_type;
213 if (is_virtual)
214 found = bk_via_virtual;
215 if (is_non_public)
216 found = bk_inaccessible;
218 if (!*binfo_ptr)
219 *binfo_ptr = binfo;
220 else if (!is_virtual || !tree_int_cst_equal (BINFO_OFFSET (binfo),
221 BINFO_OFFSET (*binfo_ptr)))
223 if (access != ba_any)
224 *binfo_ptr = NULL;
225 else if (!is_virtual)
226 /* Prefer a non-virtual base. */
227 *binfo_ptr = binfo;
228 found = bk_ambig;
231 return found;
234 bases = BINFO_BASETYPES (binfo);
235 if (!bases)
236 return bk_not_base;
238 for (i = TREE_VEC_LENGTH (bases); i--;)
240 tree base_binfo = TREE_VEC_ELT (bases, i);
241 int this_non_public = is_non_public;
242 int this_virtual = is_virtual;
243 base_kind bk;
245 if (access <= ba_ignore)
246 ; /* no change */
247 else if (TREE_VIA_PUBLIC (base_binfo))
248 ; /* no change */
249 else if (access == ba_not_special)
250 this_non_public = 1;
251 else if (TREE_VIA_PROTECTED (base_binfo) && within_current_scope)
252 ; /* no change */
253 else if (is_friend (BINFO_TYPE (binfo), current_scope ()))
254 ; /* no change */
255 else
256 this_non_public = 1;
258 if (TREE_VIA_VIRTUAL (base_binfo))
259 this_virtual = 1;
261 bk = lookup_base_r (base_binfo, base,
262 access, within_current_scope,
263 this_non_public, this_virtual,
264 binfo_ptr);
266 switch (bk)
268 case bk_ambig:
269 if (access != ba_any)
270 return bk;
271 found = bk;
272 break;
274 case bk_inaccessible:
275 if (found == bk_not_base)
276 found = bk;
277 my_friendly_assert (found == bk_via_virtual
278 || found == bk_inaccessible, 20010723);
280 break;
282 case bk_same_type:
283 bk = bk_proper_base;
284 /* FALLTHROUGH */
285 case bk_proper_base:
286 my_friendly_assert (found == bk_not_base, 20010723);
287 found = bk;
288 break;
290 case bk_via_virtual:
291 if (found != bk_ambig)
292 found = bk;
293 break;
295 case bk_not_base:
296 break;
299 return found;
302 /* Lookup BASE in the hierarchy dominated by T. Do access checking as
303 ACCESS specifies. Return the binfo we discover (which might not be
304 canonical). If KIND_PTR is non-NULL, fill with information about
305 what kind of base we discovered.
307 If ba_quiet bit is set in ACCESS, then do not issue an error, and
308 return NULL_TREE for failure. */
310 tree
311 lookup_base (t, base, access, kind_ptr)
312 tree t, base;
313 base_access access;
314 base_kind *kind_ptr;
316 tree binfo = NULL; /* The binfo we've found so far. */
317 base_kind bk;
319 if (t == error_mark_node || base == error_mark_node)
321 if (kind_ptr)
322 *kind_ptr = bk_not_base;
323 return error_mark_node;
325 my_friendly_assert (TYPE_P (t) && TYPE_P (base), 20011127);
327 /* Ensure that the types are instantiated. */
328 t = complete_type (TYPE_MAIN_VARIANT (t));
329 base = complete_type (TYPE_MAIN_VARIANT (base));
331 bk = lookup_base_r (TYPE_BINFO (t), base, access & ~ba_quiet,
332 0, 0, 0, &binfo);
334 switch (bk)
336 case bk_inaccessible:
337 binfo = NULL_TREE;
338 if (!(access & ba_quiet))
340 error ("`%T' is an inaccessible base of `%T'", base, t);
341 binfo = error_mark_node;
343 break;
344 case bk_ambig:
345 if (access != ba_any)
347 binfo = NULL_TREE;
348 if (!(access & ba_quiet))
350 error ("`%T' is an ambiguous base of `%T'", base, t);
351 binfo = error_mark_node;
354 break;
355 default:;
358 if (kind_ptr)
359 *kind_ptr = bk;
361 return binfo;
364 /* Worker function for get_dynamic_cast_base_type. */
366 static int
367 dynamic_cast_base_recurse (subtype, binfo, via_virtual, offset_ptr)
368 tree subtype;
369 tree binfo;
370 int via_virtual;
371 tree *offset_ptr;
373 tree binfos;
374 int i, n_baselinks;
375 int worst = -2;
377 if (BINFO_TYPE (binfo) == subtype)
379 if (via_virtual)
380 return -1;
381 else
383 *offset_ptr = BINFO_OFFSET (binfo);
384 return 0;
388 binfos = BINFO_BASETYPES (binfo);
389 n_baselinks = binfos ? TREE_VEC_LENGTH (binfos) : 0;
390 for (i = 0; i < n_baselinks; i++)
392 tree base_binfo = TREE_VEC_ELT (binfos, i);
393 int rval;
395 if (!TREE_VIA_PUBLIC (base_binfo))
396 continue;
397 rval = dynamic_cast_base_recurse
398 (subtype, base_binfo,
399 via_virtual || TREE_VIA_VIRTUAL (base_binfo), offset_ptr);
400 if (worst == -2)
401 worst = rval;
402 else if (rval >= 0)
403 worst = worst >= 0 ? -3 : worst;
404 else if (rval == -1)
405 worst = -1;
406 else if (rval == -3 && worst != -1)
407 worst = -3;
409 return worst;
412 /* The dynamic cast runtime needs a hint about how the static SUBTYPE type
413 started from is related to the required TARGET type, in order to optimize
414 the inheritance graph search. This information is independent of the
415 current context, and ignores private paths, hence get_base_distance is
416 inappropriate. Return a TREE specifying the base offset, BOFF.
417 BOFF >= 0, there is only one public non-virtual SUBTYPE base at offset BOFF,
418 and there are no public virtual SUBTYPE bases.
419 BOFF == -1, SUBTYPE occurs as multiple public virtual or non-virtual bases.
420 BOFF == -2, SUBTYPE is not a public base.
421 BOFF == -3, SUBTYPE occurs as multiple public non-virtual bases. */
423 tree
424 get_dynamic_cast_base_type (subtype, target)
425 tree subtype;
426 tree target;
428 tree offset = NULL_TREE;
429 int boff = dynamic_cast_base_recurse (subtype, TYPE_BINFO (target),
430 0, &offset);
432 if (!boff)
433 return offset;
434 offset = build_int_2 (boff, -1);
435 TREE_TYPE (offset) = ssizetype;
436 return offset;
439 /* Search for a member with name NAME in a multiple inheritance lattice
440 specified by TYPE. If it does not exist, return NULL_TREE.
441 If the member is ambiguously referenced, return `error_mark_node'.
442 Otherwise, return the FIELD_DECL. */
444 /* Do a 1-level search for NAME as a member of TYPE. The caller must
445 figure out whether it can access this field. (Since it is only one
446 level, this is reasonable.) */
448 static tree
449 lookup_field_1 (type, name)
450 tree type, name;
452 register tree field;
454 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
455 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM
456 || TREE_CODE (type) == TYPENAME_TYPE)
457 /* The TYPE_FIELDS of a TEMPLATE_TYPE_PARM and
458 BOUND_TEMPLATE_TEMPLATE_PARM are not fields at all;
459 instead TYPE_FIELDS is the TEMPLATE_PARM_INDEX. (Miraculously,
460 the code often worked even when we treated the index as a list
461 of fields!)
462 The TYPE_FIELDS of TYPENAME_TYPE is its TYPENAME_TYPE_FULLNAME. */
463 return NULL_TREE;
465 if (TYPE_NAME (type)
466 && DECL_LANG_SPECIFIC (TYPE_NAME (type))
467 && DECL_SORTED_FIELDS (TYPE_NAME (type)))
469 tree *fields = &TREE_VEC_ELT (DECL_SORTED_FIELDS (TYPE_NAME (type)), 0);
470 int lo = 0, hi = TREE_VEC_LENGTH (DECL_SORTED_FIELDS (TYPE_NAME (type)));
471 int i;
473 while (lo < hi)
475 i = (lo + hi) / 2;
477 #ifdef GATHER_STATISTICS
478 n_fields_searched++;
479 #endif /* GATHER_STATISTICS */
481 if (DECL_NAME (fields[i]) > name)
482 hi = i;
483 else if (DECL_NAME (fields[i]) < name)
484 lo = i + 1;
485 else
487 /* We might have a nested class and a field with the
488 same name; we sorted them appropriately via
489 field_decl_cmp, so just look for the last field with
490 this name. */
491 while (i + 1 < hi
492 && DECL_NAME (fields[i+1]) == name)
493 ++i;
494 return fields[i];
497 return NULL_TREE;
500 field = TYPE_FIELDS (type);
502 #ifdef GATHER_STATISTICS
503 n_calls_lookup_field_1++;
504 #endif /* GATHER_STATISTICS */
505 while (field)
507 #ifdef GATHER_STATISTICS
508 n_fields_searched++;
509 #endif /* GATHER_STATISTICS */
510 my_friendly_assert (DECL_P (field), 0);
511 if (DECL_NAME (field) == NULL_TREE
512 && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
514 tree temp = lookup_field_1 (TREE_TYPE (field), name);
515 if (temp)
516 return temp;
518 if (TREE_CODE (field) == USING_DECL)
519 /* For now, we're just treating member using declarations as
520 old ARM-style access declarations. Thus, there's no reason
521 to return a USING_DECL, and the rest of the compiler can't
522 handle it. Once the class is defined, these are purged
523 from TYPE_FIELDS anyhow; see handle_using_decl. */
525 else if (DECL_NAME (field) == name)
526 return field;
527 field = TREE_CHAIN (field);
529 /* Not found. */
530 if (name == vptr_identifier)
532 /* Give the user what s/he thinks s/he wants. */
533 if (TYPE_POLYMORPHIC_P (type))
534 return TYPE_VFIELD (type);
536 return NULL_TREE;
539 /* There are a number of cases we need to be aware of here:
540 current_class_type current_function_decl
541 global NULL NULL
542 fn-local NULL SET
543 class-local SET NULL
544 class->fn SET SET
545 fn->class SET SET
547 Those last two make life interesting. If we're in a function which is
548 itself inside a class, we need decls to go into the fn's decls (our
549 second case below). But if we're in a class and the class itself is
550 inside a function, we need decls to go into the decls for the class. To
551 achieve this last goal, we must see if, when both current_class_ptr and
552 current_function_decl are set, the class was declared inside that
553 function. If so, we know to put the decls into the class's scope. */
555 tree
556 current_scope ()
558 if (current_function_decl == NULL_TREE)
559 return current_class_type;
560 if (current_class_type == NULL_TREE)
561 return current_function_decl;
562 if ((DECL_FUNCTION_MEMBER_P (current_function_decl)
563 && same_type_p (DECL_CONTEXT (current_function_decl),
564 current_class_type))
565 || (DECL_FRIEND_CONTEXT (current_function_decl)
566 && same_type_p (DECL_FRIEND_CONTEXT (current_function_decl),
567 current_class_type)))
568 return current_function_decl;
570 return current_class_type;
573 /* Returns non-zero if we are currently in a function scope. Note
574 that this function returns zero if we are within a local class, but
575 not within a member function body of the local class. */
578 at_function_scope_p ()
580 tree cs = current_scope ();
581 return cs && TREE_CODE (cs) == FUNCTION_DECL;
584 /* Return the scope of DECL, as appropriate when doing name-lookup. */
586 tree
587 context_for_name_lookup (decl)
588 tree decl;
590 /* [class.union]
592 For the purposes of name lookup, after the anonymous union
593 definition, the members of the anonymous union are considered to
594 have been defined in the scope in which the anonymous union is
595 declared. */
596 tree context = DECL_CONTEXT (decl);
598 while (context && TYPE_P (context) && ANON_AGGR_TYPE_P (context))
599 context = TYPE_CONTEXT (context);
600 if (!context)
601 context = global_namespace;
603 return context;
606 /* Return a canonical BINFO if BINFO is a virtual base, or just BINFO
607 otherwise. */
609 static tree
610 canonical_binfo (binfo)
611 tree binfo;
613 return (TREE_VIA_VIRTUAL (binfo)
614 ? TYPE_BINFO (BINFO_TYPE (binfo)) : binfo);
617 /* A queue function that simply ensures that we walk into the
618 canonical versions of virtual bases. */
620 static tree
621 dfs_canonical_queue (binfo, data)
622 tree binfo;
623 void *data ATTRIBUTE_UNUSED;
625 return canonical_binfo (binfo);
628 /* Called via dfs_walk from assert_canonical_unmarked. */
630 static tree
631 dfs_assert_unmarked_p (binfo, data)
632 tree binfo;
633 void *data ATTRIBUTE_UNUSED;
635 my_friendly_assert (!BINFO_MARKED (binfo), 0);
636 return NULL_TREE;
639 /* Asserts that all the nodes below BINFO (using the canonical
640 versions of virtual bases) are unmarked. */
642 static void
643 assert_canonical_unmarked (binfo)
644 tree binfo;
646 dfs_walk (binfo, dfs_assert_unmarked_p, dfs_canonical_queue, 0);
649 /* If BINFO is marked, return a canonical version of BINFO.
650 Otherwise, return NULL_TREE. */
652 static tree
653 shared_marked_p (binfo, data)
654 tree binfo;
655 void *data;
657 binfo = canonical_binfo (binfo);
658 return markedp (binfo, data);
661 /* If BINFO is not marked, return a canonical version of BINFO.
662 Otherwise, return NULL_TREE. */
664 static tree
665 shared_unmarked_p (binfo, data)
666 tree binfo;
667 void *data;
669 binfo = canonical_binfo (binfo);
670 return unmarkedp (binfo, data);
673 /* The accessibility routines use BINFO_ACCESS for scratch space
674 during the computation of the accssibility of some declaration. */
676 #define BINFO_ACCESS(NODE) \
677 ((access_kind) ((TREE_LANG_FLAG_1 (NODE) << 1) | TREE_LANG_FLAG_6 (NODE)))
679 /* Set the access associated with NODE to ACCESS. */
681 #define SET_BINFO_ACCESS(NODE, ACCESS) \
682 ((TREE_LANG_FLAG_1 (NODE) = ((ACCESS) & 2) != 0), \
683 (TREE_LANG_FLAG_6 (NODE) = ((ACCESS) & 1) != 0))
685 /* Called from access_in_type via dfs_walk. Calculate the access to
686 DATA (which is really a DECL) in BINFO. */
688 static tree
689 dfs_access_in_type (binfo, data)
690 tree binfo;
691 void *data;
693 tree decl = (tree) data;
694 tree type = BINFO_TYPE (binfo);
695 access_kind access = ak_none;
697 if (context_for_name_lookup (decl) == type)
699 /* If we have desceneded to the scope of DECL, just note the
700 appropriate access. */
701 if (TREE_PRIVATE (decl))
702 access = ak_private;
703 else if (TREE_PROTECTED (decl))
704 access = ak_protected;
705 else
706 access = ak_public;
708 else
710 /* First, check for an access-declaration that gives us more
711 access to the DECL. The CONST_DECL for an enumeration
712 constant will not have DECL_LANG_SPECIFIC, and thus no
713 DECL_ACCESS. */
714 if (DECL_LANG_SPECIFIC (decl) && !DECL_DISCRIMINATOR_P (decl))
716 tree decl_access = purpose_member (type, DECL_ACCESS (decl));
717 if (decl_access)
718 access = ((access_kind)
719 TREE_INT_CST_LOW (TREE_VALUE (decl_access)));
722 if (!access)
724 int i;
725 int n_baselinks;
726 tree binfos;
728 /* Otherwise, scan our baseclasses, and pick the most favorable
729 access. */
730 binfos = BINFO_BASETYPES (binfo);
731 n_baselinks = binfos ? TREE_VEC_LENGTH (binfos) : 0;
732 for (i = 0; i < n_baselinks; ++i)
734 tree base_binfo = TREE_VEC_ELT (binfos, i);
735 access_kind base_access
736 = BINFO_ACCESS (canonical_binfo (base_binfo));
738 if (base_access == ak_none || base_access == ak_private)
739 /* If it was not accessible in the base, or only
740 accessible as a private member, we can't access it
741 all. */
742 base_access = ak_none;
743 else if (TREE_VIA_PROTECTED (base_binfo))
744 /* Public and protected members in the base are
745 protected here. */
746 base_access = ak_protected;
747 else if (!TREE_VIA_PUBLIC (base_binfo))
748 /* Public and protected members in the base are
749 private here. */
750 base_access = ak_private;
752 /* See if the new access, via this base, gives more
753 access than our previous best access. */
754 if (base_access != ak_none
755 && (base_access == ak_public
756 || (base_access == ak_protected
757 && access != ak_public)
758 || (base_access == ak_private
759 && access == ak_none)))
761 access = base_access;
763 /* If the new access is public, we can't do better. */
764 if (access == ak_public)
765 break;
771 /* Note the access to DECL in TYPE. */
772 SET_BINFO_ACCESS (binfo, access);
774 /* Mark TYPE as visited so that if we reach it again we do not
775 duplicate our efforts here. */
776 SET_BINFO_MARKED (binfo);
778 return NULL_TREE;
781 /* Return the access to DECL in TYPE. */
783 static access_kind
784 access_in_type (type, decl)
785 tree type;
786 tree decl;
788 tree binfo = TYPE_BINFO (type);
790 /* We must take into account
792 [class.paths]
794 If a name can be reached by several paths through a multiple
795 inheritance graph, the access is that of the path that gives
796 most access.
798 The algorithm we use is to make a post-order depth-first traversal
799 of the base-class hierarchy. As we come up the tree, we annotate
800 each node with the most lenient access. */
801 dfs_walk_real (binfo, 0, dfs_access_in_type, shared_unmarked_p, decl);
802 dfs_walk (binfo, dfs_unmark, shared_marked_p, 0);
803 assert_canonical_unmarked (binfo);
805 return BINFO_ACCESS (binfo);
808 /* Called from dfs_accessible_p via dfs_walk. */
810 static tree
811 dfs_accessible_queue_p (binfo, data)
812 tree binfo;
813 void *data ATTRIBUTE_UNUSED;
815 if (BINFO_MARKED (binfo))
816 return NULL_TREE;
818 /* If this class is inherited via private or protected inheritance,
819 then we can't see it, unless we are a friend of the subclass. */
820 if (!TREE_VIA_PUBLIC (binfo)
821 && !is_friend (BINFO_TYPE (BINFO_INHERITANCE_CHAIN (binfo)),
822 current_scope ()))
823 return NULL_TREE;
825 return canonical_binfo (binfo);
828 /* Called from dfs_accessible_p via dfs_walk. */
830 static tree
831 dfs_accessible_p (binfo, data)
832 tree binfo;
833 void *data;
835 int protected_ok = data != 0;
836 access_kind access;
838 SET_BINFO_MARKED (binfo);
839 access = BINFO_ACCESS (binfo);
840 if (access == ak_public || (access == ak_protected && protected_ok))
841 return binfo;
842 else if (access != ak_none
843 && is_friend (BINFO_TYPE (binfo), current_scope ()))
844 return binfo;
846 return NULL_TREE;
849 /* Returns non-zero if it is OK to access DECL through an object
850 indiated by BINFO in the context of DERIVED. */
852 static int
853 protected_accessible_p (decl, derived, binfo)
854 tree decl;
855 tree derived;
856 tree binfo;
858 access_kind access;
860 /* We're checking this clause from [class.access.base]
862 m as a member of N is protected, and the reference occurs in a
863 member or friend of class N, or in a member or friend of a
864 class P derived from N, where m as a member of P is private or
865 protected.
867 Here DERIVED is a possible P and DECL is m. accessible_p will
868 iterate over various values of N, but the access to m in DERIVED
869 does not change.
871 Note that I believe that the passage above is wrong, and should read
872 "...is private or protected or public"; otherwise you get bizarre results
873 whereby a public using-decl can prevent you from accessing a protected
874 member of a base. (jason 2000/02/28) */
876 /* If DERIVED isn't derived from m's class, then it can't be a P. */
877 if (!DERIVED_FROM_P (context_for_name_lookup (decl), derived))
878 return 0;
880 access = access_in_type (derived, decl);
882 /* If m is inaccessible in DERIVED, then it's not a P. */
883 if (access == ak_none)
884 return 0;
886 /* [class.protected]
888 When a friend or a member function of a derived class references
889 a protected nonstatic member of a base class, an access check
890 applies in addition to those described earlier in clause
891 _class.access_) Except when forming a pointer to member
892 (_expr.unary.op_), the access must be through a pointer to,
893 reference to, or object of the derived class itself (or any class
894 derived from that class) (_expr.ref_). If the access is to form
895 a pointer to member, the nested-name-specifier shall name the
896 derived class (or any class derived from that class). */
897 if (DECL_NONSTATIC_MEMBER_P (decl))
899 /* We can tell through what the reference is occurring by
900 chasing BINFO up to the root. */
901 tree t = binfo;
902 while (BINFO_INHERITANCE_CHAIN (t))
903 t = BINFO_INHERITANCE_CHAIN (t);
905 if (!DERIVED_FROM_P (derived, BINFO_TYPE (t)))
906 return 0;
909 return 1;
912 /* Returns non-zero if SCOPE is a friend of a type which would be able
913 to access DECL through the object indicated by BINFO. */
915 static int
916 friend_accessible_p (scope, decl, binfo)
917 tree scope;
918 tree decl;
919 tree binfo;
921 tree befriending_classes;
922 tree t;
924 if (!scope)
925 return 0;
927 if (TREE_CODE (scope) == FUNCTION_DECL
928 || DECL_FUNCTION_TEMPLATE_P (scope))
929 befriending_classes = DECL_BEFRIENDING_CLASSES (scope);
930 else if (TYPE_P (scope))
931 befriending_classes = CLASSTYPE_BEFRIENDING_CLASSES (scope);
932 else
933 return 0;
935 for (t = befriending_classes; t; t = TREE_CHAIN (t))
936 if (protected_accessible_p (decl, TREE_VALUE (t), binfo))
937 return 1;
939 /* Nested classes are implicitly friends of their enclosing types, as
940 per core issue 45 (this is a change from the standard). */
941 if (TYPE_P (scope))
942 for (t = TYPE_CONTEXT (scope); t && TYPE_P (t); t = TYPE_CONTEXT (t))
943 if (protected_accessible_p (decl, t, binfo))
944 return 1;
946 if (TREE_CODE (scope) == FUNCTION_DECL
947 || DECL_FUNCTION_TEMPLATE_P (scope))
949 /* Perhaps this SCOPE is a member of a class which is a
950 friend. */
951 if (DECL_CLASS_SCOPE_P (decl)
952 && friend_accessible_p (DECL_CONTEXT (scope), decl, binfo))
953 return 1;
955 /* Or an instantiation of something which is a friend. */
956 if (DECL_TEMPLATE_INFO (scope))
957 return friend_accessible_p (DECL_TI_TEMPLATE (scope), decl, binfo);
959 else if (CLASSTYPE_TEMPLATE_INFO (scope))
960 return friend_accessible_p (CLASSTYPE_TI_TEMPLATE (scope), decl, binfo);
962 return 0;
965 /* Perform access control on TYPE_DECL VAL, which was looked up in TYPE.
966 This is fairly complex, so here's the design:
968 The lang_extdef nonterminal sets type_lookups to NULL_TREE before we
969 start to process a top-level declaration.
970 As we process the decl-specifier-seq for the declaration, any types we
971 see that might need access control are passed to type_access_control,
972 which defers checking by adding them to type_lookups.
973 When we are done with the decl-specifier-seq, we record the lookups we've
974 seen in the lookups field of the typed_declspecs nonterminal.
975 When we process the first declarator, either in parse_decl or
976 begin_function_definition, we call save_type_access_control,
977 which stores the lookups from the decl-specifier-seq in
978 current_type_lookups.
979 As we finish with each declarator, we process everything in type_lookups
980 via decl_type_access_control, which resets type_lookups to the value of
981 current_type_lookups for subsequent declarators.
982 When we enter a function, we set type_lookups to error_mark_node, so all
983 lookups are processed immediately. */
985 void
986 type_access_control (type, val)
987 tree type, val;
989 if (val == NULL_TREE || TREE_CODE (val) != TYPE_DECL
990 || ! DECL_CLASS_SCOPE_P (val))
991 return;
993 if (type_lookups == error_mark_node)
994 enforce_access (type, val);
995 else if (! accessible_p (type, val))
996 type_lookups = tree_cons (type, val, type_lookups);
999 /* DECL is a declaration from a base class of TYPE, which was the
1000 class used to name DECL. Return non-zero if, in the current
1001 context, DECL is accessible. If TYPE is actually a BINFO node,
1002 then we can tell in what context the access is occurring by looking
1003 at the most derived class along the path indicated by BINFO. */
1005 int
1006 accessible_p (type, decl)
1007 tree type;
1008 tree decl;
1011 tree binfo;
1012 tree t;
1014 /* Non-zero if it's OK to access DECL if it has protected
1015 accessibility in TYPE. */
1016 int protected_ok = 0;
1018 /* If we're not checking access, everything is accessible. */
1019 if (!flag_access_control)
1020 return 1;
1022 /* If this declaration is in a block or namespace scope, there's no
1023 access control. */
1024 if (!TYPE_P (context_for_name_lookup (decl)))
1025 return 1;
1027 if (!TYPE_P (type))
1029 binfo = type;
1030 type = BINFO_TYPE (type);
1032 else
1033 binfo = TYPE_BINFO (type);
1035 /* [class.access.base]
1037 A member m is accessible when named in class N if
1039 --m as a member of N is public, or
1041 --m as a member of N is private, and the reference occurs in a
1042 member or friend of class N, or
1044 --m as a member of N is protected, and the reference occurs in a
1045 member or friend of class N, or in a member or friend of a
1046 class P derived from N, where m as a member of P is private or
1047 protected, or
1049 --there exists a base class B of N that is accessible at the point
1050 of reference, and m is accessible when named in class B.
1052 We walk the base class hierarchy, checking these conditions. */
1054 /* Figure out where the reference is occurring. Check to see if
1055 DECL is private or protected in this scope, since that will
1056 determine whether protected access is allowed. */
1057 if (current_class_type)
1058 protected_ok = protected_accessible_p (decl, current_class_type, binfo);
1060 /* Now, loop through the classes of which we are a friend. */
1061 if (!protected_ok)
1062 protected_ok = friend_accessible_p (current_scope (), decl, binfo);
1064 /* Standardize the binfo that access_in_type will use. We don't
1065 need to know what path was chosen from this point onwards. */
1066 binfo = TYPE_BINFO (type);
1068 /* Compute the accessibility of DECL in the class hierarchy
1069 dominated by type. */
1070 access_in_type (type, decl);
1071 /* Walk the hierarchy again, looking for a base class that allows
1072 access. */
1073 t = dfs_walk (binfo, dfs_accessible_p,
1074 dfs_accessible_queue_p,
1075 protected_ok ? &protected_ok : 0);
1076 /* Clear any mark bits. Note that we have to walk the whole tree
1077 here, since we have aborted the previous walk from some point
1078 deep in the tree. */
1079 dfs_walk (binfo, dfs_unmark, dfs_canonical_queue, 0);
1080 assert_canonical_unmarked (binfo);
1082 return t != NULL_TREE;
1085 /* Routine to see if the sub-object denoted by the binfo PARENT can be
1086 found as a base class and sub-object of the object denoted by
1087 BINFO. MOST_DERIVED is the most derived type of the hierarchy being
1088 searched. */
1090 static int
1091 is_subobject_of_p (parent, binfo, most_derived)
1092 tree parent, binfo, most_derived;
1094 tree binfos;
1095 int i, n_baselinks;
1097 if (parent == binfo)
1098 return 1;
1100 binfos = BINFO_BASETYPES (binfo);
1101 n_baselinks = binfos ? TREE_VEC_LENGTH (binfos) : 0;
1103 /* Iterate the base types. */
1104 for (i = 0; i < n_baselinks; i++)
1106 tree base_binfo = TREE_VEC_ELT (binfos, i);
1107 if (!CLASS_TYPE_P (TREE_TYPE (base_binfo)))
1108 /* If we see a TEMPLATE_TYPE_PARM, or some such, as a base
1109 class there's no way to descend into it. */
1110 continue;
1112 if (is_subobject_of_p (parent,
1113 CANONICAL_BINFO (base_binfo, most_derived),
1114 most_derived))
1115 return 1;
1117 return 0;
1120 struct lookup_field_info {
1121 /* The type in which we're looking. */
1122 tree type;
1123 /* The name of the field for which we're looking. */
1124 tree name;
1125 /* If non-NULL, the current result of the lookup. */
1126 tree rval;
1127 /* The path to RVAL. */
1128 tree rval_binfo;
1129 /* If non-NULL, the lookup was ambiguous, and this is a list of the
1130 candidates. */
1131 tree ambiguous;
1132 /* If non-zero, we are looking for types, not data members. */
1133 int want_type;
1134 /* If non-zero, RVAL was found by looking through a dependent base. */
1135 int from_dep_base_p;
1136 /* If something went wrong, a message indicating what. */
1137 const char *errstr;
1140 /* Returns non-zero if BINFO is not hidden by the value found by the
1141 lookup so far. If BINFO is hidden, then there's no need to look in
1142 it. DATA is really a struct lookup_field_info. Called from
1143 lookup_field via breadth_first_search. */
1145 static tree
1146 lookup_field_queue_p (binfo, data)
1147 tree binfo;
1148 void *data;
1150 struct lookup_field_info *lfi = (struct lookup_field_info *) data;
1152 /* Don't look for constructors or destructors in base classes. */
1153 if (IDENTIFIER_CTOR_OR_DTOR_P (lfi->name))
1154 return NULL_TREE;
1156 /* If this base class is hidden by the best-known value so far, we
1157 don't need to look. */
1158 if (!lfi->from_dep_base_p && lfi->rval_binfo
1159 && is_subobject_of_p (binfo, lfi->rval_binfo, lfi->type))
1160 return NULL_TREE;
1162 return CANONICAL_BINFO (binfo, lfi->type);
1165 /* Within the scope of a template class, you can refer to the to the
1166 current specialization with the name of the template itself. For
1167 example:
1169 template <typename T> struct S { S* sp; }
1171 Returns non-zero if DECL is such a declaration in a class TYPE. */
1173 static int
1174 template_self_reference_p (type, decl)
1175 tree type;
1176 tree decl;
1178 return (CLASSTYPE_USE_TEMPLATE (type)
1179 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type))
1180 && TREE_CODE (decl) == TYPE_DECL
1181 && DECL_ARTIFICIAL (decl)
1182 && DECL_NAME (decl) == constructor_name (type));
1186 /* Nonzero for a class member means that it is shared between all objects
1187 of that class.
1189 [class.member.lookup]:If the resulting set of declarations are not all
1190 from sub-objects of the same type, or the set has a nonstatic member
1191 and includes members from distinct sub-objects, there is an ambiguity
1192 and the program is ill-formed.
1194 This function checks that T contains no nonstatic members. */
1196 static int
1197 shared_member_p (t)
1198 tree t;
1200 if (TREE_CODE (t) == VAR_DECL || TREE_CODE (t) == TYPE_DECL \
1201 || TREE_CODE (t) == CONST_DECL)
1202 return 1;
1203 if (is_overloaded_fn (t))
1205 for (; t; t = OVL_NEXT (t))
1207 tree fn = OVL_CURRENT (t);
1208 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
1209 return 0;
1211 return 1;
1213 return 0;
1216 /* DATA is really a struct lookup_field_info. Look for a field with
1217 the name indicated there in BINFO. If this function returns a
1218 non-NULL value it is the result of the lookup. Called from
1219 lookup_field via breadth_first_search. */
1221 static tree
1222 lookup_field_r (binfo, data)
1223 tree binfo;
1224 void *data;
1226 struct lookup_field_info *lfi = (struct lookup_field_info *) data;
1227 tree type = BINFO_TYPE (binfo);
1228 tree nval = NULL_TREE;
1229 int from_dep_base_p;
1231 /* First, look for a function. There can't be a function and a data
1232 member with the same name, and if there's a function and a type
1233 with the same name, the type is hidden by the function. */
1234 if (!lfi->want_type)
1236 int idx = lookup_fnfields_1 (type, lfi->name);
1237 if (idx >= 0)
1238 nval = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (type), idx);
1241 if (!nval)
1242 /* Look for a data member or type. */
1243 nval = lookup_field_1 (type, lfi->name);
1245 /* If there is no declaration with the indicated name in this type,
1246 then there's nothing to do. */
1247 if (!nval)
1248 return NULL_TREE;
1250 /* If we're looking up a type (as with an elaborated type specifier)
1251 we ignore all non-types we find. */
1252 if (lfi->want_type && TREE_CODE (nval) != TYPE_DECL
1253 && !DECL_CLASS_TEMPLATE_P (nval))
1255 if (lfi->name == TYPE_IDENTIFIER (type))
1257 /* If the aggregate has no user defined constructors, we allow
1258 it to have fields with the same name as the enclosing type.
1259 If we are looking for that name, find the corresponding
1260 TYPE_DECL. */
1261 for (nval = TREE_CHAIN (nval); nval; nval = TREE_CHAIN (nval))
1262 if (DECL_NAME (nval) == lfi->name
1263 && TREE_CODE (nval) == TYPE_DECL)
1264 break;
1266 else
1267 nval = NULL_TREE;
1268 if (!nval)
1270 nval = purpose_member (lfi->name, CLASSTYPE_TAGS (type));
1271 if (nval)
1272 nval = TYPE_MAIN_DECL (TREE_VALUE (nval));
1273 else
1274 return NULL_TREE;
1278 /* You must name a template base class with a template-id. */
1279 if (!same_type_p (type, lfi->type)
1280 && template_self_reference_p (type, nval))
1281 return NULL_TREE;
1283 from_dep_base_p = dependent_base_p (binfo);
1284 if (lfi->from_dep_base_p && !from_dep_base_p)
1286 /* If the new declaration is not found via a dependent base, and
1287 the old one was, then we must prefer the new one. We weren't
1288 really supposed to be able to find the old one, so we don't
1289 want to be affected by a specialization. Consider:
1291 struct B { typedef int I; };
1292 template <typename T> struct D1 : virtual public B {};
1293 template <typename T> struct D :
1294 public D1, virtual pubic B { I i; };
1296 The `I' in `D<T>' is unambigousuly `B::I', regardless of how
1297 D1 is specialized. */
1298 lfi->from_dep_base_p = 0;
1299 lfi->rval = NULL_TREE;
1300 lfi->rval_binfo = NULL_TREE;
1301 lfi->ambiguous = NULL_TREE;
1302 lfi->errstr = 0;
1304 else if (lfi->rval_binfo && !lfi->from_dep_base_p && from_dep_base_p)
1305 /* Similarly, if the old declaration was not found via a dependent
1306 base, and the new one is, ignore the new one. */
1307 return NULL_TREE;
1309 /* If the lookup already found a match, and the new value doesn't
1310 hide the old one, we might have an ambiguity. */
1311 if (lfi->rval_binfo && !is_subobject_of_p (lfi->rval_binfo, binfo, lfi->type))
1313 if (nval == lfi->rval && shared_member_p (nval))
1314 /* The two things are really the same. */
1316 else if (is_subobject_of_p (binfo, lfi->rval_binfo, lfi->type))
1317 /* The previous value hides the new one. */
1319 else
1321 /* We have a real ambiguity. We keep a chain of all the
1322 candidates. */
1323 if (!lfi->ambiguous && lfi->rval)
1325 /* This is the first time we noticed an ambiguity. Add
1326 what we previously thought was a reasonable candidate
1327 to the list. */
1328 lfi->ambiguous = tree_cons (NULL_TREE, lfi->rval, NULL_TREE);
1329 TREE_TYPE (lfi->ambiguous) = error_mark_node;
1332 /* Add the new value. */
1333 lfi->ambiguous = tree_cons (NULL_TREE, nval, lfi->ambiguous);
1334 TREE_TYPE (lfi->ambiguous) = error_mark_node;
1335 lfi->errstr = "request for member `%D' is ambiguous";
1338 else
1340 if (from_dep_base_p && TREE_CODE (nval) != TYPE_DECL
1341 /* We need to return a member template class so we can
1342 define partial specializations. Is there a better
1343 way? */
1344 && !DECL_CLASS_TEMPLATE_P (nval))
1345 /* The thing we're looking for isn't a type, so the implicit
1346 typename extension doesn't apply, so we just pretend we
1347 didn't find anything. */
1348 return NULL_TREE;
1350 lfi->rval = nval;
1351 lfi->from_dep_base_p = from_dep_base_p;
1352 lfi->rval_binfo = binfo;
1355 return NULL_TREE;
1358 /* Look for a member named NAME in an inheritance lattice dominated by
1359 XBASETYPE. If PROTECT is 0 or two, we do not check access. If it is
1360 1, we enforce accessibility. If PROTECT is zero, then, for an
1361 ambiguous lookup, we return NULL. If PROTECT is 1, we issue an
1362 error message. If PROTECT is 2, we return a TREE_LIST whose
1363 TREE_TYPE is error_mark_node and whose TREE_VALUEs are the list of
1364 ambiguous candidates.
1366 WANT_TYPE is 1 when we should only return TYPE_DECLs, if no
1367 TYPE_DECL can be found return NULL_TREE. */
1369 tree
1370 lookup_member (xbasetype, name, protect, want_type)
1371 register tree xbasetype, name;
1372 int protect, want_type;
1374 tree rval, rval_binfo = NULL_TREE;
1375 tree type = NULL_TREE, basetype_path = NULL_TREE;
1376 struct lookup_field_info lfi;
1378 /* rval_binfo is the binfo associated with the found member, note,
1379 this can be set with useful information, even when rval is not
1380 set, because it must deal with ALL members, not just non-function
1381 members. It is used for ambiguity checking and the hidden
1382 checks. Whereas rval is only set if a proper (not hidden)
1383 non-function member is found. */
1385 const char *errstr = 0;
1387 if (xbasetype == current_class_type && TYPE_BEING_DEFINED (xbasetype)
1388 && IDENTIFIER_CLASS_VALUE (name))
1390 tree field = IDENTIFIER_CLASS_VALUE (name);
1391 if (TREE_CODE (field) != FUNCTION_DECL
1392 && ! (want_type && TREE_CODE (field) != TYPE_DECL))
1393 /* We're in the scope of this class, and the value has already
1394 been looked up. Just return the cached value. */
1395 return field;
1398 if (TREE_CODE (xbasetype) == TREE_VEC)
1400 type = BINFO_TYPE (xbasetype);
1401 basetype_path = xbasetype;
1403 else if (IS_AGGR_TYPE_CODE (TREE_CODE (xbasetype)))
1405 type = xbasetype;
1406 basetype_path = TYPE_BINFO (type);
1407 my_friendly_assert (BINFO_INHERITANCE_CHAIN (basetype_path) == NULL_TREE,
1408 980827);
1410 else
1411 abort ();
1413 complete_type (type);
1415 #ifdef GATHER_STATISTICS
1416 n_calls_lookup_field++;
1417 #endif /* GATHER_STATISTICS */
1419 memset ((PTR) &lfi, 0, sizeof (lfi));
1420 lfi.type = type;
1421 lfi.name = name;
1422 lfi.want_type = want_type;
1423 bfs_walk (basetype_path, &lookup_field_r, &lookup_field_queue_p, &lfi);
1424 rval = lfi.rval;
1425 rval_binfo = lfi.rval_binfo;
1426 if (rval_binfo)
1427 type = BINFO_TYPE (rval_binfo);
1428 errstr = lfi.errstr;
1430 /* If we are not interested in ambiguities, don't report them;
1431 just return NULL_TREE. */
1432 if (!protect && lfi.ambiguous)
1433 return NULL_TREE;
1435 if (protect == 2)
1437 if (lfi.ambiguous)
1438 return lfi.ambiguous;
1439 else
1440 protect = 0;
1443 /* [class.access]
1445 In the case of overloaded function names, access control is
1446 applied to the function selected by overloaded resolution. */
1447 if (rval && protect && !is_overloaded_fn (rval)
1448 && !enforce_access (xbasetype, rval))
1449 return error_mark_node;
1451 if (errstr && protect)
1453 error (errstr, name, type);
1454 if (lfi.ambiguous)
1455 print_candidates (lfi.ambiguous);
1456 rval = error_mark_node;
1459 /* If the thing we found was found via the implicit typename
1460 extension, build the typename type. */
1461 if (rval && lfi.from_dep_base_p && !DECL_CLASS_TEMPLATE_P (rval))
1462 rval = TYPE_STUB_DECL (build_typename_type (BINFO_TYPE (basetype_path),
1463 name, name,
1464 TREE_TYPE (rval)));
1466 if (rval && is_overloaded_fn (rval))
1468 /* Note that the binfo we put in the baselink is the binfo where
1469 we found the functions, which we need for overload
1470 resolution, but which should not be passed to enforce_access;
1471 rather, enforce_access wants a binfo which refers to the
1472 scope in which we started looking for the function. This
1473 will generally be the binfo passed into this function as
1474 xbasetype. */
1476 rval = tree_cons (rval_binfo, rval, NULL_TREE);
1477 SET_BASELINK_P (rval);
1480 return rval;
1483 /* Like lookup_member, except that if we find a function member we
1484 return NULL_TREE. */
1486 tree
1487 lookup_field (xbasetype, name, protect, want_type)
1488 register tree xbasetype, name;
1489 int protect, want_type;
1491 tree rval = lookup_member (xbasetype, name, protect, want_type);
1493 /* Ignore functions. */
1494 if (rval && TREE_CODE (rval) == TREE_LIST)
1495 return NULL_TREE;
1497 return rval;
1500 /* Like lookup_member, except that if we find a non-function member we
1501 return NULL_TREE. */
1503 tree
1504 lookup_fnfields (xbasetype, name, protect)
1505 register tree xbasetype, name;
1506 int protect;
1508 tree rval = lookup_member (xbasetype, name, protect, /*want_type=*/0);
1510 /* Ignore non-functions. */
1511 if (rval && TREE_CODE (rval) != TREE_LIST)
1512 return NULL_TREE;
1514 return rval;
1517 /* TYPE is a class type. Return the index of the fields within
1518 the method vector with name NAME, or -1 is no such field exists. */
1521 lookup_fnfields_1 (type, name)
1522 tree type, name;
1524 tree method_vec
1525 = CLASS_TYPE_P (type) ? CLASSTYPE_METHOD_VEC (type) : NULL_TREE;
1527 if (method_vec != 0)
1529 register int i;
1530 register tree *methods = &TREE_VEC_ELT (method_vec, 0);
1531 int len = TREE_VEC_LENGTH (method_vec);
1532 tree tmp;
1534 #ifdef GATHER_STATISTICS
1535 n_calls_lookup_fnfields_1++;
1536 #endif /* GATHER_STATISTICS */
1538 /* Constructors are first... */
1539 if (name == ctor_identifier)
1540 return (methods[CLASSTYPE_CONSTRUCTOR_SLOT]
1541 ? CLASSTYPE_CONSTRUCTOR_SLOT : -1);
1542 /* and destructors are second. */
1543 if (name == dtor_identifier)
1544 return (methods[CLASSTYPE_DESTRUCTOR_SLOT]
1545 ? CLASSTYPE_DESTRUCTOR_SLOT : -1);
1547 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
1548 i < len && methods[i];
1549 ++i)
1551 #ifdef GATHER_STATISTICS
1552 n_outer_fields_searched++;
1553 #endif /* GATHER_STATISTICS */
1555 tmp = OVL_CURRENT (methods[i]);
1556 if (DECL_NAME (tmp) == name)
1557 return i;
1559 /* If the type is complete and we're past the conversion ops,
1560 switch to binary search. */
1561 if (! DECL_CONV_FN_P (tmp)
1562 && COMPLETE_TYPE_P (type))
1564 int lo = i + 1, hi = len;
1566 while (lo < hi)
1568 i = (lo + hi) / 2;
1570 #ifdef GATHER_STATISTICS
1571 n_outer_fields_searched++;
1572 #endif /* GATHER_STATISTICS */
1574 tmp = DECL_NAME (OVL_CURRENT (methods[i]));
1576 if (tmp > name)
1577 hi = i;
1578 else if (tmp < name)
1579 lo = i + 1;
1580 else
1581 return i;
1583 break;
1587 /* If we didn't find it, it might have been a template
1588 conversion operator. (Note that we don't look for this case
1589 above so that we will always find specializations first.) */
1590 if (IDENTIFIER_TYPENAME_P (name))
1592 for (i = CLASSTYPE_FIRST_CONVERSION_SLOT;
1593 i < len && methods[i];
1594 ++i)
1596 tmp = OVL_CURRENT (methods[i]);
1597 if (! DECL_CONV_FN_P (tmp))
1599 /* Since all conversion operators come first, we know
1600 there is no such operator. */
1601 break;
1603 else if (TREE_CODE (tmp) == TEMPLATE_DECL)
1604 return i;
1609 return -1;
1612 /* Walk the class hierarchy dominated by TYPE. FN is called for each
1613 type in the hierarchy, in a breadth-first preorder traversal.
1614 If it ever returns a non-NULL value, that value is immediately
1615 returned and the walk is terminated. At each node, FN is passed a
1616 BINFO indicating the path from the curently visited base-class to
1617 TYPE. Before each base-class is walked QFN is called. If the
1618 value returned is non-zero, the base-class is walked; otherwise it
1619 is not. If QFN is NULL, it is treated as a function which always
1620 returns 1. Both FN and QFN are passed the DATA whenever they are
1621 called. */
1623 static tree
1624 bfs_walk (binfo, fn, qfn, data)
1625 tree binfo;
1626 tree (*fn) PARAMS ((tree, void *));
1627 tree (*qfn) PARAMS ((tree, void *));
1628 void *data;
1630 size_t head;
1631 size_t tail;
1632 tree rval = NULL_TREE;
1633 /* An array of the base classes of BINFO. These will be built up in
1634 breadth-first order, except where QFN prunes the search. */
1635 varray_type bfs_bases;
1637 /* Start with enough room for ten base classes. That will be enough
1638 for most hierarchies. */
1639 VARRAY_TREE_INIT (bfs_bases, 10, "search_stack");
1641 /* Put the first type into the stack. */
1642 VARRAY_TREE (bfs_bases, 0) = binfo;
1643 tail = 1;
1645 for (head = 0; head < tail; ++head)
1647 int i;
1648 int n_baselinks;
1649 tree binfos;
1651 /* Pull the next type out of the queue. */
1652 binfo = VARRAY_TREE (bfs_bases, head);
1654 /* If this is the one we're looking for, we're done. */
1655 rval = (*fn) (binfo, data);
1656 if (rval)
1657 break;
1659 /* Queue up the base types. */
1660 binfos = BINFO_BASETYPES (binfo);
1661 n_baselinks = binfos ? TREE_VEC_LENGTH (binfos): 0;
1662 for (i = 0; i < n_baselinks; i++)
1664 tree base_binfo = TREE_VEC_ELT (binfos, i);
1666 if (qfn)
1667 base_binfo = (*qfn) (base_binfo, data);
1669 if (base_binfo)
1671 if (tail == VARRAY_SIZE (bfs_bases))
1672 VARRAY_GROW (bfs_bases, 2 * VARRAY_SIZE (bfs_bases));
1673 VARRAY_TREE (bfs_bases, tail) = base_binfo;
1674 ++tail;
1679 /* Clean up. */
1680 VARRAY_FREE (bfs_bases);
1682 return rval;
1685 /* Exactly like bfs_walk, except that a depth-first traversal is
1686 performed, and PREFN is called in preorder, while POSTFN is called
1687 in postorder. */
1689 tree
1690 dfs_walk_real (binfo, prefn, postfn, qfn, data)
1691 tree binfo;
1692 tree (*prefn) PARAMS ((tree, void *));
1693 tree (*postfn) PARAMS ((tree, void *));
1694 tree (*qfn) PARAMS ((tree, void *));
1695 void *data;
1697 int i;
1698 int n_baselinks;
1699 tree binfos;
1700 tree rval = NULL_TREE;
1702 /* Call the pre-order walking function. */
1703 if (prefn)
1705 rval = (*prefn) (binfo, data);
1706 if (rval)
1707 return rval;
1710 /* Process the basetypes. */
1711 binfos = BINFO_BASETYPES (binfo);
1712 n_baselinks = BINFO_N_BASETYPES (binfo);
1713 for (i = 0; i < n_baselinks; i++)
1715 tree base_binfo = TREE_VEC_ELT (binfos, i);
1717 if (qfn)
1718 base_binfo = (*qfn) (base_binfo, data);
1720 if (base_binfo)
1722 rval = dfs_walk_real (base_binfo, prefn, postfn, qfn, data);
1723 if (rval)
1724 return rval;
1728 /* Call the post-order walking function. */
1729 if (postfn)
1730 rval = (*postfn) (binfo, data);
1732 return rval;
1735 /* Exactly like bfs_walk, except that a depth-first post-order traversal is
1736 performed. */
1738 tree
1739 dfs_walk (binfo, fn, qfn, data)
1740 tree binfo;
1741 tree (*fn) PARAMS ((tree, void *));
1742 tree (*qfn) PARAMS ((tree, void *));
1743 void *data;
1745 return dfs_walk_real (binfo, 0, fn, qfn, data);
1748 /* Returns > 0 if a function with type DRETTYPE overriding a function
1749 with type BRETTYPE is covariant, as defined in [class.virtual].
1751 Returns 1 if trivial covariance, 2 if non-trivial (requiring runtime
1752 adjustment), or -1 if pedantically invalid covariance. */
1754 static int
1755 covariant_return_p (brettype, drettype)
1756 tree brettype, drettype;
1758 tree binfo;
1759 base_kind kind;
1761 if (TREE_CODE (brettype) == FUNCTION_DECL)
1763 brettype = TREE_TYPE (TREE_TYPE (brettype));
1764 drettype = TREE_TYPE (TREE_TYPE (drettype));
1766 else if (TREE_CODE (brettype) == METHOD_TYPE)
1768 brettype = TREE_TYPE (brettype);
1769 drettype = TREE_TYPE (drettype);
1772 if (same_type_p (brettype, drettype))
1773 return 0;
1775 if (! (TREE_CODE (brettype) == TREE_CODE (drettype)
1776 && (TREE_CODE (brettype) == POINTER_TYPE
1777 || TREE_CODE (brettype) == REFERENCE_TYPE)
1778 && TYPE_QUALS (brettype) == TYPE_QUALS (drettype)))
1779 return 0;
1781 if (! can_convert (brettype, drettype))
1782 return 0;
1784 brettype = TREE_TYPE (brettype);
1785 drettype = TREE_TYPE (drettype);
1787 /* If not pedantic, allow any standard pointer conversion. */
1788 if (! IS_AGGR_TYPE (drettype) || ! IS_AGGR_TYPE (brettype))
1789 return -1;
1791 binfo = lookup_base (drettype, brettype, ba_check | ba_quiet, &kind);
1793 if (!binfo)
1794 return 0;
1795 if (BINFO_OFFSET_ZEROP (binfo) && kind != bk_via_virtual)
1796 return 1;
1797 return 2;
1800 /* Check that virtual overrider OVERRIDER is acceptable for base function
1801 BASEFN. Issue diagnostic, and return zero, if unacceptable. */
1803 static int
1804 check_final_overrider (overrider, basefn)
1805 tree overrider, basefn;
1807 tree over_type = TREE_TYPE (overrider);
1808 tree base_type = TREE_TYPE (basefn);
1809 tree over_return = TREE_TYPE (over_type);
1810 tree base_return = TREE_TYPE (base_type);
1811 tree over_throw = TYPE_RAISES_EXCEPTIONS (over_type);
1812 tree base_throw = TYPE_RAISES_EXCEPTIONS (base_type);
1813 int i;
1815 if (same_type_p (base_return, over_return))
1816 /* OK */;
1817 else if ((i = covariant_return_p (base_return, over_return)))
1819 if (i == 2)
1820 sorry ("adjusting pointers for covariant returns");
1822 if (pedantic && i == -1)
1824 cp_pedwarn_at ("invalid covariant return type for `%#D'", overrider);
1825 cp_pedwarn_at (" overriding `%#D' (must be pointer or reference to class)", basefn);
1828 else if (IS_AGGR_TYPE_2 (base_return, over_return)
1829 && same_or_base_type_p (base_return, over_return))
1831 cp_error_at ("invalid covariant return type for `%#D'", overrider);
1832 cp_error_at (" overriding `%#D' (must use pointer or reference)", basefn);
1833 return 0;
1835 else if (IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (overrider)) == NULL_TREE)
1837 cp_error_at ("conflicting return type specified for `%#D'", overrider);
1838 cp_error_at (" overriding `%#D'", basefn);
1839 SET_IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (overrider),
1840 DECL_CONTEXT (overrider));
1841 return 0;
1844 /* Check throw specifier is subset. */
1845 if (!comp_except_specs (base_throw, over_throw, 0))
1847 cp_error_at ("looser throw specifier for `%#F'", overrider);
1848 cp_error_at (" overriding `%#F'", basefn);
1849 return 0;
1851 return 1;
1854 /* Given a class TYPE, and a function decl FNDECL, look for
1855 virtual functions in TYPE's hierarchy which FNDECL overrides.
1856 We do not look in TYPE itself, only its bases.
1858 Returns non-zero, if we find any. Set FNDECL's DECL_VIRTUAL_P, if we
1859 find that it overrides anything.
1861 We check that every function which is overridden, is correctly
1862 overridden. */
1865 look_for_overrides (type, fndecl)
1866 tree type, fndecl;
1868 tree binfo = TYPE_BINFO (type);
1869 tree basebinfos = BINFO_BASETYPES (binfo);
1870 int nbasebinfos = basebinfos ? TREE_VEC_LENGTH (basebinfos) : 0;
1871 int ix;
1872 int found = 0;
1874 for (ix = 0; ix != nbasebinfos; ix++)
1876 tree basetype = BINFO_TYPE (TREE_VEC_ELT (basebinfos, ix));
1878 if (TYPE_POLYMORPHIC_P (basetype))
1879 found += look_for_overrides_r (basetype, fndecl);
1881 return found;
1884 /* Look in TYPE for virtual functions with the same signature as FNDECL.
1885 This differs from get_matching_virtual in that it will only return
1886 a function from TYPE. */
1888 tree
1889 look_for_overrides_here (type, fndecl)
1890 tree type, fndecl;
1892 int ix;
1894 if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (fndecl))
1895 ix = CLASSTYPE_DESTRUCTOR_SLOT;
1896 else
1897 ix = lookup_fnfields_1 (type, DECL_NAME (fndecl));
1898 if (ix >= 0)
1900 tree fns = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (type), ix);
1902 for (; fns; fns = OVL_NEXT (fns))
1904 tree fn = OVL_CURRENT (fns);
1906 if (!DECL_VIRTUAL_P (fn))
1907 /* Not a virtual. */;
1908 else if (DECL_CONTEXT (fn) != type)
1909 /* Introduced with a using declaration. */;
1910 else if (DECL_STATIC_FUNCTION_P (fndecl))
1912 tree btypes = TYPE_ARG_TYPES (TREE_TYPE (fn));
1913 tree dtypes = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
1914 if (compparms (TREE_CHAIN (btypes), dtypes))
1915 return fn;
1917 else if (same_signature_p (fndecl, fn))
1918 return fn;
1921 return NULL_TREE;
1924 /* Look in TYPE for virtual functions overridden by FNDECL. Check both
1925 TYPE itself and its bases. */
1927 static int
1928 look_for_overrides_r (type, fndecl)
1929 tree type, fndecl;
1931 tree fn = look_for_overrides_here (type, fndecl);
1932 if (fn)
1934 if (DECL_STATIC_FUNCTION_P (fndecl))
1936 /* A static member function cannot match an inherited
1937 virtual member function. */
1938 cp_error_at ("`%#D' cannot be declared", fndecl);
1939 cp_error_at (" since `%#D' declared in base class", fn);
1941 else
1943 /* It's definitely virtual, even if not explicitly set. */
1944 DECL_VIRTUAL_P (fndecl) = 1;
1945 check_final_overrider (fndecl, fn);
1947 return 1;
1950 /* We failed to find one declared in this class. Look in its bases. */
1951 return look_for_overrides (type, fndecl);
1954 /* A queue function for dfs_walk that skips any nonprimary virtual
1955 bases and any already marked bases. */
1957 tree
1958 dfs_skip_nonprimary_vbases_unmarkedp (binfo, data)
1959 tree binfo;
1960 void *data ATTRIBUTE_UNUSED;
1962 if (TREE_VIA_VIRTUAL (binfo) && !BINFO_PRIMARY_P (binfo))
1963 /* This is a non-primary virtual base. Skip it. */
1964 return NULL_TREE;
1966 return unmarkedp (binfo, NULL);
1969 /* A queue function for dfs_walk that skips any nonprimary virtual
1970 bases and any unmarked bases. */
1972 tree
1973 dfs_skip_nonprimary_vbases_markedp (binfo, data)
1974 tree binfo;
1975 void *data ATTRIBUTE_UNUSED;
1977 if (TREE_VIA_VIRTUAL (binfo) && !BINFO_PRIMARY_P (binfo))
1978 /* This is a non-primary virtual base. Skip it. */
1979 return NULL_TREE;
1981 return markedp (binfo, NULL);
1984 /* If BINFO is a non-primary virtual baseclass (in the hierarchy
1985 dominated by TYPE), and no primary copy appears anywhere in the
1986 hierarchy, return the shared copy. If a primary copy appears
1987 elsewhere, return NULL_TREE. Otherwise, return BINFO itself; it is
1988 either a non-virtual base or a primary virtual base. */
1990 static tree
1991 get_shared_vbase_if_not_primary (binfo, data)
1992 tree binfo;
1993 void *data;
1995 if (TREE_VIA_VIRTUAL (binfo) && !BINFO_PRIMARY_P (binfo))
1997 tree type = (tree) data;
1999 if (TREE_CODE (type) == TREE_LIST)
2000 type = TREE_PURPOSE (type);
2002 /* This is a non-primary virtual base. If there is no primary
2003 version, get the shared version. */
2004 binfo = binfo_for_vbase (BINFO_TYPE (binfo), type);
2005 if (BINFO_PRIMARY_P (binfo))
2006 return NULL_TREE;
2009 return binfo;
2012 /* A queue function to use with dfs_walk that prevents travel into any
2013 nonprimary virtual base, or its baseclasses. DATA should be the
2014 type of the complete object, or a TREE_LIST whose TREE_PURPOSE is
2015 the type of the complete object. By using this function as a queue
2016 function, you will walk over exactly those BINFOs that actually
2017 exist in the complete object, including those for virtual base
2018 classes. If you SET_BINFO_MARKED for each binfo you process, you
2019 are further guaranteed that you will walk into each virtual base
2020 class exactly once. */
2022 tree
2023 dfs_unmarked_real_bases_queue_p (binfo, data)
2024 tree binfo;
2025 void *data;
2027 binfo = get_shared_vbase_if_not_primary (binfo, data);
2028 return binfo ? unmarkedp (binfo, NULL) : NULL_TREE;
2031 /* Like dfs_unmarked_real_bases_queue_p but walks only into things
2032 that are marked, rather than unmarked. */
2034 tree
2035 dfs_marked_real_bases_queue_p (binfo, data)
2036 tree binfo;
2037 void *data;
2039 binfo = get_shared_vbase_if_not_primary (binfo, data);
2040 return binfo ? markedp (binfo, NULL) : NULL_TREE;
2043 /* A queue function that skips all virtual bases (and their
2044 bases). */
2046 tree
2047 dfs_skip_vbases (binfo, data)
2048 tree binfo;
2049 void *data ATTRIBUTE_UNUSED;
2051 if (TREE_VIA_VIRTUAL (binfo))
2052 return NULL_TREE;
2054 return binfo;
2057 /* Called via dfs_walk from dfs_get_pure_virtuals. */
2059 static tree
2060 dfs_get_pure_virtuals (binfo, data)
2061 tree binfo;
2062 void *data;
2064 tree type = (tree) data;
2066 /* We're not interested in primary base classes; the derived class
2067 of which they are a primary base will contain the information we
2068 need. */
2069 if (!BINFO_PRIMARY_P (binfo))
2071 tree virtuals;
2073 for (virtuals = BINFO_VIRTUALS (binfo);
2074 virtuals;
2075 virtuals = TREE_CHAIN (virtuals))
2076 if (DECL_PURE_VIRTUAL_P (BV_FN (virtuals)))
2077 CLASSTYPE_PURE_VIRTUALS (type)
2078 = tree_cons (NULL_TREE, BV_FN (virtuals),
2079 CLASSTYPE_PURE_VIRTUALS (type));
2082 SET_BINFO_MARKED (binfo);
2084 return NULL_TREE;
2087 /* Set CLASSTYPE_PURE_VIRTUALS for TYPE. */
2089 void
2090 get_pure_virtuals (type)
2091 tree type;
2093 tree vbases;
2095 /* Clear the CLASSTYPE_PURE_VIRTUALS list; whatever is already there
2096 is going to be overridden. */
2097 CLASSTYPE_PURE_VIRTUALS (type) = NULL_TREE;
2098 /* Now, run through all the bases which are not primary bases, and
2099 collect the pure virtual functions. We look at the vtable in
2100 each class to determine what pure virtual functions are present.
2101 (A primary base is not interesting because the derived class of
2102 which it is a primary base will contain vtable entries for the
2103 pure virtuals in the base class. */
2104 dfs_walk (TYPE_BINFO (type), dfs_get_pure_virtuals,
2105 dfs_unmarked_real_bases_queue_p, type);
2106 dfs_walk (TYPE_BINFO (type), dfs_unmark,
2107 dfs_marked_real_bases_queue_p, type);
2109 /* Put the pure virtuals in dfs order. */
2110 CLASSTYPE_PURE_VIRTUALS (type) = nreverse (CLASSTYPE_PURE_VIRTUALS (type));
2112 for (vbases = CLASSTYPE_VBASECLASSES (type);
2113 vbases;
2114 vbases = TREE_CHAIN (vbases))
2116 tree virtuals;
2118 for (virtuals = BINFO_VIRTUALS (TREE_VALUE (vbases));
2119 virtuals;
2120 virtuals = TREE_CHAIN (virtuals))
2122 tree base_fndecl = BV_FN (virtuals);
2123 if (DECL_NEEDS_FINAL_OVERRIDER_P (base_fndecl))
2124 error ("`%#D' needs a final overrider", base_fndecl);
2129 /* DEPTH-FIRST SEARCH ROUTINES. */
2131 tree
2132 markedp (binfo, data)
2133 tree binfo;
2134 void *data ATTRIBUTE_UNUSED;
2136 return BINFO_MARKED (binfo) ? binfo : NULL_TREE;
2139 tree
2140 unmarkedp (binfo, data)
2141 tree binfo;
2142 void *data ATTRIBUTE_UNUSED;
2144 return !BINFO_MARKED (binfo) ? binfo : NULL_TREE;
2147 tree
2148 marked_vtable_pathp (binfo, data)
2149 tree binfo;
2150 void *data ATTRIBUTE_UNUSED;
2152 return BINFO_VTABLE_PATH_MARKED (binfo) ? binfo : NULL_TREE;
2155 tree
2156 unmarked_vtable_pathp (binfo, data)
2157 tree binfo;
2158 void *data ATTRIBUTE_UNUSED;
2160 return !BINFO_VTABLE_PATH_MARKED (binfo) ? binfo : NULL_TREE;
2163 static tree
2164 marked_pushdecls_p (binfo, data)
2165 tree binfo;
2166 void *data ATTRIBUTE_UNUSED;
2168 return (CLASS_TYPE_P (BINFO_TYPE (binfo))
2169 && BINFO_PUSHDECLS_MARKED (binfo)) ? binfo : NULL_TREE;
2172 static tree
2173 unmarked_pushdecls_p (binfo, data)
2174 tree binfo;
2175 void *data ATTRIBUTE_UNUSED;
2177 return (CLASS_TYPE_P (BINFO_TYPE (binfo))
2178 && !BINFO_PUSHDECLS_MARKED (binfo)) ? binfo : NULL_TREE;
2181 /* The worker functions for `dfs_walk'. These do not need to
2182 test anything (vis a vis marking) if they are paired with
2183 a predicate function (above). */
2185 tree
2186 dfs_unmark (binfo, data)
2187 tree binfo;
2188 void *data ATTRIBUTE_UNUSED;
2190 CLEAR_BINFO_MARKED (binfo);
2191 return NULL_TREE;
2194 /* get virtual base class types.
2195 This adds type to the vbase_types list in reverse dfs order.
2196 Ordering is very important, so don't change it. */
2198 static tree
2199 dfs_get_vbase_types (binfo, data)
2200 tree binfo;
2201 void *data;
2203 tree type = (tree) data;
2205 if (TREE_VIA_VIRTUAL (binfo))
2206 CLASSTYPE_VBASECLASSES (type)
2207 = tree_cons (BINFO_TYPE (binfo),
2208 binfo,
2209 CLASSTYPE_VBASECLASSES (type));
2210 SET_BINFO_MARKED (binfo);
2211 return NULL_TREE;
2214 /* Called via dfs_walk from mark_primary_bases. Builds the
2215 inheritance graph order list of BINFOs. */
2217 static tree
2218 dfs_build_inheritance_graph_order (binfo, data)
2219 tree binfo;
2220 void *data;
2222 tree *last_binfo = (tree *) data;
2224 if (*last_binfo)
2225 TREE_CHAIN (*last_binfo) = binfo;
2226 *last_binfo = binfo;
2227 SET_BINFO_MARKED (binfo);
2228 return NULL_TREE;
2231 /* Set CLASSTYPE_VBASECLASSES for TYPE. */
2233 void
2234 get_vbase_types (type)
2235 tree type;
2237 tree last_binfo;
2239 CLASSTYPE_VBASECLASSES (type) = NULL_TREE;
2240 dfs_walk (TYPE_BINFO (type), dfs_get_vbase_types, unmarkedp, type);
2241 /* Rely upon the reverse dfs ordering from dfs_get_vbase_types, and now
2242 reverse it so that we get normal dfs ordering. */
2243 CLASSTYPE_VBASECLASSES (type) = nreverse (CLASSTYPE_VBASECLASSES (type));
2244 dfs_walk (TYPE_BINFO (type), dfs_unmark, markedp, 0);
2245 /* Thread the BINFOs in inheritance-graph order. */
2246 last_binfo = NULL;
2247 dfs_walk_real (TYPE_BINFO (type),
2248 dfs_build_inheritance_graph_order,
2249 NULL,
2250 unmarkedp,
2251 &last_binfo);
2252 dfs_walk (TYPE_BINFO (type), dfs_unmark, markedp, NULL);
2255 /* Called from find_vbase_instance via dfs_walk. */
2257 static tree
2258 dfs_find_vbase_instance (binfo, data)
2259 tree binfo;
2260 void *data;
2262 tree base = TREE_VALUE ((tree) data);
2264 if (BINFO_PRIMARY_P (binfo)
2265 && same_type_p (BINFO_TYPE (binfo), base))
2266 return binfo;
2268 return NULL_TREE;
2271 /* Find the real occurrence of the virtual BASE (a class type) in the
2272 hierarchy dominated by TYPE. */
2274 tree
2275 find_vbase_instance (base, type)
2276 tree base;
2277 tree type;
2279 tree instance;
2281 instance = binfo_for_vbase (base, type);
2282 if (!BINFO_PRIMARY_P (instance))
2283 return instance;
2285 return dfs_walk (TYPE_BINFO (type),
2286 dfs_find_vbase_instance,
2287 NULL,
2288 build_tree_list (type, base));
2292 /* Debug info for C++ classes can get very large; try to avoid
2293 emitting it everywhere.
2295 Note that this optimization wins even when the target supports
2296 BINCL (if only slightly), and reduces the amount of work for the
2297 linker. */
2299 void
2300 maybe_suppress_debug_info (t)
2301 tree t;
2303 /* We can't do the usual TYPE_DECL_SUPPRESS_DEBUG thing with DWARF, which
2304 does not support name references between translation units. It supports
2305 symbolic references between translation units, but only within a single
2306 executable or shared library.
2308 For DWARF 2, we handle TYPE_DECL_SUPPRESS_DEBUG by pretending
2309 that the type was never defined, so we only get the members we
2310 actually define. */
2311 if (write_symbols == DWARF_DEBUG || write_symbols == NO_DEBUG)
2312 return;
2314 /* We might have set this earlier in cp_finish_decl. */
2315 TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 0;
2317 /* If we already know how we're handling this class, handle debug info
2318 the same way. */
2319 if (CLASSTYPE_INTERFACE_KNOWN (t))
2321 if (CLASSTYPE_INTERFACE_ONLY (t))
2322 TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 1;
2323 /* else don't set it. */
2325 /* If the class has a vtable, write out the debug info along with
2326 the vtable. */
2327 else if (TYPE_CONTAINS_VPTR_P (t))
2328 TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 1;
2330 /* Otherwise, just emit the debug info normally. */
2333 /* Note that we want debugging information for a base class of a class
2334 whose vtable is being emitted. Normally, this would happen because
2335 calling the constructor for a derived class implies calling the
2336 constructors for all bases, which involve initializing the
2337 appropriate vptr with the vtable for the base class; but in the
2338 presence of optimization, this initialization may be optimized
2339 away, so we tell finish_vtable_vardecl that we want the debugging
2340 information anyway. */
2342 static tree
2343 dfs_debug_mark (binfo, data)
2344 tree binfo;
2345 void *data ATTRIBUTE_UNUSED;
2347 tree t = BINFO_TYPE (binfo);
2349 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
2351 return NULL_TREE;
2354 /* Returns BINFO if we haven't already noted that we want debugging
2355 info for this base class. */
2357 static tree
2358 dfs_debug_unmarkedp (binfo, data)
2359 tree binfo;
2360 void *data ATTRIBUTE_UNUSED;
2362 return (!CLASSTYPE_DEBUG_REQUESTED (BINFO_TYPE (binfo))
2363 ? binfo : NULL_TREE);
2366 /* Write out the debugging information for TYPE, whose vtable is being
2367 emitted. Also walk through our bases and note that we want to
2368 write out information for them. This avoids the problem of not
2369 writing any debug info for intermediate basetypes whose
2370 constructors, and thus the references to their vtables, and thus
2371 the vtables themselves, were optimized away. */
2373 void
2374 note_debug_info_needed (type)
2375 tree type;
2377 if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)))
2379 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)) = 0;
2380 rest_of_type_compilation (type, toplevel_bindings_p ());
2383 dfs_walk (TYPE_BINFO (type), dfs_debug_mark, dfs_debug_unmarkedp, 0);
2386 /* Subroutines of push_class_decls (). */
2388 /* Returns 1 iff BINFO is a base we shouldn't really be able to see into,
2389 because it (or one of the intermediate bases) depends on template parms. */
2391 static int
2392 dependent_base_p (binfo)
2393 tree binfo;
2395 for (; binfo; binfo = BINFO_INHERITANCE_CHAIN (binfo))
2397 if (currently_open_class (TREE_TYPE (binfo)))
2398 break;
2399 if (uses_template_parms (TREE_TYPE (binfo)))
2400 return 1;
2402 return 0;
2405 static void
2406 setup_class_bindings (name, type_binding_p)
2407 tree name;
2408 int type_binding_p;
2410 tree type_binding = NULL_TREE;
2411 tree value_binding;
2413 /* If we've already done the lookup for this declaration, we're
2414 done. */
2415 if (IDENTIFIER_CLASS_VALUE (name))
2416 return;
2418 /* First, deal with the type binding. */
2419 if (type_binding_p)
2421 type_binding = lookup_member (current_class_type, name,
2422 /*protect=*/2,
2423 /*want_type=*/1);
2424 if (TREE_CODE (type_binding) == TREE_LIST
2425 && TREE_TYPE (type_binding) == error_mark_node)
2426 /* NAME is ambiguous. */
2427 push_class_level_binding (name, type_binding);
2428 else
2429 pushdecl_class_level (type_binding);
2432 /* Now, do the value binding. */
2433 value_binding = lookup_member (current_class_type, name,
2434 /*protect=*/2,
2435 /*want_type=*/0);
2437 if (type_binding_p
2438 && (TREE_CODE (value_binding) == TYPE_DECL
2439 || (TREE_CODE (value_binding) == TREE_LIST
2440 && TREE_TYPE (value_binding) == error_mark_node
2441 && (TREE_CODE (TREE_VALUE (value_binding))
2442 == TYPE_DECL))))
2443 /* We found a type-binding, even when looking for a non-type
2444 binding. This means that we already processed this binding
2445 above. */
2446 my_friendly_assert (type_binding_p, 19990401);
2447 else if (value_binding)
2449 if (TREE_CODE (value_binding) == TREE_LIST
2450 && TREE_TYPE (value_binding) == error_mark_node)
2451 /* NAME is ambiguous. */
2452 push_class_level_binding (name, value_binding);
2453 else
2455 if (BASELINK_P (value_binding))
2456 /* NAME is some overloaded functions. */
2457 value_binding = TREE_VALUE (value_binding);
2458 pushdecl_class_level (value_binding);
2463 /* Push class-level declarations for any names appearing in BINFO that
2464 are TYPE_DECLS. */
2466 static tree
2467 dfs_push_type_decls (binfo, data)
2468 tree binfo;
2469 void *data ATTRIBUTE_UNUSED;
2471 tree type;
2472 tree fields;
2474 type = BINFO_TYPE (binfo);
2475 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
2476 if (DECL_NAME (fields) && TREE_CODE (fields) == TYPE_DECL
2477 && !(!same_type_p (type, current_class_type)
2478 && template_self_reference_p (type, fields)))
2479 setup_class_bindings (DECL_NAME (fields), /*type_binding_p=*/1);
2481 /* We can't just use BINFO_MARKED because envelope_add_decl uses
2482 DERIVED_FROM_P, which calls get_base_distance. */
2483 SET_BINFO_PUSHDECLS_MARKED (binfo);
2485 return NULL_TREE;
2488 /* Push class-level declarations for any names appearing in BINFO that
2489 are not TYPE_DECLS. */
2491 static tree
2492 dfs_push_decls (binfo, data)
2493 tree binfo;
2494 void *data;
2496 tree type;
2497 tree method_vec;
2498 int dep_base_p;
2500 type = BINFO_TYPE (binfo);
2501 dep_base_p = (processing_template_decl && type != current_class_type
2502 && dependent_base_p (binfo));
2503 if (!dep_base_p)
2505 tree fields;
2506 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
2507 if (DECL_NAME (fields)
2508 && TREE_CODE (fields) != TYPE_DECL
2509 && TREE_CODE (fields) != USING_DECL)
2510 setup_class_bindings (DECL_NAME (fields), /*type_binding_p=*/0);
2511 else if (TREE_CODE (fields) == FIELD_DECL
2512 && ANON_AGGR_TYPE_P (TREE_TYPE (fields)))
2513 dfs_push_decls (TYPE_BINFO (TREE_TYPE (fields)), data);
2515 method_vec = (CLASS_TYPE_P (type)
2516 ? CLASSTYPE_METHOD_VEC (type) : NULL_TREE);
2517 if (method_vec)
2519 tree *methods;
2520 tree *end;
2522 /* Farm out constructors and destructors. */
2523 end = TREE_VEC_END (method_vec);
2525 for (methods = &TREE_VEC_ELT (method_vec, 2);
2526 *methods && methods != end;
2527 methods++)
2528 setup_class_bindings (DECL_NAME (OVL_CURRENT (*methods)),
2529 /*type_binding_p=*/0);
2533 CLEAR_BINFO_PUSHDECLS_MARKED (binfo);
2535 return NULL_TREE;
2538 /* When entering the scope of a class, we cache all of the
2539 fields that that class provides within its inheritance
2540 lattice. Where ambiguities result, we mark them
2541 with `error_mark_node' so that if they are encountered
2542 without explicit qualification, we can emit an error
2543 message. */
2545 void
2546 push_class_decls (type)
2547 tree type;
2549 search_stack = push_search_level (search_stack, &search_obstack);
2551 /* Enter type declarations and mark. */
2552 dfs_walk (TYPE_BINFO (type), dfs_push_type_decls, unmarked_pushdecls_p, 0);
2554 /* Enter non-type declarations and unmark. */
2555 dfs_walk (TYPE_BINFO (type), dfs_push_decls, marked_pushdecls_p, 0);
2558 /* Here's a subroutine we need because C lacks lambdas. */
2560 static tree
2561 dfs_unuse_fields (binfo, data)
2562 tree binfo;
2563 void *data ATTRIBUTE_UNUSED;
2565 tree type = TREE_TYPE (binfo);
2566 tree fields;
2568 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
2570 if (TREE_CODE (fields) != FIELD_DECL)
2571 continue;
2573 TREE_USED (fields) = 0;
2574 if (DECL_NAME (fields) == NULL_TREE
2575 && ANON_AGGR_TYPE_P (TREE_TYPE (fields)))
2576 unuse_fields (TREE_TYPE (fields));
2579 return NULL_TREE;
2582 void
2583 unuse_fields (type)
2584 tree type;
2586 dfs_walk (TYPE_BINFO (type), dfs_unuse_fields, unmarkedp, 0);
2589 void
2590 pop_class_decls ()
2592 /* We haven't pushed a search level when dealing with cached classes,
2593 so we'd better not try to pop it. */
2594 if (search_stack)
2595 search_stack = pop_search_level (search_stack);
2598 void
2599 print_search_statistics ()
2601 #ifdef GATHER_STATISTICS
2602 fprintf (stderr, "%d fields searched in %d[%d] calls to lookup_field[_1]\n",
2603 n_fields_searched, n_calls_lookup_field, n_calls_lookup_field_1);
2604 fprintf (stderr, "%d fnfields searched in %d calls to lookup_fnfields\n",
2605 n_outer_fields_searched, n_calls_lookup_fnfields);
2606 fprintf (stderr, "%d calls to get_base_type\n", n_calls_get_base_type);
2607 #else /* GATHER_STATISTICS */
2608 fprintf (stderr, "no search statistics\n");
2609 #endif /* GATHER_STATISTICS */
2612 void
2613 init_search_processing ()
2615 gcc_obstack_init (&search_obstack);
2618 void
2619 reinit_search_statistics ()
2621 #ifdef GATHER_STATISTICS
2622 n_fields_searched = 0;
2623 n_calls_lookup_field = 0, n_calls_lookup_field_1 = 0;
2624 n_calls_lookup_fnfields = 0, n_calls_lookup_fnfields_1 = 0;
2625 n_calls_get_base_type = 0;
2626 n_outer_fields_searched = 0;
2627 n_contexts_saved = 0;
2628 #endif /* GATHER_STATISTICS */
2631 static tree
2632 add_conversions (binfo, data)
2633 tree binfo;
2634 void *data;
2636 int i;
2637 tree method_vec = CLASSTYPE_METHOD_VEC (BINFO_TYPE (binfo));
2638 tree *conversions = (tree *) data;
2640 /* Some builtin types have no method vector, not even an empty one. */
2641 if (!method_vec)
2642 return NULL_TREE;
2644 for (i = 2; i < TREE_VEC_LENGTH (method_vec); ++i)
2646 tree tmp = TREE_VEC_ELT (method_vec, i);
2647 tree name;
2649 if (!tmp || ! DECL_CONV_FN_P (OVL_CURRENT (tmp)))
2650 break;
2652 name = DECL_NAME (OVL_CURRENT (tmp));
2654 /* Make sure we don't already have this conversion. */
2655 if (! IDENTIFIER_MARKED (name))
2657 *conversions = tree_cons (binfo, tmp, *conversions);
2658 IDENTIFIER_MARKED (name) = 1;
2661 return NULL_TREE;
2664 /* Return a TREE_LIST containing all the non-hidden user-defined
2665 conversion functions for TYPE (and its base-classes). The
2666 TREE_VALUE of each node is a FUNCTION_DECL or an OVERLOAD
2667 containing the conversion functions. The TREE_PURPOSE is the BINFO
2668 from which the conversion functions in this node were selected. */
2670 tree
2671 lookup_conversions (type)
2672 tree type;
2674 tree t;
2675 tree conversions = NULL_TREE;
2677 if (COMPLETE_TYPE_P (type))
2678 bfs_walk (TYPE_BINFO (type), add_conversions, 0, &conversions);
2680 for (t = conversions; t; t = TREE_CHAIN (t))
2681 IDENTIFIER_MARKED (DECL_NAME (OVL_CURRENT (TREE_VALUE (t)))) = 0;
2683 return conversions;
2686 struct overlap_info
2688 tree compare_type;
2689 int found_overlap;
2692 /* Check whether the empty class indicated by EMPTY_BINFO is also present
2693 at offset 0 in COMPARE_TYPE, and set found_overlap if so. */
2695 static tree
2696 dfs_check_overlap (empty_binfo, data)
2697 tree empty_binfo;
2698 void *data;
2700 struct overlap_info *oi = (struct overlap_info *) data;
2701 tree binfo;
2702 for (binfo = TYPE_BINFO (oi->compare_type);
2704 binfo = BINFO_BASETYPE (binfo, 0))
2706 if (BINFO_TYPE (binfo) == BINFO_TYPE (empty_binfo))
2708 oi->found_overlap = 1;
2709 break;
2711 else if (BINFO_BASETYPES (binfo) == NULL_TREE)
2712 break;
2715 return NULL_TREE;
2718 /* Trivial function to stop base traversal when we find something. */
2720 static tree
2721 dfs_no_overlap_yet (binfo, data)
2722 tree binfo;
2723 void *data;
2725 struct overlap_info *oi = (struct overlap_info *) data;
2726 return !oi->found_overlap ? binfo : NULL_TREE;
2729 /* Returns nonzero if EMPTY_TYPE or any of its bases can also be found at
2730 offset 0 in NEXT_TYPE. Used in laying out empty base class subobjects. */
2733 types_overlap_p (empty_type, next_type)
2734 tree empty_type, next_type;
2736 struct overlap_info oi;
2738 if (! IS_AGGR_TYPE (next_type))
2739 return 0;
2740 oi.compare_type = next_type;
2741 oi.found_overlap = 0;
2742 dfs_walk (TYPE_BINFO (empty_type), dfs_check_overlap,
2743 dfs_no_overlap_yet, &oi);
2744 return oi.found_overlap;
2747 /* Given a vtable VAR, determine which of the inherited classes the vtable
2748 inherits (in a loose sense) functions from.
2750 FIXME: This does not work with the new ABI. */
2752 tree
2753 binfo_for_vtable (var)
2754 tree var;
2756 tree main_binfo = TYPE_BINFO (DECL_CONTEXT (var));
2757 tree binfos = TYPE_BINFO_BASETYPES (BINFO_TYPE (main_binfo));
2758 int n_baseclasses = CLASSTYPE_N_BASECLASSES (BINFO_TYPE (main_binfo));
2759 int i;
2761 for (i = 0; i < n_baseclasses; i++)
2763 tree base_binfo = TREE_VEC_ELT (binfos, i);
2764 if (base_binfo != NULL_TREE && BINFO_VTABLE (base_binfo) == var)
2765 return base_binfo;
2768 /* If no secondary base classes matched, return the primary base, if
2769 there is one. */
2770 if (CLASSTYPE_HAS_PRIMARY_BASE_P (BINFO_TYPE (main_binfo)))
2771 return get_primary_binfo (main_binfo);
2773 return main_binfo;
2776 /* Returns the binfo of the first direct or indirect virtual base derived
2777 from BINFO, or NULL if binfo is not via virtual. */
2779 tree
2780 binfo_from_vbase (binfo)
2781 tree binfo;
2783 for (; binfo; binfo = BINFO_INHERITANCE_CHAIN (binfo))
2785 if (TREE_VIA_VIRTUAL (binfo))
2786 return binfo;
2788 return NULL_TREE;
2791 /* Returns the binfo of the first direct or indirect virtual base derived
2792 from BINFO up to the TREE_TYPE, LIMIT, or NULL if binfo is not
2793 via virtual. */
2795 tree
2796 binfo_via_virtual (binfo, limit)
2797 tree binfo;
2798 tree limit;
2800 for (; binfo && (!limit || !same_type_p (BINFO_TYPE (binfo), limit));
2801 binfo = BINFO_INHERITANCE_CHAIN (binfo))
2803 if (TREE_VIA_VIRTUAL (binfo))
2804 return binfo;
2806 return NULL_TREE;
2809 /* Returns the BINFO (if any) for the virtual baseclass T of the class
2810 C from the CLASSTYPE_VBASECLASSES list. */
2812 tree
2813 binfo_for_vbase (basetype, classtype)
2814 tree basetype;
2815 tree classtype;
2817 tree binfo;
2819 binfo = purpose_member (basetype, CLASSTYPE_VBASECLASSES (classtype));
2820 return binfo ? TREE_VALUE (binfo) : NULL_TREE;