OSDN Git Service

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