1 /* Basic IPA utilities for type inheritance graph construction and
3 Copyright (C) 2013-2015 Free Software Foundation, Inc.
4 Contributed by Jan Hubicka
6 This file is part of GCC.
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
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
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/>. */
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.
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.
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.
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
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.
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).
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
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.
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.
84 build_type_inheritance_graph triggers a construction of the type inheritance
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.
92 The inheritance graph is represented as follows:
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)
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.
102 possible_polymorphic_call_targets returns, given an parameters found in
103 indirect polymorphic edge all possible polymorphic call targets of the call.
105 pass_ipa_devirt performs simple speculative devirtualization.
110 #include "coretypes.h"
112 #include "hash-set.h"
113 #include "machmode.h"
114 #include "hash-map.h"
116 #include "double-int.h"
120 #include "wide-int.h"
123 #include "fold-const.h"
124 #include "print-tree.h"
127 #include "basic-block.h"
129 #include "plugin-api.h"
130 #include "hard-reg-set.h"
131 #include "function.h"
137 #include "statistics.h"
139 #include "fixed-value.h"
140 #include "insn-config.h"
144 #include "emit-rtl.h"
148 #include "tree-pass.h"
150 #include "hash-table.h"
151 #include "tree-pretty-print.h"
152 #include "ipa-utils.h"
153 #include "tree-ssa-alias.h"
154 #include "internal-fn.h"
155 #include "gimple-fold.h"
156 #include "gimple-expr.h"
158 #include "alloc-pool.h"
159 #include "symbol-summary.h"
160 #include "ipa-prop.h"
161 #include "ipa-inline.h"
162 #include "diagnostic.h"
163 #include "tree-dfa.h"
164 #include "demangle.h"
166 #include "gimple-pretty-print.h"
167 #include "stor-layout.h"
170 /* Hash based set of pairs of types. */
177 struct pair_traits
: default_hashset_traits
182 return TYPE_UID (p
.first
) ^ TYPE_UID (p
.second
);
185 is_empty (type_pair p
)
187 return p
.first
== NULL
;
190 is_deleted (type_pair p ATTRIBUTE_UNUSED
)
195 equal (const type_pair
&a
, const type_pair
&b
)
197 return a
.first
==b
.first
&& a
.second
== b
.second
;
200 mark_empty (type_pair
&e
)
206 static bool odr_types_equivalent_p (tree
, tree
, bool, bool *,
207 hash_set
<type_pair
,pair_traits
> *);
209 static bool odr_violation_reported
= false;
212 /* Pointer set of all call targets appearing in the cache. */
213 static hash_set
<cgraph_node
*> *cached_polymorphic_call_targets
;
215 /* The node of type inheritance graph. For each type unique in
216 One Definition Rule (ODR) sense, we produce one node linking all
217 main variants of types equivalent to it, bases and derived types. */
219 struct GTY(()) odr_type_d
223 /* All bases; built only for main variants of types. */
224 vec
<odr_type
> GTY((skip
)) bases
;
225 /* All derived types with virtual methods seen in unit;
226 built only for main variants of types. */
227 vec
<odr_type
> GTY((skip
)) derived_types
;
229 /* All equivalent types, if more than one. */
230 vec
<tree
, va_gc
> *types
;
231 /* Set of all equivalent types, if NON-NULL. */
232 hash_set
<tree
> * GTY((skip
)) types_set
;
234 /* Unique ID indexing the type in odr_types array. */
236 /* Is it in anonymous namespace? */
237 bool anonymous_namespace
;
238 /* Do we know about all derivations of given type? */
239 bool all_derivations_known
;
240 /* Did we report ODR violation here? */
244 /* Return TRUE if all derived types of T are known and thus
245 we may consider the walk of derived type complete.
247 This is typically true only for final anonymous namespace types and types
248 defined within functions (that may be COMDAT and thus shared across units,
249 but with the same set of derived types). */
252 type_all_derivations_known_p (const_tree t
)
254 if (TYPE_FINAL_P (t
))
258 /* Non-C++ types may have IDENTIFIER_NODE here, do not crash. */
259 if (!TYPE_NAME (t
) || TREE_CODE (TYPE_NAME (t
)) != TYPE_DECL
)
261 if (type_in_anonymous_namespace_p (t
))
263 return (decl_function_context (TYPE_NAME (t
)) != NULL
);
266 /* Return TRUE if type's constructors are all visible. */
269 type_all_ctors_visible_p (tree t
)
272 && symtab
->state
>= CONSTRUCTION
273 /* We can not always use type_all_derivations_known_p.
274 For function local types we must assume case where
275 the function is COMDAT and shared in between units.
277 TODO: These cases are quite easy to get, but we need
278 to keep track of C++ privatizing via -Wno-weak
279 as well as the IPA privatizing. */
280 && type_in_anonymous_namespace_p (t
);
283 /* Return TRUE if type may have instance. */
286 type_possibly_instantiated_p (tree t
)
291 /* TODO: Add abstract types here. */
292 if (!type_all_ctors_visible_p (t
))
295 vtable
= BINFO_VTABLE (TYPE_BINFO (t
));
296 if (TREE_CODE (vtable
) == POINTER_PLUS_EXPR
)
297 vtable
= TREE_OPERAND (TREE_OPERAND (vtable
, 0), 0);
298 vnode
= varpool_node::get (vtable
);
299 return vnode
&& vnode
->definition
;
302 /* One Definition Rule hashtable helpers. */
306 typedef odr_type_d value_type
;
307 typedef union tree_node compare_type
;
308 static inline hashval_t
hash (const value_type
*);
309 static inline bool equal (const value_type
*, const compare_type
*);
310 static inline void remove (value_type
*);
313 /* Return type that was declared with T's name so that T is an
314 qualified variant of it. */
317 main_odr_variant (const_tree t
)
319 if (TYPE_NAME (t
) && TREE_CODE (TYPE_NAME (t
)) == TYPE_DECL
)
320 return TREE_TYPE (TYPE_NAME (t
));
321 /* Unnamed types and non-C++ produced types can be compared by variants. */
323 return TYPE_MAIN_VARIANT (t
);
326 /* Produce hash based on type name. */
329 hash_type_name (tree t
)
331 gcc_checking_assert (main_odr_variant (t
) == t
);
333 /* If not in LTO, all main variants are unique, so we can do
336 return htab_hash_pointer (t
);
338 /* Anonymous types are unique. */
339 if (type_in_anonymous_namespace_p (t
))
340 return htab_hash_pointer (t
);
342 /* ODR types have name specified. */
344 && DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (t
)))
345 return IDENTIFIER_HASH_VALUE (DECL_ASSEMBLER_NAME (TYPE_NAME (t
)));
347 /* For polymorphic types that was compiled with -fno-lto-odr-type-merging
348 we can simply hash the virtual table. */
349 if (TREE_CODE (t
) == RECORD_TYPE
350 && TYPE_BINFO (t
) && BINFO_VTABLE (TYPE_BINFO (t
)))
352 tree v
= BINFO_VTABLE (TYPE_BINFO (t
));
355 if (TREE_CODE (v
) == POINTER_PLUS_EXPR
)
357 hash
= TREE_INT_CST_LOW (TREE_OPERAND (v
, 1));
358 v
= TREE_OPERAND (TREE_OPERAND (v
, 0), 0);
361 v
= DECL_ASSEMBLER_NAME (v
);
362 hash
= iterative_hash_hashval_t (hash
, htab_hash_pointer (v
));
366 /* Builtin types may appear as main variants of ODR types and are unique.
367 Sanity check we do not get anything that looks non-builtin. */
368 gcc_checking_assert (TREE_CODE (t
) == INTEGER_TYPE
369 || TREE_CODE (t
) == VOID_TYPE
370 || TREE_CODE (t
) == COMPLEX_TYPE
371 || TREE_CODE (t
) == REAL_TYPE
372 || TREE_CODE (t
) == POINTER_TYPE
);
373 return htab_hash_pointer (t
);
376 /* Return the computed hashcode for ODR_TYPE. */
379 odr_hasher::hash (const value_type
*odr_type
)
381 return hash_type_name (odr_type
->type
);
384 /* For languages with One Definition Rule, work out if
385 types are the same based on their name.
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.
391 Until we start streaming mangled type names, this function works
392 only for polymorphic types. */
395 types_same_for_odr (const_tree type1
, const_tree type2
)
397 gcc_checking_assert (TYPE_P (type1
) && TYPE_P (type2
));
399 type1
= main_odr_variant (type1
);
400 type2
= main_odr_variant (type2
);
408 /* Check for anonymous namespaces. Those have !TREE_PUBLIC
409 on the corresponding TYPE_STUB_DECL. */
410 if (type_in_anonymous_namespace_p (type1
)
411 || type_in_anonymous_namespace_p (type2
))
415 /* ODR name of the type is set in DECL_ASSEMBLER_NAME of its TYPE_NAME.
417 Ideally we should never need types without ODR names here. It can however
420 1) for builtin types that are not streamed but rebuilt in lto/lto-lang.c
421 Here testing for equivalence is safe, since their MAIN_VARIANTs are
423 2) for units streamed with -fno-lto-odr-type-merging. Here we can't
424 establish precise ODR equivalency, but for correctness we care only
425 about equivalency on complete polymorphic types. For these we can
426 compare assembler names of their virtual tables. */
427 if ((!TYPE_NAME (type1
) || !DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (type1
)))
428 || (!TYPE_NAME (type2
) || !DECL_ASSEMBLER_NAME_SET_P (TYPE_NAME (type2
))))
430 /* See if types are obviously different (i.e. different codes
431 or polymorphic wrt non-polymorphic). This is not strictly correct
432 for ODR violating programs, but we can't do better without streaming
434 if (TREE_CODE (type1
) != TREE_CODE (type2
))
436 if (TREE_CODE (type1
) == RECORD_TYPE
437 && (TYPE_BINFO (type1
) == NULL_TREE
) != (TYPE_BINFO (type1
) == NULL_TREE
))
439 if (TREE_CODE (type1
) == RECORD_TYPE
&& TYPE_BINFO (type1
)
440 && (BINFO_VTABLE (TYPE_BINFO (type1
)) == NULL_TREE
)
441 != (BINFO_VTABLE (TYPE_BINFO (type2
)) == NULL_TREE
))
444 /* At the moment we have no way to establish ODR equivalence at LTO
445 other than comparing virtual table pointers of polymorphic types.
446 Eventually we should start saving mangled names in TYPE_NAME.
447 Then this condition will become non-trivial. */
449 if (TREE_CODE (type1
) == RECORD_TYPE
450 && TYPE_BINFO (type1
) && TYPE_BINFO (type2
)
451 && BINFO_VTABLE (TYPE_BINFO (type1
))
452 && BINFO_VTABLE (TYPE_BINFO (type2
)))
454 tree v1
= BINFO_VTABLE (TYPE_BINFO (type1
));
455 tree v2
= BINFO_VTABLE (TYPE_BINFO (type2
));
456 gcc_assert (TREE_CODE (v1
) == POINTER_PLUS_EXPR
457 && TREE_CODE (v2
) == POINTER_PLUS_EXPR
);
458 return (operand_equal_p (TREE_OPERAND (v1
, 1),
459 TREE_OPERAND (v2
, 1), 0)
460 && DECL_ASSEMBLER_NAME
461 (TREE_OPERAND (TREE_OPERAND (v1
, 0), 0))
462 == DECL_ASSEMBLER_NAME
463 (TREE_OPERAND (TREE_OPERAND (v2
, 0), 0)));
467 return (DECL_ASSEMBLER_NAME (TYPE_NAME (type1
))
468 == DECL_ASSEMBLER_NAME (TYPE_NAME (type2
)));
471 /* Return true if we can decide on ODR equivalency.
473 In non-LTO it is always decide, in LTO however it depends in the type has
474 ODR info attached. */
477 types_odr_comparable (tree t1
, tree t2
)
480 || main_odr_variant (t1
) == main_odr_variant (t2
)
481 || (odr_type_p (t1
) && odr_type_p (t2
))
482 || (TREE_CODE (t1
) == RECORD_TYPE
&& TREE_CODE (t2
) == RECORD_TYPE
483 && TYPE_BINFO (t1
) && TYPE_BINFO (t2
)
484 && polymorphic_type_binfo_p (TYPE_BINFO (t1
))
485 && polymorphic_type_binfo_p (TYPE_BINFO (t2
))));
488 /* Return true if T1 and T2 are ODR equivalent. If ODR equivalency is not
489 known, be conservative and return false. */
492 types_must_be_same_for_odr (tree t1
, tree t2
)
494 if (types_odr_comparable (t1
, t2
))
495 return types_same_for_odr (t1
, t2
);
497 return main_odr_variant (t1
) == main_odr_variant (t2
);
500 /* Compare types T1 and T2 and return true if they are
504 odr_hasher::equal (const value_type
*t1
, const compare_type
*ct2
)
506 tree t2
= const_cast <tree
> (ct2
);
508 gcc_checking_assert (main_odr_variant (t2
) == t2
);
513 return types_same_for_odr (t1
->type
, t2
);
516 /* Free ODR type V. */
519 odr_hasher::remove (value_type
*v
)
522 v
->derived_types
.release ();
528 /* ODR type hash used to look up ODR type based on tree type node. */
530 typedef hash_table
<odr_hasher
> odr_hash_type
;
531 static odr_hash_type
*odr_hash
;
533 /* ODR types are also stored into ODR_TYPE vector to allow consistent
534 walking. Bases appear before derived types. Vector is garbage collected
535 so we won't end up visiting empty types. */
537 static GTY(()) vec
<odr_type
, va_gc
> *odr_types_ptr
;
538 #define odr_types (*odr_types_ptr)
540 /* Set TYPE_BINFO of TYPE and its variants to BINFO. */
542 set_type_binfo (tree type
, tree binfo
)
544 for (; type
; type
= TYPE_NEXT_VARIANT (type
))
545 if (COMPLETE_TYPE_P (type
))
546 TYPE_BINFO (type
) = binfo
;
548 gcc_assert (!TYPE_BINFO (type
));
551 /* Compare T2 and T2 based on name or structure. */
554 odr_subtypes_equivalent_p (tree t1
, tree t2
, hash_set
<type_pair
,pair_traits
> *visited
)
558 /* This can happen in incomplete types that should be handled earlier. */
559 gcc_assert (t1
&& t2
);
561 t1
= main_odr_variant (t1
);
562 t2
= main_odr_variant (t2
);
566 /* Anonymous namespace types must match exactly. */
567 an1
= type_in_anonymous_namespace_p (t1
);
568 an2
= type_in_anonymous_namespace_p (t2
);
569 if (an1
!= an2
|| an1
)
572 /* For ODR types be sure to compare their names.
573 To support -wno-odr-type-merging we allow one type to be non-ODR
574 and other ODR even though it is a violation. */
575 if (types_odr_comparable (t1
, t2
))
577 if (!types_same_for_odr (t1
, t2
))
579 /* Limit recursion: If subtypes are ODR types and we know
580 that they are same, be happy. */
581 if (!get_odr_type (t1
, true)->odr_violated
)
585 /* Component types, builtins and possibly violating ODR types
586 have to be compared structurally. */
587 if (TREE_CODE (t1
) != TREE_CODE (t2
))
589 if ((TYPE_NAME (t1
) == NULL_TREE
) != (TYPE_NAME (t2
) == NULL_TREE
))
591 if (TYPE_NAME (t1
) && DECL_NAME (TYPE_NAME (t1
)) != DECL_NAME (TYPE_NAME (t2
)))
594 type_pair pair
={t1
,t2
};
595 if (TYPE_UID (t1
) > TYPE_UID (t2
))
600 if (visited
->add (pair
))
602 return odr_types_equivalent_p (t1
, t2
, false, NULL
, visited
);
605 /* Compare two virtual tables, PREVAILING and VTABLE and output ODR
606 violation warnings. */
609 compare_virtual_tables (varpool_node
*prevailing
, varpool_node
*vtable
)
612 if (DECL_VIRTUAL_P (prevailing
->decl
) != DECL_VIRTUAL_P (vtable
->decl
))
614 odr_violation_reported
= true;
615 if (DECL_VIRTUAL_P (prevailing
->decl
))
617 varpool_node
*tmp
= prevailing
;
621 if (warning_at (DECL_SOURCE_LOCATION (TYPE_NAME (DECL_CONTEXT (vtable
->decl
))),
623 "virtual table of type %qD violates one definition rule",
624 DECL_CONTEXT (vtable
->decl
)))
625 inform (DECL_SOURCE_LOCATION (prevailing
->decl
),
626 "variable of same assembler name as the virtual table is "
627 "defined in another translation unit");
630 if (!prevailing
->definition
|| !vtable
->definition
)
632 for (n1
= 0, n2
= 0; true; n1
++, n2
++)
634 struct ipa_ref
*ref1
, *ref2
;
636 end1
= !prevailing
->iterate_reference (n1
, ref1
);
637 end2
= !vtable
->iterate_reference (n2
, ref2
);
641 && DECL_ASSEMBLER_NAME (ref1
->referred
->decl
)
642 != DECL_ASSEMBLER_NAME (ref2
->referred
->decl
)
644 && !DECL_VIRTUAL_P (ref2
->referred
->decl
)
645 && DECL_VIRTUAL_P (ref1
->referred
->decl
))
647 if (warning_at (DECL_SOURCE_LOCATION (TYPE_NAME (DECL_CONTEXT (vtable
->decl
))), 0,
648 "virtual table of type %qD contains RTTI information",
649 DECL_CONTEXT (vtable
->decl
)))
651 inform (DECL_SOURCE_LOCATION (TYPE_NAME (DECL_CONTEXT (prevailing
->decl
))),
652 "but is prevailed by one without from other translation unit");
653 inform (DECL_SOURCE_LOCATION (TYPE_NAME (DECL_CONTEXT (prevailing
->decl
))),
654 "RTTI will not work on this type");
657 end2
= !vtable
->iterate_reference (n2
, ref2
);
660 && DECL_ASSEMBLER_NAME (ref1
->referred
->decl
)
661 != DECL_ASSEMBLER_NAME (ref2
->referred
->decl
)
663 && !DECL_VIRTUAL_P (ref1
->referred
->decl
)
664 && DECL_VIRTUAL_P (ref2
->referred
->decl
))
667 end1
= !vtable
->iterate_reference (n1
, ref1
);
673 varpool_node
*tmp
= prevailing
;
678 if (warning_at (DECL_SOURCE_LOCATION
679 (TYPE_NAME (DECL_CONTEXT (vtable
->decl
))), 0,
680 "virtual table of type %qD violates "
681 "one definition rule",
682 DECL_CONTEXT (vtable
->decl
)))
684 inform (DECL_SOURCE_LOCATION
685 (TYPE_NAME (DECL_CONTEXT (prevailing
->decl
))),
686 "the conflicting type defined in another translation "
688 inform (DECL_SOURCE_LOCATION
689 (TYPE_NAME (DECL_CONTEXT (ref1
->referring
->decl
))),
690 "contains additional virtual method %qD",
691 ref1
->referred
->decl
);
695 if (DECL_ASSEMBLER_NAME (ref1
->referred
->decl
)
696 != DECL_ASSEMBLER_NAME (ref2
->referred
->decl
))
698 if (warning_at (DECL_SOURCE_LOCATION
699 (TYPE_NAME (DECL_CONTEXT (vtable
->decl
))), 0,
700 "virtual table of type %qD violates "
701 "one definition rule ",
702 DECL_CONTEXT (vtable
->decl
)))
704 inform (DECL_SOURCE_LOCATION
705 (TYPE_NAME (DECL_CONTEXT (prevailing
->decl
))),
706 "the conflicting type defined in another translation "
708 inform (DECL_SOURCE_LOCATION (ref1
->referred
->decl
),
709 "virtual method %qD", ref1
->referred
->decl
);
710 inform (DECL_SOURCE_LOCATION (ref2
->referred
->decl
),
711 "ought to match virtual method %qD but does not",
712 ref2
->referred
->decl
);
719 /* Output ODR violation warning about T1 and T2 with REASON.
720 Display location of ST1 and ST2 if REASON speaks about field or
722 If WARN is false, do nothing. Set WARNED if warning was indeed
726 warn_odr (tree t1
, tree t2
, tree st1
, tree st2
,
727 bool warn
, bool *warned
, const char *reason
)
729 tree decl2
= TYPE_NAME (t2
);
733 if (!warning_at (DECL_SOURCE_LOCATION (TYPE_NAME (t1
)), OPT_Wodr
,
734 "type %qT violates one definition rule",
739 /* For FIELD_DECL support also case where one of fields is
740 NULL - this is used when the structures have mismatching number of
742 else if (!st1
|| TREE_CODE (st1
) == FIELD_DECL
)
744 inform (DECL_SOURCE_LOCATION (decl2
),
745 "a different type is defined in another translation unit");
751 inform (DECL_SOURCE_LOCATION (st1
),
752 "the first difference of corresponding definitions is field %qD",
757 else if (TREE_CODE (st1
) == FUNCTION_DECL
)
759 inform (DECL_SOURCE_LOCATION (decl2
),
760 "a different type is defined in another translation unit");
761 inform (DECL_SOURCE_LOCATION (st1
),
762 "the first difference of corresponding definitions is method %qD",
768 inform (DECL_SOURCE_LOCATION (decl2
), reason
);
774 /* We already warned about ODR mismatch. T1 and T2 ought to be equivalent
775 because they are used on same place in ODR matching types.
776 They are not; inform the user. */
779 warn_types_mismatch (tree t1
, tree t2
)
781 if (!TYPE_NAME (t1
) || !TYPE_NAME (t2
))
783 /* In Firefox it is a common bug to have same types but in
784 different namespaces. Be a bit more informative on
786 if (TYPE_CONTEXT (t1
) && TYPE_CONTEXT (t2
)
787 && (((TREE_CODE (TYPE_CONTEXT (t1
)) == NAMESPACE_DECL
)
788 != (TREE_CODE (TYPE_CONTEXT (t2
)) == NAMESPACE_DECL
))
789 || (TREE_CODE (TYPE_CONTEXT (t1
)) == NAMESPACE_DECL
790 && (DECL_NAME (TYPE_CONTEXT (t1
)) !=
791 DECL_NAME (TYPE_CONTEXT (t2
))))))
792 inform (DECL_SOURCE_LOCATION (TYPE_NAME (t1
)),
793 "type %qT should match type %qT but is defined "
794 "in different namespace ",
797 inform (DECL_SOURCE_LOCATION (TYPE_NAME (t1
)),
798 "type %qT should match type %qT",
800 inform (DECL_SOURCE_LOCATION (TYPE_NAME (t2
)),
801 "the incompatible type is defined here");
804 /* Compare T1 and T2, report ODR violations if WARN is true and set
805 WARNED to true if anything is reported. Return true if types match.
806 If true is returned, the types are also compatible in the sense of
807 gimple_canonical_types_compatible_p. */
810 odr_types_equivalent_p (tree t1
, tree t2
, bool warn
, bool *warned
, hash_set
<type_pair
,pair_traits
> *visited
)
812 /* Check first for the obvious case of pointer identity. */
815 gcc_assert (!type_in_anonymous_namespace_p (t1
));
816 gcc_assert (!type_in_anonymous_namespace_p (t2
));
818 /* Can't be the same type if the types don't have the same code. */
819 if (TREE_CODE (t1
) != TREE_CODE (t2
))
821 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
822 G_("a different type is defined in another translation unit"));
826 if (TYPE_QUALS (t1
) != TYPE_QUALS (t2
))
828 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
829 G_("a type with different qualifiers is defined in another "
830 "translation unit"));
834 if (comp_type_attributes (t1
, t2
) != 1)
836 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
837 G_("a type with attributes "
838 "is defined in another translation unit"));
842 if (TREE_CODE (t1
) == ENUMERAL_TYPE
)
845 for (v1
= TYPE_VALUES (t1
), v2
= TYPE_VALUES (t2
);
846 v1
&& v2
; v1
= TREE_CHAIN (v1
), v2
= TREE_CHAIN (v2
))
848 if (TREE_PURPOSE (v1
) != TREE_PURPOSE (v2
))
850 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
851 G_("an enum with different value name"
852 " is defined in another translation unit"));
855 if (TREE_VALUE (v1
) != TREE_VALUE (v2
)
856 && !operand_equal_p (DECL_INITIAL (TREE_VALUE (v1
)),
857 DECL_INITIAL (TREE_VALUE (v2
)), 0))
859 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
860 G_("an enum with different values is defined"
861 " in another translation unit"));
867 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
868 G_("an enum with mismatching number of values "
869 "is defined in another translation unit"));
874 /* Non-aggregate types can be handled cheaply. */
875 if (INTEGRAL_TYPE_P (t1
)
876 || SCALAR_FLOAT_TYPE_P (t1
)
877 || FIXED_POINT_TYPE_P (t1
)
878 || TREE_CODE (t1
) == VECTOR_TYPE
879 || TREE_CODE (t1
) == COMPLEX_TYPE
880 || TREE_CODE (t1
) == OFFSET_TYPE
881 || POINTER_TYPE_P (t1
))
883 if (TYPE_PRECISION (t1
) != TYPE_PRECISION (t2
))
885 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
886 G_("a type with different precision is defined "
887 "in another translation unit"));
890 if (TYPE_UNSIGNED (t1
) != TYPE_UNSIGNED (t2
))
892 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
893 G_("a type with different signedness is defined "
894 "in another translation unit"));
898 if (TREE_CODE (t1
) == INTEGER_TYPE
899 && TYPE_STRING_FLAG (t1
) != TYPE_STRING_FLAG (t2
))
901 /* char WRT uint_8? */
902 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
903 G_("a different type is defined in another "
904 "translation unit"));
908 /* For canonical type comparisons we do not want to build SCCs
909 so we cannot compare pointed-to types. But we can, for now,
910 require the same pointed-to type kind and match what
911 useless_type_conversion_p would do. */
912 if (POINTER_TYPE_P (t1
))
914 if (TYPE_ADDR_SPACE (TREE_TYPE (t1
))
915 != TYPE_ADDR_SPACE (TREE_TYPE (t2
)))
917 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
918 G_("it is defined as a pointer in different address "
919 "space in another translation unit"));
923 if (!odr_subtypes_equivalent_p (TREE_TYPE (t1
), TREE_TYPE (t2
), visited
))
925 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
926 G_("it is defined as a pointer to different type "
927 "in another translation unit"));
929 warn_types_mismatch (TREE_TYPE (t1
), TREE_TYPE (t2
));
934 if ((TREE_CODE (t1
) == VECTOR_TYPE
|| TREE_CODE (t1
) == COMPLEX_TYPE
)
935 && !odr_subtypes_equivalent_p (TREE_TYPE (t1
), TREE_TYPE (t2
), visited
))
937 /* Probably specific enough. */
938 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
939 G_("a different type is defined "
940 "in another translation unit"));
942 warn_types_mismatch (TREE_TYPE (t1
), TREE_TYPE (t2
));
946 /* Do type-specific comparisons. */
947 else switch (TREE_CODE (t1
))
951 /* Array types are the same if the element types are the same and
952 the number of elements are the same. */
953 if (!odr_subtypes_equivalent_p (TREE_TYPE (t1
), TREE_TYPE (t2
), visited
))
955 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
956 G_("a different type is defined in another "
957 "translation unit"));
959 warn_types_mismatch (TREE_TYPE (t1
), TREE_TYPE (t2
));
961 gcc_assert (TYPE_STRING_FLAG (t1
) == TYPE_STRING_FLAG (t2
));
962 gcc_assert (TYPE_NONALIASED_COMPONENT (t1
)
963 == TYPE_NONALIASED_COMPONENT (t2
));
965 tree i1
= TYPE_DOMAIN (t1
);
966 tree i2
= TYPE_DOMAIN (t2
);
968 /* For an incomplete external array, the type domain can be
969 NULL_TREE. Check this condition also. */
970 if (i1
== NULL_TREE
|| i2
== NULL_TREE
)
973 tree min1
= TYPE_MIN_VALUE (i1
);
974 tree min2
= TYPE_MIN_VALUE (i2
);
975 tree max1
= TYPE_MAX_VALUE (i1
);
976 tree max2
= TYPE_MAX_VALUE (i2
);
978 /* In C++, minimums should be always 0. */
979 gcc_assert (min1
== min2
);
980 if (!operand_equal_p (max1
, max2
, 0))
982 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
983 G_("an array of different size is defined "
984 "in another translation unit"));
992 /* Function types are the same if the return type and arguments types
994 if (!odr_subtypes_equivalent_p (TREE_TYPE (t1
), TREE_TYPE (t2
), visited
))
996 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
997 G_("has different return value "
998 "in another translation unit"));
1000 warn_types_mismatch (TREE_TYPE (t1
), TREE_TYPE (t2
));
1004 if (TYPE_ARG_TYPES (t1
) == TYPE_ARG_TYPES (t2
))
1008 tree parms1
, parms2
;
1010 for (parms1
= TYPE_ARG_TYPES (t1
), parms2
= TYPE_ARG_TYPES (t2
);
1012 parms1
= TREE_CHAIN (parms1
), parms2
= TREE_CHAIN (parms2
))
1014 if (!odr_subtypes_equivalent_p
1015 (TREE_VALUE (parms1
), TREE_VALUE (parms2
), visited
))
1017 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
1018 G_("has different parameters in another "
1019 "translation unit"));
1021 warn_types_mismatch (TREE_VALUE (parms1
),
1022 TREE_VALUE (parms2
));
1027 if (parms1
|| parms2
)
1029 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
1030 G_("has different parameters "
1031 "in another translation unit"));
1040 case QUAL_UNION_TYPE
:
1044 /* For aggregate types, all the fields must be the same. */
1045 if (COMPLETE_TYPE_P (t1
) && COMPLETE_TYPE_P (t2
))
1047 for (f1
= TYPE_FIELDS (t1
), f2
= TYPE_FIELDS (t2
);
1049 f1
= TREE_CHAIN (f1
), f2
= TREE_CHAIN (f2
))
1051 /* Skip non-fields. */
1052 while (f1
&& TREE_CODE (f1
) != FIELD_DECL
)
1053 f1
= TREE_CHAIN (f1
);
1054 while (f2
&& TREE_CODE (f2
) != FIELD_DECL
)
1055 f2
= TREE_CHAIN (f2
);
1058 if (DECL_ARTIFICIAL (f1
) != DECL_ARTIFICIAL (f2
))
1060 if (DECL_NAME (f1
) != DECL_NAME (f2
)
1061 && !DECL_ARTIFICIAL (f1
))
1063 warn_odr (t1
, t2
, f1
, f2
, warn
, warned
,
1064 G_("a field with different name is defined "
1065 "in another translation unit"));
1068 if (!odr_subtypes_equivalent_p (TREE_TYPE (f1
), TREE_TYPE (f2
), visited
))
1070 /* Do not warn about artificial fields and just go into generic
1071 field mismatch warning. */
1072 if (DECL_ARTIFICIAL (f1
))
1075 warn_odr (t1
, t2
, f1
, f2
, warn
, warned
,
1076 G_("a field of same name but different type "
1077 "is defined in another translation unit"));
1079 warn_types_mismatch (TREE_TYPE (f1
), TREE_TYPE (f2
));
1082 if (!gimple_compare_field_offset (f1
, f2
))
1084 /* Do not warn about artificial fields and just go into generic
1085 field mismatch warning. */
1086 if (DECL_ARTIFICIAL (f1
))
1088 warn_odr (t1
, t2
, t1
, t2
, warn
, warned
,
1089 G_("fields has different layout "
1090 "in another translation unit"));
1093 gcc_assert (DECL_NONADDRESSABLE_P (f1
)
1094 == DECL_NONADDRESSABLE_P (f2
));
1097 /* If one aggregate has more fields than the other, they
1098 are not the same. */
1101 if (f1
&& DECL_ARTIFICIAL (f1
))
1103 if (f2
&& DECL_ARTIFICIAL (f2
))
1106 warn_odr (t1
, t2
, f1
, f2
, warn
, warned
,
1107 G_("a type with different number of fields "
1108 "is defined in another translation unit"));
1109 /* Ideally we should never get this generic message. */
1111 warn_odr (t1
, t2
, f1
, f2
, warn
, warned
,
1112 G_("a type with different memory representation "
1113 "is defined in another translation unit"));
1117 if ((TYPE_MAIN_VARIANT (t1
) == t1
|| TYPE_MAIN_VARIANT (t2
) == t2
)
1118 && (TYPE_METHODS (TYPE_MAIN_VARIANT (t1
))
1119 != TYPE_METHODS (TYPE_MAIN_VARIANT (t2
))))
1121 for (f1
= TYPE_METHODS (TYPE_MAIN_VARIANT (t1
)),
1122 f2
= TYPE_METHODS (TYPE_MAIN_VARIANT (t2
));
1123 f1
&& f2
; f1
= DECL_CHAIN (f1
), f2
= DECL_CHAIN (f2
))
1125 if (DECL_ASSEMBLER_NAME (f1
) != DECL_ASSEMBLER_NAME (f2
))
1127 warn_odr (t1
, t2
, f1
, f2
, warn
, warned
,
1128 G_("a different method of same type "
1129 "is defined in another translation unit"));
1132 if (DECL_VIRTUAL_P (f1
) != DECL_VIRTUAL_P (f2
))
1134 warn_odr (t1
, t2
, f1
, f2
, warn
, warned
,
1135 G_("s definition that differs by virtual "
1136 "keyword in another translation unit"));
1139 if (DECL_VINDEX (f1
) != DECL_VINDEX (f2
))
1141 warn_odr (t1
, t2
, f1
, f2
, warn
, warned
,
1142 G_("virtual table layout differs in another "
1143 "translation unit"));
1146 if (odr_subtypes_equivalent_p (TREE_TYPE (f1
), TREE_TYPE (f2
), visited
))
1148 warn_odr (t1
, t2
, f1
, f2
, warn
, warned
,
1149 G_("method with incompatible type is defined "
1150 "in another translation unit"));
1156 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
1157 G_("a type with different number of methods "
1158 "is defined in another translation unit"));
1173 /* Those are better to come last as they are utterly uninformative. */
1174 if (TYPE_SIZE (t1
) && TYPE_SIZE (t2
)
1175 && !operand_equal_p (TYPE_SIZE (t1
), TYPE_SIZE (t2
), 0))
1177 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
1178 G_("a type with different size "
1179 "is defined in another translation unit"));
1182 if (COMPLETE_TYPE_P (t1
) && COMPLETE_TYPE_P (t2
)
1183 && TYPE_ALIGN (t1
) != TYPE_ALIGN (t2
))
1185 warn_odr (t1
, t2
, NULL
, NULL
, warn
, warned
,
1186 G_("a type with different alignment "
1187 "is defined in another translation unit"));
1190 gcc_assert (!TYPE_SIZE_UNIT (t1
) || !TYPE_SIZE_UNIT (t2
)
1191 || operand_equal_p (TYPE_SIZE_UNIT (t1
),
1192 TYPE_SIZE_UNIT (t2
), 0));
1196 /* TYPE is equivalent to VAL by ODR, but its tree representation differs
1197 from VAL->type. This may happen in LTO where tree merging did not merge
1198 all variants of the same type. It may or may not mean the ODR violation.
1199 Add it to the list of duplicates and warn on some violations. */
1202 add_type_duplicate (odr_type val
, tree type
)
1204 bool build_bases
= false;
1205 if (!val
->types_set
)
1206 val
->types_set
= new hash_set
<tree
>;
1208 /* Always prefer complete type to be the leader. */
1209 if (!COMPLETE_TYPE_P (val
->type
)
1210 && COMPLETE_TYPE_P (type
))
1219 /* See if this duplicate is new. */
1220 if (!val
->types_set
->add (type
))
1223 bool base_mismatch
= false;
1225 bool warned
= false;
1226 hash_set
<type_pair
,pair_traits
> visited
;
1228 gcc_assert (in_lto_p
);
1229 vec_safe_push (val
->types
, type
);
1231 /* First we compare memory layout. */
1232 if (!odr_types_equivalent_p (val
->type
, type
, !flag_ltrans
&& !val
->odr_violated
,
1236 odr_violation_reported
= true;
1237 val
->odr_violated
= true;
1238 if (symtab
->dump_file
)
1240 fprintf (symtab
->dump_file
, "ODR violation\n");
1242 print_node (symtab
->dump_file
, "", val
->type
, 0);
1243 putc ('\n',symtab
->dump_file
);
1244 print_node (symtab
->dump_file
, "", type
, 0);
1245 putc ('\n',symtab
->dump_file
);
1249 /* Next sanity check that bases are the same. If not, we will end
1250 up producing wrong answers. */
1251 if (COMPLETE_TYPE_P (type
) && COMPLETE_TYPE_P (val
->type
)
1252 && TREE_CODE (val
->type
) == RECORD_TYPE
1253 && TREE_CODE (type
) == RECORD_TYPE
1254 && TYPE_BINFO (val
->type
) && TYPE_BINFO (type
))
1256 for (j
= 0, i
= 0; i
< BINFO_N_BASE_BINFOS (TYPE_BINFO (type
)); i
++)
1257 if (polymorphic_type_binfo_p (BINFO_BASE_BINFO (TYPE_BINFO (type
), i
)))
1259 odr_type base
= get_odr_type
1261 (BINFO_BASE_BINFO (TYPE_BINFO (type
),
1264 if (val
->bases
.length () <= j
|| val
->bases
[j
] != base
)
1265 base_mismatch
= true;
1271 odr_violation_reported
= true;
1273 if (!warned
&& !val
->odr_violated
)
1274 warn_odr (type
, val
->type
, NULL
, NULL
, !warned
, &warned
,
1275 "a type with the same name but different bases is "
1276 "defined in another translation unit");
1277 val
->odr_violated
= true;
1278 if (symtab
->dump_file
)
1280 fprintf (symtab
->dump_file
, "ODR bse violation or merging bug?\n");
1282 print_node (symtab
->dump_file
, "", val
->type
, 0);
1283 putc ('\n',symtab
->dump_file
);
1284 print_node (symtab
->dump_file
, "", type
, 0);
1285 putc ('\n',symtab
->dump_file
);
1290 /* Regularize things a little. During LTO same types may come with
1291 different BINFOs. Either because their virtual table was
1292 not merged by tree merging and only later at decl merging or
1293 because one type comes with external vtable, while other
1294 with internal. We want to merge equivalent binfos to conserve
1295 memory and streaming overhead.
1297 The external vtables are more harmful: they contain references
1298 to external declarations of methods that may be defined in the
1299 merged LTO unit. For this reason we absolutely need to remove
1300 them and replace by internal variants. Not doing so will lead
1301 to incomplete answers from possible_polymorphic_call_targets.
1303 FIXME: disable for now; because ODR types are now build during
1304 streaming in, the variants do not need to be linked to the type,
1305 yet. We need to do the merging in cleanup pass to be implemented
1307 if (!flag_ltrans
&& merge
1309 && TREE_CODE (val
->type
) == RECORD_TYPE
1310 && TREE_CODE (type
) == RECORD_TYPE
1311 && TYPE_BINFO (val
->type
) && TYPE_BINFO (type
)
1312 && TYPE_MAIN_VARIANT (type
) == type
1313 && TYPE_MAIN_VARIANT (val
->type
) == val
->type
1314 && BINFO_VTABLE (TYPE_BINFO (val
->type
))
1315 && BINFO_VTABLE (TYPE_BINFO (type
)))
1317 tree master_binfo
= TYPE_BINFO (val
->type
);
1318 tree v1
= BINFO_VTABLE (master_binfo
);
1319 tree v2
= BINFO_VTABLE (TYPE_BINFO (type
));
1321 if (TREE_CODE (v1
) == POINTER_PLUS_EXPR
)
1323 gcc_assert (TREE_CODE (v2
) == POINTER_PLUS_EXPR
1324 && operand_equal_p (TREE_OPERAND (v1
, 1),
1325 TREE_OPERAND (v2
, 1), 0));
1326 v1
= TREE_OPERAND (TREE_OPERAND (v1
, 0), 0);
1327 v2
= TREE_OPERAND (TREE_OPERAND (v2
, 0), 0);
1329 gcc_assert (DECL_ASSEMBLER_NAME (v1
)
1330 == DECL_ASSEMBLER_NAME (v2
));
1332 if (DECL_EXTERNAL (v1
) && !DECL_EXTERNAL (v2
))
1336 set_type_binfo (val
->type
, TYPE_BINFO (type
));
1337 for (i
= 0; i
< val
->types
->length (); i
++)
1339 if (TYPE_BINFO ((*val
->types
)[i
])
1341 set_type_binfo ((*val
->types
)[i
], TYPE_BINFO (type
));
1343 BINFO_TYPE (TYPE_BINFO (type
)) = val
->type
;
1346 set_type_binfo (type
, master_binfo
);
1352 /* Get ODR type hash entry for TYPE. If INSERT is true, create
1353 possibly new entry. */
1356 get_odr_type (tree type
, bool insert
)
1361 bool build_bases
= false;
1362 bool insert_to_odr_array
= false;
1365 type
= main_odr_variant (type
);
1367 hash
= hash_type_name (type
);
1368 slot
= odr_hash
->find_slot_with_hash (type
, hash
,
1369 insert
? INSERT
: NO_INSERT
);
1373 /* See if we already have entry for type. */
1378 /* With LTO we need to support multiple tree representation of
1379 the same ODR type. */
1380 if (val
->type
!= type
)
1381 build_bases
= add_type_duplicate (val
, type
);
1385 val
= ggc_cleared_alloc
<odr_type_d
> ();
1388 val
->derived_types
= vNULL
;
1389 val
->anonymous_namespace
= type_in_anonymous_namespace_p (type
);
1390 build_bases
= COMPLETE_TYPE_P (val
->type
);
1391 insert_to_odr_array
= true;
1394 if (build_bases
&& TREE_CODE (type
) == RECORD_TYPE
&& TYPE_BINFO (type
)
1395 && type
== TYPE_MAIN_VARIANT (type
))
1397 tree binfo
= TYPE_BINFO (type
);
1400 gcc_assert (BINFO_TYPE (TYPE_BINFO (val
->type
)) = type
);
1402 val
->all_derivations_known
= type_all_derivations_known_p (type
);
1404 for (i
= 0; i
< BINFO_N_BASE_BINFOS (binfo
); i
++)
1405 /* For now record only polymorphic types. other are
1406 pointless for devirtualization and we can not precisely
1407 determine ODR equivalency of these during LTO. */
1408 if (polymorphic_type_binfo_p (BINFO_BASE_BINFO (binfo
, i
)))
1410 odr_type base
= get_odr_type (BINFO_TYPE (BINFO_BASE_BINFO (binfo
,
1413 gcc_assert (TYPE_MAIN_VARIANT (base
->type
) == base
->type
);
1414 base
->derived_types
.safe_push (val
);
1415 val
->bases
.safe_push (base
);
1416 if (base
->id
> base_id
)
1420 /* Ensure that type always appears after bases. */
1421 if (insert_to_odr_array
)
1424 val
->id
= odr_types
.length ();
1425 vec_safe_push (odr_types_ptr
, val
);
1427 else if (base_id
> val
->id
)
1429 odr_types
[val
->id
] = 0;
1430 /* Be sure we did not recorded any derived types; these may need
1432 gcc_assert (val
->derived_types
.length() == 0);
1434 val
->id
= odr_types
.length ();
1435 vec_safe_push (odr_types_ptr
, val
);
1440 /* Add TYPE od ODR type hash. */
1443 register_odr_type (tree type
)
1446 odr_hash
= new odr_hash_type (23);
1447 /* Arrange things to be nicer and insert main variants first. */
1448 if (odr_type_p (TYPE_MAIN_VARIANT (type
)))
1449 get_odr_type (TYPE_MAIN_VARIANT (type
), true);
1450 if (TYPE_MAIN_VARIANT (type
) != type
)
1451 get_odr_type (type
, true);
1454 /* Return true if type is known to have no derivations. */
1457 type_known_to_have_no_deriavations_p (tree t
)
1459 return (type_all_derivations_known_p (t
)
1460 && (TYPE_FINAL_P (t
)
1462 && !get_odr_type (t
, true)->derived_types
.length())));
1465 /* Dump ODR type T and all its derived types. INDENT specifies indentation for
1466 recursive printing. */
1469 dump_odr_type (FILE *f
, odr_type t
, int indent
=0)
1472 fprintf (f
, "%*s type %i: ", indent
* 2, "", t
->id
);
1473 print_generic_expr (f
, t
->type
, TDF_SLIM
);
1474 fprintf (f
, "%s", t
->anonymous_namespace
? " (anonymous namespace)":"");
1475 fprintf (f
, "%s\n", t
->all_derivations_known
? " (derivations known)":"");
1476 if (TYPE_NAME (t
->type
))
1478 fprintf (f
, "%*s defined at: %s:%i\n", indent
* 2, "",
1479 DECL_SOURCE_FILE (TYPE_NAME (t
->type
)),
1480 DECL_SOURCE_LINE (TYPE_NAME (t
->type
)));
1482 if (t
->bases
.length ())
1484 fprintf (f
, "%*s base odr type ids: ", indent
* 2, "");
1485 for (i
= 0; i
< t
->bases
.length (); i
++)
1486 fprintf (f
, " %i", t
->bases
[i
]->id
);
1489 if (t
->derived_types
.length ())
1491 fprintf (f
, "%*s derived types:\n", indent
* 2, "");
1492 for (i
= 0; i
< t
->derived_types
.length (); i
++)
1493 dump_odr_type (f
, t
->derived_types
[i
], indent
+ 1);
1498 /* Dump the type inheritance graph. */
1501 dump_type_inheritance_graph (FILE *f
)
1506 fprintf (f
, "\n\nType inheritance graph:\n");
1507 for (i
= 0; i
< odr_types
.length (); i
++)
1509 if (odr_types
[i
] && odr_types
[i
]->bases
.length () == 0)
1510 dump_odr_type (f
, odr_types
[i
]);
1512 for (i
= 0; i
< odr_types
.length (); i
++)
1514 if (odr_types
[i
] && odr_types
[i
]->types
&& odr_types
[i
]->types
->length ())
1517 fprintf (f
, "Duplicate tree types for odr type %i\n", i
);
1518 print_node (f
, "", odr_types
[i
]->type
, 0);
1519 for (j
= 0; j
< odr_types
[i
]->types
->length (); j
++)
1522 fprintf (f
, "duplicate #%i\n", j
);
1523 print_node (f
, "", (*odr_types
[i
]->types
)[j
], 0);
1524 t
= (*odr_types
[i
]->types
)[j
];
1525 while (TYPE_P (t
) && TYPE_CONTEXT (t
))
1527 t
= TYPE_CONTEXT (t
);
1528 print_node (f
, "", t
, 0);
1536 /* Given method type T, return type of class it belongs to.
1537 Look up this pointer and get its type. */
1540 method_class_type (const_tree t
)
1542 tree first_parm_type
= TREE_VALUE (TYPE_ARG_TYPES (t
));
1543 gcc_assert (TREE_CODE (t
) == METHOD_TYPE
);
1545 return TREE_TYPE (first_parm_type
);
1548 /* Initialize IPA devirt and build inheritance tree graph. */
1551 build_type_inheritance_graph (void)
1553 struct symtab_node
*n
;
1554 FILE *inheritance_dump_file
;
1559 timevar_push (TV_IPA_INHERITANCE
);
1560 inheritance_dump_file
= dump_begin (TDI_inheritance
, &flags
);
1561 odr_hash
= new odr_hash_type (23);
1563 /* We reconstruct the graph starting of types of all methods seen in the
1566 if (is_a
<cgraph_node
*> (n
)
1567 && DECL_VIRTUAL_P (n
->decl
)
1568 && n
->real_symbol_p ())
1569 get_odr_type (TYPE_MAIN_VARIANT (method_class_type (TREE_TYPE (n
->decl
))),
1572 /* Look also for virtual tables of types that do not define any methods.
1574 We need it in a case where class B has virtual base of class A
1575 re-defining its virtual method and there is class C with no virtual
1576 methods with B as virtual base.
1578 Here we output B's virtual method in two variant - for non-virtual
1579 and virtual inheritance. B's virtual table has non-virtual version,
1580 while C's has virtual.
1582 For this reason we need to know about C in order to include both
1583 variants of B. More correctly, record_target_from_binfo should
1584 add both variants of the method when walking B, but we have no
1585 link in between them.
1587 We rely on fact that either the method is exported and thus we
1588 assume it is called externally or C is in anonymous namespace and
1589 thus we will see the vtable. */
1591 else if (is_a
<varpool_node
*> (n
)
1592 && DECL_VIRTUAL_P (n
->decl
)
1593 && TREE_CODE (DECL_CONTEXT (n
->decl
)) == RECORD_TYPE
1594 && TYPE_BINFO (DECL_CONTEXT (n
->decl
))
1595 && polymorphic_type_binfo_p (TYPE_BINFO (DECL_CONTEXT (n
->decl
))))
1596 get_odr_type (TYPE_MAIN_VARIANT (DECL_CONTEXT (n
->decl
)), true);
1597 if (inheritance_dump_file
)
1599 dump_type_inheritance_graph (inheritance_dump_file
);
1600 dump_end (TDI_inheritance
, inheritance_dump_file
);
1602 timevar_pop (TV_IPA_INHERITANCE
);
1605 /* Return true if N has reference from live virtual table
1606 (and thus can be a destination of polymorphic call).
1607 Be conservatively correct when callgraph is not built or
1608 if the method may be referred externally. */
1611 referenced_from_vtable_p (struct cgraph_node
*node
)
1614 struct ipa_ref
*ref
;
1617 if (node
->externally_visible
1618 || DECL_EXTERNAL (node
->decl
)
1619 || node
->used_from_other_partition
)
1622 /* Keep this test constant time.
1623 It is unlikely this can happen except for the case where speculative
1624 devirtualization introduced many speculative edges to this node.
1625 In this case the target is very likely alive anyway. */
1626 if (node
->ref_list
.referring
.length () > 100)
1629 /* We need references built. */
1630 if (symtab
->state
<= CONSTRUCTION
)
1633 for (i
= 0; node
->iterate_referring (i
, ref
); i
++)
1635 if ((ref
->use
== IPA_REF_ALIAS
1636 && referenced_from_vtable_p (dyn_cast
<cgraph_node
*> (ref
->referring
)))
1637 || (ref
->use
== IPA_REF_ADDR
1638 && TREE_CODE (ref
->referring
->decl
) == VAR_DECL
1639 && DECL_VIRTUAL_P (ref
->referring
->decl
)))
1647 /* If TARGET has associated node, record it in the NODES array.
1648 CAN_REFER specify if program can refer to the target directly.
1649 if TARGET is unknown (NULL) or it can not be inserted (for example because
1650 its body was already removed and there is no way to refer to it), clear
1654 maybe_record_node (vec
<cgraph_node
*> &nodes
,
1655 tree target
, hash_set
<tree
> *inserted
,
1659 struct cgraph_node
*target_node
, *alias_target
;
1660 enum availability avail
;
1662 /* cxa_pure_virtual and __builtin_unreachable do not need to be added into
1663 list of targets; the runtime effect of calling them is undefined.
1664 Only "real" virtual methods should be accounted. */
1665 if (target
&& TREE_CODE (TREE_TYPE (target
)) != METHOD_TYPE
)
1670 /* The only case when method of anonymous namespace becomes unreferable
1671 is when we completely optimized it out. */
1674 || !type_in_anonymous_namespace_p (DECL_CONTEXT (target
)))
1682 target_node
= cgraph_node::get (target
);
1684 /* Prefer alias target over aliases, so we do not get confused by
1688 alias_target
= target_node
->ultimate_alias_target (&avail
);
1689 if (target_node
!= alias_target
1690 && avail
>= AVAIL_AVAILABLE
1691 && target_node
->get_availability ())
1692 target_node
= alias_target
;
1695 /* Method can only be called by polymorphic call if any
1696 of vtables referring to it are alive.
1698 While this holds for non-anonymous functions, too, there are
1699 cases where we want to keep them in the list; for example
1700 inline functions with -fno-weak are static, but we still
1701 may devirtualize them when instance comes from other unit.
1702 The same holds for LTO.
1704 Currently we ignore these functions in speculative devirtualization.
1705 ??? Maybe it would make sense to be more aggressive for LTO even
1708 && type_in_anonymous_namespace_p (DECL_CONTEXT (target
))
1710 || !referenced_from_vtable_p (target_node
)))
1712 /* See if TARGET is useful function we can deal with. */
1713 else if (target_node
!= NULL
1714 && (TREE_PUBLIC (target
)
1715 || DECL_EXTERNAL (target
)
1716 || target_node
->definition
)
1717 && target_node
->real_symbol_p ())
1719 gcc_assert (!target_node
->global
.inlined_to
);
1720 gcc_assert (target_node
->real_symbol_p ());
1721 if (!inserted
->add (target
))
1723 cached_polymorphic_call_targets
->add (target_node
);
1724 nodes
.safe_push (target_node
);
1728 && (!type_in_anonymous_namespace_p
1729 (DECL_CONTEXT (target
))
1734 /* See if BINFO's type matches OUTER_TYPE. If so, look up
1735 BINFO of subtype of OTR_TYPE at OFFSET and in that BINFO find
1736 method in vtable and insert method to NODES array
1737 or BASES_TO_CONSIDER if this array is non-NULL.
1738 Otherwise recurse to base BINFOs.
1739 This matches what get_binfo_at_offset does, but with offset
1742 TYPE_BINFOS is a stack of BINFOS of types with defined
1743 virtual table seen on way from class type to BINFO.
1745 MATCHED_VTABLES tracks virtual tables we already did lookup
1746 for virtual function in. INSERTED tracks nodes we already
1749 ANONYMOUS is true if BINFO is part of anonymous namespace.
1751 Clear COMPLETEP when we hit unreferable target.
1755 record_target_from_binfo (vec
<cgraph_node
*> &nodes
,
1756 vec
<tree
> *bases_to_consider
,
1759 vec
<tree
> &type_binfos
,
1760 HOST_WIDE_INT otr_token
,
1762 HOST_WIDE_INT offset
,
1763 hash_set
<tree
> *inserted
,
1764 hash_set
<tree
> *matched_vtables
,
1768 tree type
= BINFO_TYPE (binfo
);
1773 if (BINFO_VTABLE (binfo
))
1774 type_binfos
.safe_push (binfo
);
1775 if (types_same_for_odr (type
, outer_type
))
1778 tree type_binfo
= NULL
;
1780 /* Look up BINFO with virtual table. For normal types it is always last
1782 for (i
= type_binfos
.length () - 1; i
>= 0; i
--)
1783 if (BINFO_OFFSET (type_binfos
[i
]) == BINFO_OFFSET (binfo
))
1785 type_binfo
= type_binfos
[i
];
1788 if (BINFO_VTABLE (binfo
))
1790 /* If this is duplicated BINFO for base shared by virtual inheritance,
1791 we may not have its associated vtable. This is not a problem, since
1792 we will walk it on the other path. */
1795 tree inner_binfo
= get_binfo_at_offset (type_binfo
,
1799 gcc_assert (odr_violation_reported
);
1802 /* For types in anonymous namespace first check if the respective vtable
1803 is alive. If not, we know the type can't be called. */
1804 if (!flag_ltrans
&& anonymous
)
1806 tree vtable
= BINFO_VTABLE (inner_binfo
);
1807 varpool_node
*vnode
;
1809 if (TREE_CODE (vtable
) == POINTER_PLUS_EXPR
)
1810 vtable
= TREE_OPERAND (TREE_OPERAND (vtable
, 0), 0);
1811 vnode
= varpool_node::get (vtable
);
1812 if (!vnode
|| !vnode
->definition
)
1815 gcc_assert (inner_binfo
);
1816 if (bases_to_consider
1817 ? !matched_vtables
->contains (BINFO_VTABLE (inner_binfo
))
1818 : !matched_vtables
->add (BINFO_VTABLE (inner_binfo
)))
1821 tree target
= gimple_get_virt_method_for_binfo (otr_token
,
1824 if (!bases_to_consider
)
1825 maybe_record_node (nodes
, target
, inserted
, can_refer
, completep
);
1826 /* Destructors are never called via construction vtables. */
1827 else if (!target
|| !DECL_CXX_DESTRUCTOR_P (target
))
1828 bases_to_consider
->safe_push (target
);
1834 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
1835 /* Walking bases that have no virtual method is pointless exercise. */
1836 if (polymorphic_type_binfo_p (base_binfo
))
1837 record_target_from_binfo (nodes
, bases_to_consider
, base_binfo
, otr_type
,
1839 otr_token
, outer_type
, offset
, inserted
,
1840 matched_vtables
, anonymous
, completep
);
1841 if (BINFO_VTABLE (binfo
))
1845 /* Look up virtual methods matching OTR_TYPE (with OFFSET and OTR_TOKEN)
1846 of TYPE, insert them to NODES, recurse into derived nodes.
1847 INSERTED is used to avoid duplicate insertions of methods into NODES.
1848 MATCHED_VTABLES are used to avoid duplicate walking vtables.
1849 Clear COMPLETEP if unreferable target is found.
1851 If CONSIDER_CONSTRUCTION is true, record to BASES_TO_CONSIDER
1852 all cases where BASE_SKIPPED is true (because the base is abstract
1856 possible_polymorphic_call_targets_1 (vec
<cgraph_node
*> &nodes
,
1857 hash_set
<tree
> *inserted
,
1858 hash_set
<tree
> *matched_vtables
,
1861 HOST_WIDE_INT otr_token
,
1863 HOST_WIDE_INT offset
,
1865 vec
<tree
> &bases_to_consider
,
1866 bool consider_construction
)
1868 tree binfo
= TYPE_BINFO (type
->type
);
1870 auto_vec
<tree
, 8> type_binfos
;
1871 bool possibly_instantiated
= type_possibly_instantiated_p (type
->type
);
1873 /* We may need to consider types w/o instances because of possible derived
1874 types using their methods either directly or via construction vtables.
1875 We are safe to skip them when all derivations are known, since we will
1877 This is done by recording them to BASES_TO_CONSIDER array. */
1878 if (possibly_instantiated
|| consider_construction
)
1880 record_target_from_binfo (nodes
,
1881 (!possibly_instantiated
1882 && type_all_derivations_known_p (type
->type
))
1883 ? &bases_to_consider
: NULL
,
1884 binfo
, otr_type
, type_binfos
, otr_token
,
1886 inserted
, matched_vtables
,
1887 type
->anonymous_namespace
, completep
);
1889 for (i
= 0; i
< type
->derived_types
.length (); i
++)
1890 possible_polymorphic_call_targets_1 (nodes
, inserted
,
1893 type
->derived_types
[i
],
1894 otr_token
, outer_type
, offset
, completep
,
1895 bases_to_consider
, consider_construction
);
1898 /* Cache of queries for polymorphic call targets.
1900 Enumerating all call targets may get expensive when there are many
1901 polymorphic calls in the program, so we memoize all the previous
1902 queries and avoid duplicated work. */
1904 struct polymorphic_call_target_d
1906 HOST_WIDE_INT otr_token
;
1907 ipa_polymorphic_call_context context
;
1909 vec
<cgraph_node
*> targets
;
1916 /* Polymorphic call target cache helpers. */
1918 struct polymorphic_call_target_hasher
1920 typedef polymorphic_call_target_d value_type
;
1921 typedef polymorphic_call_target_d compare_type
;
1922 static inline hashval_t
hash (const value_type
*);
1923 static inline bool equal (const value_type
*, const compare_type
*);
1924 static inline void remove (value_type
*);
1927 /* Return the computed hashcode for ODR_QUERY. */
1930 polymorphic_call_target_hasher::hash (const value_type
*odr_query
)
1932 inchash::hash
hstate (odr_query
->otr_token
);
1934 hstate
.add_wide_int (odr_query
->type
->id
);
1935 hstate
.merge_hash (TYPE_UID (odr_query
->context
.outer_type
));
1936 hstate
.add_wide_int (odr_query
->context
.offset
);
1938 if (odr_query
->context
.speculative_outer_type
)
1940 hstate
.merge_hash (TYPE_UID (odr_query
->context
.speculative_outer_type
));
1941 hstate
.add_wide_int (odr_query
->context
.speculative_offset
);
1943 hstate
.add_flag (odr_query
->speculative
);
1944 hstate
.add_flag (odr_query
->context
.maybe_in_construction
);
1945 hstate
.add_flag (odr_query
->context
.maybe_derived_type
);
1946 hstate
.add_flag (odr_query
->context
.speculative_maybe_derived_type
);
1947 hstate
.commit_flag ();
1948 return hstate
.end ();
1951 /* Compare cache entries T1 and T2. */
1954 polymorphic_call_target_hasher::equal (const value_type
*t1
,
1955 const compare_type
*t2
)
1957 return (t1
->type
== t2
->type
&& t1
->otr_token
== t2
->otr_token
1958 && t1
->speculative
== t2
->speculative
1959 && t1
->context
.offset
== t2
->context
.offset
1960 && t1
->context
.speculative_offset
== t2
->context
.speculative_offset
1961 && t1
->context
.outer_type
== t2
->context
.outer_type
1962 && t1
->context
.speculative_outer_type
== t2
->context
.speculative_outer_type
1963 && t1
->context
.maybe_in_construction
1964 == t2
->context
.maybe_in_construction
1965 && t1
->context
.maybe_derived_type
== t2
->context
.maybe_derived_type
1966 && (t1
->context
.speculative_maybe_derived_type
1967 == t2
->context
.speculative_maybe_derived_type
));
1970 /* Remove entry in polymorphic call target cache hash. */
1973 polymorphic_call_target_hasher::remove (value_type
*v
)
1975 v
->targets
.release ();
1979 /* Polymorphic call target query cache. */
1981 typedef hash_table
<polymorphic_call_target_hasher
>
1982 polymorphic_call_target_hash_type
;
1983 static polymorphic_call_target_hash_type
*polymorphic_call_target_hash
;
1985 /* Destroy polymorphic call target query cache. */
1988 free_polymorphic_call_targets_hash ()
1990 if (cached_polymorphic_call_targets
)
1992 delete polymorphic_call_target_hash
;
1993 polymorphic_call_target_hash
= NULL
;
1994 delete cached_polymorphic_call_targets
;
1995 cached_polymorphic_call_targets
= NULL
;
1999 /* When virtual function is removed, we may need to flush the cache. */
2002 devirt_node_removal_hook (struct cgraph_node
*n
, void *d ATTRIBUTE_UNUSED
)
2004 if (cached_polymorphic_call_targets
2005 && cached_polymorphic_call_targets
->contains (n
))
2006 free_polymorphic_call_targets_hash ();
2009 /* Look up base of BINFO that has virtual table VTABLE with OFFSET. */
2012 subbinfo_with_vtable_at_offset (tree binfo
, unsigned HOST_WIDE_INT offset
,
2015 tree v
= BINFO_VTABLE (binfo
);
2018 unsigned HOST_WIDE_INT this_offset
;
2022 if (!vtable_pointer_value_to_vtable (v
, &v
, &this_offset
))
2025 if (offset
== this_offset
2026 && DECL_ASSEMBLER_NAME (v
) == DECL_ASSEMBLER_NAME (vtable
))
2030 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
2031 if (polymorphic_type_binfo_p (base_binfo
))
2033 base_binfo
= subbinfo_with_vtable_at_offset (base_binfo
, offset
, vtable
);
2040 /* T is known constant value of virtual table pointer.
2041 Store virtual table to V and its offset to OFFSET.
2042 Return false if T does not look like virtual table reference. */
2045 vtable_pointer_value_to_vtable (const_tree t
, tree
*v
,
2046 unsigned HOST_WIDE_INT
*offset
)
2048 /* We expect &MEM[(void *)&virtual_table + 16B].
2049 We obtain object's BINFO from the context of the virtual table.
2050 This one contains pointer to virtual table represented via
2051 POINTER_PLUS_EXPR. Verify that this pointer matches what
2052 we propagated through.
2054 In the case of virtual inheritance, the virtual tables may
2055 be nested, i.e. the offset may be different from 16 and we may
2056 need to dive into the type representation. */
2057 if (TREE_CODE (t
) == ADDR_EXPR
2058 && TREE_CODE (TREE_OPERAND (t
, 0)) == MEM_REF
2059 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (t
, 0), 0)) == ADDR_EXPR
2060 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (t
, 0), 1)) == INTEGER_CST
2061 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t
, 0), 0), 0))
2063 && DECL_VIRTUAL_P (TREE_OPERAND (TREE_OPERAND
2064 (TREE_OPERAND (t
, 0), 0), 0)))
2066 *v
= TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t
, 0), 0), 0);
2067 *offset
= tree_to_uhwi (TREE_OPERAND (TREE_OPERAND (t
, 0), 1));
2071 /* Alternative representation, used by C++ frontend is POINTER_PLUS_EXPR.
2072 We need to handle it when T comes from static variable initializer or
2074 if (TREE_CODE (t
) == POINTER_PLUS_EXPR
)
2076 *offset
= tree_to_uhwi (TREE_OPERAND (t
, 1));
2077 t
= TREE_OPERAND (t
, 0);
2082 if (TREE_CODE (t
) != ADDR_EXPR
)
2084 *v
= TREE_OPERAND (t
, 0);
2088 /* T is known constant value of virtual table pointer. Return BINFO of the
2092 vtable_pointer_value_to_binfo (const_tree t
)
2095 unsigned HOST_WIDE_INT offset
;
2097 if (!vtable_pointer_value_to_vtable (t
, &vtable
, &offset
))
2100 /* FIXME: for stores of construction vtables we return NULL,
2101 because we do not have BINFO for those. Eventually we should fix
2102 our representation to allow this case to be handled, too.
2103 In the case we see store of BINFO we however may assume
2104 that standard folding will be able to cope with it. */
2105 return subbinfo_with_vtable_at_offset (TYPE_BINFO (DECL_CONTEXT (vtable
)),
2109 /* Walk bases of OUTER_TYPE that contain OTR_TYPE at OFFSET.
2110 Look up their respective virtual methods for OTR_TOKEN and OTR_TYPE
2111 and insert them in NODES.
2113 MATCHED_VTABLES and INSERTED is used to avoid duplicated work. */
2116 record_targets_from_bases (tree otr_type
,
2117 HOST_WIDE_INT otr_token
,
2119 HOST_WIDE_INT offset
,
2120 vec
<cgraph_node
*> &nodes
,
2121 hash_set
<tree
> *inserted
,
2122 hash_set
<tree
> *matched_vtables
,
2127 HOST_WIDE_INT pos
, size
;
2131 if (types_same_for_odr (outer_type
, otr_type
))
2134 for (fld
= TYPE_FIELDS (outer_type
); fld
; fld
= DECL_CHAIN (fld
))
2136 if (TREE_CODE (fld
) != FIELD_DECL
)
2139 pos
= int_bit_position (fld
);
2140 size
= tree_to_shwi (DECL_SIZE (fld
));
2141 if (pos
<= offset
&& (pos
+ size
) > offset
2142 /* Do not get confused by zero sized bases. */
2143 && polymorphic_type_binfo_p (TYPE_BINFO (TREE_TYPE (fld
))))
2146 /* Within a class type we should always find corresponding fields. */
2147 gcc_assert (fld
&& TREE_CODE (TREE_TYPE (fld
)) == RECORD_TYPE
);
2149 /* Nonbase types should have been stripped by outer_class_type. */
2150 gcc_assert (DECL_ARTIFICIAL (fld
));
2152 outer_type
= TREE_TYPE (fld
);
2155 base_binfo
= get_binfo_at_offset (TYPE_BINFO (outer_type
),
2159 gcc_assert (odr_violation_reported
);
2162 gcc_assert (base_binfo
);
2163 if (!matched_vtables
->add (BINFO_VTABLE (base_binfo
)))
2166 tree target
= gimple_get_virt_method_for_binfo (otr_token
,
2169 if (!target
|| ! DECL_CXX_DESTRUCTOR_P (target
))
2170 maybe_record_node (nodes
, target
, inserted
, can_refer
, completep
);
2171 matched_vtables
->add (BINFO_VTABLE (base_binfo
));
2176 /* When virtual table is removed, we may need to flush the cache. */
2179 devirt_variable_node_removal_hook (varpool_node
*n
,
2180 void *d ATTRIBUTE_UNUSED
)
2182 if (cached_polymorphic_call_targets
2183 && DECL_VIRTUAL_P (n
->decl
)
2184 && type_in_anonymous_namespace_p (DECL_CONTEXT (n
->decl
)))
2185 free_polymorphic_call_targets_hash ();
2188 /* Record about how many calls would benefit from given type to be final. */
2190 struct odr_type_warn_count
2194 gcov_type dyn_count
;
2197 /* Record about how many calls would benefit from given method to be final. */
2199 struct decl_warn_count
2203 gcov_type dyn_count
;
2206 /* Information about type and decl warnings. */
2208 struct final_warning_record
2210 gcov_type dyn_count
;
2211 vec
<odr_type_warn_count
> type_warnings
;
2212 hash_map
<tree
, decl_warn_count
> decl_warnings
;
2214 struct final_warning_record
*final_warning_records
;
2216 /* Return vector containing possible targets of polymorphic call of type
2217 OTR_TYPE calling method OTR_TOKEN within type of OTR_OUTER_TYPE and OFFSET.
2218 If INCLUDE_BASES is true, walk also base types of OUTER_TYPES containing
2219 OTR_TYPE and include their virtual method. This is useful for types
2220 possibly in construction or destruction where the virtual table may
2221 temporarily change to one of base types. INCLUDE_DERIVER_TYPES make
2222 us to walk the inheritance graph for all derivations.
2224 If COMPLETEP is non-NULL, store true if the list is complete.
2225 CACHE_TOKEN (if non-NULL) will get stored to an unique ID of entry
2226 in the target cache. If user needs to visit every target list
2227 just once, it can memoize them.
2229 If SPECULATIVE is set, the list will not contain targets that
2230 are not speculatively taken.
2232 Returned vector is placed into cache. It is NOT caller's responsibility
2233 to free it. The vector can be freed on cgraph_remove_node call if
2234 the particular node is a virtual function present in the cache. */
2237 possible_polymorphic_call_targets (tree otr_type
,
2238 HOST_WIDE_INT otr_token
,
2239 ipa_polymorphic_call_context context
,
2244 static struct cgraph_node_hook_list
*node_removal_hook_holder
;
2245 vec
<cgraph_node
*> nodes
= vNULL
;
2246 auto_vec
<tree
, 8> bases_to_consider
;
2247 odr_type type
, outer_type
;
2248 polymorphic_call_target_d key
;
2249 polymorphic_call_target_d
**slot
;
2253 bool can_refer
= false;
2254 bool skipped
= false;
2256 otr_type
= TYPE_MAIN_VARIANT (otr_type
);
2258 /* If ODR is not initialized or the context is invalid, return empty
2260 if (!odr_hash
|| context
.invalid
|| !TYPE_BINFO (otr_type
))
2263 *completep
= context
.invalid
;
2265 *cache_token
= NULL
;
2269 /* Do not bother to compute speculative info when user do not asks for it. */
2270 if (!speculative
|| !context
.speculative_outer_type
)
2271 context
.clear_speculation ();
2273 type
= get_odr_type (otr_type
, true);
2275 /* Recording type variants would waste results cache. */
2276 gcc_assert (!context
.outer_type
2277 || TYPE_MAIN_VARIANT (context
.outer_type
) == context
.outer_type
);
2279 /* Look up the outer class type we want to walk.
2280 If we fail to do so, the context is invalid. */
2281 if ((context
.outer_type
|| context
.speculative_outer_type
)
2282 && !context
.restrict_to_inner_class (otr_type
))
2287 *cache_token
= NULL
;
2290 gcc_assert (!context
.invalid
);
2292 /* Check that restrict_to_inner_class kept the main variant. */
2293 gcc_assert (!context
.outer_type
2294 || TYPE_MAIN_VARIANT (context
.outer_type
) == context
.outer_type
);
2296 /* We canonicalize our query, so we do not need extra hashtable entries. */
2298 /* Without outer type, we have no use for offset. Just do the
2299 basic search from inner type. */
2300 if (!context
.outer_type
)
2301 context
.clear_outer_type (otr_type
);
2302 /* We need to update our hierarchy if the type does not exist. */
2303 outer_type
= get_odr_type (context
.outer_type
, true);
2304 /* If the type is complete, there are no derivations. */
2305 if (TYPE_FINAL_P (outer_type
->type
))
2306 context
.maybe_derived_type
= false;
2308 /* Initialize query cache. */
2309 if (!cached_polymorphic_call_targets
)
2311 cached_polymorphic_call_targets
= new hash_set
<cgraph_node
*>;
2312 polymorphic_call_target_hash
2313 = new polymorphic_call_target_hash_type (23);
2314 if (!node_removal_hook_holder
)
2316 node_removal_hook_holder
=
2317 symtab
->add_cgraph_removal_hook (&devirt_node_removal_hook
, NULL
);
2318 symtab
->add_varpool_removal_hook (&devirt_variable_node_removal_hook
,
2325 if (context
.outer_type
!= otr_type
)
2327 = get_odr_type (context
.outer_type
, true)->type
;
2328 if (context
.speculative_outer_type
)
2329 context
.speculative_outer_type
2330 = get_odr_type (context
.speculative_outer_type
, true)->type
;
2333 /* Look up cached answer. */
2335 key
.otr_token
= otr_token
;
2336 key
.speculative
= speculative
;
2337 key
.context
= context
;
2338 slot
= polymorphic_call_target_hash
->find_slot (&key
, INSERT
);
2340 *cache_token
= (void *)*slot
;
2344 *completep
= (*slot
)->complete
;
2345 if ((*slot
)->type_warning
&& final_warning_records
)
2347 final_warning_records
->type_warnings
[(*slot
)->type_warning
- 1].count
++;
2348 final_warning_records
->type_warnings
[(*slot
)->type_warning
- 1].dyn_count
2349 += final_warning_records
->dyn_count
;
2351 if (!speculative
&& (*slot
)->decl_warning
&& final_warning_records
)
2353 struct decl_warn_count
*c
=
2354 final_warning_records
->decl_warnings
.get ((*slot
)->decl_warning
);
2356 c
->dyn_count
+= final_warning_records
->dyn_count
;
2358 return (*slot
)->targets
;
2363 /* Do actual search. */
2364 timevar_push (TV_IPA_VIRTUAL_CALL
);
2365 *slot
= XCNEW (polymorphic_call_target_d
);
2367 *cache_token
= (void *)*slot
;
2368 (*slot
)->type
= type
;
2369 (*slot
)->otr_token
= otr_token
;
2370 (*slot
)->context
= context
;
2371 (*slot
)->speculative
= speculative
;
2373 hash_set
<tree
> inserted
;
2374 hash_set
<tree
> matched_vtables
;
2376 /* First insert targets we speculatively identified as likely. */
2377 if (context
.speculative_outer_type
)
2379 odr_type speculative_outer_type
;
2380 bool speculation_complete
= true;
2382 /* First insert target from type itself and check if it may have
2384 speculative_outer_type
= get_odr_type (context
.speculative_outer_type
, true);
2385 if (TYPE_FINAL_P (speculative_outer_type
->type
))
2386 context
.speculative_maybe_derived_type
= false;
2387 binfo
= get_binfo_at_offset (TYPE_BINFO (speculative_outer_type
->type
),
2388 context
.speculative_offset
, otr_type
);
2390 target
= gimple_get_virt_method_for_binfo (otr_token
, binfo
,
2395 /* In the case we get complete method, we don't need
2396 to walk derivations. */
2397 if (target
&& DECL_FINAL_P (target
))
2398 context
.speculative_maybe_derived_type
= false;
2399 if (type_possibly_instantiated_p (speculative_outer_type
->type
))
2400 maybe_record_node (nodes
, target
, &inserted
, can_refer
, &speculation_complete
);
2402 matched_vtables
.add (BINFO_VTABLE (binfo
));
2405 /* Next walk recursively all derived types. */
2406 if (context
.speculative_maybe_derived_type
)
2407 for (i
= 0; i
< speculative_outer_type
->derived_types
.length(); i
++)
2408 possible_polymorphic_call_targets_1 (nodes
, &inserted
,
2411 speculative_outer_type
->derived_types
[i
],
2412 otr_token
, speculative_outer_type
->type
,
2413 context
.speculative_offset
,
2414 &speculation_complete
,
2419 if (!speculative
|| !nodes
.length ())
2421 /* First see virtual method of type itself. */
2422 binfo
= get_binfo_at_offset (TYPE_BINFO (outer_type
->type
),
2423 context
.offset
, otr_type
);
2425 target
= gimple_get_virt_method_for_binfo (otr_token
, binfo
,
2429 gcc_assert (odr_violation_reported
);
2433 /* Destructors are never called through construction virtual tables,
2434 because the type is always known. */
2435 if (target
&& DECL_CXX_DESTRUCTOR_P (target
))
2436 context
.maybe_in_construction
= false;
2440 /* In the case we get complete method, we don't need
2441 to walk derivations. */
2442 if (DECL_FINAL_P (target
))
2443 context
.maybe_derived_type
= false;
2446 /* If OUTER_TYPE is abstract, we know we are not seeing its instance. */
2447 if (type_possibly_instantiated_p (outer_type
->type
))
2448 maybe_record_node (nodes
, target
, &inserted
, can_refer
, &complete
);
2453 matched_vtables
.add (BINFO_VTABLE (binfo
));
2455 /* Next walk recursively all derived types. */
2456 if (context
.maybe_derived_type
)
2458 for (i
= 0; i
< outer_type
->derived_types
.length(); i
++)
2459 possible_polymorphic_call_targets_1 (nodes
, &inserted
,
2462 outer_type
->derived_types
[i
],
2463 otr_token
, outer_type
->type
,
2464 context
.offset
, &complete
,
2466 context
.maybe_in_construction
);
2468 if (!outer_type
->all_derivations_known
)
2470 if (!speculative
&& final_warning_records
)
2473 && nodes
.length () == 1
2474 && warn_suggest_final_types
2475 && !outer_type
->derived_types
.length ())
2477 if (outer_type
->id
>= (int)final_warning_records
->type_warnings
.length ())
2478 final_warning_records
->type_warnings
.safe_grow_cleared
2479 (odr_types
.length ());
2480 final_warning_records
->type_warnings
[outer_type
->id
].count
++;
2481 final_warning_records
->type_warnings
[outer_type
->id
].dyn_count
2482 += final_warning_records
->dyn_count
;
2483 final_warning_records
->type_warnings
[outer_type
->id
].type
2485 (*slot
)->type_warning
= outer_type
->id
+ 1;
2488 && warn_suggest_final_methods
2489 && nodes
.length () == 1
2490 && types_same_for_odr (DECL_CONTEXT (nodes
[0]->decl
),
2494 struct decl_warn_count
&c
=
2495 final_warning_records
->decl_warnings
.get_or_insert
2496 (nodes
[0]->decl
, &existed
);
2501 c
.dyn_count
+= final_warning_records
->dyn_count
;
2506 c
.dyn_count
= final_warning_records
->dyn_count
;
2507 c
.decl
= nodes
[0]->decl
;
2509 (*slot
)->decl_warning
= nodes
[0]->decl
;
2518 /* Destructors are never called through construction virtual tables,
2519 because the type is always known. One of entries may be
2520 cxa_pure_virtual so look to at least two of them. */
2521 if (context
.maybe_in_construction
)
2522 for (i
=0 ; i
< MIN (nodes
.length (), 2); i
++)
2523 if (DECL_CXX_DESTRUCTOR_P (nodes
[i
]->decl
))
2524 context
.maybe_in_construction
= false;
2525 if (context
.maybe_in_construction
)
2527 if (type
!= outer_type
2529 || (context
.maybe_derived_type
2530 && !type_all_derivations_known_p (outer_type
->type
))))
2531 record_targets_from_bases (otr_type
, otr_token
, outer_type
->type
,
2532 context
.offset
, nodes
, &inserted
,
2533 &matched_vtables
, &complete
);
2535 maybe_record_node (nodes
, target
, &inserted
, can_refer
, &complete
);
2536 for (i
= 0; i
< bases_to_consider
.length(); i
++)
2537 maybe_record_node (nodes
, bases_to_consider
[i
], &inserted
, can_refer
, &complete
);
2542 (*slot
)->targets
= nodes
;
2543 (*slot
)->complete
= complete
;
2545 *completep
= complete
;
2547 timevar_pop (TV_IPA_VIRTUAL_CALL
);
2552 add_decl_warning (const tree
&key ATTRIBUTE_UNUSED
, const decl_warn_count
&value
,
2553 vec
<const decl_warn_count
*> *vec
)
2555 vec
->safe_push (&value
);
2559 /* Dump target list TARGETS into FILE. */
2562 dump_targets (FILE *f
, vec
<cgraph_node
*> targets
)
2566 for (i
= 0; i
< targets
.length (); i
++)
2570 name
= cplus_demangle_v3 (targets
[i
]->asm_name (), 0);
2571 fprintf (f
, " %s/%i", name
? name
: targets
[i
]->name (), targets
[i
]->order
);
2574 if (!targets
[i
]->definition
)
2575 fprintf (f
, " (no definition%s)",
2576 DECL_DECLARED_INLINE_P (targets
[i
]->decl
)
2582 /* Dump all possible targets of a polymorphic call. */
2585 dump_possible_polymorphic_call_targets (FILE *f
,
2587 HOST_WIDE_INT otr_token
,
2588 const ipa_polymorphic_call_context
&ctx
)
2590 vec
<cgraph_node
*> targets
;
2592 odr_type type
= get_odr_type (TYPE_MAIN_VARIANT (otr_type
), false);
2597 targets
= possible_polymorphic_call_targets (otr_type
, otr_token
,
2599 &final
, NULL
, false);
2600 fprintf (f
, " Targets of polymorphic call of type %i:", type
->id
);
2601 print_generic_expr (f
, type
->type
, TDF_SLIM
);
2602 fprintf (f
, " token %i\n", (int)otr_token
);
2606 fprintf (f
, " %s%s%s%s\n ",
2607 final
? "This is a complete list." :
2608 "This is partial list; extra targets may be defined in other units.",
2609 ctx
.maybe_in_construction
? " (base types included)" : "",
2610 ctx
.maybe_derived_type
? " (derived types included)" : "",
2611 ctx
.speculative_maybe_derived_type
? " (speculative derived types included)" : "");
2612 len
= targets
.length ();
2613 dump_targets (f
, targets
);
2615 targets
= possible_polymorphic_call_targets (otr_type
, otr_token
,
2617 &final
, NULL
, true);
2618 gcc_assert (targets
.length () <= len
);
2619 if (targets
.length () != len
)
2621 fprintf (f
, " Speculative targets:");
2622 dump_targets (f
, targets
);
2628 /* Return true if N can be possibly target of a polymorphic call of
2629 OTR_TYPE/OTR_TOKEN. */
2632 possible_polymorphic_call_target_p (tree otr_type
,
2633 HOST_WIDE_INT otr_token
,
2634 const ipa_polymorphic_call_context
&ctx
,
2635 struct cgraph_node
*n
)
2637 vec
<cgraph_node
*> targets
;
2639 enum built_in_function fcode
;
2642 if (TREE_CODE (TREE_TYPE (n
->decl
)) == FUNCTION_TYPE
2643 && ((fcode
= DECL_FUNCTION_CODE (n
->decl
))
2644 == BUILT_IN_UNREACHABLE
2645 || fcode
== BUILT_IN_TRAP
))
2650 targets
= possible_polymorphic_call_targets (otr_type
, otr_token
, ctx
, &final
);
2651 for (i
= 0; i
< targets
.length (); i
++)
2652 if (n
->semantically_equivalent_p (targets
[i
]))
2655 /* At a moment we allow middle end to dig out new external declarations
2656 as a targets of polymorphic calls. */
2657 if (!final
&& !n
->definition
)
2664 /* Return true if N can be possibly target of a polymorphic call of
2665 OBJ_TYPE_REF expression REF in STMT. */
2668 possible_polymorphic_call_target_p (tree ref
,
2670 struct cgraph_node
*n
)
2672 ipa_polymorphic_call_context
context (current_function_decl
, ref
, stmt
);
2673 tree call_fn
= gimple_call_fn (stmt
);
2675 return possible_polymorphic_call_target_p (obj_type_ref_class (call_fn
),
2677 (OBJ_TYPE_REF_TOKEN (call_fn
)),
2683 /* After callgraph construction new external nodes may appear.
2684 Add them into the graph. */
2687 update_type_inheritance_graph (void)
2689 struct cgraph_node
*n
;
2693 free_polymorphic_call_targets_hash ();
2694 timevar_push (TV_IPA_INHERITANCE
);
2695 /* We reconstruct the graph starting from types of all methods seen in the
2697 FOR_EACH_FUNCTION (n
)
2698 if (DECL_VIRTUAL_P (n
->decl
)
2700 && n
->real_symbol_p ())
2701 get_odr_type (method_class_type (TYPE_MAIN_VARIANT (TREE_TYPE (n
->decl
))),
2703 timevar_pop (TV_IPA_INHERITANCE
);
2707 /* Return true if N looks like likely target of a polymorphic call.
2708 Rule out cxa_pure_virtual, noreturns, function declared cold and
2709 other obvious cases. */
2712 likely_target_p (struct cgraph_node
*n
)
2715 /* cxa_pure_virtual and similar things are not likely. */
2716 if (TREE_CODE (TREE_TYPE (n
->decl
)) != METHOD_TYPE
)
2718 flags
= flags_from_decl_or_type (n
->decl
);
2719 if (flags
& ECF_NORETURN
)
2721 if (lookup_attribute ("cold",
2722 DECL_ATTRIBUTES (n
->decl
)))
2724 if (n
->frequency
< NODE_FREQUENCY_NORMAL
)
2726 /* If there are no live virtual tables referring the target,
2727 the only way the target can be called is an instance coming from other
2728 compilation unit; speculative devirtualization is built around an
2729 assumption that won't happen. */
2730 if (!referenced_from_vtable_p (n
))
2735 /* Compare type warning records P1 and P2 and choose one with larger count;
2736 helper for qsort. */
2739 type_warning_cmp (const void *p1
, const void *p2
)
2741 const odr_type_warn_count
*t1
= (const odr_type_warn_count
*)p1
;
2742 const odr_type_warn_count
*t2
= (const odr_type_warn_count
*)p2
;
2744 if (t1
->dyn_count
< t2
->dyn_count
)
2746 if (t1
->dyn_count
> t2
->dyn_count
)
2748 return t2
->count
- t1
->count
;
2751 /* Compare decl warning records P1 and P2 and choose one with larger count;
2752 helper for qsort. */
2755 decl_warning_cmp (const void *p1
, const void *p2
)
2757 const decl_warn_count
*t1
= *(const decl_warn_count
* const *)p1
;
2758 const decl_warn_count
*t2
= *(const decl_warn_count
* const *)p2
;
2760 if (t1
->dyn_count
< t2
->dyn_count
)
2762 if (t1
->dyn_count
> t2
->dyn_count
)
2764 return t2
->count
- t1
->count
;
2768 /* Try to speculatively devirtualize call to OTR_TYPE with OTR_TOKEN with
2771 struct cgraph_node
*
2772 try_speculative_devirtualization (tree otr_type
, HOST_WIDE_INT otr_token
,
2773 ipa_polymorphic_call_context ctx
)
2775 vec
<cgraph_node
*>targets
2776 = possible_polymorphic_call_targets
2777 (otr_type
, otr_token
, ctx
, NULL
, NULL
, true);
2779 struct cgraph_node
*likely_target
= NULL
;
2781 for (i
= 0; i
< targets
.length (); i
++)
2782 if (likely_target_p (targets
[i
]))
2786 likely_target
= targets
[i
];
2789 ||!likely_target
->definition
2790 || DECL_EXTERNAL (likely_target
->decl
))
2793 /* Don't use an implicitly-declared destructor (c++/58678). */
2794 struct cgraph_node
*non_thunk_target
2795 = likely_target
->function_symbol ();
2796 if (DECL_ARTIFICIAL (non_thunk_target
->decl
))
2798 if (likely_target
->get_availability () <= AVAIL_INTERPOSABLE
2799 && likely_target
->can_be_discarded_p ())
2801 return likely_target
;
2804 /* The ipa-devirt pass.
2805 When polymorphic call has only one likely target in the unit,
2806 turn it into a speculative call. */
2811 struct cgraph_node
*n
;
2812 hash_set
<void *> bad_call_targets
;
2813 struct cgraph_edge
*e
;
2815 int npolymorphic
= 0, nspeculated
= 0, nconverted
= 0, ncold
= 0;
2816 int nmultiple
= 0, noverwritable
= 0, ndevirtualized
= 0, nnotdefined
= 0;
2817 int nwrong
= 0, nok
= 0, nexternal
= 0, nartificial
= 0;
2823 /* We can output -Wsuggest-final-methods and -Wsuggest-final-types warnings.
2824 This is implemented by setting up final_warning_records that are updated
2825 by get_polymorphic_call_targets.
2826 We need to clear cache in this case to trigger recomputation of all
2828 if (warn_suggest_final_methods
|| warn_suggest_final_types
)
2830 final_warning_records
= new (final_warning_record
);
2831 final_warning_records
->type_warnings
= vNULL
;
2832 final_warning_records
->type_warnings
.safe_grow_cleared (odr_types
.length ());
2833 free_polymorphic_call_targets_hash ();
2836 FOR_EACH_DEFINED_FUNCTION (n
)
2838 bool update
= false;
2839 if (!opt_for_fn (n
->decl
, flag_devirtualize
))
2841 if (dump_file
&& n
->indirect_calls
)
2842 fprintf (dump_file
, "\n\nProcesing function %s/%i\n",
2843 n
->name (), n
->order
);
2844 for (e
= n
->indirect_calls
; e
; e
= e
->next_callee
)
2845 if (e
->indirect_info
->polymorphic
)
2847 struct cgraph_node
*likely_target
= NULL
;
2851 if (final_warning_records
)
2852 final_warning_records
->dyn_count
= e
->count
;
2854 vec
<cgraph_node
*>targets
2855 = possible_polymorphic_call_targets
2856 (e
, &final
, &cache_token
, true);
2859 /* Trigger warnings by calculating non-speculative targets. */
2860 if (warn_suggest_final_methods
|| warn_suggest_final_types
)
2861 possible_polymorphic_call_targets (e
);
2864 dump_possible_polymorphic_call_targets
2869 /* See if the call can be devirtualized by means of ipa-prop's
2870 polymorphic call context propagation. If not, we can just
2871 forget about this call being polymorphic and avoid some heavy
2872 lifting in remove_unreachable_nodes that will otherwise try to
2873 keep all possible targets alive until inlining and in the inliner
2876 This may need to be revisited once we add further ways to use
2877 the may edges, but it is a resonable thing to do right now. */
2879 if ((e
->indirect_info
->param_index
== -1
2880 || (!opt_for_fn (n
->decl
, flag_devirtualize_speculatively
)
2881 && e
->indirect_info
->vptr_changed
))
2882 && !flag_ltrans_devirtualize
)
2884 e
->indirect_info
->polymorphic
= false;
2887 fprintf (dump_file
, "Dropping polymorphic call info;"
2888 " it can not be used by ipa-prop\n");
2891 if (!opt_for_fn (n
->decl
, flag_devirtualize_speculatively
))
2894 if (!e
->maybe_hot_p ())
2897 fprintf (dump_file
, "Call is cold\n\n");
2904 fprintf (dump_file
, "Call is already speculated\n\n");
2907 /* When dumping see if we agree with speculation. */
2911 if (bad_call_targets
.contains (cache_token
))
2914 fprintf (dump_file
, "Target list is known to be useless\n\n");
2918 for (i
= 0; i
< targets
.length (); i
++)
2919 if (likely_target_p (targets
[i
]))
2923 likely_target
= NULL
;
2925 fprintf (dump_file
, "More than one likely target\n\n");
2929 likely_target
= targets
[i
];
2933 bad_call_targets
.add (cache_token
);
2936 /* This is reached only when dumping; check if we agree or disagree
2937 with the speculation. */
2940 struct cgraph_edge
*e2
;
2941 struct ipa_ref
*ref
;
2942 e
->speculative_call_info (e2
, e
, ref
);
2943 if (e2
->callee
->ultimate_alias_target ()
2944 == likely_target
->ultimate_alias_target ())
2946 fprintf (dump_file
, "We agree with speculation\n\n");
2951 fprintf (dump_file
, "We disagree with speculation\n\n");
2956 if (!likely_target
->definition
)
2959 fprintf (dump_file
, "Target is not a definition\n\n");
2963 /* Do not introduce new references to external symbols. While we
2964 can handle these just well, it is common for programs to
2965 incorrectly with headers defining methods they are linked
2967 if (DECL_EXTERNAL (likely_target
->decl
))
2970 fprintf (dump_file
, "Target is external\n\n");
2974 /* Don't use an implicitly-declared destructor (c++/58678). */
2975 struct cgraph_node
*non_thunk_target
2976 = likely_target
->function_symbol ();
2977 if (DECL_ARTIFICIAL (non_thunk_target
->decl
))
2980 fprintf (dump_file
, "Target is artificial\n\n");
2984 if (likely_target
->get_availability () <= AVAIL_INTERPOSABLE
2985 && likely_target
->can_be_discarded_p ())
2988 fprintf (dump_file
, "Target is overwritable\n\n");
2992 else if (dbg_cnt (devirt
))
2994 if (dump_enabled_p ())
2996 location_t locus
= gimple_location_safe (e
->call_stmt
);
2997 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS
, locus
,
2998 "speculatively devirtualizing call in %s/%i to %s/%i\n",
2999 n
->name (), n
->order
,
3000 likely_target
->name (),
3001 likely_target
->order
);
3003 if (!likely_target
->can_be_discarded_p ())
3006 alias
= dyn_cast
<cgraph_node
*> (likely_target
->noninterposable_alias ());
3008 likely_target
= alias
;
3013 (likely_target
, e
->count
* 8 / 10, e
->frequency
* 8 / 10);
3017 inline_update_overall_summary (n
);
3019 if (warn_suggest_final_methods
|| warn_suggest_final_types
)
3021 if (warn_suggest_final_types
)
3023 final_warning_records
->type_warnings
.qsort (type_warning_cmp
);
3024 for (unsigned int i
= 0;
3025 i
< final_warning_records
->type_warnings
.length (); i
++)
3026 if (final_warning_records
->type_warnings
[i
].count
)
3028 tree type
= final_warning_records
->type_warnings
[i
].type
;
3029 int count
= final_warning_records
->type_warnings
[i
].count
;
3031 = final_warning_records
->type_warnings
[i
].dyn_count
;
3034 warning_n (DECL_SOURCE_LOCATION (TYPE_NAME (type
)),
3035 OPT_Wsuggest_final_types
, count
,
3036 "Declaring type %qD final "
3037 "would enable devirtualization of %i call",
3038 "Declaring type %qD final "
3039 "would enable devirtualization of %i calls",
3043 warning_n (DECL_SOURCE_LOCATION (TYPE_NAME (type
)),
3044 OPT_Wsuggest_final_types
, count
,
3045 "Declaring type %qD final "
3046 "would enable devirtualization of %i call "
3047 "executed %lli times",
3048 "Declaring type %qD final "
3049 "would enable devirtualization of %i calls "
3050 "executed %lli times",
3057 if (warn_suggest_final_methods
)
3059 vec
<const decl_warn_count
*> decl_warnings_vec
= vNULL
;
3061 final_warning_records
->decl_warnings
.traverse
3062 <vec
<const decl_warn_count
*> *, add_decl_warning
> (&decl_warnings_vec
);
3063 decl_warnings_vec
.qsort (decl_warning_cmp
);
3064 for (unsigned int i
= 0; i
< decl_warnings_vec
.length (); i
++)
3066 tree decl
= decl_warnings_vec
[i
]->decl
;
3067 int count
= decl_warnings_vec
[i
]->count
;
3068 long long dyn_count
= decl_warnings_vec
[i
]->dyn_count
;
3071 if (DECL_CXX_DESTRUCTOR_P (decl
))
3072 warning_n (DECL_SOURCE_LOCATION (decl
),
3073 OPT_Wsuggest_final_methods
, count
,
3074 "Declaring virtual destructor of %qD final "
3075 "would enable devirtualization of %i call",
3076 "Declaring virtual destructor of %qD final "
3077 "would enable devirtualization of %i calls",
3078 DECL_CONTEXT (decl
), count
);
3080 warning_n (DECL_SOURCE_LOCATION (decl
),
3081 OPT_Wsuggest_final_methods
, count
,
3082 "Declaring method %qD final "
3083 "would enable devirtualization of %i call",
3084 "Declaring method %qD final "
3085 "would enable devirtualization of %i calls",
3087 else if (DECL_CXX_DESTRUCTOR_P (decl
))
3088 warning_n (DECL_SOURCE_LOCATION (decl
),
3089 OPT_Wsuggest_final_methods
, count
,
3090 "Declaring virtual destructor of %qD final "
3091 "would enable devirtualization of %i call "
3092 "executed %lli times",
3093 "Declaring virtual destructor of %qD final "
3094 "would enable devirtualization of %i calls "
3095 "executed %lli times",
3096 DECL_CONTEXT (decl
), count
, dyn_count
);
3098 warning_n (DECL_SOURCE_LOCATION (decl
),
3099 OPT_Wsuggest_final_methods
, count
,
3100 "Declaring method %qD final "
3101 "would enable devirtualization of %i call "
3102 "executed %lli times",
3103 "Declaring method %qD final "
3104 "would enable devirtualization of %i calls "
3105 "executed %lli times",
3106 decl
, count
, dyn_count
);
3110 delete (final_warning_records
);
3111 final_warning_records
= 0;
3116 "%i polymorphic calls, %i devirtualized,"
3117 " %i speculatively devirtualized, %i cold\n"
3118 "%i have multiple targets, %i overwritable,"
3119 " %i already speculated (%i agree, %i disagree),"
3120 " %i external, %i not defined, %i artificial, %i infos dropped\n",
3121 npolymorphic
, ndevirtualized
, nconverted
, ncold
,
3122 nmultiple
, noverwritable
, nspeculated
, nok
, nwrong
,
3123 nexternal
, nnotdefined
, nartificial
, ndropped
);
3124 return ndevirtualized
|| ndropped
? TODO_remove_functions
: 0;
3129 const pass_data pass_data_ipa_devirt
=
3131 IPA_PASS
, /* type */
3132 "devirt", /* name */
3133 OPTGROUP_NONE
, /* optinfo_flags */
3134 TV_IPA_DEVIRT
, /* tv_id */
3135 0, /* properties_required */
3136 0, /* properties_provided */
3137 0, /* properties_destroyed */
3138 0, /* todo_flags_start */
3139 ( TODO_dump_symtab
), /* todo_flags_finish */
3142 class pass_ipa_devirt
: public ipa_opt_pass_d
3145 pass_ipa_devirt (gcc::context
*ctxt
)
3146 : ipa_opt_pass_d (pass_data_ipa_devirt
, ctxt
,
3147 NULL
, /* generate_summary */
3148 NULL
, /* write_summary */
3149 NULL
, /* read_summary */
3150 NULL
, /* write_optimization_summary */
3151 NULL
, /* read_optimization_summary */
3152 NULL
, /* stmt_fixup */
3153 0, /* function_transform_todo_flags_start */
3154 NULL
, /* function_transform */
3155 NULL
) /* variable_transform */
3158 /* opt_pass methods: */
3159 virtual bool gate (function
*)
3161 /* In LTO, always run the IPA passes and decide on function basis if the
3165 return (flag_devirtualize
3166 && (flag_devirtualize_speculatively
3167 || (warn_suggest_final_methods
3168 || warn_suggest_final_types
))
3172 virtual unsigned int execute (function
*) { return ipa_devirt (); }
3174 }; // class pass_ipa_devirt
3179 make_pass_ipa_devirt (gcc::context
*ctxt
)
3181 return new pass_ipa_devirt (ctxt
);
3184 #include "gt-ipa-devirt.h"