OSDN Git Service

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