OSDN Git Service

PR c++/9252
[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)
1121         {
1122           nval = purpose_member (lfi->name, CLASSTYPE_TAGS (type));
1123           if (nval)
1124             nval = TYPE_MAIN_DECL (TREE_VALUE (nval));
1125           else 
1126             return NULL_TREE;
1127         }
1128     }
1129
1130   /* You must name a template base class with a template-id.  */
1131   if (!same_type_p (type, lfi->type) 
1132       && template_self_reference_p (type, nval))
1133     return NULL_TREE;
1134
1135   /* If the lookup already found a match, and the new value doesn't
1136      hide the old one, we might have an ambiguity.  */
1137   if (lfi->rval_binfo && !original_binfo (lfi->rval_binfo, binfo))
1138     {
1139       if (nval == lfi->rval && shared_member_p (nval))
1140         /* The two things are really the same.  */
1141         ;
1142       else if (original_binfo (binfo, lfi->rval_binfo))
1143         /* The previous value hides the new one.  */
1144         ;
1145       else
1146         {
1147           /* We have a real ambiguity.  We keep a chain of all the
1148              candidates.  */
1149           if (!lfi->ambiguous && lfi->rval)
1150             {
1151               /* This is the first time we noticed an ambiguity.  Add
1152                  what we previously thought was a reasonable candidate
1153                  to the list.  */
1154               lfi->ambiguous = tree_cons (NULL_TREE, lfi->rval, NULL_TREE);
1155               TREE_TYPE (lfi->ambiguous) = error_mark_node;
1156             }
1157
1158           /* Add the new value.  */
1159           lfi->ambiguous = tree_cons (NULL_TREE, nval, lfi->ambiguous);
1160           TREE_TYPE (lfi->ambiguous) = error_mark_node;
1161           lfi->errstr = "request for member `%D' is ambiguous";
1162         }
1163     }
1164   else
1165     {
1166       lfi->rval = nval;
1167       lfi->rval_binfo = binfo;
1168     }
1169
1170   return NULL_TREE;
1171 }
1172
1173 /* Return a "baselink" which BASELINK_BINFO, BASELINK_ACCESS_BINFO,
1174    BASELINK_FUNCTIONS, and BASELINK_OPTYPE set to BINFO, ACCESS_BINFO,
1175    FUNCTIONS, and OPTYPE respectively.  */
1176
1177 tree
1178 build_baselink (tree binfo, tree access_binfo, tree functions, tree optype)
1179 {
1180   tree baselink;
1181
1182   my_friendly_assert (TREE_CODE (functions) == FUNCTION_DECL
1183                       || TREE_CODE (functions) == TEMPLATE_DECL
1184                       || TREE_CODE (functions) == TEMPLATE_ID_EXPR
1185                       || TREE_CODE (functions) == OVERLOAD,
1186                       20020730);
1187   my_friendly_assert (!optype || TYPE_P (optype), 20020730);
1188   my_friendly_assert (TREE_TYPE (functions), 20020805);
1189
1190   baselink = make_node (BASELINK);
1191   TREE_TYPE (baselink) = TREE_TYPE (functions);
1192   BASELINK_BINFO (baselink) = binfo;
1193   BASELINK_ACCESS_BINFO (baselink) = access_binfo;
1194   BASELINK_FUNCTIONS (baselink) = functions;
1195   BASELINK_OPTYPE (baselink) = optype;
1196
1197   return baselink;
1198 }
1199
1200 /* Look for a member named NAME in an inheritance lattice dominated by
1201    XBASETYPE.  If PROTECT is 0 or two, we do not check access.  If it
1202    is 1, we enforce accessibility.  If PROTECT is zero, then, for an
1203    ambiguous lookup, we return NULL.  If PROTECT is 1, we issue error
1204    messages about inaccessible or ambiguous lookup.  If PROTECT is 2,
1205    we return a TREE_LIST whose TREE_TYPE is error_mark_node and whose
1206    TREE_VALUEs are the list of ambiguous candidates.
1207
1208    WANT_TYPE is 1 when we should only return TYPE_DECLs.
1209
1210    If nothing can be found return NULL_TREE and do not issue an error.  */
1211
1212 tree
1213 lookup_member (tree xbasetype, tree name, int protect, bool want_type)
1214 {
1215   tree rval, rval_binfo = NULL_TREE;
1216   tree type = NULL_TREE, basetype_path = NULL_TREE;
1217   struct lookup_field_info lfi;
1218
1219   /* rval_binfo is the binfo associated with the found member, note,
1220      this can be set with useful information, even when rval is not
1221      set, because it must deal with ALL members, not just non-function
1222      members.  It is used for ambiguity checking and the hidden
1223      checks.  Whereas rval is only set if a proper (not hidden)
1224      non-function member is found.  */
1225
1226   const char *errstr = 0;
1227
1228   /* Sanity check.  */
1229   if (TREE_CODE (name) != IDENTIFIER_NODE)
1230     abort ();
1231
1232   if (xbasetype == current_class_type && TYPE_BEING_DEFINED (xbasetype)
1233       && IDENTIFIER_CLASS_VALUE (name))
1234     {
1235       tree field = IDENTIFIER_CLASS_VALUE (name);
1236       if (! is_overloaded_fn (field)
1237           && ! (want_type && TREE_CODE (field) != TYPE_DECL))
1238         /* We're in the scope of this class, and the value has already
1239            been looked up.  Just return the cached value.  */
1240         return field;
1241     }
1242
1243   if (TREE_CODE (xbasetype) == TREE_VEC)
1244     {
1245       type = BINFO_TYPE (xbasetype);
1246       basetype_path = xbasetype;
1247     }
1248   else if (IS_AGGR_TYPE_CODE (TREE_CODE (xbasetype)))
1249     {
1250       type = xbasetype;
1251       basetype_path = TYPE_BINFO (type);
1252       my_friendly_assert (BINFO_INHERITANCE_CHAIN (basetype_path) == NULL_TREE,
1253                           980827);
1254     }
1255   else
1256     abort ();
1257
1258   complete_type (type);
1259
1260 #ifdef GATHER_STATISTICS
1261   n_calls_lookup_field++;
1262 #endif /* GATHER_STATISTICS */
1263
1264   memset ((PTR) &lfi, 0, sizeof (lfi));
1265   lfi.type = type;
1266   lfi.name = name;
1267   lfi.want_type = want_type;
1268   bfs_walk (basetype_path, &lookup_field_r, &lookup_field_queue_p, &lfi);
1269   rval = lfi.rval;
1270   rval_binfo = lfi.rval_binfo;
1271   if (rval_binfo)
1272     type = BINFO_TYPE (rval_binfo);
1273   errstr = lfi.errstr;
1274
1275   /* If we are not interested in ambiguities, don't report them;
1276      just return NULL_TREE.  */
1277   if (!protect && lfi.ambiguous)
1278     return NULL_TREE;
1279   
1280   if (protect == 2) 
1281     {
1282       if (lfi.ambiguous)
1283         return lfi.ambiguous;
1284       else
1285         protect = 0;
1286     }
1287
1288   /* [class.access]
1289
1290      In the case of overloaded function names, access control is
1291      applied to the function selected by overloaded resolution.  */
1292   if (rval && protect && !is_overloaded_fn (rval))
1293     perform_or_defer_access_check (xbasetype, rval);
1294
1295   if (errstr && protect)
1296     {
1297       error (errstr, name, type);
1298       if (lfi.ambiguous)
1299         print_candidates (lfi.ambiguous);
1300       rval = error_mark_node;
1301     }
1302
1303   if (rval && is_overloaded_fn (rval)) 
1304     rval = build_baselink (rval_binfo, basetype_path, rval,
1305                            (IDENTIFIER_TYPENAME_P (name)
1306                            ? TREE_TYPE (name): NULL_TREE));
1307   return rval;
1308 }
1309
1310 /* Like lookup_member, except that if we find a function member we
1311    return NULL_TREE.  */
1312
1313 tree
1314 lookup_field (tree xbasetype, tree name, int protect, bool want_type)
1315 {
1316   tree rval = lookup_member (xbasetype, name, protect, want_type);
1317   
1318   /* Ignore functions.  */
1319   if (rval && BASELINK_P (rval))
1320     return NULL_TREE;
1321
1322   return rval;
1323 }
1324
1325 /* Like lookup_member, except that if we find a non-function member we
1326    return NULL_TREE.  */
1327
1328 tree
1329 lookup_fnfields (tree xbasetype, tree name, int protect)
1330 {
1331   tree rval = lookup_member (xbasetype, name, protect, /*want_type=*/false);
1332
1333   /* Ignore non-functions.  */
1334   if (rval && !BASELINK_P (rval))
1335     return NULL_TREE;
1336
1337   return rval;
1338 }
1339
1340 /* TYPE is a class type. Return the index of the fields within
1341    the method vector with name NAME, or -1 is no such field exists.  */
1342
1343 int
1344 lookup_fnfields_1 (tree type, tree name)
1345 {
1346   tree method_vec = (CLASS_TYPE_P (type)
1347                      ? CLASSTYPE_METHOD_VEC (type)
1348                      : NULL_TREE);
1349
1350   if (method_vec != 0)
1351     {
1352       register int i;
1353       register tree *methods = &TREE_VEC_ELT (method_vec, 0);
1354       int len = TREE_VEC_LENGTH (method_vec);
1355       tree tmp;
1356
1357 #ifdef GATHER_STATISTICS
1358       n_calls_lookup_fnfields_1++;
1359 #endif /* GATHER_STATISTICS */
1360
1361       /* Constructors are first...  */
1362       if (name == ctor_identifier)
1363         return (methods[CLASSTYPE_CONSTRUCTOR_SLOT] 
1364                 ? CLASSTYPE_CONSTRUCTOR_SLOT : -1);
1365       /* and destructors are second.  */
1366       if (name == dtor_identifier)
1367         return (methods[CLASSTYPE_DESTRUCTOR_SLOT]
1368                 ? CLASSTYPE_DESTRUCTOR_SLOT : -1);
1369
1370       for (i = CLASSTYPE_FIRST_CONVERSION_SLOT; 
1371            i < len && methods[i]; 
1372            ++i)
1373         {
1374 #ifdef GATHER_STATISTICS
1375           n_outer_fields_searched++;
1376 #endif /* GATHER_STATISTICS */
1377
1378           tmp = OVL_CURRENT (methods[i]);
1379           if (DECL_NAME (tmp) == name)
1380             return i;
1381
1382           /* If the type is complete and we're past the conversion ops,
1383              switch to binary search.  */
1384           if (! DECL_CONV_FN_P (tmp)
1385               && COMPLETE_TYPE_P (type))
1386             {
1387               int lo = i + 1, hi = len;
1388
1389               while (lo < hi)
1390                 {
1391                   i = (lo + hi) / 2;
1392
1393 #ifdef GATHER_STATISTICS
1394                   n_outer_fields_searched++;
1395 #endif /* GATHER_STATISTICS */
1396
1397                   tmp = methods[i];
1398                   /* This slot may be empty; we allocate more slots
1399                      than we need.  In that case, the entry we're
1400                      looking for is closer to the beginning of the
1401                      list. */
1402                   if (tmp)
1403                     tmp = DECL_NAME (OVL_CURRENT (tmp));
1404                   if (!tmp || tmp > name)
1405                     hi = i;
1406                   else if (tmp < name)
1407                     lo = i + 1;
1408                   else
1409                     return i;
1410                 }
1411               break;
1412             }
1413         }
1414
1415       /* If we didn't find it, it might have been a template
1416          conversion operator to a templated type.  If there are any,
1417          such template conversion operators will all be overloaded on
1418          the first conversion slot.  (Note that we don't look for this
1419          case above so that we will always find specializations
1420          first.)  */
1421       if (IDENTIFIER_TYPENAME_P (name)) 
1422         {
1423           i = CLASSTYPE_FIRST_CONVERSION_SLOT;
1424           if (i < len && methods[i])
1425             {
1426               tmp = OVL_CURRENT (methods[i]);
1427               if (TREE_CODE (tmp) == TEMPLATE_DECL
1428                   && DECL_TEMPLATE_CONV_FN_P (tmp))
1429                 return i;
1430             }
1431         }
1432     }
1433
1434   return -1;
1435 }
1436
1437 /* DECL is the result of a qualified name lookup.  QUALIFYING_SCOPE is
1438    the class or namespace used to qualify the name.  CONTEXT_CLASS is
1439    the class corresponding to the object in which DECL will be used.
1440    Return a possibly modified version of DECL that takes into account
1441    the CONTEXT_CLASS.
1442
1443    In particular, consider an expression like `B::m' in the context of
1444    a derived class `D'.  If `B::m' has been resolved to a BASELINK,
1445    then the most derived class indicated by the BASELINK_BINFO will be
1446    `B', not `D'.  This function makes that adjustment.  */
1447
1448 tree
1449 adjust_result_of_qualified_name_lookup (tree decl, 
1450                                         tree qualifying_scope,
1451                                         tree context_class)
1452 {
1453   if (context_class && CLASS_TYPE_P (qualifying_scope) 
1454       && DERIVED_FROM_P (qualifying_scope, context_class)
1455       && BASELINK_P (decl))
1456     {
1457       tree base;
1458
1459       my_friendly_assert (CLASS_TYPE_P (context_class), 20020808);
1460
1461       /* Look for the QUALIFYING_SCOPE as a base of the
1462          CONTEXT_CLASS.  If QUALIFYING_SCOPE is ambiguous, we cannot
1463          be sure yet than an error has occurred; perhaps the function
1464          chosen by overload resolution will be static.  */
1465       base = lookup_base (context_class, qualifying_scope,
1466                           ba_ignore | ba_quiet, NULL);
1467       if (base)
1468         {
1469           BASELINK_ACCESS_BINFO (decl) = base;
1470           BASELINK_BINFO (decl) 
1471             = lookup_base (base, BINFO_TYPE (BASELINK_BINFO (decl)),
1472                            ba_ignore | ba_quiet,
1473                            NULL);
1474         }
1475     }
1476
1477   return decl;
1478 }
1479
1480 \f
1481 /* Walk the class hierarchy dominated by TYPE.  FN is called for each
1482    type in the hierarchy, in a breadth-first preorder traversal.
1483    If it ever returns a non-NULL value, that value is immediately
1484    returned and the walk is terminated.  At each node, FN is passed a
1485    BINFO indicating the path from the curently visited base-class to
1486    TYPE.  Before each base-class is walked QFN is called.  If the
1487    value returned is nonzero, the base-class is walked; otherwise it
1488    is not.  If QFN is NULL, it is treated as a function which always
1489    returns 1.  Both FN and QFN are passed the DATA whenever they are
1490    called.
1491
1492    Implementation notes: Uses a circular queue, which starts off on
1493    the stack but gets moved to the malloc arena if it needs to be
1494    enlarged.  The underflow and overflow conditions are
1495    indistinguishable except by context: if head == tail and we just
1496    moved the head pointer, the queue is empty, but if we just moved
1497    the tail pointer, the queue is full.  
1498    Start with enough room for ten concurrent base classes.  That
1499    will be enough for most hierarchies.  */
1500 #define BFS_WALK_INITIAL_QUEUE_SIZE 10
1501
1502 static tree
1503 bfs_walk (tree binfo,
1504           tree (*fn) (tree, void *),
1505           tree (*qfn) (tree, int, void *),
1506           void *data)
1507 {
1508   tree rval = NULL_TREE;
1509
1510   tree bases_initial[BFS_WALK_INITIAL_QUEUE_SIZE];
1511   /* A circular queue of the base classes of BINFO.  These will be
1512      built up in breadth-first order, except where QFN prunes the
1513      search.  */
1514   size_t head, tail;
1515   size_t base_buffer_size = BFS_WALK_INITIAL_QUEUE_SIZE;
1516   tree *base_buffer = bases_initial;
1517
1518   head = tail = 0;
1519   base_buffer[tail++] = binfo;
1520
1521   while (head != tail)
1522     {
1523       int n_bases, ix;
1524       tree binfo = base_buffer[head++];
1525       if (head == base_buffer_size)
1526         head = 0;
1527
1528       /* Is this the one we're looking for?  If so, we're done.  */
1529       rval = fn (binfo, data);
1530       if (rval)
1531         goto done;
1532
1533       n_bases = BINFO_N_BASETYPES (binfo);
1534       for (ix = 0; ix != n_bases; ix++)
1535         {
1536           tree base_binfo;
1537           
1538           if (qfn)
1539             base_binfo = (*qfn) (binfo, ix, data);
1540           else
1541             base_binfo = BINFO_BASETYPE (binfo, ix);
1542           
1543           if (base_binfo)
1544             {
1545               base_buffer[tail++] = base_binfo;
1546               if (tail == base_buffer_size)
1547                 tail = 0;
1548               if (tail == head)
1549                 {
1550                   tree *new_buffer = xmalloc (2 * base_buffer_size
1551                                               * sizeof (tree));
1552                   memcpy (&new_buffer[0], &base_buffer[0],
1553                           tail * sizeof (tree));
1554                   memcpy (&new_buffer[head + base_buffer_size],
1555                           &base_buffer[head],
1556                           (base_buffer_size - head) * sizeof (tree));
1557                   if (base_buffer_size != BFS_WALK_INITIAL_QUEUE_SIZE)
1558                     free (base_buffer);
1559                   base_buffer = new_buffer;
1560                   head += base_buffer_size;
1561                   base_buffer_size *= 2;
1562                 }
1563             }
1564         }
1565     }
1566
1567  done:
1568   if (base_buffer_size != BFS_WALK_INITIAL_QUEUE_SIZE)
1569     free (base_buffer);
1570   return rval;
1571 }
1572
1573 /* Exactly like bfs_walk, except that a depth-first traversal is
1574    performed, and PREFN is called in preorder, while POSTFN is called
1575    in postorder.  */
1576
1577 tree
1578 dfs_walk_real (tree binfo,
1579                tree (*prefn) (tree, void *),
1580                tree (*postfn) (tree, void *),
1581                tree (*qfn) (tree, int, void *),
1582                void *data)
1583 {
1584   tree rval = NULL_TREE;
1585
1586   /* Call the pre-order walking function.  */
1587   if (prefn)
1588     {
1589       rval = (*prefn) (binfo, data);
1590       if (rval)
1591         return rval;
1592     }
1593
1594   /* Process the basetypes.  */
1595   if (BINFO_BASETYPES (binfo))
1596     {
1597       int i, n = TREE_VEC_LENGTH (BINFO_BASETYPES (binfo));
1598       for (i = 0; i != n; i++)
1599         {
1600           tree base_binfo;
1601       
1602           if (qfn)
1603             base_binfo = (*qfn) (binfo, i, data);
1604           else
1605             base_binfo = BINFO_BASETYPE (binfo, i);
1606           
1607           if (base_binfo)
1608             {
1609               rval = dfs_walk_real (base_binfo, prefn, postfn, qfn, data);
1610               if (rval)
1611                 return rval;
1612             }
1613         }
1614     }
1615
1616   /* Call the post-order walking function.  */
1617   if (postfn)
1618     rval = (*postfn) (binfo, data);
1619   
1620   return rval;
1621 }
1622
1623 /* Exactly like bfs_walk, except that a depth-first post-order traversal is
1624    performed.  */
1625
1626 tree
1627 dfs_walk (tree binfo,
1628           tree (*fn) (tree, void *),
1629           tree (*qfn) (tree, int, void *),
1630           void *data)
1631 {
1632   return dfs_walk_real (binfo, 0, fn, qfn, data);
1633 }
1634
1635 /* Check that virtual overrider OVERRIDER is acceptable for base function
1636    BASEFN. Issue diagnostic, and return zero, if unacceptable.  */
1637
1638 int
1639 check_final_overrider (tree overrider, tree basefn)
1640 {
1641   tree over_type = TREE_TYPE (overrider);
1642   tree base_type = TREE_TYPE (basefn);
1643   tree over_return = TREE_TYPE (over_type);
1644   tree base_return = TREE_TYPE (base_type);
1645   tree over_throw = TYPE_RAISES_EXCEPTIONS (over_type);
1646   tree base_throw = TYPE_RAISES_EXCEPTIONS (base_type);
1647   int fail = 0;
1648   
1649   if (same_type_p (base_return, over_return))
1650     /* OK */;
1651   else if ((CLASS_TYPE_P (over_return) && CLASS_TYPE_P (base_return))
1652            || (TREE_CODE (base_return) == TREE_CODE (over_return)
1653                && POINTER_TYPE_P (base_return)))
1654     {
1655       /* Potentially covariant. */
1656       unsigned base_quals, over_quals;
1657       
1658       fail = !POINTER_TYPE_P (base_return);
1659       if (!fail)
1660         {
1661           fail = cp_type_quals (base_return) != cp_type_quals (over_return);
1662           
1663           base_return = TREE_TYPE (base_return);
1664           over_return = TREE_TYPE (over_return);
1665         }
1666       base_quals = cp_type_quals (base_return);
1667       over_quals = cp_type_quals (over_return);
1668
1669       if ((base_quals & over_quals) != over_quals)
1670         fail = 1;
1671       
1672       if (CLASS_TYPE_P (base_return) && CLASS_TYPE_P (over_return))
1673         {
1674           tree binfo = lookup_base (over_return, base_return,
1675                                     ba_check | ba_quiet, NULL);
1676
1677           if (!binfo)
1678             fail = 1;
1679         }
1680       else if (!pedantic
1681                && can_convert (TREE_TYPE (base_type), TREE_TYPE (over_type)))
1682         /* GNU extension, allow trivial pointer conversions such as
1683            converting to void *, or qualification conversion.  */
1684         {
1685           /* can_convert will permit user defined conversion from a
1686              (reference to) class type. We must reject them. */
1687           over_return = TREE_TYPE (over_type);
1688           if (TREE_CODE (over_return) == REFERENCE_TYPE)
1689             over_return = TREE_TYPE (over_return);
1690           if (CLASS_TYPE_P (over_return))
1691             fail = 2;
1692         }
1693       else
1694         fail = 2;
1695     }
1696   else
1697     fail = 2;
1698   if (!fail)
1699     /* OK */;
1700   else if (IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (overrider)))
1701     return 0;
1702   else
1703     {
1704       if (fail == 1)
1705         {
1706           cp_error_at ("invalid covariant return type for `%#D'", overrider);
1707           cp_error_at ("  overriding `%#D'", basefn);
1708         }
1709       else
1710         {
1711           cp_error_at ("conflicting return type specified for `%#D'",
1712                        overrider);
1713           cp_error_at ("  overriding `%#D'", basefn);
1714         }
1715       SET_IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (overrider),
1716                                   DECL_CONTEXT (overrider));
1717       return 0;
1718     }
1719   
1720   /* Check throw specifier is at least as strict.  */
1721   if (!comp_except_specs (base_throw, over_throw, 0))
1722     {
1723       if (!IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (overrider)))
1724         {
1725           cp_error_at ("looser throw specifier for `%#F'", overrider);
1726           cp_error_at ("  overriding `%#F'", basefn);
1727           SET_IDENTIFIER_ERROR_LOCUS (DECL_ASSEMBLER_NAME (overrider),
1728                                       DECL_CONTEXT (overrider));
1729         }
1730       return 0;
1731     }
1732   
1733   return 1;
1734 }
1735
1736 /* Given a class TYPE, and a function decl FNDECL, look for
1737    virtual functions in TYPE's hierarchy which FNDECL overrides.
1738    We do not look in TYPE itself, only its bases.
1739    
1740    Returns nonzero, if we find any. Set FNDECL's DECL_VIRTUAL_P, if we
1741    find that it overrides anything.
1742    
1743    We check that every function which is overridden, is correctly
1744    overridden.  */
1745
1746 int
1747 look_for_overrides (tree type, tree fndecl)
1748 {
1749   tree binfo = TYPE_BINFO (type);
1750   tree basebinfos = BINFO_BASETYPES (binfo);
1751   int nbasebinfos = basebinfos ? TREE_VEC_LENGTH (basebinfos) : 0;
1752   int ix;
1753   int found = 0;
1754
1755   for (ix = 0; ix != nbasebinfos; ix++)
1756     {
1757       tree basetype = BINFO_TYPE (TREE_VEC_ELT (basebinfos, ix));
1758       
1759       if (TYPE_POLYMORPHIC_P (basetype))
1760         found += look_for_overrides_r (basetype, fndecl);
1761     }
1762   return found;
1763 }
1764
1765 /* Look in TYPE for virtual functions with the same signature as
1766    FNDECL.  */
1767
1768 tree
1769 look_for_overrides_here (tree type, tree fndecl)
1770 {
1771   int ix;
1772
1773   if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (fndecl))
1774     ix = CLASSTYPE_DESTRUCTOR_SLOT;
1775   else
1776     ix = lookup_fnfields_1 (type, DECL_NAME (fndecl));
1777   if (ix >= 0)
1778     {
1779       tree fns = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (type), ix);
1780   
1781       for (; fns; fns = OVL_NEXT (fns))
1782         {
1783           tree fn = OVL_CURRENT (fns);
1784
1785           if (!DECL_VIRTUAL_P (fn))
1786             /* Not a virtual.  */;
1787           else if (DECL_CONTEXT (fn) != type)
1788             /* Introduced with a using declaration.  */;
1789           else if (DECL_STATIC_FUNCTION_P (fndecl))
1790             {
1791               tree btypes = TYPE_ARG_TYPES (TREE_TYPE (fn));
1792               tree dtypes = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
1793               if (compparms (TREE_CHAIN (btypes), dtypes))
1794                 return fn;
1795             }
1796           else if (same_signature_p (fndecl, fn))
1797             return fn;
1798         }
1799     }
1800   return NULL_TREE;
1801 }
1802
1803 /* Look in TYPE for virtual functions overridden by FNDECL. Check both
1804    TYPE itself and its bases.  */
1805
1806 static int
1807 look_for_overrides_r (tree type, tree fndecl)
1808 {
1809   tree fn = look_for_overrides_here (type, fndecl);
1810   if (fn)
1811     {
1812       if (DECL_STATIC_FUNCTION_P (fndecl))
1813         {
1814           /* A static member function cannot match an inherited
1815              virtual member function.  */
1816           cp_error_at ("`%#D' cannot be declared", fndecl);
1817           cp_error_at ("  since `%#D' declared in base class", fn);
1818         }
1819       else
1820         {
1821           /* It's definitely virtual, even if not explicitly set.  */
1822           DECL_VIRTUAL_P (fndecl) = 1;
1823           check_final_overrider (fndecl, fn);
1824         }
1825       return 1;
1826     }
1827
1828   /* We failed to find one declared in this class. Look in its bases.  */
1829   return look_for_overrides (type, fndecl);
1830 }
1831
1832 /* Called via dfs_walk from dfs_get_pure_virtuals.  */
1833
1834 static tree
1835 dfs_get_pure_virtuals (tree binfo, void *data)
1836 {
1837   tree type = (tree) data;
1838
1839   /* We're not interested in primary base classes; the derived class
1840      of which they are a primary base will contain the information we
1841      need.  */
1842   if (!BINFO_PRIMARY_P (binfo))
1843     {
1844       tree virtuals;
1845       
1846       for (virtuals = BINFO_VIRTUALS (binfo);
1847            virtuals;
1848            virtuals = TREE_CHAIN (virtuals))
1849         if (DECL_PURE_VIRTUAL_P (BV_FN (virtuals)))
1850           CLASSTYPE_PURE_VIRTUALS (type) 
1851             = tree_cons (NULL_TREE, BV_FN (virtuals),
1852                          CLASSTYPE_PURE_VIRTUALS (type));
1853     }
1854   
1855   BINFO_MARKED (binfo) = 1;
1856
1857   return NULL_TREE;
1858 }
1859
1860 /* Set CLASSTYPE_PURE_VIRTUALS for TYPE.  */
1861
1862 void
1863 get_pure_virtuals (tree type)
1864 {
1865   tree vbases;
1866
1867   /* Clear the CLASSTYPE_PURE_VIRTUALS list; whatever is already there
1868      is going to be overridden.  */
1869   CLASSTYPE_PURE_VIRTUALS (type) = NULL_TREE;
1870   /* Now, run through all the bases which are not primary bases, and
1871      collect the pure virtual functions.  We look at the vtable in
1872      each class to determine what pure virtual functions are present.
1873      (A primary base is not interesting because the derived class of
1874      which it is a primary base will contain vtable entries for the
1875      pure virtuals in the base class.  */
1876   dfs_walk (TYPE_BINFO (type), dfs_get_pure_virtuals, unmarkedp, type);
1877   dfs_walk (TYPE_BINFO (type), dfs_unmark, markedp, type);
1878
1879   /* Put the pure virtuals in dfs order.  */
1880   CLASSTYPE_PURE_VIRTUALS (type) = nreverse (CLASSTYPE_PURE_VIRTUALS (type));
1881
1882   for (vbases = CLASSTYPE_VBASECLASSES (type); 
1883        vbases; 
1884        vbases = TREE_CHAIN (vbases))
1885     {
1886       tree virtuals;
1887
1888       for (virtuals = BINFO_VIRTUALS (TREE_VALUE (vbases));
1889            virtuals;
1890            virtuals = TREE_CHAIN (virtuals))
1891         {
1892           tree base_fndecl = BV_FN (virtuals);
1893           if (DECL_NEEDS_FINAL_OVERRIDER_P (base_fndecl))
1894             error ("`%#D' needs a final overrider", base_fndecl);
1895         }
1896     }
1897 }
1898 \f
1899 /* DEPTH-FIRST SEARCH ROUTINES.  */
1900
1901 tree 
1902 markedp (tree derived, int ix, void *data ATTRIBUTE_UNUSED) 
1903 {
1904   tree binfo = BINFO_BASETYPE (derived, ix);
1905   
1906   return BINFO_MARKED (binfo) ? binfo : NULL_TREE; 
1907 }
1908
1909 tree
1910 unmarkedp (tree derived, int ix, void *data ATTRIBUTE_UNUSED) 
1911 {
1912   tree binfo = BINFO_BASETYPE (derived, ix);
1913   
1914   return !BINFO_MARKED (binfo) ? binfo : NULL_TREE; 
1915 }
1916
1917 static tree
1918 marked_pushdecls_p (tree derived, int ix, void *data ATTRIBUTE_UNUSED)
1919 {
1920   tree binfo = BINFO_BASETYPE (derived, ix);
1921   
1922   return (!BINFO_DEPENDENT_BASE_P (binfo)
1923           && BINFO_PUSHDECLS_MARKED (binfo)) ? binfo : NULL_TREE; 
1924 }
1925
1926 static tree
1927 unmarked_pushdecls_p (tree derived, int ix, void *data ATTRIBUTE_UNUSED)
1928
1929   tree binfo = BINFO_BASETYPE (derived, ix);
1930   
1931   return (!BINFO_DEPENDENT_BASE_P (binfo)
1932           && !BINFO_PUSHDECLS_MARKED (binfo)) ? binfo : NULL_TREE;
1933 }
1934
1935 /* The worker functions for `dfs_walk'.  These do not need to
1936    test anything (vis a vis marking) if they are paired with
1937    a predicate function (above).  */
1938
1939 tree
1940 dfs_unmark (tree binfo, void *data ATTRIBUTE_UNUSED)
1941 {
1942   BINFO_MARKED (binfo) = 0;
1943   return NULL_TREE;
1944 }
1945
1946 \f
1947 /* Debug info for C++ classes can get very large; try to avoid
1948    emitting it everywhere.
1949
1950    Note that this optimization wins even when the target supports
1951    BINCL (if only slightly), and reduces the amount of work for the
1952    linker.  */
1953
1954 void
1955 maybe_suppress_debug_info (tree t)
1956 {
1957   /* We can't do the usual TYPE_DECL_SUPPRESS_DEBUG thing with DWARF, which
1958      does not support name references between translation units.  It supports
1959      symbolic references between translation units, but only within a single
1960      executable or shared library.
1961
1962      For DWARF 2, we handle TYPE_DECL_SUPPRESS_DEBUG by pretending
1963      that the type was never defined, so we only get the members we
1964      actually define.  */
1965   if (write_symbols == DWARF_DEBUG || write_symbols == NO_DEBUG)
1966     return;
1967
1968   /* We might have set this earlier in cp_finish_decl.  */
1969   TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 0;
1970
1971   /* If we already know how we're handling this class, handle debug info
1972      the same way.  */
1973   if (CLASSTYPE_INTERFACE_KNOWN (t))
1974     {
1975       if (CLASSTYPE_INTERFACE_ONLY (t))
1976         TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 1;
1977       /* else don't set it.  */
1978     }
1979   /* If the class has a vtable, write out the debug info along with
1980      the vtable.  */
1981   else if (TYPE_CONTAINS_VPTR_P (t))
1982     TYPE_DECL_SUPPRESS_DEBUG (TYPE_MAIN_DECL (t)) = 1;
1983
1984   /* Otherwise, just emit the debug info normally.  */
1985 }
1986
1987 /* Note that we want debugging information for a base class of a class
1988    whose vtable is being emitted.  Normally, this would happen because
1989    calling the constructor for a derived class implies calling the
1990    constructors for all bases, which involve initializing the
1991    appropriate vptr with the vtable for the base class; but in the
1992    presence of optimization, this initialization may be optimized
1993    away, so we tell finish_vtable_vardecl that we want the debugging
1994    information anyway.  */
1995
1996 static tree
1997 dfs_debug_mark (tree binfo, void *data ATTRIBUTE_UNUSED)
1998 {
1999   tree t = BINFO_TYPE (binfo);
2000
2001   CLASSTYPE_DEBUG_REQUESTED (t) = 1;
2002
2003   return NULL_TREE;
2004 }
2005
2006 /* Returns BINFO if we haven't already noted that we want debugging
2007    info for this base class.  */
2008
2009 static tree 
2010 dfs_debug_unmarkedp (tree derived, int ix, void *data ATTRIBUTE_UNUSED)
2011 {
2012   tree binfo = BINFO_BASETYPE (derived, ix);
2013   
2014   return (!CLASSTYPE_DEBUG_REQUESTED (BINFO_TYPE (binfo)) 
2015           ? binfo : NULL_TREE);
2016 }
2017
2018 /* Write out the debugging information for TYPE, whose vtable is being
2019    emitted.  Also walk through our bases and note that we want to
2020    write out information for them.  This avoids the problem of not
2021    writing any debug info for intermediate basetypes whose
2022    constructors, and thus the references to their vtables, and thus
2023    the vtables themselves, were optimized away.  */
2024
2025 void
2026 note_debug_info_needed (tree type)
2027 {
2028   if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)))
2029     {
2030       TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)) = 0;
2031       rest_of_type_compilation (type, toplevel_bindings_p ());
2032     }
2033
2034   dfs_walk (TYPE_BINFO (type), dfs_debug_mark, dfs_debug_unmarkedp, 0);
2035 }
2036 \f
2037 /* Subroutines of push_class_decls ().  */
2038
2039 static void
2040 setup_class_bindings (tree name, int type_binding_p)
2041 {
2042   tree type_binding = NULL_TREE;
2043   tree value_binding;
2044
2045   /* If we've already done the lookup for this declaration, we're
2046      done.  */
2047   if (IDENTIFIER_CLASS_VALUE (name))
2048     return;
2049
2050   /* First, deal with the type binding.  */
2051   if (type_binding_p)
2052     {
2053       type_binding = lookup_member (current_class_type, name,
2054                                     /*protect=*/2, /*want_type=*/true);
2055       if (TREE_CODE (type_binding) == TREE_LIST 
2056           && TREE_TYPE (type_binding) == error_mark_node)
2057         /* NAME is ambiguous.  */
2058         push_class_level_binding (name, type_binding);
2059       else
2060         pushdecl_class_level (type_binding);
2061     }
2062
2063   /* Now, do the value binding.  */
2064   value_binding = lookup_member (current_class_type, name,
2065                                  /*protect=*/2, /*want_type=*/false);
2066
2067   if (type_binding_p
2068       && (TREE_CODE (value_binding) == TYPE_DECL
2069           || DECL_CLASS_TEMPLATE_P (value_binding)
2070           || (TREE_CODE (value_binding) == TREE_LIST
2071               && TREE_TYPE (value_binding) == error_mark_node
2072               && (TREE_CODE (TREE_VALUE (value_binding))
2073                   == TYPE_DECL))))
2074     /* We found a type-binding, even when looking for a non-type
2075        binding.  This means that we already processed this binding
2076        above.  */;
2077   else if (value_binding)
2078     {
2079       if (TREE_CODE (value_binding) == TREE_LIST 
2080           && TREE_TYPE (value_binding) == error_mark_node)
2081         /* NAME is ambiguous.  */
2082         push_class_level_binding (name, value_binding);
2083       else
2084         {
2085           if (BASELINK_P (value_binding))
2086             /* NAME is some overloaded functions.  */
2087             value_binding = BASELINK_FUNCTIONS (value_binding);
2088           pushdecl_class_level (value_binding);
2089         }
2090     }
2091 }
2092
2093 /* Push class-level declarations for any names appearing in BINFO that
2094    are TYPE_DECLS.  */
2095
2096 static tree
2097 dfs_push_type_decls (tree binfo, void *data ATTRIBUTE_UNUSED)
2098 {
2099   tree type;
2100   tree fields;
2101
2102   type = BINFO_TYPE (binfo);
2103   for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
2104     if (DECL_NAME (fields) && TREE_CODE (fields) == TYPE_DECL
2105         && !(!same_type_p (type, current_class_type)
2106              && template_self_reference_p (type, fields)))
2107       setup_class_bindings (DECL_NAME (fields), /*type_binding_p=*/1);
2108
2109   /* We can't just use BINFO_MARKED because envelope_add_decl uses
2110      DERIVED_FROM_P, which calls get_base_distance.  */
2111   BINFO_PUSHDECLS_MARKED (binfo) = 1;
2112
2113   return NULL_TREE;
2114 }
2115
2116 /* Push class-level declarations for any names appearing in BINFO that
2117    are not TYPE_DECLS.  */
2118
2119 static tree
2120 dfs_push_decls (tree binfo, void *data)
2121 {
2122   tree type = BINFO_TYPE (binfo);
2123   tree method_vec;
2124   tree fields;
2125   
2126   for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
2127     if (DECL_NAME (fields) 
2128         && TREE_CODE (fields) != TYPE_DECL
2129         && TREE_CODE (fields) != USING_DECL
2130         && !DECL_ARTIFICIAL (fields))
2131       setup_class_bindings (DECL_NAME (fields), /*type_binding_p=*/0);
2132     else if (TREE_CODE (fields) == FIELD_DECL
2133              && ANON_AGGR_TYPE_P (TREE_TYPE (fields)))
2134       dfs_push_decls (TYPE_BINFO (TREE_TYPE (fields)), data);
2135   
2136   method_vec = (CLASS_TYPE_P (type) 
2137                 ? CLASSTYPE_METHOD_VEC (type) : NULL_TREE);
2138   
2139   if (method_vec && TREE_VEC_LENGTH (method_vec) >= 3)
2140     {
2141       tree *methods;
2142       tree *end;
2143       
2144       /* Farm out constructors and destructors.  */
2145       end = TREE_VEC_END (method_vec);
2146       
2147       for (methods = &TREE_VEC_ELT (method_vec, 2);
2148            methods < end && *methods;
2149            methods++)
2150         setup_class_bindings (DECL_NAME (OVL_CURRENT (*methods)), 
2151                               /*type_binding_p=*/0);
2152     }
2153
2154   BINFO_PUSHDECLS_MARKED (binfo) = 0;
2155
2156   return NULL_TREE;
2157 }
2158
2159 /* When entering the scope of a class, we cache all of the
2160    fields that that class provides within its inheritance
2161    lattice.  Where ambiguities result, we mark them
2162    with `error_mark_node' so that if they are encountered
2163    without explicit qualification, we can emit an error
2164    message.  */
2165
2166 void
2167 push_class_decls (tree type)
2168 {
2169   search_stack = push_search_level (search_stack, &search_obstack);
2170
2171   /* Enter type declarations and mark.  */
2172   dfs_walk (TYPE_BINFO (type), dfs_push_type_decls, unmarked_pushdecls_p, 0);
2173
2174   /* Enter non-type declarations and unmark.  */
2175   dfs_walk (TYPE_BINFO (type), dfs_push_decls, marked_pushdecls_p, 0);
2176 }
2177
2178 /* Here's a subroutine we need because C lacks lambdas.  */
2179
2180 static tree
2181 dfs_unuse_fields (tree binfo, void *data ATTRIBUTE_UNUSED)
2182 {
2183   tree type = TREE_TYPE (binfo);
2184   tree fields;
2185
2186   for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
2187     {
2188       if (TREE_CODE (fields) != FIELD_DECL || DECL_ARTIFICIAL (fields))
2189         continue;
2190
2191       TREE_USED (fields) = 0;
2192       if (DECL_NAME (fields) == NULL_TREE
2193           && ANON_AGGR_TYPE_P (TREE_TYPE (fields)))
2194         unuse_fields (TREE_TYPE (fields));
2195     }
2196
2197   return NULL_TREE;
2198 }
2199
2200 void
2201 unuse_fields (tree type)
2202 {
2203   dfs_walk (TYPE_BINFO (type), dfs_unuse_fields, unmarkedp, 0);
2204 }
2205
2206 void
2207 pop_class_decls ()
2208 {
2209   /* We haven't pushed a search level when dealing with cached classes,
2210      so we'd better not try to pop it.  */
2211   if (search_stack)
2212     search_stack = pop_search_level (search_stack);
2213 }
2214
2215 void
2216 print_search_statistics ()
2217 {
2218 #ifdef GATHER_STATISTICS
2219   fprintf (stderr, "%d fields searched in %d[%d] calls to lookup_field[_1]\n",
2220            n_fields_searched, n_calls_lookup_field, n_calls_lookup_field_1);
2221   fprintf (stderr, "%d fnfields searched in %d calls to lookup_fnfields\n",
2222            n_outer_fields_searched, n_calls_lookup_fnfields);
2223   fprintf (stderr, "%d calls to get_base_type\n", n_calls_get_base_type);
2224 #else /* GATHER_STATISTICS */
2225   fprintf (stderr, "no search statistics\n");
2226 #endif /* GATHER_STATISTICS */
2227 }
2228
2229 void
2230 init_search_processing ()
2231 {
2232   gcc_obstack_init (&search_obstack);
2233 }
2234
2235 void
2236 reinit_search_statistics ()
2237 {
2238 #ifdef GATHER_STATISTICS
2239   n_fields_searched = 0;
2240   n_calls_lookup_field = 0, n_calls_lookup_field_1 = 0;
2241   n_calls_lookup_fnfields = 0, n_calls_lookup_fnfields_1 = 0;
2242   n_calls_get_base_type = 0;
2243   n_outer_fields_searched = 0;
2244   n_contexts_saved = 0;
2245 #endif /* GATHER_STATISTICS */
2246 }
2247
2248 static tree
2249 add_conversions (tree binfo, void *data)
2250 {
2251   int i;
2252   tree method_vec = CLASSTYPE_METHOD_VEC (BINFO_TYPE (binfo));
2253   tree *conversions = (tree *) data;
2254
2255   /* Some builtin types have no method vector, not even an empty one.  */
2256   if (!method_vec)
2257     return NULL_TREE;
2258
2259   for (i = 2; i < TREE_VEC_LENGTH (method_vec); ++i)
2260     {
2261       tree tmp = TREE_VEC_ELT (method_vec, i);
2262       tree name;
2263
2264       if (!tmp || ! DECL_CONV_FN_P (OVL_CURRENT (tmp)))
2265         break;
2266
2267       name = DECL_NAME (OVL_CURRENT (tmp));
2268
2269       /* Make sure we don't already have this conversion.  */
2270       if (! IDENTIFIER_MARKED (name))
2271         {
2272           *conversions = tree_cons (binfo, tmp, *conversions);
2273           IDENTIFIER_MARKED (name) = 1;
2274         }
2275     }
2276   return NULL_TREE;
2277 }
2278
2279 /* Return a TREE_LIST containing all the non-hidden user-defined
2280    conversion functions for TYPE (and its base-classes).  The
2281    TREE_VALUE of each node is a FUNCTION_DECL or an OVERLOAD
2282    containing the conversion functions.  The TREE_PURPOSE is the BINFO
2283    from which the conversion functions in this node were selected.  */
2284
2285 tree
2286 lookup_conversions (tree type)
2287 {
2288   tree t;
2289   tree conversions = NULL_TREE;
2290
2291   complete_type (type);
2292   bfs_walk (TYPE_BINFO (type), add_conversions, 0, &conversions);
2293
2294   for (t = conversions; t; t = TREE_CHAIN (t))
2295     IDENTIFIER_MARKED (DECL_NAME (OVL_CURRENT (TREE_VALUE (t)))) = 0;
2296
2297   return conversions;
2298 }
2299
2300 struct overlap_info 
2301 {
2302   tree compare_type;
2303   int found_overlap;
2304 };
2305
2306 /* Check whether the empty class indicated by EMPTY_BINFO is also present
2307    at offset 0 in COMPARE_TYPE, and set found_overlap if so.  */
2308
2309 static tree
2310 dfs_check_overlap (tree empty_binfo, void *data)
2311 {
2312   struct overlap_info *oi = (struct overlap_info *) data;
2313   tree binfo;
2314   for (binfo = TYPE_BINFO (oi->compare_type); 
2315        ; 
2316        binfo = BINFO_BASETYPE (binfo, 0))
2317     {
2318       if (BINFO_TYPE (binfo) == BINFO_TYPE (empty_binfo))
2319         {
2320           oi->found_overlap = 1;
2321           break;
2322         }
2323       else if (BINFO_BASETYPES (binfo) == NULL_TREE)
2324         break;
2325     }
2326
2327   return NULL_TREE;
2328 }
2329
2330 /* Trivial function to stop base traversal when we find something.  */
2331
2332 static tree
2333 dfs_no_overlap_yet (tree derived, int ix, void *data)
2334 {
2335   tree binfo = BINFO_BASETYPE (derived, ix);
2336   struct overlap_info *oi = (struct overlap_info *) data;
2337   
2338   return !oi->found_overlap ? binfo : NULL_TREE;
2339 }
2340
2341 /* Returns nonzero if EMPTY_TYPE or any of its bases can also be found at
2342    offset 0 in NEXT_TYPE.  Used in laying out empty base class subobjects.  */
2343
2344 int
2345 types_overlap_p (tree empty_type, tree next_type)
2346 {
2347   struct overlap_info oi;
2348
2349   if (! IS_AGGR_TYPE (next_type))
2350     return 0;
2351   oi.compare_type = next_type;
2352   oi.found_overlap = 0;
2353   dfs_walk (TYPE_BINFO (empty_type), dfs_check_overlap,
2354             dfs_no_overlap_yet, &oi);
2355   return oi.found_overlap;
2356 }
2357
2358 /* Given a vtable VAR, determine which of the inherited classes the vtable
2359    inherits (in a loose sense) functions from.
2360
2361    FIXME: This does not work with the new ABI.  */
2362
2363 tree
2364 binfo_for_vtable (tree var)
2365 {
2366   tree main_binfo = TYPE_BINFO (DECL_CONTEXT (var));
2367   tree binfos = TYPE_BINFO_BASETYPES (BINFO_TYPE (main_binfo));
2368   int n_baseclasses = CLASSTYPE_N_BASECLASSES (BINFO_TYPE (main_binfo));
2369   int i;
2370
2371   for (i = 0; i < n_baseclasses; i++)
2372     {
2373       tree base_binfo = TREE_VEC_ELT (binfos, i);
2374       if (base_binfo != NULL_TREE && BINFO_VTABLE (base_binfo) == var)
2375         return base_binfo;
2376     }
2377
2378   /* If no secondary base classes matched, return the primary base, if
2379      there is one.  */
2380   if (CLASSTYPE_HAS_PRIMARY_BASE_P (BINFO_TYPE (main_binfo)))
2381     return get_primary_binfo (main_binfo);
2382
2383   return main_binfo;
2384 }
2385
2386 /* Returns the binfo of the first direct or indirect virtual base derived
2387    from BINFO, or NULL if binfo is not via virtual.  */
2388
2389 tree
2390 binfo_from_vbase (tree binfo)
2391 {
2392   for (; binfo; binfo = BINFO_INHERITANCE_CHAIN (binfo))
2393     {
2394       if (TREE_VIA_VIRTUAL (binfo))
2395         return binfo;
2396     }
2397   return NULL_TREE;
2398 }
2399
2400 /* Returns the binfo of the first direct or indirect virtual base derived
2401    from BINFO up to the TREE_TYPE, LIMIT, or NULL if binfo is not
2402    via virtual.  */
2403
2404 tree
2405 binfo_via_virtual (tree binfo, tree limit)
2406 {
2407   for (; binfo && (!limit || !same_type_p (BINFO_TYPE (binfo), limit));
2408        binfo = BINFO_INHERITANCE_CHAIN (binfo))
2409     {
2410       if (TREE_VIA_VIRTUAL (binfo))
2411         return binfo;
2412     }
2413   return NULL_TREE;
2414 }
2415
2416 /* BINFO is a base binfo in the complete type BINFO_TYPE (HERE).
2417    Find the equivalent binfo within whatever graph HERE is located.
2418    This is the inverse of original_binfo. */
2419
2420 tree
2421 copied_binfo (tree binfo, tree here)
2422 {
2423   tree result = NULL_TREE;
2424   
2425   if (TREE_VIA_VIRTUAL (binfo))
2426     {
2427       tree t;
2428
2429       for (t = here; BINFO_INHERITANCE_CHAIN (t);
2430            t = BINFO_INHERITANCE_CHAIN (t))
2431         continue;
2432       
2433       result = purpose_member (BINFO_TYPE (binfo),
2434                                CLASSTYPE_VBASECLASSES (BINFO_TYPE (t)));
2435       result = TREE_VALUE (result);
2436     }
2437   else if (BINFO_INHERITANCE_CHAIN (binfo))
2438     {
2439       tree base_binfos;
2440       int ix, n;
2441       
2442       base_binfos = copied_binfo (BINFO_INHERITANCE_CHAIN (binfo), here);
2443       base_binfos = BINFO_BASETYPES (base_binfos);
2444       n = TREE_VEC_LENGTH (base_binfos);
2445       for (ix = 0; ix != n; ix++)
2446         {
2447           tree base = TREE_VEC_ELT (base_binfos, ix);
2448           
2449           if (BINFO_TYPE (base) == BINFO_TYPE (binfo))
2450             {
2451               result = base;
2452               break;
2453             }
2454         }
2455     }
2456   else
2457     {
2458       my_friendly_assert (BINFO_TYPE (here) == BINFO_TYPE (binfo), 20030202);
2459       result = here;
2460     }
2461
2462   my_friendly_assert (result, 20030202);
2463   return result;
2464 }
2465
2466 /* BINFO is some base binfo of HERE, within some other
2467    hierachy. Return the equivalent binfo, but in the hierarchy
2468    dominated by HERE.  This is the inverse of copied_binfo.  If BINFO
2469    is not a base binfo of HERE, returns NULL_TREE. */
2470
2471 tree
2472 original_binfo (tree binfo, tree here)
2473 {
2474   tree result = NULL;
2475   
2476   if (BINFO_TYPE (binfo) == BINFO_TYPE (here))
2477     result = here;
2478   else if (TREE_VIA_VIRTUAL (binfo))
2479     {
2480       result = purpose_member (BINFO_TYPE (binfo),
2481                                CLASSTYPE_VBASECLASSES (BINFO_TYPE (here)));
2482       if (result)
2483         result = TREE_VALUE (result);
2484     }
2485   else if (BINFO_INHERITANCE_CHAIN (binfo))
2486     {
2487       tree base_binfos;
2488       
2489       base_binfos = original_binfo (BINFO_INHERITANCE_CHAIN (binfo), here);
2490       if (base_binfos)
2491         {
2492           int ix, n;
2493           
2494           base_binfos = BINFO_BASETYPES (base_binfos);
2495           n = TREE_VEC_LENGTH (base_binfos);
2496           for (ix = 0; ix != n; ix++)
2497             {
2498               tree base = TREE_VEC_ELT (base_binfos, ix);
2499               
2500               if (BINFO_TYPE (base) == BINFO_TYPE (binfo))
2501                 {
2502                   result = base;
2503                   break;
2504                 }
2505             }
2506         }
2507     }
2508   
2509   return result;
2510 }
2511