OSDN Git Service

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