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