PR c++/68795: fix uninitialized close_paren_loc in cp_parser_postfix_expression
[gcc.git] / gcc / ipa-devirt.c
1 /* Basic IPA utilities for type inheritance graph construction and
2 devirtualization.
3 Copyright (C) 2013-2016 Free Software Foundation, Inc.
4 Contributed by Jan Hubicka
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* Brief vocabulary:
23 ODR = One Definition Rule
24 In short, the ODR states that:
25 1 In any translation unit, a template, type, function, or object can
26 have no more than one definition. Some of these can have any number
27 of declarations. A definition provides an instance.
28 2 In the entire program, an object or non-inline function cannot have
29 more than one definition; if an object or function is used, it must
30 have exactly one definition. You can declare an object or function
31 that is never used, in which case you don't have to provide
32 a definition. In no event can there be more than one definition.
33 3 Some things, like types, templates, and extern inline functions, can
34 be defined in more than one translation unit. For a given entity,
35 each definition must be the same. Non-extern objects and functions
36 in different translation units are different entities, even if their
37 names and types are the same.
38
39 OTR = OBJ_TYPE_REF
40 This is the Gimple representation of type information of a polymorphic call.
41 It contains two parameters:
42 otr_type is a type of class whose method is called.
43 otr_token is the index into virtual table where address is taken.
44
45 BINFO
46 This is the type inheritance information attached to each tree
47 RECORD_TYPE by the C++ frontend. It provides information about base
48 types and virtual tables.
49
50 BINFO is linked to the RECORD_TYPE by TYPE_BINFO.
51 BINFO also links to its type by BINFO_TYPE and to the virtual table by
52 BINFO_VTABLE.
53
54 Base types of a given type are enumerated by BINFO_BASE_BINFO
55 vector. Members of this vectors are not BINFOs associated
56 with a base type. Rather they are new copies of BINFOs
57 (base BINFOs). Their virtual tables may differ from
58 virtual table of the base type. Also BINFO_OFFSET specifies
59 offset of the base within the type.
60
61 In the case of single inheritance, the virtual table is shared
62 and BINFO_VTABLE of base BINFO is NULL. In the case of multiple
63 inheritance the individual virtual tables are pointer to by
64 BINFO_VTABLE of base binfos (that differs of BINFO_VTABLE of
65 binfo associated to the base type).
66
67 BINFO lookup for a given base type and offset can be done by
68 get_binfo_at_offset. It returns proper BINFO whose virtual table
69 can be used for lookup of virtual methods associated with the
70 base type.
71
72 token
73 This is an index of virtual method in virtual table associated
74 to the type defining it. Token can be looked up from OBJ_TYPE_REF
75 or from DECL_VINDEX of a given virtual table.
76
77 polymorphic (indirect) call
78 This is callgraph representation of virtual method call. Every
79 polymorphic call contains otr_type and otr_token taken from
80 original OBJ_TYPE_REF at callgraph construction time.
81
82 What we do here:
83
84 build_type_inheritance_graph triggers a construction of the type inheritance
85 graph.
86
87 We reconstruct it based on types of methods we see in the unit.
88 This means that the graph is not complete. Types with no methods are not
89 inserted into the graph. Also types without virtual methods are not
90 represented at all, though it may be easy to add this.
91
92 The inheritance graph is represented as follows:
93
94 Vertices are structures odr_type. Every odr_type may correspond
95 to one or more tree type nodes that are equivalent by ODR rule.
96 (the multiple type nodes appear only with linktime optimization)
97
98 Edges are represented by odr_type->base and odr_type->derived_types.
99 At the moment we do not track offsets of types for multiple inheritance.
100 Adding this is easy.
101
102 possible_polymorphic_call_targets returns, given an parameters found in
103 indirect polymorphic edge all possible polymorphic call targets of the call.
104
105 pass_ipa_devirt performs simple speculative devirtualization.
106 */
107
108 #include "config.h"
109 #include "system.h"
110 #include "coretypes.h"
111 #include "backend.h"
112 #include "rtl.h"
113 #include "tree.h"
114 #include "gimple.h"
115 #include "alloc-pool.h"
116 #include "tree-pass.h"
117 #include "cgraph.h"
118 #include "lto-streamer.h"
119 #include "fold-const.h"
120 #include "print-tree.h"
121 #include "calls.h"
122 #include "ipa-utils.h"
123 #include "gimple-fold.h"
124 #include "symbol-summary.h"
125 #include "ipa-prop.h"
126 #include "ipa-inline.h"
127 #include "demangle.h"
128 #include "dbgcnt.h"
129 #include "gimple-pretty-print.h"
130 #include "intl.h"
131
132 /* Hash based set of pairs of types. */
133 struct type_pair
134 {
135 tree first;
136 tree second;
137 };
138
139 template <>
140 struct default_hash_traits <type_pair> : typed_noop_remove <type_pair>
141 {
142 typedef type_pair value_type;
143 typedef type_pair compare_type;
144 static hashval_t
145 hash (type_pair p)
146 {
147 return TYPE_UID (p.first) ^ TYPE_UID (p.second);
148 }
149 static bool
150 is_empty (type_pair p)
151 {
152 return p.first == NULL;
153 }
154 static bool
155 is_deleted (type_pair p ATTRIBUTE_UNUSED)
156 {
157 return false;
158 }
159 static bool
160 equal (const type_pair &a, const type_pair &b)
161 {
162 return a.first==b.first && a.second == b.second;
163 }
164 static void
165 mark_empty (type_pair &e)
166 {
167 e.first = NULL;
168 }
169 };
170
171 static bool odr_types_equivalent_p (tree, tree, bool, bool *,
172 hash_set<type_pair> *,
173 location_t, location_t);
174
175 static bool odr_violation_reported = false;
176
177
178 /* Pointer set of all call targets appearing in the cache. */
179 static hash_set<cgraph_node *> *cached_polymorphic_call_targets;
180
181 /* The node of type inheritance graph. For each type unique in
182 One Definition Rule (ODR) sense, we produce one node linking all
183 main variants of types equivalent to it, bases and derived types. */
184
185 struct GTY(()) odr_type_d
186 {
187 /* leader type. */
188 tree type;
189 /* All bases; built only for main variants of types. */
190 vec<odr_type> GTY((skip)) bases;
191 /* All derived types with virtual methods seen in unit;
192 built only for main variants of types. */
193 vec<odr_type> GTY((skip)) derived_types;
194
195 /* All equivalent types, if more than one. */
196 vec<tree, va_gc> *types;
197 /* Set of all equivalent types, if NON-NULL. */
198 hash_set<tree> * GTY((skip)) types_set;
199
200 /* Unique ID indexing the type in odr_types array. */
201 int id;
202 /* Is it in anonymous namespace? */
203 bool anonymous_namespace;
204 /* Do we know about all derivations of given type? */
205 bool all_derivations_known;
206 /* Did we report ODR violation here? */
207 bool odr_violated;
208 /* Set when virtual table without RTTI previaled table with. */
209 bool rtti_broken;
210 };
211
212 /* Return TRUE if all derived types of T are known and thus
213 we may consider the walk of derived type complete.
214
215 This is typically true only for final anonymous namespace types and types
216 defined within functions (that may be COMDAT and thus shared across units,
217 but with the same set of derived types). */
218
219 bool
220 type_all_derivations_known_p (const_tree t)
221 {
222 if (TYPE_FINAL_P (t))
223 return true;
224 if (flag_ltrans)
225 return false;
226 /* Non-C++ types may have IDENTIFIER_NODE here, do not crash. */
227 if (!TYPE_NAME (t) || TREE_CODE (TYPE_NAME (t)) != TYPE_DECL)
228 return true;
229 if (type_in_anonymous_namespace_p (t))
230 return true;
231 return (decl_function_context (TYPE_NAME (t)) != NULL);
232 }
233
234 /* Return TRUE if type's constructors are all visible. */
235
236 static bool
237 type_all_ctors_visible_p (tree t)
238 {
239 return !flag_ltrans
240 && symtab->state >= CONSTRUCTION
241 /* We can not always use type_all_derivations_known_p.
242 For function local types we must assume case where
243 the function is COMDAT and shared in between units.
244
245 TODO: These cases are quite easy to get, but we need
246 to keep track of C++ privatizing via -Wno-weak
247 as well as the IPA privatizing. */
248 && type_in_anonymous_namespace_p (t);
249 }
250
251 /* Return TRUE if type may have instance. */
252
253 static bool
254 type_possibly_instantiated_p (tree t)
255 {
256 tree vtable;
257 varpool_node *vnode;
258
259 /* TODO: Add abstract types here. */
260 if (!type_all_ctors_visible_p (t))
261 return true;
262
263 vtable = BINFO_VTABLE (TYPE_BINFO (t));
264 if (TREE_CODE (vtable) == POINTER_PLUS_EXPR)
265 vtable = TREE_OPERAND (TREE_OPERAND (vtable, 0), 0);
266 vnode = varpool_node::get (vtable);
267 return vnode && vnode->definition;
268 }
269
270 /* Hash used to unify ODR types based on their mangled name and for anonymous
271 namespace types. */
272
273 struct odr_name_hasher : pointer_hash <odr_type_d>
274 {
275 typedef union tree_node *compare_type;
276 static inline hashval_t hash (const odr_type_d *);
277 static inline bool equal (const odr_type_d *, const tree_node *);
278 static inline void remove (odr_type_d *);
279 };
280
281 /* Has used to unify ODR types based on their associated virtual table.
282 This hash is needed to keep -fno-lto-odr-type-merging to work and contains
283 only polymorphic types. Types with mangled names are inserted to both. */
284
285 struct odr_vtable_hasher:odr_name_hasher
286 {
287 static inline hashval_t hash (const odr_type_d *);
288 static inline bool equal (const odr_type_d *, const tree_node *);
289 };
290
291 /* Return type that was declared with T's name so that T is an
292 qualified variant of it. */
293
294 static inline tree
295 main_odr_variant (const_tree t)
296 {
297 if (TYPE_NAME (t) && TREE_CODE (TYPE_NAME (t)) == TYPE_DECL)
298 return TREE_TYPE (TYPE_NAME (t));
299 /* Unnamed types and non-C++ produced types can be compared by variants. */
300 else
301 return TYPE_MAIN_VARIANT (t);
302 }
303
304 static bool
305 can_be_name_hashed_p (tree t)
306 {
307 return (!in_lto_p || odr_type_p (t));
308 }
309
310 /* Hash type by its ODR name. */
311
312 static hashval_t
313 hash_odr_name (const_tree t)
314 {
315 gcc_checking_assert (main_odr_variant (t) == t);
316
317 /* If not in LTO, all main variants are unique, so we can do
318 pointer hash. */
319 if (!in_lto_p)
320 return htab_hash_pointer (t);
321
322 /* Anonymous types are unique. */
323 if (type_with_linkage_p (t) && type_in_anonymous_namespace_p (t))
324 return htab_hash_pointer (t);
325
326 gcc_checking_assert (TYPE_NAME (t)
327 && DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (t)));
328 return IDENTIFIER_HASH_VALUE (DECL_ASSEMBLER_NAME (TYPE_NAME (t)));
329 }
330
331 /* Return the computed hashcode for ODR_TYPE. */
332
333 inline hashval_t
334 odr_name_hasher::hash (const odr_type_d *odr_type)
335 {
336 return hash_odr_name (odr_type->type);
337 }
338
339 static bool
340 can_be_vtable_hashed_p (tree t)
341 {
342 /* vtable hashing can distinguish only main variants. */
343 if (TYPE_MAIN_VARIANT (t) != t)
344 return false;
345 /* Anonymous namespace types are always handled by name hash. */
346 if (type_with_linkage_p (t) && type_in_anonymous_namespace_p (t))
347 return false;
348 return (TREE_CODE (t) == RECORD_TYPE
349 && TYPE_BINFO (t) && BINFO_VTABLE (TYPE_BINFO (t)));
350 }
351
352 /* Hash type by assembler name of its vtable. */
353
354 static hashval_t
355 hash_odr_vtable (const_tree t)
356 {
357 tree v = BINFO_VTABLE (TYPE_BINFO (TYPE_MAIN_VARIANT (t)));
358 inchash::hash hstate;
359
360 gcc_checking_assert (in_lto_p);
361 gcc_checking_assert (!type_in_anonymous_namespace_p (t));
362 gcc_checking_assert (TREE_CODE (t) == RECORD_TYPE
363 && TYPE_BINFO (t) && BINFO_VTABLE (TYPE_BINFO (t)));
364 gcc_checking_assert (main_odr_variant (t) == t);
365
366 if (TREE_CODE (v) == POINTER_PLUS_EXPR)
367 {
368 add_expr (TREE_OPERAND (v, 1), hstate);
369 v = TREE_OPERAND (TREE_OPERAND (v, 0), 0);
370 }
371
372 hstate.add_wide_int (IDENTIFIER_HASH_VALUE (DECL_ASSEMBLER_NAME (v)));
373 return hstate.end ();
374 }
375
376 /* Return the computed hashcode for ODR_TYPE. */
377
378 inline hashval_t
379 odr_vtable_hasher::hash (const odr_type_d *odr_type)
380 {
381 return hash_odr_vtable (odr_type->type);
382 }
383
384 /* For languages with One Definition Rule, work out if
385 types are the same based on their name.
386
387 This is non-trivial for LTO where minor differences in
388 the type representation may have prevented type merging
389 to merge two copies of otherwise equivalent type.
390
391 Until we start streaming mangled type names, this function works
392 only for polymorphic types.
393
394 When STRICT is true, we compare types by their names for purposes of
395 ODR violation warnings. When strict is false, we consider variants
396 equivalent, becuase it is all that matters for devirtualization machinery.
397 */
398
399 bool
400 types_same_for_odr (const_tree type1, const_tree type2, bool strict)
401 {
402 gcc_checking_assert (TYPE_P (type1) && TYPE_P (type2));
403
404 type1 = main_odr_variant (type1);
405 type2 = main_odr_variant (type2);
406 if (!strict)
407 {
408 type1 = TYPE_MAIN_VARIANT (type1);
409 type2 = TYPE_MAIN_VARIANT (type2);
410 }
411
412 if (type1 == type2)
413 return true;
414
415 if (!in_lto_p)
416 return false;
417
418 /* Check for anonymous namespaces. Those have !TREE_PUBLIC
419 on the corresponding TYPE_STUB_DECL. */
420 if ((type_with_linkage_p (type1) && type_in_anonymous_namespace_p (type1))
421 || (type_with_linkage_p (type2) && type_in_anonymous_namespace_p (type2)))
422 return false;
423
424
425 /* ODR name of the type is set in DECL_ASSEMBLER_NAME of its TYPE_NAME.
426
427 Ideally we should never need types without ODR names here. It can however
428 happen in two cases:
429
430 1) for builtin types that are not streamed but rebuilt in lto/lto-lang.c
431 Here testing for equivalence is safe, since their MAIN_VARIANTs are
432 unique.
433 2) for units streamed with -fno-lto-odr-type-merging. Here we can't
434 establish precise ODR equivalency, but for correctness we care only
435 about equivalency on complete polymorphic types. For these we can
436 compare assembler names of their virtual tables. */
437 if ((!TYPE_NAME (type1) || !DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (type1)))
438 || (!TYPE_NAME (type2) || !DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (type2))))
439 {
440 /* See if types are obviously different (i.e. different codes
441 or polymorphic wrt non-polymorphic). This is not strictly correct
442 for ODR violating programs, but we can't do better without streaming
443 ODR names. */
444 if (TREE_CODE (type1) != TREE_CODE (type2))
445 return false;
446 if (TREE_CODE (type1) == RECORD_TYPE
447 && (TYPE_BINFO (type1) == NULL_TREE)
448 != (TYPE_BINFO (type2) == NULL_TREE))
449 return false;
450 if (TREE_CODE (type1) == RECORD_TYPE && TYPE_BINFO (type1)
451 && (BINFO_VTABLE (TYPE_BINFO (type1)) == NULL_TREE)
452 != (BINFO_VTABLE (TYPE_BINFO (type2)) == NULL_TREE))
453 return false;
454
455 /* At the moment we have no way to establish ODR equivalence at LTO
456 other than comparing virtual table pointers of polymorphic types.
457 Eventually we should start saving mangled names in TYPE_NAME.
458 Then this condition will become non-trivial. */
459
460 if (TREE_CODE (type1) == RECORD_TYPE
461 && TYPE_BINFO (type1) && TYPE_BINFO (type2)
462 && BINFO_VTABLE (TYPE_BINFO (type1))
463 && BINFO_VTABLE (TYPE_BINFO (type2)))
464 {
465 tree v1 = BINFO_VTABLE (TYPE_BINFO (type1));
466 tree v2 = BINFO_VTABLE (TYPE_BINFO (type2));
467 gcc_assert (TREE_CODE (v1) == POINTER_PLUS_EXPR
468 && TREE_CODE (v2) == POINTER_PLUS_EXPR);
469 return (operand_equal_p (TREE_OPERAND (v1, 1),
470 TREE_OPERAND (v2, 1), 0)
471 && DECL_ASSEMBLER_NAME
472 (TREE_OPERAND (TREE_OPERAND (v1, 0), 0))
473 == DECL_ASSEMBLER_NAME
474 (TREE_OPERAND (TREE_OPERAND (v2, 0), 0)));
475 }
476 gcc_unreachable ();
477 }
478 return (DECL_ASSEMBLER_NAME (TYPE_NAME (type1))
479 == DECL_ASSEMBLER_NAME (TYPE_NAME (type2)));
480 }
481
482 /* Return true if we can decide on ODR equivalency.
483
484 In non-LTO it is always decide, in LTO however it depends in the type has
485 ODR info attached.
486
487 When STRICT is false, compare main variants. */
488
489 bool
490 types_odr_comparable (tree t1, tree t2, bool strict)
491 {
492 return (!in_lto_p
493 || (strict ? (main_odr_variant (t1) == main_odr_variant (t2)
494 && main_odr_variant (t1))
495 : TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
496 || (odr_type_p (t1) && odr_type_p (t2))
497 || (TREE_CODE (t1) == RECORD_TYPE && TREE_CODE (t2) == RECORD_TYPE
498 && TYPE_BINFO (t1) && TYPE_BINFO (t2)
499 && polymorphic_type_binfo_p (TYPE_BINFO (t1))
500 && polymorphic_type_binfo_p (TYPE_BINFO (t2))));
501 }
502
503 /* Return true if T1 and T2 are ODR equivalent. If ODR equivalency is not
504 known, be conservative and return false. */
505
506 bool
507 types_must_be_same_for_odr (tree t1, tree t2)
508 {
509 if (types_odr_comparable (t1, t2))
510 return types_same_for_odr (t1, t2);
511 else
512 return TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2);
513 }
514
515 /* If T is compound type, return type it is based on. */
516
517 static tree
518 compound_type_base (const_tree t)
519 {
520 if (TREE_CODE (t) == ARRAY_TYPE
521 || POINTER_TYPE_P (t)
522 || TREE_CODE (t) == COMPLEX_TYPE
523 || VECTOR_TYPE_P (t))
524 return TREE_TYPE (t);
525 if (TREE_CODE (t) == METHOD_TYPE)
526 return TYPE_METHOD_BASETYPE (t);
527 if (TREE_CODE (t) == OFFSET_TYPE)
528 return TYPE_OFFSET_BASETYPE (t);
529 return NULL_TREE;
530 }
531
532 /* Return true if T is either ODR type or compound type based from it.
533 If the function return true, we know that T is a type originating from C++
534 source even at link-time. */
535
536 bool
537 odr_or_derived_type_p (const_tree t)
538 {
539 do
540 {
541 if (odr_type_p (t))
542 return true;
543 /* Function type is a tricky one. Basically we can consider it
544 ODR derived if return type or any of the parameters is.
545 We need to check all parameters because LTO streaming merges
546 common types (such as void) and they are not considered ODR then. */
547 if (TREE_CODE (t) == FUNCTION_TYPE)
548 {
549 if (TYPE_METHOD_BASETYPE (t))
550 t = TYPE_METHOD_BASETYPE (t);
551 else
552 {
553 if (TREE_TYPE (t) && odr_or_derived_type_p (TREE_TYPE (t)))
554 return true;
555 for (t = TYPE_ARG_TYPES (t); t; t = TREE_CHAIN (t))
556 if (odr_or_derived_type_p (TREE_VALUE (t)))
557 return true;
558 return false;
559 }
560 }
561 else
562 t = compound_type_base (t);
563 }
564 while (t);
565 return t;
566 }
567
568 /* Compare types T1 and T2 and return true if they are
569 equivalent. */
570
571 inline bool
572 odr_name_hasher::equal (const odr_type_d *o1, const tree_node *t2)
573 {
574 tree t1 = o1->type;
575
576 gcc_checking_assert (main_odr_variant (t2) == t2);
577 gcc_checking_assert (main_odr_variant (t1) == t1);
578 if (t1 == t2)
579 return true;
580 if (!in_lto_p)
581 return false;
582 /* Check for anonymous namespaces. Those have !TREE_PUBLIC
583 on the corresponding TYPE_STUB_DECL. */
584 if ((type_with_linkage_p (t1) && type_in_anonymous_namespace_p (t1))
585 || (type_with_linkage_p (t2) && type_in_anonymous_namespace_p (t2)))
586 return false;
587 gcc_checking_assert (DECL_ASSEMBLER_NAME (TYPE_NAME (t1)));
588 gcc_checking_assert (DECL_ASSEMBLER_NAME (TYPE_NAME (t2)));
589 return (DECL_ASSEMBLER_NAME (TYPE_NAME (t1))
590 == DECL_ASSEMBLER_NAME (TYPE_NAME (t2)));
591 }
592
593 /* Compare types T1 and T2 and return true if they are
594 equivalent. */
595
596 inline bool
597 odr_vtable_hasher::equal (const odr_type_d *o1, const tree_node *t2)
598 {
599 tree t1 = o1->type;
600
601 gcc_checking_assert (main_odr_variant (t2) == t2);
602 gcc_checking_assert (main_odr_variant (t1) == t1);
603 gcc_checking_assert (in_lto_p);
604 t1 = TYPE_MAIN_VARIANT (t1);
605 t2 = TYPE_MAIN_VARIANT (t2);
606 if (t1 == t2)
607 return true;
608 tree v1 = BINFO_VTABLE (TYPE_BINFO (t1));
609 tree v2 = BINFO_VTABLE (TYPE_BINFO (t2));
610 return (operand_equal_p (TREE_OPERAND (v1, 1),
611 TREE_OPERAND (v2, 1), 0)
612 && DECL_ASSEMBLER_NAME
613 (TREE_OPERAND (TREE_OPERAND (v1, 0), 0))
614 == DECL_ASSEMBLER_NAME
615 (TREE_OPERAND (TREE_OPERAND (v2, 0), 0)));
616 }
617
618 /* Free ODR type V. */
619
620 inline void
621 odr_name_hasher::remove (odr_type_d *v)
622 {
623 v->bases.release ();
624 v->derived_types.release ();
625 if (v->types_set)
626 delete v->types_set;
627 ggc_free (v);
628 }
629
630 /* ODR type hash used to look up ODR type based on tree type node. */
631
632 typedef hash_table<odr_name_hasher> odr_hash_type;
633 static odr_hash_type *odr_hash;
634 typedef hash_table<odr_vtable_hasher> odr_vtable_hash_type;
635 static odr_vtable_hash_type *odr_vtable_hash;
636
637 /* ODR types are also stored into ODR_TYPE vector to allow consistent
638 walking. Bases appear before derived types. Vector is garbage collected
639 so we won't end up visiting empty types. */
640
641 static GTY(()) vec <odr_type, va_gc> *odr_types_ptr;
642 #define odr_types (*odr_types_ptr)
643
644 /* Set TYPE_BINFO of TYPE and its variants to BINFO. */
645 void
646 set_type_binfo (tree type, tree binfo)
647 {
648 for (; type; type = TYPE_NEXT_VARIANT (type))
649 if (COMPLETE_TYPE_P (type))
650 TYPE_BINFO (type) = binfo;
651 else
652 gcc_assert (!TYPE_BINFO (type));
653 }
654
655 /* Compare T2 and T2 based on name or structure. */
656
657 static bool
658 odr_subtypes_equivalent_p (tree t1, tree t2,
659 hash_set<type_pair> *visited,
660 location_t loc1, location_t loc2)
661 {
662
663 /* This can happen in incomplete types that should be handled earlier. */
664 gcc_assert (t1 && t2);
665
666 t1 = main_odr_variant (t1);
667 t2 = main_odr_variant (t2);
668 if (t1 == t2)
669 return true;
670
671 /* Anonymous namespace types must match exactly. */
672 if ((type_with_linkage_p (t1) && type_in_anonymous_namespace_p (t1))
673 || (type_with_linkage_p (t2) && type_in_anonymous_namespace_p (t2)))
674 return false;
675
676 /* For ODR types be sure to compare their names.
677 To support -wno-odr-type-merging we allow one type to be non-ODR
678 and other ODR even though it is a violation. */
679 if (types_odr_comparable (t1, t2, true))
680 {
681 if (!types_same_for_odr (t1, t2, true))
682 return false;
683 /* Limit recursion: If subtypes are ODR types and we know
684 that they are same, be happy. */
685 if (!odr_type_p (t1) || !get_odr_type (t1, true)->odr_violated)
686 return true;
687 }
688
689 /* Component types, builtins and possibly violating ODR types
690 have to be compared structurally. */
691 if (TREE_CODE (t1) != TREE_CODE (t2))
692 return false;
693 if (AGGREGATE_TYPE_P (t1)
694 && (TYPE_NAME (t1) == NULL_TREE) != (TYPE_NAME (t2) == NULL_TREE))
695 return false;
696
697 type_pair pair={t1,t2};
698 if (TYPE_UID (t1) > TYPE_UID (t2))
699 {
700 pair.first = t2;
701 pair.second = t1;
702 }
703 if (visited->add (pair))
704 return true;
705 return odr_types_equivalent_p (t1, t2, false, NULL, visited, loc1, loc2);
706 }
707
708 /* Compare two virtual tables, PREVAILING and VTABLE and output ODR
709 violation warnings. */
710
711 void
712 compare_virtual_tables (varpool_node *prevailing, varpool_node *vtable)
713 {
714 int n1, n2;
715
716 if (DECL_VIRTUAL_P (prevailing->decl) != DECL_VIRTUAL_P (vtable->decl))
717 {
718 odr_violation_reported = true;
719 if (DECL_VIRTUAL_P (prevailing->decl))
720 {
721 varpool_node *tmp = prevailing;
722 prevailing = vtable;
723 vtable = tmp;
724 }
725 if (warning_at (DECL_SOURCE_LOCATION
726 (TYPE_NAME (DECL_CONTEXT (vtable->decl))),
727 OPT_Wodr,
728 "virtual table of type %qD violates one definition rule",
729 DECL_CONTEXT (vtable->decl)))
730 inform (DECL_SOURCE_LOCATION (prevailing->decl),
731 "variable of same assembler name as the virtual table is "
732 "defined in another translation unit");
733 return;
734 }
735 if (!prevailing->definition || !vtable->definition)
736 return;
737
738 /* If we do not stream ODR type info, do not bother to do useful compare. */
739 if (!TYPE_BINFO (DECL_CONTEXT (vtable->decl))
740 || !polymorphic_type_binfo_p (TYPE_BINFO (DECL_CONTEXT (vtable->decl))))
741 return;
742
743 odr_type class_type = get_odr_type (DECL_CONTEXT (vtable->decl), true);
744
745 if (class_type->odr_violated)
746 return;
747
748 for (n1 = 0, n2 = 0; true; n1++, n2++)
749 {
750 struct ipa_ref *ref1, *ref2;
751 bool end1, end2;
752
753 end1 = !prevailing->iterate_reference (n1, ref1);
754 end2 = !vtable->iterate_reference (n2, ref2);
755
756 /* !DECL_VIRTUAL_P means RTTI entry;
757 We warn when RTTI is lost because non-RTTI previals; we silently
758 accept the other case. */
759 while (!end2
760 && (end1
761 || (DECL_ASSEMBLER_NAME (ref1->referred->decl)
762 != DECL_ASSEMBLER_NAME (ref2->referred->decl)
763 && TREE_CODE (ref1->referred->decl) == FUNCTION_DECL))
764 && TREE_CODE (ref2->referred->decl) != FUNCTION_DECL)
765 {
766 if (!class_type->rtti_broken
767 && warning_at (DECL_SOURCE_LOCATION
768 (TYPE_NAME (DECL_CONTEXT (vtable->decl))),
769 OPT_Wodr,
770 "virtual table of type %qD contains RTTI "
771 "information",
772 DECL_CONTEXT (vtable->decl)))
773 {
774 inform (DECL_SOURCE_LOCATION
775 (TYPE_NAME (DECL_CONTEXT (prevailing->decl))),
776 "but is prevailed by one without from other translation "
777 "unit");
778 inform (DECL_SOURCE_LOCATION
779 (TYPE_NAME (DECL_CONTEXT (prevailing->decl))),
780 "RTTI will not work on this type");
781 class_type->rtti_broken = true;
782 }
783 n2++;
784 end2 = !vtable->iterate_reference (n2, ref2);
785 }
786 while (!end1
787 && (end2
788 || (DECL_ASSEMBLER_NAME (ref2->referred->decl)
789 != DECL_ASSEMBLER_NAME (ref1->referred->decl)
790 && TREE_CODE (ref2->referred->decl) == FUNCTION_DECL))
791 && TREE_CODE (ref1->referred->decl) != FUNCTION_DECL)
792 {
793 n1++;
794 end1 = !prevailing->iterate_reference (n1, ref1);
795 }
796
797 /* Finished? */
798 if (end1 && end2)
799 {
800 /* Extra paranoia; compare the sizes. We do not have information
801 about virtual inheritance offsets, so just be sure that these
802 match.
803 Do this as very last check so the not very informative error
804 is not output too often. */
805 if (DECL_SIZE (prevailing->decl) != DECL_SIZE (vtable->decl))
806 {
807 class_type->odr_violated = true;
808 if (warning_at (DECL_SOURCE_LOCATION
809 (TYPE_NAME (DECL_CONTEXT (vtable->decl))),
810 OPT_Wodr,
811 "virtual table of type %qD violates "
812 "one definition rule ",
813 DECL_CONTEXT (vtable->decl)))
814 {
815 inform (DECL_SOURCE_LOCATION
816 (TYPE_NAME (DECL_CONTEXT (prevailing->decl))),
817 "the conflicting type defined in another translation "
818 "unit has virtual table of different size");
819 }
820 }
821 return;
822 }
823
824 if (!end1 && !end2)
825 {
826 if (DECL_ASSEMBLER_NAME (ref1->referred->decl)
827 == DECL_ASSEMBLER_NAME (ref2->referred->decl))
828 continue;
829
830 class_type->odr_violated = true;
831
832 /* If the loops above stopped on non-virtual pointer, we have
833 mismatch in RTTI information mangling. */
834 if (TREE_CODE (ref1->referred->decl) != FUNCTION_DECL
835 && TREE_CODE (ref2->referred->decl) != FUNCTION_DECL)
836 {
837 if (warning_at (DECL_SOURCE_LOCATION
838 (TYPE_NAME (DECL_CONTEXT (vtable->decl))),
839 OPT_Wodr,
840 "virtual table of type %qD violates "
841 "one definition rule ",
842 DECL_CONTEXT (vtable->decl)))
843 {
844 inform (DECL_SOURCE_LOCATION
845 (TYPE_NAME (DECL_CONTEXT (prevailing->decl))),
846 "the conflicting type defined in another translation "
847 "unit with different RTTI information");
848 }
849 return;
850 }
851 /* At this point both REF1 and REF2 points either to virtual table
852 or virtual method. If one points to virtual table and other to
853 method we can complain the same way as if one table was shorter
854 than other pointing out the extra method. */
855 if (TREE_CODE (ref1->referred->decl)
856 != TREE_CODE (ref2->referred->decl))
857 {
858 if (TREE_CODE (ref1->referred->decl) == VAR_DECL)
859 end1 = true;
860 else if (TREE_CODE (ref2->referred->decl) == VAR_DECL)
861 end2 = true;
862 }
863 }
864
865 class_type->odr_violated = true;
866
867 /* Complain about size mismatch. Either we have too many virutal
868 functions or too many virtual table pointers. */
869 if (end1 || end2)
870 {
871 if (end1)
872 {
873 varpool_node *tmp = prevailing;
874 prevailing = vtable;
875 vtable = tmp;
876 ref1 = ref2;
877 }
878 if (warning_at (DECL_SOURCE_LOCATION
879 (TYPE_NAME (DECL_CONTEXT (vtable->decl))),
880 OPT_Wodr,
881 "virtual table of type %qD violates "
882 "one definition rule",
883 DECL_CONTEXT (vtable->decl)))
884 {
885 if (TREE_CODE (ref1->referring->decl) == FUNCTION_DECL)
886 {
887 inform (DECL_SOURCE_LOCATION
888 (TYPE_NAME (DECL_CONTEXT (prevailing->decl))),
889 "the conflicting type defined in another translation "
890 "unit");
891 inform (DECL_SOURCE_LOCATION
892 (TYPE_NAME (DECL_CONTEXT (ref1->referring->decl))),
893 "contains additional virtual method %qD",
894 ref1->referred->decl);
895 }
896 else
897 {
898 inform (DECL_SOURCE_LOCATION
899 (TYPE_NAME (DECL_CONTEXT (prevailing->decl))),
900 "the conflicting type defined in another translation "
901 "unit has virtual table with more entries");
902 }
903 }
904 return;
905 }
906
907 /* And in the last case we have either mistmatch in between two virtual
908 methods or two virtual table pointers. */
909 if (warning_at (DECL_SOURCE_LOCATION
910 (TYPE_NAME (DECL_CONTEXT (vtable->decl))), OPT_Wodr,
911 "virtual table of type %qD violates "
912 "one definition rule ",
913 DECL_CONTEXT (vtable->decl)))
914 {
915 if (TREE_CODE (ref1->referred->decl) == FUNCTION_DECL)
916 {
917 inform (DECL_SOURCE_LOCATION
918 (TYPE_NAME (DECL_CONTEXT (prevailing->decl))),
919 "the conflicting type defined in another translation "
920 "unit");
921 gcc_assert (TREE_CODE (ref2->referred->decl)
922 == FUNCTION_DECL);
923 inform (DECL_SOURCE_LOCATION (ref1->referred->decl),
924 "virtual method %qD", ref1->referred->decl);
925 inform (DECL_SOURCE_LOCATION (ref2->referred->decl),
926 "ought to match virtual method %qD but does not",
927 ref2->referred->decl);
928 }
929 else
930 inform (DECL_SOURCE_LOCATION
931 (TYPE_NAME (DECL_CONTEXT (prevailing->decl))),
932 "the conflicting type defined in another translation "
933 "unit has virtual table with different contents");
934 return;
935 }
936 }
937 }
938
939 /* Output ODR violation warning about T1 and T2 with REASON.
940 Display location of ST1 and ST2 if REASON speaks about field or
941 method of the type.
942 If WARN is false, do nothing. Set WARNED if warning was indeed
943 output. */
944
945 void
946 warn_odr (tree t1, tree t2, tree st1, tree st2,
947 bool warn, bool *warned, const char *reason)
948 {
949 tree decl2 = TYPE_NAME (t2);
950 if (warned)
951 *warned = false;
952
953 if (!warn || !TYPE_NAME(t1))
954 return;
955
956 /* ODR warnings are output druing LTO streaming; we must apply location
957 cache for potential warnings to be output correctly. */
958 if (lto_location_cache::current_cache)
959 lto_location_cache::current_cache->apply_location_cache ();
960
961 if (!warning_at (DECL_SOURCE_LOCATION (TYPE_NAME (t1)), OPT_Wodr,
962 "type %qT violates the C++ One Definition Rule",
963 t1))
964 return;
965 if (!st1 && !st2)
966 ;
967 /* For FIELD_DECL support also case where one of fields is
968 NULL - this is used when the structures have mismatching number of
969 elements. */
970 else if (!st1 || TREE_CODE (st1) == FIELD_DECL)
971 {
972 inform (DECL_SOURCE_LOCATION (decl2),
973 "a different type is defined in another translation unit");
974 if (!st1)
975 {
976 st1 = st2;
977 st2 = NULL;
978 }
979 inform (DECL_SOURCE_LOCATION (st1),
980 "the first difference of corresponding definitions is field %qD",
981 st1);
982 if (st2)
983 decl2 = st2;
984 }
985 else if (TREE_CODE (st1) == FUNCTION_DECL)
986 {
987 inform (DECL_SOURCE_LOCATION (decl2),
988 "a different type is defined in another translation unit");
989 inform (DECL_SOURCE_LOCATION (st1),
990 "the first difference of corresponding definitions is method %qD",
991 st1);
992 decl2 = st2;
993 }
994 else
995 return;
996 inform (DECL_SOURCE_LOCATION (decl2), reason);
997
998 if (warned)
999 *warned = true;
1000 }
1001
1002 /* Return ture if T1 and T2 are incompatible and we want to recusively
1003 dive into them from warn_type_mismatch to give sensible answer. */
1004
1005 static bool
1006 type_mismatch_p (tree t1, tree t2)
1007 {
1008 if (odr_or_derived_type_p (t1) && odr_or_derived_type_p (t2)
1009 && !odr_types_equivalent_p (t1, t2))
1010 return true;
1011 return !types_compatible_p (t1, t2);
1012 }
1013
1014
1015 /* Types T1 and T2 was found to be incompatible in a context they can't
1016 (either used to declare a symbol of same assembler name or unified by
1017 ODR rule). We already output warning about this, but if possible, output
1018 extra information on how the types mismatch.
1019
1020 This is hard to do in general. We basically handle the common cases.
1021
1022 If LOC1 and LOC2 are meaningful locations, use it in the case the types
1023 themselves do no thave one.*/
1024
1025 void
1026 warn_types_mismatch (tree t1, tree t2, location_t loc1, location_t loc2)
1027 {
1028 /* Location of type is known only if it has TYPE_NAME and the name is
1029 TYPE_DECL. */
1030 location_t loc_t1 = TYPE_NAME (t1) && TREE_CODE (TYPE_NAME (t1)) == TYPE_DECL
1031 ? DECL_SOURCE_LOCATION (TYPE_NAME (t1))
1032 : UNKNOWN_LOCATION;
1033 location_t loc_t2 = TYPE_NAME (t2) && TREE_CODE (TYPE_NAME (t2)) == TYPE_DECL
1034 ? DECL_SOURCE_LOCATION (TYPE_NAME (t2))
1035 : UNKNOWN_LOCATION;
1036 bool loc_t2_useful = false;
1037
1038 /* With LTO it is a common case that the location of both types match.
1039 See if T2 has a location that is different from T1. If so, we will
1040 inform user about the location.
1041 Do not consider the location passed to us in LOC1/LOC2 as those are
1042 already output. */
1043 if (loc_t2 > BUILTINS_LOCATION && loc_t2 != loc_t1)
1044 {
1045 if (loc_t1 <= BUILTINS_LOCATION)
1046 loc_t2_useful = true;
1047 else
1048 {
1049 expanded_location xloc1 = expand_location (loc_t1);
1050 expanded_location xloc2 = expand_location (loc_t2);
1051
1052 if (strcmp (xloc1.file, xloc2.file)
1053 || xloc1.line != xloc2.line
1054 || xloc1.column != xloc2.column)
1055 loc_t2_useful = true;
1056 }
1057 }
1058
1059 if (loc_t1 <= BUILTINS_LOCATION)
1060 loc_t1 = loc1;
1061 if (loc_t2 <= BUILTINS_LOCATION)
1062 loc_t2 = loc2;
1063
1064 location_t loc = loc_t1 <= BUILTINS_LOCATION ? loc_t2 : loc_t1;
1065
1066 /* It is a quite common bug to reference anonymous namespace type in
1067 non-anonymous namespace class. */
1068 if ((type_with_linkage_p (t1) && type_in_anonymous_namespace_p (t1))
1069 || (type_with_linkage_p (t2) && type_in_anonymous_namespace_p (t2)))
1070 {
1071 if (type_with_linkage_p (t1) && !type_in_anonymous_namespace_p (t1))
1072 {
1073 std::swap (t1, t2);
1074 std::swap (loc_t1, loc_t2);
1075 }
1076 gcc_assert (TYPE_NAME (t1) && TYPE_NAME (t2)
1077 && TREE_CODE (TYPE_NAME (t1)) == TYPE_DECL
1078 && TREE_CODE (TYPE_NAME (t2)) == TYPE_DECL);
1079 /* Most of the time, the type names will match, do not be unnecesarily
1080 verbose. */
1081 if (IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (t1)))
1082 != IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (t2))))
1083 inform (loc_t1,
1084 "type %qT defined in anonymous namespace can not match "
1085 "type %qT across the translation unit boundary",
1086 t1, t2);
1087 else
1088 inform (loc_t1,
1089 "type %qT defined in anonymous namespace can not match "
1090 "across the translation unit boundary",
1091 t1);
1092 if (loc_t2_useful)
1093 inform (loc_t2,
1094 "the incompatible type defined in another translation unit");
1095 return;
1096 }
1097 /* If types have mangled ODR names and they are different, it is most
1098 informative to output those.
1099 This also covers types defined in different namespaces. */
1100 if (TYPE_NAME (t1) && TYPE_NAME (t2)
1101 && TREE_CODE (TYPE_NAME (t1)) == TYPE_DECL
1102 && TREE_CODE (TYPE_NAME (t2)) == TYPE_DECL
1103 && DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (t1))
1104 && DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (t2))
1105 && DECL_ASSEMBLER_NAME (TYPE_NAME (t1))
1106 != DECL_ASSEMBLER_NAME (TYPE_NAME (t2)))
1107 {
1108 char *name1 = xstrdup (cplus_demangle
1109 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (TYPE_NAME (t1))),
1110 DMGL_PARAMS | DMGL_ANSI | DMGL_TYPES));
1111 char *name2 = cplus_demangle
1112 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (TYPE_NAME (t2))),
1113 DMGL_PARAMS | DMGL_ANSI | DMGL_TYPES);
1114 if (name1 && name2 && strcmp (name1, name2))
1115 {
1116 inform (loc_t1,
1117 "type name %<%s%> should match type name %<%s%>",
1118 name1, name2);
1119 if (loc_t2_useful)
1120 inform (loc_t2,
1121 "the incompatible type is defined here");
1122 free (name1);
1123 return;
1124 }
1125 free (name1);
1126 }
1127 /* A tricky case are compound types. Often they appear the same in source
1128 code and the mismatch is dragged in by type they are build from.
1129 Look for those differences in subtypes and try to be informative. In other
1130 cases just output nothing because the source code is probably different
1131 and in this case we already output a all necessary info. */
1132 if (!TYPE_NAME (t1) || !TYPE_NAME (t2))
1133 {
1134 if (TREE_CODE (t1) == TREE_CODE (t2))
1135 {
1136 if (TREE_CODE (t1) == ARRAY_TYPE
1137 && COMPLETE_TYPE_P (t1) && COMPLETE_TYPE_P (t2))
1138 {
1139 tree i1 = TYPE_DOMAIN (t1);
1140 tree i2 = TYPE_DOMAIN (t2);
1141
1142 if (i1 && i2
1143 && TYPE_MAX_VALUE (i1)
1144 && TYPE_MAX_VALUE (i2)
1145 && !operand_equal_p (TYPE_MAX_VALUE (i1),
1146 TYPE_MAX_VALUE (i2), 0))
1147 {
1148 inform (loc,
1149 "array types have different bounds");
1150 return;
1151 }
1152 }
1153 if ((POINTER_TYPE_P (t1) || TREE_CODE (t1) == ARRAY_TYPE)
1154 && type_mismatch_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1155 warn_types_mismatch (TREE_TYPE (t1), TREE_TYPE (t2), loc_t1, loc_t2);
1156 else if (TREE_CODE (t1) == METHOD_TYPE
1157 || TREE_CODE (t1) == FUNCTION_TYPE)
1158 {
1159 tree parms1 = NULL, parms2 = NULL;
1160 int count = 1;
1161
1162 if (type_mismatch_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1163 {
1164 inform (loc, "return value type mismatch");
1165 warn_types_mismatch (TREE_TYPE (t1), TREE_TYPE (t2), loc_t1,
1166 loc_t2);
1167 return;
1168 }
1169 if (prototype_p (t1) && prototype_p (t2))
1170 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
1171 parms1 && parms2;
1172 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2),
1173 count++)
1174 {
1175 if (type_mismatch_p (TREE_VALUE (parms1), TREE_VALUE (parms2)))
1176 {
1177 if (count == 1 && TREE_CODE (t1) == METHOD_TYPE)
1178 inform (loc,
1179 "implicit this pointer type mismatch");
1180 else
1181 inform (loc,
1182 "type mismatch in parameter %i",
1183 count - (TREE_CODE (t1) == METHOD_TYPE));
1184 warn_types_mismatch (TREE_VALUE (parms1),
1185 TREE_VALUE (parms2),
1186 loc_t1, loc_t2);
1187 return;
1188 }
1189 }
1190 if (parms1 || parms2)
1191 {
1192 inform (loc,
1193 "types have different parameter counts");
1194 return;
1195 }
1196 }
1197 }
1198 return;
1199 }
1200
1201 if (types_odr_comparable (t1, t2, true)
1202 && types_same_for_odr (t1, t2, true))
1203 inform (loc_t1,
1204 "type %qT itself violate the C++ One Definition Rule", t1);
1205 /* Prevent pointless warnings like "struct aa" should match "struct aa". */
1206 else if (TYPE_NAME (t1) == TYPE_NAME (t2)
1207 && TREE_CODE (t1) == TREE_CODE (t2) && !loc_t2_useful)
1208 return;
1209 else
1210 inform (loc_t1, "type %qT should match type %qT",
1211 t1, t2);
1212 if (loc_t2_useful)
1213 inform (loc_t2, "the incompatible type is defined here");
1214 }
1215
1216 /* Compare T1 and T2, report ODR violations if WARN is true and set
1217 WARNED to true if anything is reported. Return true if types match.
1218 If true is returned, the types are also compatible in the sense of
1219 gimple_canonical_types_compatible_p.
1220 If LOC1 and LOC2 is not UNKNOWN_LOCATION it may be used to output a warning
1221 about the type if the type itself do not have location. */
1222
1223 static bool
1224 odr_types_equivalent_p (tree t1, tree t2, bool warn, bool *warned,
1225 hash_set<type_pair> *visited,
1226 location_t loc1, location_t loc2)
1227 {
1228 /* Check first for the obvious case of pointer identity. */
1229 if (t1 == t2)
1230 return true;
1231 gcc_assert (!type_with_linkage_p (t1) || !type_in_anonymous_namespace_p (t1));
1232 gcc_assert (!type_with_linkage_p (t2) || !type_in_anonymous_namespace_p (t2));
1233
1234 /* Can't be the same type if the types don't have the same code. */
1235 if (TREE_CODE (t1) != TREE_CODE (t2))
1236 {
1237 warn_odr (t1, t2, NULL, NULL, warn, warned,
1238 G_("a different type is defined in another translation unit"));
1239 return false;
1240 }
1241
1242 if (TYPE_QUALS (t1) != TYPE_QUALS (t2))
1243 {
1244 warn_odr (t1, t2, NULL, NULL, warn, warned,
1245 G_("a type with different qualifiers is defined in another "
1246 "translation unit"));
1247 return false;
1248 }
1249
1250 if ((type_with_linkage_p (t1) && type_in_anonymous_namespace_p (t1))
1251 || (type_with_linkage_p (t2) && type_in_anonymous_namespace_p (t2)))
1252 {
1253 /* We can not trip this when comparing ODR types, only when trying to
1254 match different ODR derivations from different declarations.
1255 So WARN should be always false. */
1256 gcc_assert (!warn);
1257 return false;
1258 }
1259
1260 if (comp_type_attributes (t1, t2) != 1)
1261 {
1262 warn_odr (t1, t2, NULL, NULL, warn, warned,
1263 G_("a type with different attributes "
1264 "is defined in another translation unit"));
1265 return false;
1266 }
1267
1268 if (TREE_CODE (t1) == ENUMERAL_TYPE
1269 && TYPE_VALUES (t1) && TYPE_VALUES (t2))
1270 {
1271 tree v1, v2;
1272 for (v1 = TYPE_VALUES (t1), v2 = TYPE_VALUES (t2);
1273 v1 && v2 ; v1 = TREE_CHAIN (v1), v2 = TREE_CHAIN (v2))
1274 {
1275 if (TREE_PURPOSE (v1) != TREE_PURPOSE (v2))
1276 {
1277 warn_odr (t1, t2, NULL, NULL, warn, warned,
1278 G_("an enum with different value name"
1279 " is defined in another translation unit"));
1280 return false;
1281 }
1282 if (TREE_VALUE (v1) != TREE_VALUE (v2)
1283 && !operand_equal_p (DECL_INITIAL (TREE_VALUE (v1)),
1284 DECL_INITIAL (TREE_VALUE (v2)), 0))
1285 {
1286 warn_odr (t1, t2, NULL, NULL, warn, warned,
1287 G_("an enum with different values is defined"
1288 " in another translation unit"));
1289 return false;
1290 }
1291 }
1292 if (v1 || v2)
1293 {
1294 warn_odr (t1, t2, NULL, NULL, warn, warned,
1295 G_("an enum with mismatching number of values "
1296 "is defined in another translation unit"));
1297 return false;
1298 }
1299 }
1300
1301 /* Non-aggregate types can be handled cheaply. */
1302 if (INTEGRAL_TYPE_P (t1)
1303 || SCALAR_FLOAT_TYPE_P (t1)
1304 || FIXED_POINT_TYPE_P (t1)
1305 || TREE_CODE (t1) == VECTOR_TYPE
1306 || TREE_CODE (t1) == COMPLEX_TYPE
1307 || TREE_CODE (t1) == OFFSET_TYPE
1308 || POINTER_TYPE_P (t1))
1309 {
1310 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2))
1311 {
1312 warn_odr (t1, t2, NULL, NULL, warn, warned,
1313 G_("a type with different precision is defined "
1314 "in another translation unit"));
1315 return false;
1316 }
1317 if (TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2))
1318 {
1319 warn_odr (t1, t2, NULL, NULL, warn, warned,
1320 G_("a type with different signedness is defined "
1321 "in another translation unit"));
1322 return false;
1323 }
1324
1325 if (TREE_CODE (t1) == INTEGER_TYPE
1326 && TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2))
1327 {
1328 /* char WRT uint_8? */
1329 warn_odr (t1, t2, NULL, NULL, warn, warned,
1330 G_("a different type is defined in another "
1331 "translation unit"));
1332 return false;
1333 }
1334
1335 /* For canonical type comparisons we do not want to build SCCs
1336 so we cannot compare pointed-to types. But we can, for now,
1337 require the same pointed-to type kind and match what
1338 useless_type_conversion_p would do. */
1339 if (POINTER_TYPE_P (t1))
1340 {
1341 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
1342 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
1343 {
1344 warn_odr (t1, t2, NULL, NULL, warn, warned,
1345 G_("it is defined as a pointer in different address "
1346 "space in another translation unit"));
1347 return false;
1348 }
1349
1350 if (!odr_subtypes_equivalent_p (TREE_TYPE (t1), TREE_TYPE (t2),
1351 visited, loc1, loc2))
1352 {
1353 warn_odr (t1, t2, NULL, NULL, warn, warned,
1354 G_("it is defined as a pointer to different type "
1355 "in another translation unit"));
1356 if (warn && warned)
1357 warn_types_mismatch (TREE_TYPE (t1), TREE_TYPE (t2),
1358 loc1, loc2);
1359 return false;
1360 }
1361 }
1362
1363 if ((TREE_CODE (t1) == VECTOR_TYPE || TREE_CODE (t1) == COMPLEX_TYPE)
1364 && !odr_subtypes_equivalent_p (TREE_TYPE (t1), TREE_TYPE (t2),
1365 visited, loc1, loc2))
1366 {
1367 /* Probably specific enough. */
1368 warn_odr (t1, t2, NULL, NULL, warn, warned,
1369 G_("a different type is defined "
1370 "in another translation unit"));
1371 if (warn && warned)
1372 warn_types_mismatch (TREE_TYPE (t1), TREE_TYPE (t2), loc1, loc2);
1373 return false;
1374 }
1375 }
1376 /* Do type-specific comparisons. */
1377 else switch (TREE_CODE (t1))
1378 {
1379 case ARRAY_TYPE:
1380 {
1381 /* Array types are the same if the element types are the same and
1382 the number of elements are the same. */
1383 if (!odr_subtypes_equivalent_p (TREE_TYPE (t1), TREE_TYPE (t2),
1384 visited, loc1, loc2))
1385 {
1386 warn_odr (t1, t2, NULL, NULL, warn, warned,
1387 G_("a different type is defined in another "
1388 "translation unit"));
1389 if (warn && warned)
1390 warn_types_mismatch (TREE_TYPE (t1), TREE_TYPE (t2), loc1, loc2);
1391 }
1392 gcc_assert (TYPE_STRING_FLAG (t1) == TYPE_STRING_FLAG (t2));
1393 gcc_assert (TYPE_NONALIASED_COMPONENT (t1)
1394 == TYPE_NONALIASED_COMPONENT (t2));
1395
1396 tree i1 = TYPE_DOMAIN (t1);
1397 tree i2 = TYPE_DOMAIN (t2);
1398
1399 /* For an incomplete external array, the type domain can be
1400 NULL_TREE. Check this condition also. */
1401 if (i1 == NULL_TREE || i2 == NULL_TREE)
1402 return true;
1403
1404 tree min1 = TYPE_MIN_VALUE (i1);
1405 tree min2 = TYPE_MIN_VALUE (i2);
1406 tree max1 = TYPE_MAX_VALUE (i1);
1407 tree max2 = TYPE_MAX_VALUE (i2);
1408
1409 /* In C++, minimums should be always 0. */
1410 gcc_assert (min1 == min2);
1411 if (!operand_equal_p (max1, max2, 0))
1412 {
1413 warn_odr (t1, t2, NULL, NULL, warn, warned,
1414 G_("an array of different size is defined "
1415 "in another translation unit"));
1416 return false;
1417 }
1418 }
1419 break;
1420
1421 case METHOD_TYPE:
1422 case FUNCTION_TYPE:
1423 /* Function types are the same if the return type and arguments types
1424 are the same. */
1425 if (!odr_subtypes_equivalent_p (TREE_TYPE (t1), TREE_TYPE (t2),
1426 visited, loc1, loc2))
1427 {
1428 warn_odr (t1, t2, NULL, NULL, warn, warned,
1429 G_("has different return value "
1430 "in another translation unit"));
1431 if (warn && warned)
1432 warn_types_mismatch (TREE_TYPE (t1), TREE_TYPE (t2), loc1, loc2);
1433 return false;
1434 }
1435
1436 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2)
1437 || !prototype_p (t1) || !prototype_p (t2))
1438 return true;
1439 else
1440 {
1441 tree parms1, parms2;
1442
1443 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
1444 parms1 && parms2;
1445 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
1446 {
1447 if (!odr_subtypes_equivalent_p
1448 (TREE_VALUE (parms1), TREE_VALUE (parms2), visited,
1449 loc1, loc2))
1450 {
1451 warn_odr (t1, t2, NULL, NULL, warn, warned,
1452 G_("has different parameters in another "
1453 "translation unit"));
1454 if (warn && warned)
1455 warn_types_mismatch (TREE_VALUE (parms1),
1456 TREE_VALUE (parms2), loc1, loc2);
1457 return false;
1458 }
1459 }
1460
1461 if (parms1 || parms2)
1462 {
1463 warn_odr (t1, t2, NULL, NULL, warn, warned,
1464 G_("has different parameters "
1465 "in another translation unit"));
1466 return false;
1467 }
1468
1469 return true;
1470 }
1471
1472 case RECORD_TYPE:
1473 case UNION_TYPE:
1474 case QUAL_UNION_TYPE:
1475 {
1476 tree f1, f2;
1477
1478 /* For aggregate types, all the fields must be the same. */
1479 if (COMPLETE_TYPE_P (t1) && COMPLETE_TYPE_P (t2))
1480 {
1481 if (TYPE_BINFO (t1) && TYPE_BINFO (t2)
1482 && polymorphic_type_binfo_p (TYPE_BINFO (t1))
1483 != polymorphic_type_binfo_p (TYPE_BINFO (t2)))
1484 {
1485 if (polymorphic_type_binfo_p (TYPE_BINFO (t1)))
1486 warn_odr (t1, t2, NULL, NULL, warn, warned,
1487 G_("a type defined in another translation unit "
1488 "is not polymorphic"));
1489 else
1490 warn_odr (t1, t2, NULL, NULL, warn, warned,
1491 G_("a type defined in another translation unit "
1492 "is polymorphic"));
1493 return false;
1494 }
1495 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
1496 f1 || f2;
1497 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
1498 {
1499 /* Skip non-fields. */
1500 while (f1 && TREE_CODE (f1) != FIELD_DECL)
1501 f1 = TREE_CHAIN (f1);
1502 while (f2 && TREE_CODE (f2) != FIELD_DECL)
1503 f2 = TREE_CHAIN (f2);
1504 if (!f1 || !f2)
1505 break;
1506 if (DECL_VIRTUAL_P (f1) != DECL_VIRTUAL_P (f2))
1507 {
1508 warn_odr (t1, t2, NULL, NULL, warn, warned,
1509 G_("a type with different virtual table pointers"
1510 " is defined in another translation unit"));
1511 return false;
1512 }
1513 if (DECL_ARTIFICIAL (f1) != DECL_ARTIFICIAL (f2))
1514 {
1515 warn_odr (t1, t2, NULL, NULL, warn, warned,
1516 G_("a type with different bases is defined "
1517 "in another translation unit"));
1518 return false;
1519 }
1520 if (DECL_NAME (f1) != DECL_NAME (f2)
1521 && !DECL_ARTIFICIAL (f1))
1522 {
1523 warn_odr (t1, t2, f1, f2, warn, warned,
1524 G_("a field with different name is defined "
1525 "in another translation unit"));
1526 return false;
1527 }
1528 if (!odr_subtypes_equivalent_p (TREE_TYPE (f1),
1529 TREE_TYPE (f2), visited,
1530 loc1, loc2))
1531 {
1532 /* Do not warn about artificial fields and just go into
1533 generic field mismatch warning. */
1534 if (DECL_ARTIFICIAL (f1))
1535 break;
1536
1537 warn_odr (t1, t2, f1, f2, warn, warned,
1538 G_("a field of same name but different type "
1539 "is defined in another translation unit"));
1540 if (warn && warned)
1541 warn_types_mismatch (TREE_TYPE (f1), TREE_TYPE (f2), loc1, loc2);
1542 return false;
1543 }
1544 if (!gimple_compare_field_offset (f1, f2))
1545 {
1546 /* Do not warn about artificial fields and just go into
1547 generic field mismatch warning. */
1548 if (DECL_ARTIFICIAL (f1))
1549 break;
1550 warn_odr (t1, t2, f1, f2, warn, warned,
1551 G_("fields has different layout "
1552 "in another translation unit"));
1553 return false;
1554 }
1555 gcc_assert (DECL_NONADDRESSABLE_P (f1)
1556 == DECL_NONADDRESSABLE_P (f2));
1557 }
1558
1559 /* If one aggregate has more fields than the other, they
1560 are not the same. */
1561 if (f1 || f2)
1562 {
1563 if ((f1 && DECL_VIRTUAL_P (f1)) || (f2 && DECL_VIRTUAL_P (f2)))
1564 warn_odr (t1, t2, NULL, NULL, warn, warned,
1565 G_("a type with different virtual table pointers"
1566 " is defined in another translation unit"));
1567 else if ((f1 && DECL_ARTIFICIAL (f1))
1568 || (f2 && DECL_ARTIFICIAL (f2)))
1569 warn_odr (t1, t2, NULL, NULL, warn, warned,
1570 G_("a type with different bases is defined "
1571 "in another translation unit"));
1572 else
1573 warn_odr (t1, t2, f1, f2, warn, warned,
1574 G_("a type with different number of fields "
1575 "is defined in another translation unit"));
1576
1577 return false;
1578 }
1579 if ((TYPE_MAIN_VARIANT (t1) == t1 || TYPE_MAIN_VARIANT (t2) == t2)
1580 && COMPLETE_TYPE_P (TYPE_MAIN_VARIANT (t1))
1581 && COMPLETE_TYPE_P (TYPE_MAIN_VARIANT (t2))
1582 && odr_type_p (TYPE_MAIN_VARIANT (t1))
1583 && odr_type_p (TYPE_MAIN_VARIANT (t2))
1584 && (TYPE_METHODS (TYPE_MAIN_VARIANT (t1))
1585 != TYPE_METHODS (TYPE_MAIN_VARIANT (t2))))
1586 {
1587 /* Currently free_lang_data sets TYPE_METHODS to error_mark_node
1588 if it is non-NULL so this loop will never realy execute. */
1589 if (TYPE_METHODS (TYPE_MAIN_VARIANT (t1)) != error_mark_node
1590 && TYPE_METHODS (TYPE_MAIN_VARIANT (t2)) != error_mark_node)
1591 for (f1 = TYPE_METHODS (TYPE_MAIN_VARIANT (t1)),
1592 f2 = TYPE_METHODS (TYPE_MAIN_VARIANT (t2));
1593 f1 && f2 ; f1 = DECL_CHAIN (f1), f2 = DECL_CHAIN (f2))
1594 {
1595 if (DECL_ASSEMBLER_NAME (f1) != DECL_ASSEMBLER_NAME (f2))
1596 {
1597 warn_odr (t1, t2, f1, f2, warn, warned,
1598 G_("a different method of same type "
1599 "is defined in another "
1600 "translation unit"));
1601 return false;
1602 }
1603 if (DECL_VIRTUAL_P (f1) != DECL_VIRTUAL_P (f2))
1604 {
1605 warn_odr (t1, t2, f1, f2, warn, warned,
1606 G_("s definition that differs by virtual "
1607 "keyword in another translation unit"));
1608 return false;
1609 }
1610 if (DECL_VINDEX (f1) != DECL_VINDEX (f2))
1611 {
1612 warn_odr (t1, t2, f1, f2, warn, warned,
1613 G_("virtual table layout differs "
1614 "in another translation unit"));
1615 return false;
1616 }
1617 if (odr_subtypes_equivalent_p (TREE_TYPE (f1),
1618 TREE_TYPE (f2), visited,
1619 loc1, loc2))
1620 {
1621 warn_odr (t1, t2, f1, f2, warn, warned,
1622 G_("method with incompatible type is "
1623 "defined in another translation unit"));
1624 return false;
1625 }
1626 }
1627 if ((f1 == NULL) != (f2 == NULL))
1628 {
1629 warn_odr (t1, t2, NULL, NULL, warn, warned,
1630 G_("a type with different number of methods "
1631 "is defined in another translation unit"));
1632 return false;
1633 }
1634 }
1635 }
1636 break;
1637 }
1638 case VOID_TYPE:
1639 case NULLPTR_TYPE:
1640 break;
1641
1642 default:
1643 debug_tree (t1);
1644 gcc_unreachable ();
1645 }
1646
1647 /* Those are better to come last as they are utterly uninformative. */
1648 if (TYPE_SIZE (t1) && TYPE_SIZE (t2)
1649 && !operand_equal_p (TYPE_SIZE (t1), TYPE_SIZE (t2), 0))
1650 {
1651 warn_odr (t1, t2, NULL, NULL, warn, warned,
1652 G_("a type with different size "
1653 "is defined in another translation unit"));
1654 return false;
1655 }
1656 if (COMPLETE_TYPE_P (t1) && COMPLETE_TYPE_P (t2)
1657 && TYPE_ALIGN (t1) != TYPE_ALIGN (t2))
1658 {
1659 warn_odr (t1, t2, NULL, NULL, warn, warned,
1660 G_("a type with different alignment "
1661 "is defined in another translation unit"));
1662 return false;
1663 }
1664 gcc_assert (!TYPE_SIZE_UNIT (t1) || !TYPE_SIZE_UNIT (t2)
1665 || operand_equal_p (TYPE_SIZE_UNIT (t1),
1666 TYPE_SIZE_UNIT (t2), 0));
1667 return true;
1668 }
1669
1670 /* Return true if TYPE1 and TYPE2 are equivalent for One Definition Rule. */
1671
1672 bool
1673 odr_types_equivalent_p (tree type1, tree type2)
1674 {
1675 gcc_checking_assert (odr_or_derived_type_p (type1)
1676 && odr_or_derived_type_p (type2));
1677
1678 hash_set<type_pair> visited;
1679 return odr_types_equivalent_p (type1, type2, false, NULL,
1680 &visited, UNKNOWN_LOCATION, UNKNOWN_LOCATION);
1681 }
1682
1683 /* TYPE is equivalent to VAL by ODR, but its tree representation differs
1684 from VAL->type. This may happen in LTO where tree merging did not merge
1685 all variants of the same type or due to ODR violation.
1686
1687 Analyze and report ODR violations and add type to duplicate list.
1688 If TYPE is more specified than VAL->type, prevail VAL->type. Also if
1689 this is first time we see definition of a class return true so the
1690 base types are analyzed. */
1691
1692 static bool
1693 add_type_duplicate (odr_type val, tree type)
1694 {
1695 bool build_bases = false;
1696 bool prevail = false;
1697 bool odr_must_violate = false;
1698
1699 if (!val->types_set)
1700 val->types_set = new hash_set<tree>;
1701
1702 /* Chose polymorphic type as leader (this happens only in case of ODR
1703 violations. */
1704 if ((TREE_CODE (type) == RECORD_TYPE && TYPE_BINFO (type)
1705 && polymorphic_type_binfo_p (TYPE_BINFO (type)))
1706 && (TREE_CODE (val->type) != RECORD_TYPE || !TYPE_BINFO (val->type)
1707 || !polymorphic_type_binfo_p (TYPE_BINFO (val->type))))
1708 {
1709 prevail = true;
1710 build_bases = true;
1711 }
1712 /* Always prefer complete type to be the leader. */
1713 else if (!COMPLETE_TYPE_P (val->type) && COMPLETE_TYPE_P (type))
1714 {
1715 prevail = true;
1716 build_bases = TYPE_BINFO (type);
1717 }
1718 else if (COMPLETE_TYPE_P (val->type) && !COMPLETE_TYPE_P (type))
1719 ;
1720 else if (TREE_CODE (val->type) == ENUMERAL_TYPE
1721 && TREE_CODE (type) == ENUMERAL_TYPE
1722 && !TYPE_VALUES (val->type) && TYPE_VALUES (type))
1723 prevail = true;
1724 else if (TREE_CODE (val->type) == RECORD_TYPE
1725 && TREE_CODE (type) == RECORD_TYPE
1726 && TYPE_BINFO (type) && !TYPE_BINFO (val->type))
1727 {
1728 gcc_assert (!val->bases.length ());
1729 build_bases = true;
1730 prevail = true;
1731 }
1732
1733 if (prevail)
1734 std::swap (val->type, type);
1735
1736 val->types_set->add (type);
1737
1738 /* If we now have a mangled name, be sure to record it to val->type
1739 so ODR hash can work. */
1740
1741 if (can_be_name_hashed_p (type) && !can_be_name_hashed_p (val->type))
1742 SET_DECL_ASSEMBLER_NAME (TYPE_NAME (val->type),
1743 DECL_ASSEMBLER_NAME (TYPE_NAME (type)));
1744
1745 bool merge = true;
1746 bool base_mismatch = false;
1747 unsigned int i;
1748 bool warned = false;
1749 hash_set<type_pair> visited;
1750
1751 gcc_assert (in_lto_p);
1752 vec_safe_push (val->types, type);
1753
1754 /* If both are class types, compare the bases. */
1755 if (COMPLETE_TYPE_P (type) && COMPLETE_TYPE_P (val->type)
1756 && TREE_CODE (val->type) == RECORD_TYPE
1757 && TREE_CODE (type) == RECORD_TYPE
1758 && TYPE_BINFO (val->type) && TYPE_BINFO (type))
1759 {
1760 if (BINFO_N_BASE_BINFOS (TYPE_BINFO (type))
1761 != BINFO_N_BASE_BINFOS (TYPE_BINFO (val->type)))
1762 {
1763 if (!flag_ltrans && !warned && !val->odr_violated)
1764 {
1765 tree extra_base;
1766 warn_odr (type, val->type, NULL, NULL, !warned, &warned,
1767 "a type with the same name but different "
1768 "number of polymorphic bases is "
1769 "defined in another translation unit");
1770 if (warned)
1771 {
1772 if (BINFO_N_BASE_BINFOS (TYPE_BINFO (type))
1773 > BINFO_N_BASE_BINFOS (TYPE_BINFO (val->type)))
1774 extra_base = BINFO_BASE_BINFO
1775 (TYPE_BINFO (type),
1776 BINFO_N_BASE_BINFOS (TYPE_BINFO (val->type)));
1777 else
1778 extra_base = BINFO_BASE_BINFO
1779 (TYPE_BINFO (val->type),
1780 BINFO_N_BASE_BINFOS (TYPE_BINFO (type)));
1781 tree extra_base_type = BINFO_TYPE (extra_base);
1782 inform (DECL_SOURCE_LOCATION (TYPE_NAME (extra_base_type)),
1783 "the extra base is defined here");
1784 }
1785 }
1786 base_mismatch = true;
1787 }
1788 else
1789 for (i = 0; i < BINFO_N_BASE_BINFOS (TYPE_BINFO (type)); i++)
1790 {
1791 tree base1 = BINFO_BASE_BINFO (TYPE_BINFO (type), i);
1792 tree base2 = BINFO_BASE_BINFO (TYPE_BINFO (val->type), i);
1793 tree type1 = BINFO_TYPE (base1);
1794 tree type2 = BINFO_TYPE (base2);
1795
1796 if (types_odr_comparable (type1, type2))
1797 {
1798 if (!types_same_for_odr (type1, type2))
1799 base_mismatch = true;
1800 }
1801 else
1802 if (!odr_types_equivalent_p (type1, type2))
1803 base_mismatch = true;
1804 if (base_mismatch)
1805 {
1806 if (!warned && !val->odr_violated)
1807 {
1808 warn_odr (type, val->type, NULL, NULL,
1809 !warned, &warned,
1810 "a type with the same name but different base "
1811 "type is defined in another translation unit");
1812 if (warned)
1813 warn_types_mismatch (type1, type2,
1814 UNKNOWN_LOCATION, UNKNOWN_LOCATION);
1815 }
1816 break;
1817 }
1818 if (BINFO_OFFSET (base1) != BINFO_OFFSET (base2))
1819 {
1820 base_mismatch = true;
1821 if (!warned && !val->odr_violated)
1822 warn_odr (type, val->type, NULL, NULL,
1823 !warned, &warned,
1824 "a type with the same name but different base "
1825 "layout is defined in another translation unit");
1826 break;
1827 }
1828 /* One of bases is not of complete type. */
1829 if (!TYPE_BINFO (type1) != !TYPE_BINFO (type2))
1830 {
1831 /* If we have a polymorphic type info specified for TYPE1
1832 but not for TYPE2 we possibly missed a base when recording
1833 VAL->type earlier.
1834 Be sure this does not happen. */
1835 if (TYPE_BINFO (type1)
1836 && polymorphic_type_binfo_p (TYPE_BINFO (type1))
1837 && !build_bases)
1838 odr_must_violate = true;
1839 break;
1840 }
1841 /* One base is polymorphic and the other not.
1842 This ought to be diagnosed earlier, but do not ICE in the
1843 checking bellow. */
1844 else if (TYPE_BINFO (type1)
1845 && polymorphic_type_binfo_p (TYPE_BINFO (type1))
1846 != polymorphic_type_binfo_p (TYPE_BINFO (type2)))
1847 {
1848 if (!warned && !val->odr_violated)
1849 warn_odr (type, val->type, NULL, NULL,
1850 !warned, &warned,
1851 "a base of the type is polymorphic only in one "
1852 "translation unit");
1853 base_mismatch = true;
1854 break;
1855 }
1856 }
1857 if (base_mismatch)
1858 {
1859 merge = false;
1860 odr_violation_reported = true;
1861 val->odr_violated = true;
1862
1863 if (symtab->dump_file)
1864 {
1865 fprintf (symtab->dump_file, "ODR base violation\n");
1866
1867 print_node (symtab->dump_file, "", val->type, 0);
1868 putc ('\n',symtab->dump_file);
1869 print_node (symtab->dump_file, "", type, 0);
1870 putc ('\n',symtab->dump_file);
1871 }
1872 }
1873 }
1874
1875 /* Next compare memory layout. */
1876 if (!odr_types_equivalent_p (val->type, type,
1877 !flag_ltrans && !val->odr_violated && !warned,
1878 &warned, &visited,
1879 DECL_SOURCE_LOCATION (TYPE_NAME (val->type)),
1880 DECL_SOURCE_LOCATION (TYPE_NAME (type))))
1881 {
1882 merge = false;
1883 odr_violation_reported = true;
1884 val->odr_violated = true;
1885 }
1886 gcc_assert (val->odr_violated || !odr_must_violate);
1887 /* Sanity check that all bases will be build same way again. */
1888 if (flag_checking
1889 && COMPLETE_TYPE_P (type) && COMPLETE_TYPE_P (val->type)
1890 && TREE_CODE (val->type) == RECORD_TYPE
1891 && TREE_CODE (type) == RECORD_TYPE
1892 && TYPE_BINFO (val->type) && TYPE_BINFO (type)
1893 && !val->odr_violated
1894 && !base_mismatch && val->bases.length ())
1895 {
1896 unsigned int num_poly_bases = 0;
1897 unsigned int j;
1898
1899 for (i = 0; i < BINFO_N_BASE_BINFOS (TYPE_BINFO (type)); i++)
1900 if (polymorphic_type_binfo_p (BINFO_BASE_BINFO
1901 (TYPE_BINFO (type), i)))
1902 num_poly_bases++;
1903 gcc_assert (num_poly_bases == val->bases.length ());
1904 for (j = 0, i = 0; i < BINFO_N_BASE_BINFOS (TYPE_BINFO (type));
1905 i++)
1906 if (polymorphic_type_binfo_p (BINFO_BASE_BINFO
1907 (TYPE_BINFO (type), i)))
1908 {
1909 odr_type base = get_odr_type
1910 (BINFO_TYPE
1911 (BINFO_BASE_BINFO (TYPE_BINFO (type),
1912 i)),
1913 true);
1914 gcc_assert (val->bases[j] == base);
1915 j++;
1916 }
1917 }
1918
1919
1920 /* Regularize things a little. During LTO same types may come with
1921 different BINFOs. Either because their virtual table was
1922 not merged by tree merging and only later at decl merging or
1923 because one type comes with external vtable, while other
1924 with internal. We want to merge equivalent binfos to conserve
1925 memory and streaming overhead.
1926
1927 The external vtables are more harmful: they contain references
1928 to external declarations of methods that may be defined in the
1929 merged LTO unit. For this reason we absolutely need to remove
1930 them and replace by internal variants. Not doing so will lead
1931 to incomplete answers from possible_polymorphic_call_targets.
1932
1933 FIXME: disable for now; because ODR types are now build during
1934 streaming in, the variants do not need to be linked to the type,
1935 yet. We need to do the merging in cleanup pass to be implemented
1936 soon. */
1937 if (!flag_ltrans && merge
1938 && 0
1939 && TREE_CODE (val->type) == RECORD_TYPE
1940 && TREE_CODE (type) == RECORD_TYPE
1941 && TYPE_BINFO (val->type) && TYPE_BINFO (type)
1942 && TYPE_MAIN_VARIANT (type) == type
1943 && TYPE_MAIN_VARIANT (val->type) == val->type
1944 && BINFO_VTABLE (TYPE_BINFO (val->type))
1945 && BINFO_VTABLE (TYPE_BINFO (type)))
1946 {
1947 tree master_binfo = TYPE_BINFO (val->type);
1948 tree v1 = BINFO_VTABLE (master_binfo);
1949 tree v2 = BINFO_VTABLE (TYPE_BINFO (type));
1950
1951 if (TREE_CODE (v1) == POINTER_PLUS_EXPR)
1952 {
1953 gcc_assert (TREE_CODE (v2) == POINTER_PLUS_EXPR
1954 && operand_equal_p (TREE_OPERAND (v1, 1),
1955 TREE_OPERAND (v2, 1), 0));
1956 v1 = TREE_OPERAND (TREE_OPERAND (v1, 0), 0);
1957 v2 = TREE_OPERAND (TREE_OPERAND (v2, 0), 0);
1958 }
1959 gcc_assert (DECL_ASSEMBLER_NAME (v1)
1960 == DECL_ASSEMBLER_NAME (v2));
1961
1962 if (DECL_EXTERNAL (v1) && !DECL_EXTERNAL (v2))
1963 {
1964 unsigned int i;
1965
1966 set_type_binfo (val->type, TYPE_BINFO (type));
1967 for (i = 0; i < val->types->length (); i++)
1968 {
1969 if (TYPE_BINFO ((*val->types)[i])
1970 == master_binfo)
1971 set_type_binfo ((*val->types)[i], TYPE_BINFO (type));
1972 }
1973 BINFO_TYPE (TYPE_BINFO (type)) = val->type;
1974 }
1975 else
1976 set_type_binfo (type, master_binfo);
1977 }
1978 return build_bases;
1979 }
1980
1981 /* Get ODR type hash entry for TYPE. If INSERT is true, create
1982 possibly new entry. */
1983
1984 odr_type
1985 get_odr_type (tree type, bool insert)
1986 {
1987 odr_type_d **slot = NULL;
1988 odr_type_d **vtable_slot = NULL;
1989 odr_type val = NULL;
1990 hashval_t hash;
1991 bool build_bases = false;
1992 bool insert_to_odr_array = false;
1993 int base_id = -1;
1994
1995 type = main_odr_variant (type);
1996
1997 gcc_checking_assert (can_be_name_hashed_p (type)
1998 || can_be_vtable_hashed_p (type));
1999
2000 /* Lookup entry, first try name hash, fallback to vtable hash. */
2001 if (can_be_name_hashed_p (type))
2002 {
2003 hash = hash_odr_name (type);
2004 slot = odr_hash->find_slot_with_hash (type, hash,
2005 insert ? INSERT : NO_INSERT);
2006 }
2007 if ((!slot || !*slot) && in_lto_p && can_be_vtable_hashed_p (type))
2008 {
2009 hash = hash_odr_vtable (type);
2010 vtable_slot = odr_vtable_hash->find_slot_with_hash (type, hash,
2011 insert ? INSERT : NO_INSERT);
2012 }
2013
2014 if (!slot && !vtable_slot)
2015 return NULL;
2016
2017 /* See if we already have entry for type. */
2018 if ((slot && *slot) || (vtable_slot && *vtable_slot))
2019 {
2020 if (slot && *slot)
2021 {
2022 val = *slot;
2023 if (flag_checking
2024 && in_lto_p && can_be_vtable_hashed_p (type))
2025 {
2026 hash = hash_odr_vtable (type);
2027 vtable_slot = odr_vtable_hash->find_slot_with_hash (type, hash,
2028 NO_INSERT);
2029 gcc_assert (!vtable_slot || *vtable_slot == *slot);
2030 vtable_slot = NULL;
2031 }
2032 }
2033 else if (*vtable_slot)
2034 val = *vtable_slot;
2035
2036 if (val->type != type
2037 && (!val->types_set || !val->types_set->add (type)))
2038 {
2039 gcc_assert (insert);
2040 /* We have type duplicate, but it may introduce vtable name or
2041 mangled name; be sure to keep hashes in sync. */
2042 if (in_lto_p && can_be_vtable_hashed_p (type)
2043 && (!vtable_slot || !*vtable_slot))
2044 {
2045 if (!vtable_slot)
2046 {
2047 hash = hash_odr_vtable (type);
2048 vtable_slot = odr_vtable_hash->find_slot_with_hash
2049 (type, hash, INSERT);
2050 gcc_checking_assert (!*vtable_slot || *vtable_slot == val);
2051 }
2052 *vtable_slot = val;
2053 }
2054 if (slot && !*slot)
2055 *slot = val;
2056 build_bases = add_type_duplicate (val, type);
2057 }
2058 }
2059 else
2060 {
2061 val = ggc_cleared_alloc<odr_type_d> ();
2062 val->type = type;
2063 val->bases = vNULL;
2064 val->derived_types = vNULL;
2065 if (type_with_linkage_p (type))
2066 val->anonymous_namespace = type_in_anonymous_namespace_p (type);
2067 else
2068 val->anonymous_namespace = 0;
2069 build_bases = COMPLETE_TYPE_P (val->type);
2070 insert_to_odr_array = true;
2071 if (slot)
2072 *slot = val;
2073 if (vtable_slot)
2074 *vtable_slot = val;
2075 }
2076
2077 if (build_bases && TREE_CODE (type) == RECORD_TYPE && TYPE_BINFO (type)
2078 && type_with_linkage_p (type)
2079 && type == TYPE_MAIN_VARIANT (type))
2080 {
2081 tree binfo = TYPE_BINFO (type);
2082 unsigned int i;
2083
2084 gcc_assert (BINFO_TYPE (TYPE_BINFO (val->type)) == type);
2085
2086 val->all_derivations_known = type_all_derivations_known_p (type);
2087 for (i = 0; i < BINFO_N_BASE_BINFOS (binfo); i++)
2088 /* For now record only polymorphic types. other are
2089 pointless for devirtualization and we can not precisely
2090 determine ODR equivalency of these during LTO. */
2091 if (polymorphic_type_binfo_p (BINFO_BASE_BINFO (binfo, i)))
2092 {
2093 tree base_type= BINFO_TYPE (BINFO_BASE_BINFO (binfo, i));
2094 odr_type base = get_odr_type (base_type, true);
2095 gcc_assert (TYPE_MAIN_VARIANT (base_type) == base_type);
2096 base->derived_types.safe_push (val);
2097 val->bases.safe_push (base);
2098 if (base->id > base_id)
2099 base_id = base->id;
2100 }
2101 }
2102 /* Ensure that type always appears after bases. */
2103 if (insert_to_odr_array)
2104 {
2105 if (odr_types_ptr)
2106 val->id = odr_types.length ();
2107 vec_safe_push (odr_types_ptr, val);
2108 }
2109 else if (base_id > val->id)
2110 {
2111 odr_types[val->id] = 0;
2112 /* Be sure we did not recorded any derived types; these may need
2113 renumbering too. */
2114 gcc_assert (val->derived_types.length() == 0);
2115 if (odr_types_ptr)
2116 val->id = odr_types.length ();
2117 vec_safe_push (odr_types_ptr, val);
2118 }
2119 return val;
2120 }
2121
2122 /* Add TYPE od ODR type hash. */
2123
2124 void
2125 register_odr_type (tree type)
2126 {
2127 if (!odr_hash)
2128 {
2129 odr_hash = new odr_hash_type (23);
2130 if (in_lto_p)
2131 odr_vtable_hash = new odr_vtable_hash_type (23);
2132 }
2133 /* Arrange things to be nicer and insert main variants first.
2134 ??? fundamental prerecorded types do not have mangled names; this
2135 makes it possible that non-ODR type is main_odr_variant of ODR type.
2136 Things may get smoother if LTO FE set mangled name of those types same
2137 way as C++ FE does. */
2138 if (odr_type_p (main_odr_variant (TYPE_MAIN_VARIANT (type)))
2139 && odr_type_p (TYPE_MAIN_VARIANT (type)))
2140 get_odr_type (TYPE_MAIN_VARIANT (type), true);
2141 if (TYPE_MAIN_VARIANT (type) != type && odr_type_p (main_odr_variant (type)))
2142 get_odr_type (type, true);
2143 }
2144
2145 /* Return true if type is known to have no derivations. */
2146
2147 bool
2148 type_known_to_have_no_derivations_p (tree t)
2149 {
2150 return (type_all_derivations_known_p (t)
2151 && (TYPE_FINAL_P (t)
2152 || (odr_hash
2153 && !get_odr_type (t, true)->derived_types.length())));
2154 }
2155
2156 /* Dump ODR type T and all its derived types. INDENT specifies indentation for
2157 recursive printing. */
2158
2159 static void
2160 dump_odr_type (FILE *f, odr_type t, int indent=0)
2161 {
2162 unsigned int i;
2163 fprintf (f, "%*s type %i: ", indent * 2, "", t->id);
2164 print_generic_expr (f, t->type, TDF_SLIM);
2165 fprintf (f, "%s", t->anonymous_namespace ? " (anonymous namespace)":"");
2166 fprintf (f, "%s\n", t->all_derivations_known ? " (derivations known)":"");
2167 if (TYPE_NAME (t->type))
2168 {
2169 /*fprintf (f, "%*s defined at: %s:%i\n", indent * 2, "",
2170 DECL_SOURCE_FILE (TYPE_NAME (t->type)),
2171 DECL_SOURCE_LINE (TYPE_NAME (t->type)));*/
2172 if (DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (t->type)))
2173 fprintf (f, "%*s mangled name: %s\n", indent * 2, "",
2174 IDENTIFIER_POINTER
2175 (DECL_ASSEMBLER_NAME (TYPE_NAME (t->type))));
2176 }
2177 if (t->bases.length ())
2178 {
2179 fprintf (f, "%*s base odr type ids: ", indent * 2, "");
2180 for (i = 0; i < t->bases.length (); i++)
2181 fprintf (f, " %i", t->bases[i]->id);
2182 fprintf (f, "\n");
2183 }
2184 if (t->derived_types.length ())
2185 {
2186 fprintf (f, "%*s derived types:\n", indent * 2, "");
2187 for (i = 0; i < t->derived_types.length (); i++)
2188 dump_odr_type (f, t->derived_types[i], indent + 1);
2189 }
2190 fprintf (f, "\n");
2191 }
2192
2193 /* Dump the type inheritance graph. */
2194
2195 static void
2196 dump_type_inheritance_graph (FILE *f)
2197 {
2198 unsigned int i;
2199 if (!odr_types_ptr)
2200 return;
2201 fprintf (f, "\n\nType inheritance graph:\n");
2202 for (i = 0; i < odr_types.length (); i++)
2203 {
2204 if (odr_types[i] && odr_types[i]->bases.length () == 0)
2205 dump_odr_type (f, odr_types[i]);
2206 }
2207 for (i = 0; i < odr_types.length (); i++)
2208 {
2209 if (odr_types[i] && odr_types[i]->types && odr_types[i]->types->length ())
2210 {
2211 unsigned int j;
2212 fprintf (f, "Duplicate tree types for odr type %i\n", i);
2213 print_node (f, "", odr_types[i]->type, 0);
2214 for (j = 0; j < odr_types[i]->types->length (); j++)
2215 {
2216 tree t;
2217 fprintf (f, "duplicate #%i\n", j);
2218 print_node (f, "", (*odr_types[i]->types)[j], 0);
2219 t = (*odr_types[i]->types)[j];
2220 while (TYPE_P (t) && TYPE_CONTEXT (t))
2221 {
2222 t = TYPE_CONTEXT (t);
2223 print_node (f, "", t, 0);
2224 }
2225 putc ('\n',f);
2226 }
2227 }
2228 }
2229 }
2230
2231 /* Initialize IPA devirt and build inheritance tree graph. */
2232
2233 void
2234 build_type_inheritance_graph (void)
2235 {
2236 struct symtab_node *n;
2237 FILE *inheritance_dump_file;
2238 int flags;
2239
2240 if (odr_hash)
2241 return;
2242 timevar_push (TV_IPA_INHERITANCE);
2243 inheritance_dump_file = dump_begin (TDI_inheritance, &flags);
2244 odr_hash = new odr_hash_type (23);
2245 if (in_lto_p)
2246 odr_vtable_hash = new odr_vtable_hash_type (23);
2247
2248 /* We reconstruct the graph starting of types of all methods seen in the
2249 the unit. */
2250 FOR_EACH_SYMBOL (n)
2251 if (is_a <cgraph_node *> (n)
2252 && DECL_VIRTUAL_P (n->decl)
2253 && n->real_symbol_p ())
2254 get_odr_type (TYPE_METHOD_BASETYPE (TREE_TYPE (n->decl)), true);
2255
2256 /* Look also for virtual tables of types that do not define any methods.
2257
2258 We need it in a case where class B has virtual base of class A
2259 re-defining its virtual method and there is class C with no virtual
2260 methods with B as virtual base.
2261
2262 Here we output B's virtual method in two variant - for non-virtual
2263 and virtual inheritance. B's virtual table has non-virtual version,
2264 while C's has virtual.
2265
2266 For this reason we need to know about C in order to include both
2267 variants of B. More correctly, record_target_from_binfo should
2268 add both variants of the method when walking B, but we have no
2269 link in between them.
2270
2271 We rely on fact that either the method is exported and thus we
2272 assume it is called externally or C is in anonymous namespace and
2273 thus we will see the vtable. */
2274
2275 else if (is_a <varpool_node *> (n)
2276 && DECL_VIRTUAL_P (n->decl)
2277 && TREE_CODE (DECL_CONTEXT (n->decl)) == RECORD_TYPE
2278 && TYPE_BINFO (DECL_CONTEXT (n->decl))
2279 && polymorphic_type_binfo_p (TYPE_BINFO (DECL_CONTEXT (n->decl))))
2280 get_odr_type (TYPE_MAIN_VARIANT (DECL_CONTEXT (n->decl)), true);
2281 if (inheritance_dump_file)
2282 {
2283 dump_type_inheritance_graph (inheritance_dump_file);
2284 dump_end (TDI_inheritance, inheritance_dump_file);
2285 }
2286 timevar_pop (TV_IPA_INHERITANCE);
2287 }
2288
2289 /* Return true if N has reference from live virtual table
2290 (and thus can be a destination of polymorphic call).
2291 Be conservatively correct when callgraph is not built or
2292 if the method may be referred externally. */
2293
2294 static bool
2295 referenced_from_vtable_p (struct cgraph_node *node)
2296 {
2297 int i;
2298 struct ipa_ref *ref;
2299 bool found = false;
2300
2301 if (node->externally_visible
2302 || DECL_EXTERNAL (node->decl)
2303 || node->used_from_other_partition)
2304 return true;
2305
2306 /* Keep this test constant time.
2307 It is unlikely this can happen except for the case where speculative
2308 devirtualization introduced many speculative edges to this node.
2309 In this case the target is very likely alive anyway. */
2310 if (node->ref_list.referring.length () > 100)
2311 return true;
2312
2313 /* We need references built. */
2314 if (symtab->state <= CONSTRUCTION)
2315 return true;
2316
2317 for (i = 0; node->iterate_referring (i, ref); i++)
2318 if ((ref->use == IPA_REF_ALIAS
2319 && referenced_from_vtable_p (dyn_cast<cgraph_node *> (ref->referring)))
2320 || (ref->use == IPA_REF_ADDR
2321 && TREE_CODE (ref->referring->decl) == VAR_DECL
2322 && DECL_VIRTUAL_P (ref->referring->decl)))
2323 {
2324 found = true;
2325 break;
2326 }
2327 return found;
2328 }
2329
2330 /* If TARGET has associated node, record it in the NODES array.
2331 CAN_REFER specify if program can refer to the target directly.
2332 if TARGET is unknown (NULL) or it can not be inserted (for example because
2333 its body was already removed and there is no way to refer to it), clear
2334 COMPLETEP. */
2335
2336 static void
2337 maybe_record_node (vec <cgraph_node *> &nodes,
2338 tree target, hash_set<tree> *inserted,
2339 bool can_refer,
2340 bool *completep)
2341 {
2342 struct cgraph_node *target_node, *alias_target;
2343 enum availability avail;
2344
2345 /* cxa_pure_virtual and __builtin_unreachable do not need to be added into
2346 list of targets; the runtime effect of calling them is undefined.
2347 Only "real" virtual methods should be accounted. */
2348 if (target && TREE_CODE (TREE_TYPE (target)) != METHOD_TYPE)
2349 return;
2350
2351 if (!can_refer)
2352 {
2353 /* The only case when method of anonymous namespace becomes unreferable
2354 is when we completely optimized it out. */
2355 if (flag_ltrans
2356 || !target
2357 || !type_in_anonymous_namespace_p (DECL_CONTEXT (target)))
2358 *completep = false;
2359 return;
2360 }
2361
2362 if (!target)
2363 return;
2364
2365 target_node = cgraph_node::get (target);
2366
2367 /* Prefer alias target over aliases, so we do not get confused by
2368 fake duplicates. */
2369 if (target_node)
2370 {
2371 alias_target = target_node->ultimate_alias_target (&avail);
2372 if (target_node != alias_target
2373 && avail >= AVAIL_AVAILABLE
2374 && target_node->get_availability ())
2375 target_node = alias_target;
2376 }
2377
2378 /* Method can only be called by polymorphic call if any
2379 of vtables referring to it are alive.
2380
2381 While this holds for non-anonymous functions, too, there are
2382 cases where we want to keep them in the list; for example
2383 inline functions with -fno-weak are static, but we still
2384 may devirtualize them when instance comes from other unit.
2385 The same holds for LTO.
2386
2387 Currently we ignore these functions in speculative devirtualization.
2388 ??? Maybe it would make sense to be more aggressive for LTO even
2389 elsewhere. */
2390 if (!flag_ltrans
2391 && type_in_anonymous_namespace_p (DECL_CONTEXT (target))
2392 && (!target_node
2393 || !referenced_from_vtable_p (target_node)))
2394 ;
2395 /* See if TARGET is useful function we can deal with. */
2396 else if (target_node != NULL
2397 && (TREE_PUBLIC (target)
2398 || DECL_EXTERNAL (target)
2399 || target_node->definition)
2400 && target_node->real_symbol_p ())
2401 {
2402 gcc_assert (!target_node->global.inlined_to);
2403 gcc_assert (target_node->real_symbol_p ());
2404 if (!inserted->add (target))
2405 {
2406 cached_polymorphic_call_targets->add (target_node);
2407 nodes.safe_push (target_node);
2408 }
2409 }
2410 else if (completep
2411 && (!type_in_anonymous_namespace_p
2412 (DECL_CONTEXT (target))
2413 || flag_ltrans))
2414 *completep = false;
2415 }
2416
2417 /* See if BINFO's type matches OUTER_TYPE. If so, look up
2418 BINFO of subtype of OTR_TYPE at OFFSET and in that BINFO find
2419 method in vtable and insert method to NODES array
2420 or BASES_TO_CONSIDER if this array is non-NULL.
2421 Otherwise recurse to base BINFOs.
2422 This matches what get_binfo_at_offset does, but with offset
2423 being unknown.
2424
2425 TYPE_BINFOS is a stack of BINFOS of types with defined
2426 virtual table seen on way from class type to BINFO.
2427
2428 MATCHED_VTABLES tracks virtual tables we already did lookup
2429 for virtual function in. INSERTED tracks nodes we already
2430 inserted.
2431
2432 ANONYMOUS is true if BINFO is part of anonymous namespace.
2433
2434 Clear COMPLETEP when we hit unreferable target.
2435 */
2436
2437 static void
2438 record_target_from_binfo (vec <cgraph_node *> &nodes,
2439 vec <tree> *bases_to_consider,
2440 tree binfo,
2441 tree otr_type,
2442 vec <tree> &type_binfos,
2443 HOST_WIDE_INT otr_token,
2444 tree outer_type,
2445 HOST_WIDE_INT offset,
2446 hash_set<tree> *inserted,
2447 hash_set<tree> *matched_vtables,
2448 bool anonymous,
2449 bool *completep)
2450 {
2451 tree type = BINFO_TYPE (binfo);
2452 int i;
2453 tree base_binfo;
2454
2455
2456 if (BINFO_VTABLE (binfo))
2457 type_binfos.safe_push (binfo);
2458 if (types_same_for_odr (type, outer_type))
2459 {
2460 int i;
2461 tree type_binfo = NULL;
2462
2463 /* Look up BINFO with virtual table. For normal types it is always last
2464 binfo on stack. */
2465 for (i = type_binfos.length () - 1; i >= 0; i--)
2466 if (BINFO_OFFSET (type_binfos[i]) == BINFO_OFFSET (binfo))
2467 {
2468 type_binfo = type_binfos[i];
2469 break;
2470 }
2471 if (BINFO_VTABLE (binfo))
2472 type_binfos.pop ();
2473 /* If this is duplicated BINFO for base shared by virtual inheritance,
2474 we may not have its associated vtable. This is not a problem, since
2475 we will walk it on the other path. */
2476 if (!type_binfo)
2477 return;
2478 tree inner_binfo = get_binfo_at_offset (type_binfo,
2479 offset, otr_type);
2480 if (!inner_binfo)
2481 {
2482 gcc_assert (odr_violation_reported);
2483 return;
2484 }
2485 /* For types in anonymous namespace first check if the respective vtable
2486 is alive. If not, we know the type can't be called. */
2487 if (!flag_ltrans && anonymous)
2488 {
2489 tree vtable = BINFO_VTABLE (inner_binfo);
2490 varpool_node *vnode;
2491
2492 if (TREE_CODE (vtable) == POINTER_PLUS_EXPR)
2493 vtable = TREE_OPERAND (TREE_OPERAND (vtable, 0), 0);
2494 vnode = varpool_node::get (vtable);
2495 if (!vnode || !vnode->definition)
2496 return;
2497 }
2498 gcc_assert (inner_binfo);
2499 if (bases_to_consider
2500 ? !matched_vtables->contains (BINFO_VTABLE (inner_binfo))
2501 : !matched_vtables->add (BINFO_VTABLE (inner_binfo)))
2502 {
2503 bool can_refer;
2504 tree target = gimple_get_virt_method_for_binfo (otr_token,
2505 inner_binfo,
2506 &can_refer);
2507 if (!bases_to_consider)
2508 maybe_record_node (nodes, target, inserted, can_refer, completep);
2509 /* Destructors are never called via construction vtables. */
2510 else if (!target || !DECL_CXX_DESTRUCTOR_P (target))
2511 bases_to_consider->safe_push (target);
2512 }
2513 return;
2514 }
2515
2516 /* Walk bases. */
2517 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
2518 /* Walking bases that have no virtual method is pointless exercise. */
2519 if (polymorphic_type_binfo_p (base_binfo))
2520 record_target_from_binfo (nodes, bases_to_consider, base_binfo, otr_type,
2521 type_binfos,
2522 otr_token, outer_type, offset, inserted,
2523 matched_vtables, anonymous, completep);
2524 if (BINFO_VTABLE (binfo))
2525 type_binfos.pop ();
2526 }
2527
2528 /* Look up virtual methods matching OTR_TYPE (with OFFSET and OTR_TOKEN)
2529 of TYPE, insert them to NODES, recurse into derived nodes.
2530 INSERTED is used to avoid duplicate insertions of methods into NODES.
2531 MATCHED_VTABLES are used to avoid duplicate walking vtables.
2532 Clear COMPLETEP if unreferable target is found.
2533
2534 If CONSIDER_CONSTRUCTION is true, record to BASES_TO_CONSIDER
2535 all cases where BASE_SKIPPED is true (because the base is abstract
2536 class). */
2537
2538 static void
2539 possible_polymorphic_call_targets_1 (vec <cgraph_node *> &nodes,
2540 hash_set<tree> *inserted,
2541 hash_set<tree> *matched_vtables,
2542 tree otr_type,
2543 odr_type type,
2544 HOST_WIDE_INT otr_token,
2545 tree outer_type,
2546 HOST_WIDE_INT offset,
2547 bool *completep,
2548 vec <tree> &bases_to_consider,
2549 bool consider_construction)
2550 {
2551 tree binfo = TYPE_BINFO (type->type);
2552 unsigned int i;
2553 auto_vec <tree, 8> type_binfos;
2554 bool possibly_instantiated = type_possibly_instantiated_p (type->type);
2555
2556 /* We may need to consider types w/o instances because of possible derived
2557 types using their methods either directly or via construction vtables.
2558 We are safe to skip them when all derivations are known, since we will
2559 handle them later.
2560 This is done by recording them to BASES_TO_CONSIDER array. */
2561 if (possibly_instantiated || consider_construction)
2562 {
2563 record_target_from_binfo (nodes,
2564 (!possibly_instantiated
2565 && type_all_derivations_known_p (type->type))
2566 ? &bases_to_consider : NULL,
2567 binfo, otr_type, type_binfos, otr_token,
2568 outer_type, offset,
2569 inserted, matched_vtables,
2570 type->anonymous_namespace, completep);
2571 }
2572 for (i = 0; i < type->derived_types.length (); i++)
2573 possible_polymorphic_call_targets_1 (nodes, inserted,
2574 matched_vtables,
2575 otr_type,
2576 type->derived_types[i],
2577 otr_token, outer_type, offset, completep,
2578 bases_to_consider, consider_construction);
2579 }
2580
2581 /* Cache of queries for polymorphic call targets.
2582
2583 Enumerating all call targets may get expensive when there are many
2584 polymorphic calls in the program, so we memoize all the previous
2585 queries and avoid duplicated work. */
2586
2587 struct polymorphic_call_target_d
2588 {
2589 HOST_WIDE_INT otr_token;
2590 ipa_polymorphic_call_context context;
2591 odr_type type;
2592 vec <cgraph_node *> targets;
2593 tree decl_warning;
2594 int type_warning;
2595 bool complete;
2596 bool speculative;
2597 };
2598
2599 /* Polymorphic call target cache helpers. */
2600
2601 struct polymorphic_call_target_hasher
2602 : pointer_hash <polymorphic_call_target_d>
2603 {
2604 static inline hashval_t hash (const polymorphic_call_target_d *);
2605 static inline bool equal (const polymorphic_call_target_d *,
2606 const polymorphic_call_target_d *);
2607 static inline void remove (polymorphic_call_target_d *);
2608 };
2609
2610 /* Return the computed hashcode for ODR_QUERY. */
2611
2612 inline hashval_t
2613 polymorphic_call_target_hasher::hash (const polymorphic_call_target_d *odr_query)
2614 {
2615 inchash::hash hstate (odr_query->otr_token);
2616
2617 hstate.add_wide_int (odr_query->type->id);
2618 hstate.merge_hash (TYPE_UID (odr_query->context.outer_type));
2619 hstate.add_wide_int (odr_query->context.offset);
2620
2621 if (odr_query->context.speculative_outer_type)
2622 {
2623 hstate.merge_hash (TYPE_UID (odr_query->context.speculative_outer_type));
2624 hstate.add_wide_int (odr_query->context.speculative_offset);
2625 }
2626 hstate.add_flag (odr_query->speculative);
2627 hstate.add_flag (odr_query->context.maybe_in_construction);
2628 hstate.add_flag (odr_query->context.maybe_derived_type);
2629 hstate.add_flag (odr_query->context.speculative_maybe_derived_type);
2630 hstate.commit_flag ();
2631 return hstate.end ();
2632 }
2633
2634 /* Compare cache entries T1 and T2. */
2635
2636 inline bool
2637 polymorphic_call_target_hasher::equal (const polymorphic_call_target_d *t1,
2638 const polymorphic_call_target_d *t2)
2639 {
2640 return (t1->type == t2->type && t1->otr_token == t2->otr_token
2641 && t1->speculative == t2->speculative
2642 && t1->context.offset == t2->context.offset
2643 && t1->context.speculative_offset == t2->context.speculative_offset
2644 && t1->context.outer_type == t2->context.outer_type
2645 && t1->context.speculative_outer_type == t2->context.speculative_outer_type
2646 && t1->context.maybe_in_construction
2647 == t2->context.maybe_in_construction
2648 && t1->context.maybe_derived_type == t2->context.maybe_derived_type
2649 && (t1->context.speculative_maybe_derived_type
2650 == t2->context.speculative_maybe_derived_type));
2651 }
2652
2653 /* Remove entry in polymorphic call target cache hash. */
2654
2655 inline void
2656 polymorphic_call_target_hasher::remove (polymorphic_call_target_d *v)
2657 {
2658 v->targets.release ();
2659 free (v);
2660 }
2661
2662 /* Polymorphic call target query cache. */
2663
2664 typedef hash_table<polymorphic_call_target_hasher>
2665 polymorphic_call_target_hash_type;
2666 static polymorphic_call_target_hash_type *polymorphic_call_target_hash;
2667
2668 /* Destroy polymorphic call target query cache. */
2669
2670 static void
2671 free_polymorphic_call_targets_hash ()
2672 {
2673 if (cached_polymorphic_call_targets)
2674 {
2675 delete polymorphic_call_target_hash;
2676 polymorphic_call_target_hash = NULL;
2677 delete cached_polymorphic_call_targets;
2678 cached_polymorphic_call_targets = NULL;
2679 }
2680 }
2681
2682 /* When virtual function is removed, we may need to flush the cache. */
2683
2684 static void
2685 devirt_node_removal_hook (struct cgraph_node *n, void *d ATTRIBUTE_UNUSED)
2686 {
2687 if (cached_polymorphic_call_targets
2688 && cached_polymorphic_call_targets->contains (n))
2689 free_polymorphic_call_targets_hash ();
2690 }
2691
2692 /* Look up base of BINFO that has virtual table VTABLE with OFFSET. */
2693
2694 tree
2695 subbinfo_with_vtable_at_offset (tree binfo, unsigned HOST_WIDE_INT offset,
2696 tree vtable)
2697 {
2698 tree v = BINFO_VTABLE (binfo);
2699 int i;
2700 tree base_binfo;
2701 unsigned HOST_WIDE_INT this_offset;
2702
2703 if (v)
2704 {
2705 if (!vtable_pointer_value_to_vtable (v, &v, &this_offset))
2706 gcc_unreachable ();
2707
2708 if (offset == this_offset
2709 && DECL_ASSEMBLER_NAME (v) == DECL_ASSEMBLER_NAME (vtable))
2710 return binfo;
2711 }
2712
2713 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
2714 if (polymorphic_type_binfo_p (base_binfo))
2715 {
2716 base_binfo = subbinfo_with_vtable_at_offset (base_binfo, offset, vtable);
2717 if (base_binfo)
2718 return base_binfo;
2719 }
2720 return NULL;
2721 }
2722
2723 /* T is known constant value of virtual table pointer.
2724 Store virtual table to V and its offset to OFFSET.
2725 Return false if T does not look like virtual table reference. */
2726
2727 bool
2728 vtable_pointer_value_to_vtable (const_tree t, tree *v,
2729 unsigned HOST_WIDE_INT *offset)
2730 {
2731 /* We expect &MEM[(void *)&virtual_table + 16B].
2732 We obtain object's BINFO from the context of the virtual table.
2733 This one contains pointer to virtual table represented via
2734 POINTER_PLUS_EXPR. Verify that this pointer matches what
2735 we propagated through.
2736
2737 In the case of virtual inheritance, the virtual tables may
2738 be nested, i.e. the offset may be different from 16 and we may
2739 need to dive into the type representation. */
2740 if (TREE_CODE (t) == ADDR_EXPR
2741 && TREE_CODE (TREE_OPERAND (t, 0)) == MEM_REF
2742 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 0)) == ADDR_EXPR
2743 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 1)) == INTEGER_CST
2744 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t, 0), 0), 0))
2745 == VAR_DECL)
2746 && DECL_VIRTUAL_P (TREE_OPERAND (TREE_OPERAND
2747 (TREE_OPERAND (t, 0), 0), 0)))
2748 {
2749 *v = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t, 0), 0), 0);
2750 *offset = tree_to_uhwi (TREE_OPERAND (TREE_OPERAND (t, 0), 1));
2751 return true;
2752 }
2753
2754 /* Alternative representation, used by C++ frontend is POINTER_PLUS_EXPR.
2755 We need to handle it when T comes from static variable initializer or
2756 BINFO. */
2757 if (TREE_CODE (t) == POINTER_PLUS_EXPR)
2758 {
2759 *offset = tree_to_uhwi (TREE_OPERAND (t, 1));
2760 t = TREE_OPERAND (t, 0);
2761 }
2762 else
2763 *offset = 0;
2764
2765 if (TREE_CODE (t) != ADDR_EXPR)
2766 return false;
2767 *v = TREE_OPERAND (t, 0);
2768 return true;
2769 }
2770
2771 /* T is known constant value of virtual table pointer. Return BINFO of the
2772 instance type. */
2773
2774 tree
2775 vtable_pointer_value_to_binfo (const_tree t)
2776 {
2777 tree vtable;
2778 unsigned HOST_WIDE_INT offset;
2779
2780 if (!vtable_pointer_value_to_vtable (t, &vtable, &offset))
2781 return NULL_TREE;
2782
2783 /* FIXME: for stores of construction vtables we return NULL,
2784 because we do not have BINFO for those. Eventually we should fix
2785 our representation to allow this case to be handled, too.
2786 In the case we see store of BINFO we however may assume
2787 that standard folding will be able to cope with it. */
2788 return subbinfo_with_vtable_at_offset (TYPE_BINFO (DECL_CONTEXT (vtable)),
2789 offset, vtable);
2790 }
2791
2792 /* Walk bases of OUTER_TYPE that contain OTR_TYPE at OFFSET.
2793 Look up their respective virtual methods for OTR_TOKEN and OTR_TYPE
2794 and insert them in NODES.
2795
2796 MATCHED_VTABLES and INSERTED is used to avoid duplicated work. */
2797
2798 static void
2799 record_targets_from_bases (tree otr_type,
2800 HOST_WIDE_INT otr_token,
2801 tree outer_type,
2802 HOST_WIDE_INT offset,
2803 vec <cgraph_node *> &nodes,
2804 hash_set<tree> *inserted,
2805 hash_set<tree> *matched_vtables,
2806 bool *completep)
2807 {
2808 while (true)
2809 {
2810 HOST_WIDE_INT pos, size;
2811 tree base_binfo;
2812 tree fld;
2813
2814 if (types_same_for_odr (outer_type, otr_type))
2815 return;
2816
2817 for (fld = TYPE_FIELDS (outer_type); fld; fld = DECL_CHAIN (fld))
2818 {
2819 if (TREE_CODE (fld) != FIELD_DECL)
2820 continue;
2821
2822 pos = int_bit_position (fld);
2823 size = tree_to_shwi (DECL_SIZE (fld));
2824 if (pos <= offset && (pos + size) > offset
2825 /* Do not get confused by zero sized bases. */
2826 && polymorphic_type_binfo_p (TYPE_BINFO (TREE_TYPE (fld))))
2827 break;
2828 }
2829 /* Within a class type we should always find corresponding fields. */
2830 gcc_assert (fld && TREE_CODE (TREE_TYPE (fld)) == RECORD_TYPE);
2831
2832 /* Nonbase types should have been stripped by outer_class_type. */
2833 gcc_assert (DECL_ARTIFICIAL (fld));
2834
2835 outer_type = TREE_TYPE (fld);
2836 offset -= pos;
2837
2838 base_binfo = get_binfo_at_offset (TYPE_BINFO (outer_type),
2839 offset, otr_type);
2840 if (!base_binfo)
2841 {
2842 gcc_assert (odr_violation_reported);
2843 return;
2844 }
2845 gcc_assert (base_binfo);
2846 if (!matched_vtables->add (BINFO_VTABLE (base_binfo)))
2847 {
2848 bool can_refer;
2849 tree target = gimple_get_virt_method_for_binfo (otr_token,
2850 base_binfo,
2851 &can_refer);
2852 if (!target || ! DECL_CXX_DESTRUCTOR_P (target))
2853 maybe_record_node (nodes, target, inserted, can_refer, completep);
2854 matched_vtables->add (BINFO_VTABLE (base_binfo));
2855 }
2856 }
2857 }
2858
2859 /* When virtual table is removed, we may need to flush the cache. */
2860
2861 static void
2862 devirt_variable_node_removal_hook (varpool_node *n,
2863 void *d ATTRIBUTE_UNUSED)
2864 {
2865 if (cached_polymorphic_call_targets
2866 && DECL_VIRTUAL_P (n->decl)
2867 && type_in_anonymous_namespace_p (DECL_CONTEXT (n->decl)))
2868 free_polymorphic_call_targets_hash ();
2869 }
2870
2871 /* Record about how many calls would benefit from given type to be final. */
2872
2873 struct odr_type_warn_count
2874 {
2875 tree type;
2876 int count;
2877 gcov_type dyn_count;
2878 };
2879
2880 /* Record about how many calls would benefit from given method to be final. */
2881
2882 struct decl_warn_count
2883 {
2884 tree decl;
2885 int count;
2886 gcov_type dyn_count;
2887 };
2888
2889 /* Information about type and decl warnings. */
2890
2891 struct final_warning_record
2892 {
2893 gcov_type dyn_count;
2894 auto_vec<odr_type_warn_count> type_warnings;
2895 hash_map<tree, decl_warn_count> decl_warnings;
2896 };
2897 struct final_warning_record *final_warning_records;
2898
2899 /* Return vector containing possible targets of polymorphic call of type
2900 OTR_TYPE calling method OTR_TOKEN within type of OTR_OUTER_TYPE and OFFSET.
2901 If INCLUDE_BASES is true, walk also base types of OUTER_TYPES containing
2902 OTR_TYPE and include their virtual method. This is useful for types
2903 possibly in construction or destruction where the virtual table may
2904 temporarily change to one of base types. INCLUDE_DERIVER_TYPES make
2905 us to walk the inheritance graph for all derivations.
2906
2907 If COMPLETEP is non-NULL, store true if the list is complete.
2908 CACHE_TOKEN (if non-NULL) will get stored to an unique ID of entry
2909 in the target cache. If user needs to visit every target list
2910 just once, it can memoize them.
2911
2912 If SPECULATIVE is set, the list will not contain targets that
2913 are not speculatively taken.
2914
2915 Returned vector is placed into cache. It is NOT caller's responsibility
2916 to free it. The vector can be freed on cgraph_remove_node call if
2917 the particular node is a virtual function present in the cache. */
2918
2919 vec <cgraph_node *>
2920 possible_polymorphic_call_targets (tree otr_type,
2921 HOST_WIDE_INT otr_token,
2922 ipa_polymorphic_call_context context,
2923 bool *completep,
2924 void **cache_token,
2925 bool speculative)
2926 {
2927 static struct cgraph_node_hook_list *node_removal_hook_holder;
2928 vec <cgraph_node *> nodes = vNULL;
2929 auto_vec <tree, 8> bases_to_consider;
2930 odr_type type, outer_type;
2931 polymorphic_call_target_d key;
2932 polymorphic_call_target_d **slot;
2933 unsigned int i;
2934 tree binfo, target;
2935 bool complete;
2936 bool can_refer = false;
2937 bool skipped = false;
2938
2939 otr_type = TYPE_MAIN_VARIANT (otr_type);
2940
2941 /* If ODR is not initialized or the context is invalid, return empty
2942 incomplete list. */
2943 if (!odr_hash || context.invalid || !TYPE_BINFO (otr_type))
2944 {
2945 if (completep)
2946 *completep = context.invalid;
2947 if (cache_token)
2948 *cache_token = NULL;
2949 return nodes;
2950 }
2951
2952 /* Do not bother to compute speculative info when user do not asks for it. */
2953 if (!speculative || !context.speculative_outer_type)
2954 context.clear_speculation ();
2955
2956 type = get_odr_type (otr_type, true);
2957
2958 /* Recording type variants would waste results cache. */
2959 gcc_assert (!context.outer_type
2960 || TYPE_MAIN_VARIANT (context.outer_type) == context.outer_type);
2961
2962 /* Look up the outer class type we want to walk.
2963 If we fail to do so, the context is invalid. */
2964 if ((context.outer_type || context.speculative_outer_type)
2965 && !context.restrict_to_inner_class (otr_type))
2966 {
2967 if (completep)
2968 *completep = true;
2969 if (cache_token)
2970 *cache_token = NULL;
2971 return nodes;
2972 }
2973 gcc_assert (!context.invalid);
2974
2975 /* Check that restrict_to_inner_class kept the main variant. */
2976 gcc_assert (!context.outer_type
2977 || TYPE_MAIN_VARIANT (context.outer_type) == context.outer_type);
2978
2979 /* We canonicalize our query, so we do not need extra hashtable entries. */
2980
2981 /* Without outer type, we have no use for offset. Just do the
2982 basic search from inner type. */
2983 if (!context.outer_type)
2984 context.clear_outer_type (otr_type);
2985 /* We need to update our hierarchy if the type does not exist. */
2986 outer_type = get_odr_type (context.outer_type, true);
2987 /* If the type is complete, there are no derivations. */
2988 if (TYPE_FINAL_P (outer_type->type))
2989 context.maybe_derived_type = false;
2990
2991 /* Initialize query cache. */
2992 if (!cached_polymorphic_call_targets)
2993 {
2994 cached_polymorphic_call_targets = new hash_set<cgraph_node *>;
2995 polymorphic_call_target_hash
2996 = new polymorphic_call_target_hash_type (23);
2997 if (!node_removal_hook_holder)
2998 {
2999 node_removal_hook_holder =
3000 symtab->add_cgraph_removal_hook (&devirt_node_removal_hook, NULL);
3001 symtab->add_varpool_removal_hook (&devirt_variable_node_removal_hook,
3002 NULL);
3003 }
3004 }
3005
3006 if (in_lto_p)
3007 {
3008 if (context.outer_type != otr_type)
3009 context.outer_type
3010 = get_odr_type (context.outer_type, true)->type;
3011 if (context.speculative_outer_type)
3012 context.speculative_outer_type
3013 = get_odr_type (context.speculative_outer_type, true)->type;
3014 }
3015
3016 /* Look up cached answer. */
3017 key.type = type;
3018 key.otr_token = otr_token;
3019 key.speculative = speculative;
3020 key.context = context;
3021 slot = polymorphic_call_target_hash->find_slot (&key, INSERT);
3022 if (cache_token)
3023 *cache_token = (void *)*slot;
3024 if (*slot)
3025 {
3026 if (completep)
3027 *completep = (*slot)->complete;
3028 if ((*slot)->type_warning && final_warning_records)
3029 {
3030 final_warning_records->type_warnings[(*slot)->type_warning - 1].count++;
3031 final_warning_records->type_warnings[(*slot)->type_warning - 1].dyn_count
3032 += final_warning_records->dyn_count;
3033 }
3034 if (!speculative && (*slot)->decl_warning && final_warning_records)
3035 {
3036 struct decl_warn_count *c =
3037 final_warning_records->decl_warnings.get ((*slot)->decl_warning);
3038 c->count++;
3039 c->dyn_count += final_warning_records->dyn_count;
3040 }
3041 return (*slot)->targets;
3042 }
3043
3044 complete = true;
3045
3046 /* Do actual search. */
3047 timevar_push (TV_IPA_VIRTUAL_CALL);
3048 *slot = XCNEW (polymorphic_call_target_d);
3049 if (cache_token)
3050 *cache_token = (void *)*slot;
3051 (*slot)->type = type;
3052 (*slot)->otr_token = otr_token;
3053 (*slot)->context = context;
3054 (*slot)->speculative = speculative;
3055
3056 hash_set<tree> inserted;
3057 hash_set<tree> matched_vtables;
3058
3059 /* First insert targets we speculatively identified as likely. */
3060 if (context.speculative_outer_type)
3061 {
3062 odr_type speculative_outer_type;
3063 bool speculation_complete = true;
3064
3065 /* First insert target from type itself and check if it may have
3066 derived types. */
3067 speculative_outer_type = get_odr_type (context.speculative_outer_type, true);
3068 if (TYPE_FINAL_P (speculative_outer_type->type))
3069 context.speculative_maybe_derived_type = false;
3070 binfo = get_binfo_at_offset (TYPE_BINFO (speculative_outer_type->type),
3071 context.speculative_offset, otr_type);
3072 if (binfo)
3073 target = gimple_get_virt_method_for_binfo (otr_token, binfo,
3074 &can_refer);
3075 else
3076 target = NULL;
3077
3078 /* In the case we get complete method, we don't need
3079 to walk derivations. */
3080 if (target && DECL_FINAL_P (target))
3081 context.speculative_maybe_derived_type = false;
3082 if (type_possibly_instantiated_p (speculative_outer_type->type))
3083 maybe_record_node (nodes, target, &inserted, can_refer, &speculation_complete);
3084 if (binfo)
3085 matched_vtables.add (BINFO_VTABLE (binfo));
3086
3087
3088 /* Next walk recursively all derived types. */
3089 if (context.speculative_maybe_derived_type)
3090 for (i = 0; i < speculative_outer_type->derived_types.length(); i++)
3091 possible_polymorphic_call_targets_1 (nodes, &inserted,
3092 &matched_vtables,
3093 otr_type,
3094 speculative_outer_type->derived_types[i],
3095 otr_token, speculative_outer_type->type,
3096 context.speculative_offset,
3097 &speculation_complete,
3098 bases_to_consider,
3099 false);
3100 }
3101
3102 if (!speculative || !nodes.length ())
3103 {
3104 /* First see virtual method of type itself. */
3105 binfo = get_binfo_at_offset (TYPE_BINFO (outer_type->type),
3106 context.offset, otr_type);
3107 if (binfo)
3108 target = gimple_get_virt_method_for_binfo (otr_token, binfo,
3109 &can_refer);
3110 else
3111 {
3112 gcc_assert (odr_violation_reported);
3113 target = NULL;
3114 }
3115
3116 /* Destructors are never called through construction virtual tables,
3117 because the type is always known. */
3118 if (target && DECL_CXX_DESTRUCTOR_P (target))
3119 context.maybe_in_construction = false;
3120
3121 if (target)
3122 {
3123 /* In the case we get complete method, we don't need
3124 to walk derivations. */
3125 if (DECL_FINAL_P (target))
3126 context.maybe_derived_type = false;
3127 }
3128
3129 /* If OUTER_TYPE is abstract, we know we are not seeing its instance. */
3130 if (type_possibly_instantiated_p (outer_type->type))
3131 maybe_record_node (nodes, target, &inserted, can_refer, &complete);
3132 else
3133 skipped = true;
3134
3135 if (binfo)
3136 matched_vtables.add (BINFO_VTABLE (binfo));
3137
3138 /* Next walk recursively all derived types. */
3139 if (context.maybe_derived_type)
3140 {
3141 for (i = 0; i < outer_type->derived_types.length(); i++)
3142 possible_polymorphic_call_targets_1 (nodes, &inserted,
3143 &matched_vtables,
3144 otr_type,
3145 outer_type->derived_types[i],
3146 otr_token, outer_type->type,
3147 context.offset, &complete,
3148 bases_to_consider,
3149 context.maybe_in_construction);
3150
3151 if (!outer_type->all_derivations_known)
3152 {
3153 if (!speculative && final_warning_records)
3154 {
3155 if (complete
3156 && nodes.length () == 1
3157 && warn_suggest_final_types
3158 && !outer_type->derived_types.length ())
3159 {
3160 if (outer_type->id >= (int)final_warning_records->type_warnings.length ())
3161 final_warning_records->type_warnings.safe_grow_cleared
3162 (odr_types.length ());
3163 final_warning_records->type_warnings[outer_type->id].count++;
3164 final_warning_records->type_warnings[outer_type->id].dyn_count
3165 += final_warning_records->dyn_count;
3166 final_warning_records->type_warnings[outer_type->id].type
3167 = outer_type->type;
3168 (*slot)->type_warning = outer_type->id + 1;
3169 }
3170 if (complete
3171 && warn_suggest_final_methods
3172 && nodes.length () == 1
3173 && types_same_for_odr (DECL_CONTEXT (nodes[0]->decl),
3174 outer_type->type))
3175 {
3176 bool existed;
3177 struct decl_warn_count &c =
3178 final_warning_records->decl_warnings.get_or_insert
3179 (nodes[0]->decl, &existed);
3180
3181 if (existed)
3182 {
3183 c.count++;
3184 c.dyn_count += final_warning_records->dyn_count;
3185 }
3186 else
3187 {
3188 c.count = 1;
3189 c.dyn_count = final_warning_records->dyn_count;
3190 c.decl = nodes[0]->decl;
3191 }
3192 (*slot)->decl_warning = nodes[0]->decl;
3193 }
3194 }
3195 complete = false;
3196 }
3197 }
3198
3199 if (!speculative)
3200 {
3201 /* Destructors are never called through construction virtual tables,
3202 because the type is always known. One of entries may be
3203 cxa_pure_virtual so look to at least two of them. */
3204 if (context.maybe_in_construction)
3205 for (i =0 ; i < MIN (nodes.length (), 2); i++)
3206 if (DECL_CXX_DESTRUCTOR_P (nodes[i]->decl))
3207 context.maybe_in_construction = false;
3208 if (context.maybe_in_construction)
3209 {
3210 if (type != outer_type
3211 && (!skipped
3212 || (context.maybe_derived_type
3213 && !type_all_derivations_known_p (outer_type->type))))
3214 record_targets_from_bases (otr_type, otr_token, outer_type->type,
3215 context.offset, nodes, &inserted,
3216 &matched_vtables, &complete);
3217 if (skipped)
3218 maybe_record_node (nodes, target, &inserted, can_refer, &complete);
3219 for (i = 0; i < bases_to_consider.length(); i++)
3220 maybe_record_node (nodes, bases_to_consider[i], &inserted, can_refer, &complete);
3221 }
3222 }
3223 }
3224
3225 (*slot)->targets = nodes;
3226 (*slot)->complete = complete;
3227 if (completep)
3228 *completep = complete;
3229
3230 timevar_pop (TV_IPA_VIRTUAL_CALL);
3231 return nodes;
3232 }
3233
3234 bool
3235 add_decl_warning (const tree &key ATTRIBUTE_UNUSED, const decl_warn_count &value,
3236 vec<const decl_warn_count*> *vec)
3237 {
3238 vec->safe_push (&value);
3239 return true;
3240 }
3241
3242 /* Dump target list TARGETS into FILE. */
3243
3244 static void
3245 dump_targets (FILE *f, vec <cgraph_node *> targets)
3246 {
3247 unsigned int i;
3248
3249 for (i = 0; i < targets.length (); i++)
3250 {
3251 char *name = NULL;
3252 if (in_lto_p)
3253 name = cplus_demangle_v3 (targets[i]->asm_name (), 0);
3254 fprintf (f, " %s/%i", name ? name : targets[i]->name (), targets[i]->order);
3255 if (in_lto_p)
3256 free (name);
3257 if (!targets[i]->definition)
3258 fprintf (f, " (no definition%s)",
3259 DECL_DECLARED_INLINE_P (targets[i]->decl)
3260 ? " inline" : "");
3261 }
3262 fprintf (f, "\n");
3263 }
3264
3265 /* Dump all possible targets of a polymorphic call. */
3266
3267 void
3268 dump_possible_polymorphic_call_targets (FILE *f,
3269 tree otr_type,
3270 HOST_WIDE_INT otr_token,
3271 const ipa_polymorphic_call_context &ctx)
3272 {
3273 vec <cgraph_node *> targets;
3274 bool final;
3275 odr_type type = get_odr_type (TYPE_MAIN_VARIANT (otr_type), false);
3276 unsigned int len;
3277
3278 if (!type)
3279 return;
3280 targets = possible_polymorphic_call_targets (otr_type, otr_token,
3281 ctx,
3282 &final, NULL, false);
3283 fprintf (f, " Targets of polymorphic call of type %i:", type->id);
3284 print_generic_expr (f, type->type, TDF_SLIM);
3285 fprintf (f, " token %i\n", (int)otr_token);
3286
3287 ctx.dump (f);
3288
3289 fprintf (f, " %s%s%s%s\n ",
3290 final ? "This is a complete list." :
3291 "This is partial list; extra targets may be defined in other units.",
3292 ctx.maybe_in_construction ? " (base types included)" : "",
3293 ctx.maybe_derived_type ? " (derived types included)" : "",
3294 ctx.speculative_maybe_derived_type ? " (speculative derived types included)" : "");
3295 len = targets.length ();
3296 dump_targets (f, targets);
3297
3298 targets = possible_polymorphic_call_targets (otr_type, otr_token,
3299 ctx,
3300 &final, NULL, true);
3301 if (targets.length () != len)
3302 {
3303 fprintf (f, " Speculative targets:");
3304 dump_targets (f, targets);
3305 }
3306 gcc_assert (targets.length () <= len);
3307 fprintf (f, "\n");
3308 }
3309
3310
3311 /* Return true if N can be possibly target of a polymorphic call of
3312 OTR_TYPE/OTR_TOKEN. */
3313
3314 bool
3315 possible_polymorphic_call_target_p (tree otr_type,
3316 HOST_WIDE_INT otr_token,
3317 const ipa_polymorphic_call_context &ctx,
3318 struct cgraph_node *n)
3319 {
3320 vec <cgraph_node *> targets;
3321 unsigned int i;
3322 enum built_in_function fcode;
3323 bool final;
3324
3325 if (TREE_CODE (TREE_TYPE (n->decl)) == FUNCTION_TYPE
3326 && ((fcode = DECL_FUNCTION_CODE (n->decl))
3327 == BUILT_IN_UNREACHABLE
3328 || fcode == BUILT_IN_TRAP))
3329 return true;
3330
3331 if (!odr_hash)
3332 return true;
3333 targets = possible_polymorphic_call_targets (otr_type, otr_token, ctx, &final);
3334 for (i = 0; i < targets.length (); i++)
3335 if (n->semantically_equivalent_p (targets[i]))
3336 return true;
3337
3338 /* At a moment we allow middle end to dig out new external declarations
3339 as a targets of polymorphic calls. */
3340 if (!final && !n->definition)
3341 return true;
3342 return false;
3343 }
3344
3345
3346
3347 /* Return true if N can be possibly target of a polymorphic call of
3348 OBJ_TYPE_REF expression REF in STMT. */
3349
3350 bool
3351 possible_polymorphic_call_target_p (tree ref,
3352 gimple *stmt,
3353 struct cgraph_node *n)
3354 {
3355 ipa_polymorphic_call_context context (current_function_decl, ref, stmt);
3356 tree call_fn = gimple_call_fn (stmt);
3357
3358 return possible_polymorphic_call_target_p (obj_type_ref_class (call_fn),
3359 tree_to_uhwi
3360 (OBJ_TYPE_REF_TOKEN (call_fn)),
3361 context,
3362 n);
3363 }
3364
3365
3366 /* After callgraph construction new external nodes may appear.
3367 Add them into the graph. */
3368
3369 void
3370 update_type_inheritance_graph (void)
3371 {
3372 struct cgraph_node *n;
3373
3374 if (!odr_hash)
3375 return;
3376 free_polymorphic_call_targets_hash ();
3377 timevar_push (TV_IPA_INHERITANCE);
3378 /* We reconstruct the graph starting from types of all methods seen in the
3379 the unit. */
3380 FOR_EACH_FUNCTION (n)
3381 if (DECL_VIRTUAL_P (n->decl)
3382 && !n->definition
3383 && n->real_symbol_p ())
3384 get_odr_type (TYPE_METHOD_BASETYPE (TREE_TYPE (n->decl)), true);
3385 timevar_pop (TV_IPA_INHERITANCE);
3386 }
3387
3388
3389 /* Return true if N looks like likely target of a polymorphic call.
3390 Rule out cxa_pure_virtual, noreturns, function declared cold and
3391 other obvious cases. */
3392
3393 bool
3394 likely_target_p (struct cgraph_node *n)
3395 {
3396 int flags;
3397 /* cxa_pure_virtual and similar things are not likely. */
3398 if (TREE_CODE (TREE_TYPE (n->decl)) != METHOD_TYPE)
3399 return false;
3400 flags = flags_from_decl_or_type (n->decl);
3401 if (flags & ECF_NORETURN)
3402 return false;
3403 if (lookup_attribute ("cold",
3404 DECL_ATTRIBUTES (n->decl)))
3405 return false;
3406 if (n->frequency < NODE_FREQUENCY_NORMAL)
3407 return false;
3408 /* If there are no live virtual tables referring the target,
3409 the only way the target can be called is an instance coming from other
3410 compilation unit; speculative devirtualization is built around an
3411 assumption that won't happen. */
3412 if (!referenced_from_vtable_p (n))
3413 return false;
3414 return true;
3415 }
3416
3417 /* Compare type warning records P1 and P2 and choose one with larger count;
3418 helper for qsort. */
3419
3420 int
3421 type_warning_cmp (const void *p1, const void *p2)
3422 {
3423 const odr_type_warn_count *t1 = (const odr_type_warn_count *)p1;
3424 const odr_type_warn_count *t2 = (const odr_type_warn_count *)p2;
3425
3426 if (t1->dyn_count < t2->dyn_count)
3427 return 1;
3428 if (t1->dyn_count > t2->dyn_count)
3429 return -1;
3430 return t2->count - t1->count;
3431 }
3432
3433 /* Compare decl warning records P1 and P2 and choose one with larger count;
3434 helper for qsort. */
3435
3436 int
3437 decl_warning_cmp (const void *p1, const void *p2)
3438 {
3439 const decl_warn_count *t1 = *(const decl_warn_count * const *)p1;
3440 const decl_warn_count *t2 = *(const decl_warn_count * const *)p2;
3441
3442 if (t1->dyn_count < t2->dyn_count)
3443 return 1;
3444 if (t1->dyn_count > t2->dyn_count)
3445 return -1;
3446 return t2->count - t1->count;
3447 }
3448
3449
3450 /* Try to speculatively devirtualize call to OTR_TYPE with OTR_TOKEN with
3451 context CTX. */
3452
3453 struct cgraph_node *
3454 try_speculative_devirtualization (tree otr_type, HOST_WIDE_INT otr_token,
3455 ipa_polymorphic_call_context ctx)
3456 {
3457 vec <cgraph_node *>targets
3458 = possible_polymorphic_call_targets
3459 (otr_type, otr_token, ctx, NULL, NULL, true);
3460 unsigned int i;
3461 struct cgraph_node *likely_target = NULL;
3462
3463 for (i = 0; i < targets.length (); i++)
3464 if (likely_target_p (targets[i]))
3465 {
3466 if (likely_target)
3467 return NULL;
3468 likely_target = targets[i];
3469 }
3470 if (!likely_target
3471 ||!likely_target->definition
3472 || DECL_EXTERNAL (likely_target->decl))
3473 return NULL;
3474
3475 /* Don't use an implicitly-declared destructor (c++/58678). */
3476 struct cgraph_node *non_thunk_target
3477 = likely_target->function_symbol ();
3478 if (DECL_ARTIFICIAL (non_thunk_target->decl))
3479 return NULL;
3480 if (likely_target->get_availability () <= AVAIL_INTERPOSABLE
3481 && likely_target->can_be_discarded_p ())
3482 return NULL;
3483 return likely_target;
3484 }
3485
3486 /* The ipa-devirt pass.
3487 When polymorphic call has only one likely target in the unit,
3488 turn it into a speculative call. */
3489
3490 static unsigned int
3491 ipa_devirt (void)
3492 {
3493 struct cgraph_node *n;
3494 hash_set<void *> bad_call_targets;
3495 struct cgraph_edge *e;
3496
3497 int npolymorphic = 0, nspeculated = 0, nconverted = 0, ncold = 0;
3498 int nmultiple = 0, noverwritable = 0, ndevirtualized = 0, nnotdefined = 0;
3499 int nwrong = 0, nok = 0, nexternal = 0, nartificial = 0;
3500 int ndropped = 0;
3501
3502 if (!odr_types_ptr)
3503 return 0;
3504
3505 if (dump_file)
3506 dump_type_inheritance_graph (dump_file);
3507
3508 /* We can output -Wsuggest-final-methods and -Wsuggest-final-types warnings.
3509 This is implemented by setting up final_warning_records that are updated
3510 by get_polymorphic_call_targets.
3511 We need to clear cache in this case to trigger recomputation of all
3512 entries. */
3513 if (warn_suggest_final_methods || warn_suggest_final_types)
3514 {
3515 final_warning_records = new (final_warning_record);
3516 final_warning_records->type_warnings.safe_grow_cleared (odr_types.length ());
3517 free_polymorphic_call_targets_hash ();
3518 }
3519
3520 FOR_EACH_DEFINED_FUNCTION (n)
3521 {
3522 bool update = false;
3523 if (!opt_for_fn (n->decl, flag_devirtualize))
3524 continue;
3525 if (dump_file && n->indirect_calls)
3526 fprintf (dump_file, "\n\nProcesing function %s/%i\n",
3527 n->name (), n->order);
3528 for (e = n->indirect_calls; e; e = e->next_callee)
3529 if (e->indirect_info->polymorphic)
3530 {
3531 struct cgraph_node *likely_target = NULL;
3532 void *cache_token;
3533 bool final;
3534
3535 if (final_warning_records)
3536 final_warning_records->dyn_count = e->count;
3537
3538 vec <cgraph_node *>targets
3539 = possible_polymorphic_call_targets
3540 (e, &final, &cache_token, true);
3541 unsigned int i;
3542
3543 /* Trigger warnings by calculating non-speculative targets. */
3544 if (warn_suggest_final_methods || warn_suggest_final_types)
3545 possible_polymorphic_call_targets (e);
3546
3547 if (dump_file)
3548 dump_possible_polymorphic_call_targets
3549 (dump_file, e);
3550
3551 npolymorphic++;
3552
3553 /* See if the call can be devirtualized by means of ipa-prop's
3554 polymorphic call context propagation. If not, we can just
3555 forget about this call being polymorphic and avoid some heavy
3556 lifting in remove_unreachable_nodes that will otherwise try to
3557 keep all possible targets alive until inlining and in the inliner
3558 itself.
3559
3560 This may need to be revisited once we add further ways to use
3561 the may edges, but it is a resonable thing to do right now. */
3562
3563 if ((e->indirect_info->param_index == -1
3564 || (!opt_for_fn (n->decl, flag_devirtualize_speculatively)
3565 && e->indirect_info->vptr_changed))
3566 && !flag_ltrans_devirtualize)
3567 {
3568 e->indirect_info->polymorphic = false;
3569 ndropped++;
3570 if (dump_file)
3571 fprintf (dump_file, "Dropping polymorphic call info;"
3572 " it can not be used by ipa-prop\n");
3573 }
3574
3575 if (!opt_for_fn (n->decl, flag_devirtualize_speculatively))
3576 continue;
3577
3578 if (!e->maybe_hot_p ())
3579 {
3580 if (dump_file)
3581 fprintf (dump_file, "Call is cold\n\n");
3582 ncold++;
3583 continue;
3584 }
3585 if (e->speculative)
3586 {
3587 if (dump_file)
3588 fprintf (dump_file, "Call is already speculated\n\n");
3589 nspeculated++;
3590
3591 /* When dumping see if we agree with speculation. */
3592 if (!dump_file)
3593 continue;
3594 }
3595 if (bad_call_targets.contains (cache_token))
3596 {
3597 if (dump_file)
3598 fprintf (dump_file, "Target list is known to be useless\n\n");
3599 nmultiple++;
3600 continue;
3601 }
3602 for (i = 0; i < targets.length (); i++)
3603 if (likely_target_p (targets[i]))
3604 {
3605 if (likely_target)
3606 {
3607 likely_target = NULL;
3608 if (dump_file)
3609 fprintf (dump_file, "More than one likely target\n\n");
3610 nmultiple++;
3611 break;
3612 }
3613 likely_target = targets[i];
3614 }
3615 if (!likely_target)
3616 {
3617 bad_call_targets.add (cache_token);
3618 continue;
3619 }
3620 /* This is reached only when dumping; check if we agree or disagree
3621 with the speculation. */
3622 if (e->speculative)
3623 {
3624 struct cgraph_edge *e2;
3625 struct ipa_ref *ref;
3626 e->speculative_call_info (e2, e, ref);
3627 if (e2->callee->ultimate_alias_target ()
3628 == likely_target->ultimate_alias_target ())
3629 {
3630 fprintf (dump_file, "We agree with speculation\n\n");
3631 nok++;
3632 }
3633 else
3634 {
3635 fprintf (dump_file, "We disagree with speculation\n\n");
3636 nwrong++;
3637 }
3638 continue;
3639 }
3640 if (!likely_target->definition)
3641 {
3642 if (dump_file)
3643 fprintf (dump_file, "Target is not a definition\n\n");
3644 nnotdefined++;
3645 continue;
3646 }
3647 /* Do not introduce new references to external symbols. While we
3648 can handle these just well, it is common for programs to
3649 incorrectly with headers defining methods they are linked
3650 with. */
3651 if (DECL_EXTERNAL (likely_target->decl))
3652 {
3653 if (dump_file)
3654 fprintf (dump_file, "Target is external\n\n");
3655 nexternal++;
3656 continue;
3657 }
3658 /* Don't use an implicitly-declared destructor (c++/58678). */
3659 struct cgraph_node *non_thunk_target
3660 = likely_target->function_symbol ();
3661 if (DECL_ARTIFICIAL (non_thunk_target->decl))
3662 {
3663 if (dump_file)
3664 fprintf (dump_file, "Target is artificial\n\n");
3665 nartificial++;
3666 continue;
3667 }
3668 if (likely_target->get_availability () <= AVAIL_INTERPOSABLE
3669 && likely_target->can_be_discarded_p ())
3670 {
3671 if (dump_file)
3672 fprintf (dump_file, "Target is overwritable\n\n");
3673 noverwritable++;
3674 continue;
3675 }
3676 else if (dbg_cnt (devirt))
3677 {
3678 if (dump_enabled_p ())
3679 {
3680 location_t locus = gimple_location_safe (e->call_stmt);
3681 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, locus,
3682 "speculatively devirtualizing call in %s/%i to %s/%i\n",
3683 n->name (), n->order,
3684 likely_target->name (),
3685 likely_target->order);
3686 }
3687 if (!likely_target->can_be_discarded_p ())
3688 {
3689 cgraph_node *alias;
3690 alias = dyn_cast<cgraph_node *> (likely_target->noninterposable_alias ());
3691 if (alias)
3692 likely_target = alias;
3693 }
3694 nconverted++;
3695 update = true;
3696 e->make_speculative
3697 (likely_target, e->count * 8 / 10, e->frequency * 8 / 10);
3698 }
3699 }
3700 if (update)
3701 inline_update_overall_summary (n);
3702 }
3703 if (warn_suggest_final_methods || warn_suggest_final_types)
3704 {
3705 if (warn_suggest_final_types)
3706 {
3707 final_warning_records->type_warnings.qsort (type_warning_cmp);
3708 for (unsigned int i = 0;
3709 i < final_warning_records->type_warnings.length (); i++)
3710 if (final_warning_records->type_warnings[i].count)
3711 {
3712 tree type = final_warning_records->type_warnings[i].type;
3713 int count = final_warning_records->type_warnings[i].count;
3714 long long dyn_count
3715 = final_warning_records->type_warnings[i].dyn_count;
3716
3717 if (!dyn_count)
3718 warning_n (DECL_SOURCE_LOCATION (TYPE_NAME (type)),
3719 OPT_Wsuggest_final_types, count,
3720 "Declaring type %qD final "
3721 "would enable devirtualization of %i call",
3722 "Declaring type %qD final "
3723 "would enable devirtualization of %i calls",
3724 type,
3725 count);
3726 else
3727 warning_n (DECL_SOURCE_LOCATION (TYPE_NAME (type)),
3728 OPT_Wsuggest_final_types, count,
3729 "Declaring type %qD final "
3730 "would enable devirtualization of %i call "
3731 "executed %lli times",
3732 "Declaring type %qD final "
3733 "would enable devirtualization of %i calls "
3734 "executed %lli times",
3735 type,
3736 count,
3737 dyn_count);
3738 }
3739 }
3740
3741 if (warn_suggest_final_methods)
3742 {
3743 auto_vec<const decl_warn_count*> decl_warnings_vec;
3744
3745 final_warning_records->decl_warnings.traverse
3746 <vec<const decl_warn_count *> *, add_decl_warning> (&decl_warnings_vec);
3747 decl_warnings_vec.qsort (decl_warning_cmp);
3748 for (unsigned int i = 0; i < decl_warnings_vec.length (); i++)
3749 {
3750 tree decl = decl_warnings_vec[i]->decl;
3751 int count = decl_warnings_vec[i]->count;
3752 long long dyn_count = decl_warnings_vec[i]->dyn_count;
3753
3754 if (!dyn_count)
3755 if (DECL_CXX_DESTRUCTOR_P (decl))
3756 warning_n (DECL_SOURCE_LOCATION (decl),
3757 OPT_Wsuggest_final_methods, count,
3758 "Declaring virtual destructor of %qD final "
3759 "would enable devirtualization of %i call",
3760 "Declaring virtual destructor of %qD final "
3761 "would enable devirtualization of %i calls",
3762 DECL_CONTEXT (decl), count);
3763 else
3764 warning_n (DECL_SOURCE_LOCATION (decl),
3765 OPT_Wsuggest_final_methods, count,
3766 "Declaring method %qD final "
3767 "would enable devirtualization of %i call",
3768 "Declaring method %qD final "
3769 "would enable devirtualization of %i calls",
3770 decl, count);
3771 else if (DECL_CXX_DESTRUCTOR_P (decl))
3772 warning_n (DECL_SOURCE_LOCATION (decl),
3773 OPT_Wsuggest_final_methods, count,
3774 "Declaring virtual destructor of %qD final "
3775 "would enable devirtualization of %i call "
3776 "executed %lli times",
3777 "Declaring virtual destructor of %qD final "
3778 "would enable devirtualization of %i calls "
3779 "executed %lli times",
3780 DECL_CONTEXT (decl), count, dyn_count);
3781 else
3782 warning_n (DECL_SOURCE_LOCATION (decl),
3783 OPT_Wsuggest_final_methods, count,
3784 "Declaring method %qD final "
3785 "would enable devirtualization of %i call "
3786 "executed %lli times",
3787 "Declaring method %qD final "
3788 "would enable devirtualization of %i calls "
3789 "executed %lli times",
3790 decl, count, dyn_count);
3791 }
3792 }
3793
3794 delete (final_warning_records);
3795 final_warning_records = 0;
3796 }
3797
3798 if (dump_file)
3799 fprintf (dump_file,
3800 "%i polymorphic calls, %i devirtualized,"
3801 " %i speculatively devirtualized, %i cold\n"
3802 "%i have multiple targets, %i overwritable,"
3803 " %i already speculated (%i agree, %i disagree),"
3804 " %i external, %i not defined, %i artificial, %i infos dropped\n",
3805 npolymorphic, ndevirtualized, nconverted, ncold,
3806 nmultiple, noverwritable, nspeculated, nok, nwrong,
3807 nexternal, nnotdefined, nartificial, ndropped);
3808 return ndevirtualized || ndropped ? TODO_remove_functions : 0;
3809 }
3810
3811 namespace {
3812
3813 const pass_data pass_data_ipa_devirt =
3814 {
3815 IPA_PASS, /* type */
3816 "devirt", /* name */
3817 OPTGROUP_NONE, /* optinfo_flags */
3818 TV_IPA_DEVIRT, /* tv_id */
3819 0, /* properties_required */
3820 0, /* properties_provided */
3821 0, /* properties_destroyed */
3822 0, /* todo_flags_start */
3823 ( TODO_dump_symtab ), /* todo_flags_finish */
3824 };
3825
3826 class pass_ipa_devirt : public ipa_opt_pass_d
3827 {
3828 public:
3829 pass_ipa_devirt (gcc::context *ctxt)
3830 : ipa_opt_pass_d (pass_data_ipa_devirt, ctxt,
3831 NULL, /* generate_summary */
3832 NULL, /* write_summary */
3833 NULL, /* read_summary */
3834 NULL, /* write_optimization_summary */
3835 NULL, /* read_optimization_summary */
3836 NULL, /* stmt_fixup */
3837 0, /* function_transform_todo_flags_start */
3838 NULL, /* function_transform */
3839 NULL) /* variable_transform */
3840 {}
3841
3842 /* opt_pass methods: */
3843 virtual bool gate (function *)
3844 {
3845 /* In LTO, always run the IPA passes and decide on function basis if the
3846 pass is enabled. */
3847 if (in_lto_p)
3848 return true;
3849 return (flag_devirtualize
3850 && (flag_devirtualize_speculatively
3851 || (warn_suggest_final_methods
3852 || warn_suggest_final_types))
3853 && optimize);
3854 }
3855
3856 virtual unsigned int execute (function *) { return ipa_devirt (); }
3857
3858 }; // class pass_ipa_devirt
3859
3860 } // anon namespace
3861
3862 ipa_opt_pass_d *
3863 make_pass_ipa_devirt (gcc::context *ctxt)
3864 {
3865 return new pass_ipa_devirt (ctxt);
3866 }
3867
3868 #include "gt-ipa-devirt.h"