tree.c (decls_same_for_odr, [...]): Remove.
[gcc.git] / gcc / ipa-devirt.c
1 /* Basic IPA utilities for type inheritance graph construction and
2 devirtualization.
3 Copyright (C) 2013-2014 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 vocalburary:
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++ frotend. 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 represention 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 "tm.h"
112 #include "tree.h"
113 #include "print-tree.h"
114 #include "calls.h"
115 #include "cgraph.h"
116 #include "expr.h"
117 #include "tree-pass.h"
118 #include "pointer-set.h"
119 #include "target.h"
120 #include "hash-table.h"
121 #include "tree-pretty-print.h"
122 #include "ipa-utils.h"
123 #include "tree-ssa-alias.h"
124 #include "internal-fn.h"
125 #include "gimple-fold.h"
126 #include "gimple-expr.h"
127 #include "gimple.h"
128 #include "ipa-inline.h"
129 #include "diagnostic.h"
130 #include "tree-dfa.h"
131 #include "demangle.h"
132 #include "dbgcnt.h"
133
134 static bool odr_violation_reported = false;
135
136 /* Dummy polymorphic call context. */
137
138 const ipa_polymorphic_call_context ipa_dummy_polymorphic_call_context
139 = {0, NULL, false, true};
140
141 /* Pointer set of all call targets appearing in the cache. */
142 static pointer_set_t *cached_polymorphic_call_targets;
143
144 /* The node of type inheritance graph. For each type unique in
145 One Defintion Rule (ODR) sense, we produce one node linking all
146 main variants of types equivalent to it, bases and derived types. */
147
148 struct GTY(()) odr_type_d
149 {
150 /* leader type. */
151 tree type;
152 /* All bases; built only for main variants of types */
153 vec<odr_type> GTY((skip)) bases;
154 /* All derrived types with virtual methods seen in unit;
155 built only for main variants oftypes */
156 vec<odr_type> GTY((skip)) derived_types;
157
158 /* All equivalent types, if more than one. */
159 vec<tree, va_gc> *types;
160 /* Set of all equivalent types, if NON-NULL. */
161 pointer_set_t * GTY((skip)) types_set;
162
163 /* Unique ID indexing the type in odr_types array. */
164 int id;
165 /* Is it in anonymous namespace? */
166 bool anonymous_namespace;
167 /* Do we know about all derivations of given type? */
168 bool all_derivations_known;
169 /* Did we report ODR violation here? */
170 bool odr_violated;
171 };
172
173
174 /* Return true if BINFO corresponds to a type with virtual methods.
175
176 Every type has several BINFOs. One is the BINFO associated by the type
177 while other represents bases of derived types. The BINFOs representing
178 bases do not have BINFO_VTABLE pointer set when this is the single
179 inheritance (because vtables are shared). Look up the BINFO of type
180 and check presence of its vtable. */
181
182 static inline bool
183 polymorphic_type_binfo_p (tree binfo)
184 {
185 /* See if BINFO's type has an virtual table associtated with it. */
186 return BINFO_VTABLE (TYPE_BINFO (BINFO_TYPE (binfo)));
187 }
188
189 /* Return TRUE if all derived types of T are known and thus
190 we may consider the walk of derived type complete.
191
192 This is typically true only for final anonymous namespace types and types
193 defined within functions (that may be COMDAT and thus shared across units,
194 but with the same set of derived types). */
195
196 static bool
197 type_all_derivations_known_p (tree t)
198 {
199 if (TYPE_FINAL_P (t))
200 return true;
201 if (flag_ltrans)
202 return false;
203 if (type_in_anonymous_namespace_p (t))
204 return true;
205 return (decl_function_context (TYPE_NAME (t)) != NULL);
206 }
207
208 /* Return TURE if type's constructors are all visible. */
209
210 static bool
211 type_all_ctors_visible_p (tree t)
212 {
213 return !flag_ltrans
214 && cgraph_state >= CGRAPH_STATE_CONSTRUCTION
215 /* We can not always use type_all_derivations_known_p.
216 For function local types we must assume case where
217 the function is COMDAT and shared in between units.
218
219 TODO: These cases are quite easy to get, but we need
220 to keep track of C++ privatizing via -Wno-weak
221 as well as the IPA privatizing. */
222 && type_in_anonymous_namespace_p (t);
223 }
224
225 /* Return TRUE if type may have instance. */
226
227 static bool
228 type_possibly_instantiated_p (tree t)
229 {
230 tree vtable;
231 varpool_node *vnode;
232
233 /* TODO: Add abstract types here. */
234 if (!type_all_ctors_visible_p (t))
235 return true;
236
237 vtable = BINFO_VTABLE (TYPE_BINFO (t));
238 if (TREE_CODE (vtable) == POINTER_PLUS_EXPR)
239 vtable = TREE_OPERAND (TREE_OPERAND (vtable, 0), 0);
240 vnode = varpool_get_node (vtable);
241 return vnode && vnode->definition;
242 }
243
244 /* One Definition Rule hashtable helpers. */
245
246 struct odr_hasher
247 {
248 typedef odr_type_d value_type;
249 typedef union tree_node compare_type;
250 static inline hashval_t hash (const value_type *);
251 static inline bool equal (const value_type *, const compare_type *);
252 static inline void remove (value_type *);
253 };
254
255 /* Return type that was declared with T's name so that T is an
256 qualified variant of it. */
257
258 static inline tree
259 main_odr_variant (const_tree t)
260 {
261 if (TYPE_NAME (t) && TREE_CODE (TYPE_NAME (t)) == TYPE_DECL)
262 return TREE_TYPE (TYPE_NAME (t));
263 /* Unnamed types and non-C++ produced types can be compared by variants. */
264 else
265 return TYPE_MAIN_VARIANT (t);
266 }
267
268 /* Produce hash based on type name. */
269
270 static hashval_t
271 hash_type_name (tree t)
272 {
273 gcc_checking_assert (main_odr_variant (t) == t);
274
275 /* If not in LTO, all main variants are unique, so we can do
276 pointer hash. */
277 if (!in_lto_p)
278 return htab_hash_pointer (t);
279
280 /* Anonymous types are unique. */
281 if (type_in_anonymous_namespace_p (t))
282 return htab_hash_pointer (t);
283
284 /* For polymorphic types, we can simply hash the virtual table. */
285 if (TREE_CODE (t) == RECORD_TYPE
286 && TYPE_BINFO (t) && BINFO_VTABLE (TYPE_BINFO (t)))
287 {
288 tree v = BINFO_VTABLE (TYPE_BINFO (t));
289 hashval_t hash = 0;
290
291 if (TREE_CODE (v) == POINTER_PLUS_EXPR)
292 {
293 hash = TREE_INT_CST_LOW (TREE_OPERAND (v, 1));
294 v = TREE_OPERAND (TREE_OPERAND (v, 0), 0);
295 }
296
297 v = DECL_ASSEMBLER_NAME (v);
298 hash = iterative_hash_hashval_t (hash, htab_hash_pointer (v));
299 return hash;
300 }
301
302 /* Rest is not implemented yet. */
303 gcc_unreachable ();
304 }
305
306 /* Return the computed hashcode for ODR_TYPE. */
307
308 inline hashval_t
309 odr_hasher::hash (const value_type *odr_type)
310 {
311 return hash_type_name (odr_type->type);
312 }
313
314 /* For languages with One Definition Rule, work out if
315 types are the same based on their name.
316
317 This is non-trivial for LTO where minnor differences in
318 the type representation may have prevented type merging
319 to merge two copies of otherwise equivalent type.
320
321 Until we start streaming mangled type names, this function works
322 only for polymorphic types. */
323
324 bool
325 types_same_for_odr (const_tree type1, const_tree type2)
326 {
327 gcc_checking_assert (TYPE_P (type1) && TYPE_P (type2));
328
329 type1 = main_odr_variant (type1);
330 type2 = main_odr_variant (type2);
331
332 if (type1 == type2)
333 return true;
334
335 if (!in_lto_p)
336 return false;
337
338 /* Check for anonymous namespaces. Those have !TREE_PUBLIC
339 on the corresponding TYPE_STUB_DECL. */
340 if (type_in_anonymous_namespace_p (type1)
341 || type_in_anonymous_namespace_p (type2))
342 return false;
343
344 /* At the moment we have no way to establish ODR equivlaence at LTO
345 other than comparing virtual table pointrs of polymorphic types.
346 Eventually we should start saving mangled names in TYPE_NAME.
347 Then this condition will become non-trivial. */
348
349 if (TREE_CODE (type1) == RECORD_TYPE
350 && TYPE_BINFO (type1) && TYPE_BINFO (type2)
351 && BINFO_VTABLE (TYPE_BINFO (type1))
352 && BINFO_VTABLE (TYPE_BINFO (type2)))
353 {
354 tree v1 = BINFO_VTABLE (TYPE_BINFO (type1));
355 tree v2 = BINFO_VTABLE (TYPE_BINFO (type2));
356 gcc_assert (TREE_CODE (v1) == POINTER_PLUS_EXPR
357 && TREE_CODE (v2) == POINTER_PLUS_EXPR);
358 return (operand_equal_p (TREE_OPERAND (v1, 1),
359 TREE_OPERAND (v2, 1), 0)
360 && DECL_ASSEMBLER_NAME
361 (TREE_OPERAND (TREE_OPERAND (v1, 0), 0))
362 == DECL_ASSEMBLER_NAME
363 (TREE_OPERAND (TREE_OPERAND (v2, 0), 0)));
364 }
365 gcc_unreachable ();
366 }
367
368
369 /* Compare types T1 and T2 and return true if they are
370 equivalent. */
371
372 inline bool
373 odr_hasher::equal (const value_type *t1, const compare_type *ct2)
374 {
375 tree t2 = const_cast <tree> (ct2);
376
377 gcc_checking_assert (main_odr_variant (t2) == t2);
378 if (t1->type == t2)
379 return true;
380 if (!in_lto_p)
381 return false;
382 return types_same_for_odr (t1->type, t2);
383 }
384
385 /* Free ODR type V. */
386
387 inline void
388 odr_hasher::remove (value_type *v)
389 {
390 v->bases.release ();
391 v->derived_types.release ();
392 if (v->types_set)
393 pointer_set_destroy (v->types_set);
394 ggc_free (v);
395 }
396
397 /* ODR type hash used to lookup ODR type based on tree type node. */
398
399 typedef hash_table<odr_hasher> odr_hash_type;
400 static odr_hash_type *odr_hash;
401
402 /* ODR types are also stored into ODR_TYPE vector to allow consistent
403 walking. Bases appear before derived types. Vector is garbage collected
404 so we won't end up visiting empty types. */
405
406 static GTY(()) vec <odr_type, va_gc> *odr_types_ptr;
407 #define odr_types (*odr_types_ptr)
408
409 /* Set TYPE_BINFO of TYPE and its variants to BINFO. */
410 void
411 set_type_binfo (tree type, tree binfo)
412 {
413 for (; type; type = TYPE_NEXT_VARIANT (type))
414 if (COMPLETE_TYPE_P (type))
415 TYPE_BINFO (type) = binfo;
416 else
417 gcc_assert (!TYPE_BINFO (type));
418 }
419
420 /* TYPE is equivalent to VAL by ODR, but its tree representation differs
421 from VAL->type. This may happen in LTO where tree merging did not merge
422 all variants of the same type. It may or may not mean the ODR violation.
423 Add it to the list of duplicates and warn on some violations. */
424
425 static bool
426 add_type_duplicate (odr_type val, tree type)
427 {
428 bool build_bases = false;
429 if (!val->types_set)
430 val->types_set = pointer_set_create ();
431
432 /* Always prefer complete type to be the leader. */
433 if (!COMPLETE_TYPE_P (val->type)
434 && COMPLETE_TYPE_P (type))
435 {
436 tree tmp = type;
437
438 build_bases = true;
439 type = val->type;
440 val->type = tmp;
441 }
442
443 /* See if this duplicate is new. */
444 if (!pointer_set_insert (val->types_set, type))
445 {
446 bool merge = true;
447 bool base_mismatch = false;
448 bool warned = 0;
449 unsigned int i,j;
450
451 gcc_assert (in_lto_p);
452 vec_safe_push (val->types, type);
453
454 /* First we compare memory layout. */
455 if (!types_compatible_p (val->type, type))
456 {
457 merge = false;
458 odr_violation_reported = true;
459 if (BINFO_VTABLE (TYPE_BINFO (val->type))
460 && warning_at (DECL_SOURCE_LOCATION (TYPE_NAME (type)), 0,
461 "type %qD violates one definition rule ",
462 type))
463 {
464 inform (DECL_SOURCE_LOCATION (TYPE_NAME (val->type)),
465 "a type with the same name but different layout is "
466 "defined in another translation unit");
467 warned = true;
468 }
469 val->odr_violated = true;
470 if (cgraph_dump_file)
471 {
472 fprintf (cgraph_dump_file, "ODR violation or merging or ODR type bug?\n");
473
474 print_node (cgraph_dump_file, "", val->type, 0);
475 putc ('\n',cgraph_dump_file);
476 print_node (cgraph_dump_file, "", type, 0);
477 putc ('\n',cgraph_dump_file);
478 }
479 }
480
481 /* Next sanity check that bases are the same. If not, we will end
482 up producing wrong answers. */
483 if (COMPLETE_TYPE_P (type) && COMPLETE_TYPE_P (val->type)
484 && TREE_CODE (val->type) == RECORD_TYPE
485 && TREE_CODE (type) == RECORD_TYPE
486 && TYPE_BINFO (val->type) && TYPE_BINFO (type))
487 {
488 for (j = 0, i = 0; i < BINFO_N_BASE_BINFOS (TYPE_BINFO (type)); i++)
489 if (polymorphic_type_binfo_p (BINFO_BASE_BINFO (TYPE_BINFO (type), i)))
490 {
491 odr_type base = get_odr_type
492 (BINFO_TYPE
493 (BINFO_BASE_BINFO (TYPE_BINFO (type),
494 i)),
495 true);
496 if (val->bases.length () <= j || val->bases[j] != base)
497 base_mismatch = true;
498 j++;
499 }
500 if (base_mismatch)
501 {
502 merge = false;
503 odr_violation_reported = true;
504
505 if (!warned
506 && warning_at (DECL_SOURCE_LOCATION (TYPE_NAME (type)), 0,
507 "type %qD violates one definition rule ",
508 type))
509 inform (DECL_SOURCE_LOCATION (TYPE_NAME (val->type)),
510 "a type with the same name but different bases is "
511 "defined in another translation unit");
512 val->odr_violated = true;
513 if (cgraph_dump_file)
514 {
515 fprintf (cgraph_dump_file, "ODR bse violation or merging bug?\n");
516
517 print_node (cgraph_dump_file, "", val->type, 0);
518 putc ('\n',cgraph_dump_file);
519 print_node (cgraph_dump_file, "", type, 0);
520 putc ('\n',cgraph_dump_file);
521 }
522 }
523 }
524
525 /* Regularize things a little. During LTO same types may come with
526 different BINFOs. Either because their virtual table was
527 not merged by tree merging and only later at decl merging or
528 because one type comes with external vtable, while other
529 with internal. We want to merge equivalent binfos to conserve
530 memory and streaming overhead.
531
532 The external vtables are more harmful: they contain references
533 to external declarations of methods that may be defined in the
534 merged LTO unit. For this reason we absolutely need to remove
535 them and replace by internal variants. Not doing so will lead
536 to incomplete answers from possible_polymorphic_call_targets. */
537 if (!flag_ltrans && merge
538 && TREE_CODE (val->type) == RECORD_TYPE
539 && TREE_CODE (type) == RECORD_TYPE
540 && TYPE_BINFO (val->type) && TYPE_BINFO (type)
541 && TYPE_MAIN_VARIANT (type) == type
542 && TYPE_MAIN_VARIANT (val->type) == val->type
543 && BINFO_VTABLE (TYPE_BINFO (val->type))
544 && BINFO_VTABLE (TYPE_BINFO (type)))
545 {
546 tree master_binfo = TYPE_BINFO (val->type);
547 tree v1 = BINFO_VTABLE (master_binfo);
548 tree v2 = BINFO_VTABLE (TYPE_BINFO (type));
549
550 if (TREE_CODE (v1) == POINTER_PLUS_EXPR)
551 {
552 gcc_assert (TREE_CODE (v2) == POINTER_PLUS_EXPR
553 && operand_equal_p (TREE_OPERAND (v1, 1),
554 TREE_OPERAND (v2, 1), 0));
555 v1 = TREE_OPERAND (TREE_OPERAND (v1, 0), 0);
556 v2 = TREE_OPERAND (TREE_OPERAND (v2, 0), 0);
557 }
558 gcc_assert (DECL_ASSEMBLER_NAME (v1)
559 == DECL_ASSEMBLER_NAME (v2));
560
561 if (DECL_EXTERNAL (v1) && !DECL_EXTERNAL (v2))
562 {
563 unsigned int i;
564
565 set_type_binfo (val->type, TYPE_BINFO (type));
566 for (i = 0; i < val->types->length (); i++)
567 {
568 if (TYPE_BINFO ((*val->types)[i])
569 == master_binfo)
570 set_type_binfo ((*val->types)[i], TYPE_BINFO (type));
571 }
572 BINFO_TYPE (TYPE_BINFO (type)) = val->type;
573 }
574 else
575 set_type_binfo (type, master_binfo);
576 }
577 }
578 return build_bases;
579 }
580
581 /* Get ODR type hash entry for TYPE. If INSERT is true, create
582 possibly new entry. */
583
584 odr_type
585 get_odr_type (tree type, bool insert)
586 {
587 odr_type_d **slot;
588 odr_type val;
589 hashval_t hash;
590 bool build_bases = false;
591 bool insert_to_odr_array = false;
592 int base_id = -1;
593
594 type = main_odr_variant (type);
595
596 hash = hash_type_name (type);
597 slot
598 = odr_hash->find_slot_with_hash (type, hash, insert ? INSERT : NO_INSERT);
599 if (!slot)
600 return NULL;
601
602 /* See if we already have entry for type. */
603 if (*slot)
604 {
605 val = *slot;
606
607 /* With LTO we need to support multiple tree representation of
608 the same ODR type. */
609 if (val->type != type)
610 build_bases = add_type_duplicate (val, type);
611 }
612 else
613 {
614
615 val = ggc_cleared_alloc<odr_type_d> ();
616 val->type = type;
617 val->bases = vNULL;
618 val->derived_types = vNULL;
619 val->anonymous_namespace = type_in_anonymous_namespace_p (type);
620 build_bases = COMPLETE_TYPE_P (val->type);
621 insert_to_odr_array = true;
622 }
623
624 if (build_bases && TREE_CODE (type) == RECORD_TYPE && TYPE_BINFO (type)
625 && type == TYPE_MAIN_VARIANT (type))
626 {
627 tree binfo = TYPE_BINFO (type);
628 unsigned int i;
629
630 gcc_assert (BINFO_TYPE (TYPE_BINFO (val->type)) = type);
631
632 val->all_derivations_known = type_all_derivations_known_p (type);
633 *slot = val;
634 for (i = 0; i < BINFO_N_BASE_BINFOS (binfo); i++)
635 /* For now record only polymorphic types. other are
636 pointless for devirtualization and we can not precisely
637 determine ODR equivalency of these during LTO. */
638 if (polymorphic_type_binfo_p (BINFO_BASE_BINFO (binfo, i)))
639 {
640 odr_type base = get_odr_type (BINFO_TYPE (BINFO_BASE_BINFO (binfo,
641 i)),
642 true);
643 gcc_assert (TYPE_MAIN_VARIANT (base->type) == base->type);
644 base->derived_types.safe_push (val);
645 val->bases.safe_push (base);
646 if (base->id > base_id)
647 base_id = base->id;
648 }
649 }
650 /* Ensure that type always appears after bases. */
651 if (insert_to_odr_array)
652 {
653 if (odr_types_ptr)
654 val->id = odr_types.length ();
655 vec_safe_push (odr_types_ptr, val);
656 }
657 else if (base_id > val->id)
658 {
659 odr_types[val->id] = 0;
660 /* Be sure we did not recorded any derived types; these may need
661 renumbering too. */
662 gcc_assert (val->derived_types.length() == 0);
663 if (odr_types_ptr)
664 val->id = odr_types.length ();
665 vec_safe_push (odr_types_ptr, val);
666 }
667 return val;
668 }
669
670 /* Dump ODR type T and all its derrived type. INDENT specify indentation for
671 recusive printing. */
672
673 static void
674 dump_odr_type (FILE *f, odr_type t, int indent=0)
675 {
676 unsigned int i;
677 fprintf (f, "%*s type %i: ", indent * 2, "", t->id);
678 print_generic_expr (f, t->type, TDF_SLIM);
679 fprintf (f, "%s", t->anonymous_namespace ? " (anonymous namespace)":"");
680 fprintf (f, "%s\n", t->all_derivations_known ? " (derivations known)":"");
681 if (TYPE_NAME (t->type))
682 {
683 fprintf (f, "%*s defined at: %s:%i\n", indent * 2, "",
684 DECL_SOURCE_FILE (TYPE_NAME (t->type)),
685 DECL_SOURCE_LINE (TYPE_NAME (t->type)));
686 }
687 if (t->bases.length ())
688 {
689 fprintf (f, "%*s base odr type ids: ", indent * 2, "");
690 for (i = 0; i < t->bases.length (); i++)
691 fprintf (f, " %i", t->bases[i]->id);
692 fprintf (f, "\n");
693 }
694 if (t->derived_types.length ())
695 {
696 fprintf (f, "%*s derived types:\n", indent * 2, "");
697 for (i = 0; i < t->derived_types.length (); i++)
698 dump_odr_type (f, t->derived_types[i], indent + 1);
699 }
700 fprintf (f, "\n");
701 }
702
703 /* Dump the type inheritance graph. */
704
705 static void
706 dump_type_inheritance_graph (FILE *f)
707 {
708 unsigned int i;
709 if (!odr_types_ptr)
710 return;
711 fprintf (f, "\n\nType inheritance graph:\n");
712 for (i = 0; i < odr_types.length (); i++)
713 {
714 if (odr_types[i] && odr_types[i]->bases.length () == 0)
715 dump_odr_type (f, odr_types[i]);
716 }
717 for (i = 0; i < odr_types.length (); i++)
718 {
719 if (odr_types[i] && odr_types[i]->types && odr_types[i]->types->length ())
720 {
721 unsigned int j;
722 fprintf (f, "Duplicate tree types for odr type %i\n", i);
723 print_node (f, "", odr_types[i]->type, 0);
724 for (j = 0; j < odr_types[i]->types->length (); j++)
725 {
726 tree t;
727 fprintf (f, "duplicate #%i\n", j);
728 print_node (f, "", (*odr_types[i]->types)[j], 0);
729 t = (*odr_types[i]->types)[j];
730 while (TYPE_P (t) && TYPE_CONTEXT (t))
731 {
732 t = TYPE_CONTEXT (t);
733 print_node (f, "", t, 0);
734 }
735 putc ('\n',f);
736 }
737 }
738 }
739 }
740
741 /* Given method type T, return type of class it belongs to.
742 Lookup this pointer and get its type. */
743
744 tree
745 method_class_type (tree t)
746 {
747 tree first_parm_type = TREE_VALUE (TYPE_ARG_TYPES (t));
748 gcc_assert (TREE_CODE (t) == METHOD_TYPE);
749
750 return TREE_TYPE (first_parm_type);
751 }
752
753 /* Initialize IPA devirt and build inheritance tree graph. */
754
755 void
756 build_type_inheritance_graph (void)
757 {
758 struct symtab_node *n;
759 FILE *inheritance_dump_file;
760 int flags;
761
762 if (odr_hash)
763 return;
764 timevar_push (TV_IPA_INHERITANCE);
765 inheritance_dump_file = dump_begin (TDI_inheritance, &flags);
766 odr_hash = new odr_hash_type (23);
767
768 /* We reconstruct the graph starting of types of all methods seen in the
769 the unit. */
770 FOR_EACH_SYMBOL (n)
771 if (is_a <cgraph_node *> (n)
772 && DECL_VIRTUAL_P (n->decl)
773 && symtab_real_symbol_p (n))
774 get_odr_type (TYPE_MAIN_VARIANT (method_class_type (TREE_TYPE (n->decl))),
775 true);
776
777 /* Look also for virtual tables of types that do not define any methods.
778
779 We need it in a case where class B has virtual base of class A
780 re-defining its virtual method and there is class C with no virtual
781 methods with B as virtual base.
782
783 Here we output B's virtual method in two variant - for non-virtual
784 and virtual inheritance. B's virtual table has non-virtual version,
785 while C's has virtual.
786
787 For this reason we need to know about C in order to include both
788 variants of B. More correctly, record_target_from_binfo should
789 add both variants of the method when walking B, but we have no
790 link in between them.
791
792 We rely on fact that either the method is exported and thus we
793 assume it is called externally or C is in anonymous namespace and
794 thus we will see the vtable. */
795
796 else if (is_a <varpool_node *> (n)
797 && DECL_VIRTUAL_P (n->decl)
798 && TREE_CODE (DECL_CONTEXT (n->decl)) == RECORD_TYPE
799 && TYPE_BINFO (DECL_CONTEXT (n->decl))
800 && polymorphic_type_binfo_p (TYPE_BINFO (DECL_CONTEXT (n->decl))))
801 get_odr_type (TYPE_MAIN_VARIANT (DECL_CONTEXT (n->decl)), true);
802 if (inheritance_dump_file)
803 {
804 dump_type_inheritance_graph (inheritance_dump_file);
805 dump_end (TDI_inheritance, inheritance_dump_file);
806 }
807 timevar_pop (TV_IPA_INHERITANCE);
808 }
809
810 /* Return true if N has reference from live virtual table
811 (and thus can be a destination of polymorphic call).
812 Be conservatively correct when callgraph is not built or
813 if the method may be referred externally. */
814
815 static bool
816 referenced_from_vtable_p (struct cgraph_node *node)
817 {
818 int i;
819 struct ipa_ref *ref;
820 bool found = false;
821
822 if (node->externally_visible
823 || node->used_from_other_partition)
824 return true;
825
826 /* Keep this test constant time.
827 It is unlikely this can happen except for the case where speculative
828 devirtualization introduced many speculative edges to this node.
829 In this case the target is very likely alive anyway. */
830 if (node->ref_list.referring.length () > 100)
831 return true;
832
833 /* We need references built. */
834 if (cgraph_state <= CGRAPH_STATE_CONSTRUCTION)
835 return true;
836
837 for (i = 0; node->iterate_referring (i, ref); i++)
838
839 if ((ref->use == IPA_REF_ALIAS
840 && referenced_from_vtable_p (cgraph (ref->referring)))
841 || (ref->use == IPA_REF_ADDR
842 && TREE_CODE (ref->referring->decl) == VAR_DECL
843 && DECL_VIRTUAL_P (ref->referring->decl)))
844 {
845 found = true;
846 break;
847 }
848 return found;
849 }
850
851 /* If TARGET has associated node, record it in the NODES array.
852 CAN_REFER specify if program can refer to the target directly.
853 if TARGET is unknown (NULL) or it can not be inserted (for example because
854 its body was already removed and there is no way to refer to it), clear
855 COMPLETEP. */
856
857 static void
858 maybe_record_node (vec <cgraph_node *> &nodes,
859 tree target, pointer_set_t *inserted,
860 bool can_refer,
861 bool *completep)
862 {
863 struct cgraph_node *target_node;
864
865 /* cxa_pure_virtual and __builtin_unreachable do not need to be added into
866 list of targets; the runtime effect of calling them is undefined.
867 Only "real" virtual methods should be accounted. */
868 if (target && TREE_CODE (TREE_TYPE (target)) != METHOD_TYPE)
869 return;
870
871 if (!can_refer)
872 {
873 /* The only case when method of anonymous namespace becomes unreferable
874 is when we completely optimized it out. */
875 if (flag_ltrans
876 || !target
877 || !type_in_anonymous_namespace_p (DECL_CONTEXT (target)))
878 *completep = false;
879 return;
880 }
881
882 if (!target)
883 return;
884
885 target_node = cgraph_get_node (target);
886
887 /* Method can only be called by polymorphic call if any
888 of vtables refering to it are alive.
889
890 While this holds for non-anonymous functions, too, there are
891 cases where we want to keep them in the list; for example
892 inline functions with -fno-weak are static, but we still
893 may devirtualize them when instance comes from other unit.
894 The same holds for LTO.
895
896 Currently we ignore these functions in speculative devirtualization.
897 ??? Maybe it would make sense to be more aggressive for LTO even
898 eslewhere. */
899 if (!flag_ltrans
900 && type_in_anonymous_namespace_p (DECL_CONTEXT (target))
901 && (!target_node
902 || !referenced_from_vtable_p (target_node)))
903 ;
904 /* See if TARGET is useful function we can deal with. */
905 else if (target_node != NULL
906 && (TREE_PUBLIC (target)
907 || DECL_EXTERNAL (target)
908 || target_node->definition)
909 && symtab_real_symbol_p (target_node))
910 {
911 gcc_assert (!target_node->global.inlined_to);
912 gcc_assert (symtab_real_symbol_p (target_node));
913 if (!pointer_set_insert (inserted, target))
914 {
915 pointer_set_insert (cached_polymorphic_call_targets,
916 target_node);
917 nodes.safe_push (target_node);
918 }
919 }
920 else if (completep
921 && (!type_in_anonymous_namespace_p
922 (DECL_CONTEXT (target))
923 || flag_ltrans))
924 *completep = false;
925 }
926
927 /* See if BINFO's type match OUTER_TYPE. If so, lookup
928 BINFO of subtype of OTR_TYPE at OFFSET and in that BINFO find
929 method in vtable and insert method to NODES array
930 or BASES_TO_CONSIDER if this array is non-NULL.
931 Otherwise recurse to base BINFOs.
932 This match what get_binfo_at_offset does, but with offset
933 being unknown.
934
935 TYPE_BINFOS is a stack of BINFOS of types with defined
936 virtual table seen on way from class type to BINFO.
937
938 MATCHED_VTABLES tracks virtual tables we already did lookup
939 for virtual function in. INSERTED tracks nodes we already
940 inserted.
941
942 ANONYMOUS is true if BINFO is part of anonymous namespace.
943
944 Clear COMPLETEP when we hit unreferable target.
945 */
946
947 static void
948 record_target_from_binfo (vec <cgraph_node *> &nodes,
949 vec <tree> *bases_to_consider,
950 tree binfo,
951 tree otr_type,
952 vec <tree> &type_binfos,
953 HOST_WIDE_INT otr_token,
954 tree outer_type,
955 HOST_WIDE_INT offset,
956 pointer_set_t *inserted,
957 pointer_set_t *matched_vtables,
958 bool anonymous,
959 bool *completep)
960 {
961 tree type = BINFO_TYPE (binfo);
962 int i;
963 tree base_binfo;
964
965
966 if (BINFO_VTABLE (binfo))
967 type_binfos.safe_push (binfo);
968 if (types_same_for_odr (type, outer_type))
969 {
970 int i;
971 tree type_binfo = NULL;
972
973 /* Lookup BINFO with virtual table. For normal types it is always last
974 binfo on stack. */
975 for (i = type_binfos.length () - 1; i >= 0; i--)
976 if (BINFO_OFFSET (type_binfos[i]) == BINFO_OFFSET (binfo))
977 {
978 type_binfo = type_binfos[i];
979 break;
980 }
981 if (BINFO_VTABLE (binfo))
982 type_binfos.pop ();
983 /* If this is duplicated BINFO for base shared by virtual inheritance,
984 we may not have its associated vtable. This is not a problem, since
985 we will walk it on the other path. */
986 if (!type_binfo)
987 return;
988 tree inner_binfo = get_binfo_at_offset (type_binfo,
989 offset, otr_type);
990 if (!inner_binfo)
991 {
992 gcc_assert (odr_violation_reported);
993 return;
994 }
995 /* For types in anonymous namespace first check if the respective vtable
996 is alive. If not, we know the type can't be called. */
997 if (!flag_ltrans && anonymous)
998 {
999 tree vtable = BINFO_VTABLE (inner_binfo);
1000 varpool_node *vnode;
1001
1002 if (TREE_CODE (vtable) == POINTER_PLUS_EXPR)
1003 vtable = TREE_OPERAND (TREE_OPERAND (vtable, 0), 0);
1004 vnode = varpool_get_node (vtable);
1005 if (!vnode || !vnode->definition)
1006 return;
1007 }
1008 gcc_assert (inner_binfo);
1009 if (bases_to_consider
1010 ? !pointer_set_contains (matched_vtables, BINFO_VTABLE (inner_binfo))
1011 : !pointer_set_insert (matched_vtables, BINFO_VTABLE (inner_binfo)))
1012 {
1013 bool can_refer;
1014 tree target = gimple_get_virt_method_for_binfo (otr_token,
1015 inner_binfo,
1016 &can_refer);
1017 if (!bases_to_consider)
1018 maybe_record_node (nodes, target, inserted, can_refer, completep);
1019 /* Destructors are never called via construction vtables. */
1020 else if (!target || !DECL_CXX_DESTRUCTOR_P (target))
1021 bases_to_consider->safe_push (target);
1022 }
1023 return;
1024 }
1025
1026 /* Walk bases. */
1027 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
1028 /* Walking bases that have no virtual method is pointless excercise. */
1029 if (polymorphic_type_binfo_p (base_binfo))
1030 record_target_from_binfo (nodes, bases_to_consider, base_binfo, otr_type,
1031 type_binfos,
1032 otr_token, outer_type, offset, inserted,
1033 matched_vtables, anonymous, completep);
1034 if (BINFO_VTABLE (binfo))
1035 type_binfos.pop ();
1036 }
1037
1038 /* Lookup virtual methods matching OTR_TYPE (with OFFSET and OTR_TOKEN)
1039 of TYPE, insert them to NODES, recurse into derived nodes.
1040 INSERTED is used to avoid duplicate insertions of methods into NODES.
1041 MATCHED_VTABLES are used to avoid duplicate walking vtables.
1042 Clear COMPLETEP if unreferable target is found.
1043
1044 If CONSIDER_CONSTURCTION is true, record to BASES_TO_CONSDIER
1045 all cases where BASE_SKIPPED is true (because the base is abstract
1046 class). */
1047
1048 static void
1049 possible_polymorphic_call_targets_1 (vec <cgraph_node *> &nodes,
1050 pointer_set_t *inserted,
1051 pointer_set_t *matched_vtables,
1052 tree otr_type,
1053 odr_type type,
1054 HOST_WIDE_INT otr_token,
1055 tree outer_type,
1056 HOST_WIDE_INT offset,
1057 bool *completep,
1058 vec <tree> &bases_to_consider,
1059 bool consider_construction)
1060 {
1061 tree binfo = TYPE_BINFO (type->type);
1062 unsigned int i;
1063 vec <tree> type_binfos = vNULL;
1064 bool possibly_instantiated = type_possibly_instantiated_p (type->type);
1065
1066 /* We may need to consider types w/o instances because of possible derived
1067 types using their methods either directly or via construction vtables.
1068 We are safe to skip them when all derivations are known, since we will
1069 handle them later.
1070 This is done by recording them to BASES_TO_CONSIDER array. */
1071 if (possibly_instantiated || consider_construction)
1072 {
1073 record_target_from_binfo (nodes,
1074 (!possibly_instantiated
1075 && type_all_derivations_known_p (type->type))
1076 ? &bases_to_consider : NULL,
1077 binfo, otr_type, type_binfos, otr_token,
1078 outer_type, offset,
1079 inserted, matched_vtables,
1080 type->anonymous_namespace, completep);
1081 }
1082 type_binfos.release ();
1083 for (i = 0; i < type->derived_types.length (); i++)
1084 possible_polymorphic_call_targets_1 (nodes, inserted,
1085 matched_vtables,
1086 otr_type,
1087 type->derived_types[i],
1088 otr_token, outer_type, offset, completep,
1089 bases_to_consider, consider_construction);
1090 }
1091
1092 /* Cache of queries for polymorphic call targets.
1093
1094 Enumerating all call targets may get expensive when there are many
1095 polymorphic calls in the program, so we memoize all the previous
1096 queries and avoid duplicated work. */
1097
1098 struct polymorphic_call_target_d
1099 {
1100 HOST_WIDE_INT otr_token;
1101 ipa_polymorphic_call_context context;
1102 odr_type type;
1103 vec <cgraph_node *> targets;
1104 int nonconstruction_targets;
1105 bool complete;
1106 };
1107
1108 /* Polymorphic call target cache helpers. */
1109
1110 struct polymorphic_call_target_hasher
1111 {
1112 typedef polymorphic_call_target_d value_type;
1113 typedef polymorphic_call_target_d compare_type;
1114 static inline hashval_t hash (const value_type *);
1115 static inline bool equal (const value_type *, const compare_type *);
1116 static inline void remove (value_type *);
1117 };
1118
1119 /* Return the computed hashcode for ODR_QUERY. */
1120
1121 inline hashval_t
1122 polymorphic_call_target_hasher::hash (const value_type *odr_query)
1123 {
1124 hashval_t hash;
1125
1126 hash = iterative_hash_host_wide_int
1127 (odr_query->otr_token,
1128 odr_query->type->id);
1129 hash = iterative_hash_hashval_t (TYPE_UID (odr_query->context.outer_type),
1130 hash);
1131 hash = iterative_hash_host_wide_int (odr_query->context.offset, hash);
1132 return iterative_hash_hashval_t
1133 (((int)odr_query->context.maybe_in_construction << 1)
1134 | (int)odr_query->context.maybe_derived_type, hash);
1135 }
1136
1137 /* Compare cache entries T1 and T2. */
1138
1139 inline bool
1140 polymorphic_call_target_hasher::equal (const value_type *t1,
1141 const compare_type *t2)
1142 {
1143 return (t1->type == t2->type && t1->otr_token == t2->otr_token
1144 && t1->context.offset == t2->context.offset
1145 && t1->context.outer_type == t2->context.outer_type
1146 && t1->context.maybe_in_construction
1147 == t2->context.maybe_in_construction
1148 && t1->context.maybe_derived_type == t2->context.maybe_derived_type);
1149 }
1150
1151 /* Remove entry in polymorphic call target cache hash. */
1152
1153 inline void
1154 polymorphic_call_target_hasher::remove (value_type *v)
1155 {
1156 v->targets.release ();
1157 free (v);
1158 }
1159
1160 /* Polymorphic call target query cache. */
1161
1162 typedef hash_table<polymorphic_call_target_hasher>
1163 polymorphic_call_target_hash_type;
1164 static polymorphic_call_target_hash_type *polymorphic_call_target_hash;
1165
1166 /* Destroy polymorphic call target query cache. */
1167
1168 static void
1169 free_polymorphic_call_targets_hash ()
1170 {
1171 if (cached_polymorphic_call_targets)
1172 {
1173 delete polymorphic_call_target_hash;
1174 polymorphic_call_target_hash = NULL;
1175 pointer_set_destroy (cached_polymorphic_call_targets);
1176 cached_polymorphic_call_targets = NULL;
1177 }
1178 }
1179
1180 /* When virtual function is removed, we may need to flush the cache. */
1181
1182 static void
1183 devirt_node_removal_hook (struct cgraph_node *n, void *d ATTRIBUTE_UNUSED)
1184 {
1185 if (cached_polymorphic_call_targets
1186 && pointer_set_contains (cached_polymorphic_call_targets, n))
1187 free_polymorphic_call_targets_hash ();
1188 }
1189
1190 /* CONTEXT->OUTER_TYPE is a type of memory object where object of EXPECTED_TYPE
1191 is contained at CONTEXT->OFFSET. Walk the memory representation of
1192 CONTEXT->OUTER_TYPE and find the outermost class type that match
1193 EXPECTED_TYPE or contain EXPECTED_TYPE as a base. Update CONTEXT
1194 to represent it.
1195
1196 For example when CONTEXT represents type
1197 class A
1198 {
1199 int a;
1200 class B b;
1201 }
1202 and we look for type at offset sizeof(int), we end up with B and offset 0.
1203 If the same is produced by multiple inheritance, we end up with A and offset
1204 sizeof(int).
1205
1206 If we can not find corresponding class, give up by setting
1207 CONTEXT->OUTER_TYPE to EXPECTED_TYPE and CONTEXT->OFFSET to NULL.
1208 Return true when lookup was sucesful. */
1209
1210 static bool
1211 get_class_context (ipa_polymorphic_call_context *context,
1212 tree expected_type)
1213 {
1214 tree type = context->outer_type;
1215 HOST_WIDE_INT offset = context->offset;
1216
1217 /* Find the sub-object the constant actually refers to and mark whether it is
1218 an artificial one (as opposed to a user-defined one). */
1219 while (true)
1220 {
1221 HOST_WIDE_INT pos, size;
1222 tree fld;
1223
1224 /* On a match, just return what we found. */
1225 if (TREE_CODE (type) == TREE_CODE (expected_type)
1226 && types_same_for_odr (type, expected_type))
1227 {
1228 /* Type can not contain itself on an non-zero offset. In that case
1229 just give up. */
1230 if (offset != 0)
1231 goto give_up;
1232 gcc_assert (offset == 0);
1233 return true;
1234 }
1235
1236 /* Walk fields and find corresponding on at OFFSET. */
1237 if (TREE_CODE (type) == RECORD_TYPE)
1238 {
1239 for (fld = TYPE_FIELDS (type); fld; fld = DECL_CHAIN (fld))
1240 {
1241 if (TREE_CODE (fld) != FIELD_DECL)
1242 continue;
1243
1244 pos = int_bit_position (fld);
1245 size = tree_to_uhwi (DECL_SIZE (fld));
1246 if (pos <= offset && (pos + size) > offset)
1247 break;
1248 }
1249
1250 if (!fld)
1251 goto give_up;
1252
1253 type = TYPE_MAIN_VARIANT (TREE_TYPE (fld));
1254 offset -= pos;
1255 /* DECL_ARTIFICIAL represents a basetype. */
1256 if (!DECL_ARTIFICIAL (fld))
1257 {
1258 context->outer_type = type;
1259 context->offset = offset;
1260 /* As soon as we se an field containing the type,
1261 we know we are not looking for derivations. */
1262 context->maybe_derived_type = false;
1263 }
1264 }
1265 else if (TREE_CODE (type) == ARRAY_TYPE)
1266 {
1267 tree subtype = TYPE_MAIN_VARIANT (TREE_TYPE (type));
1268
1269 /* Give up if we don't know array size. */
1270 if (!tree_fits_shwi_p (TYPE_SIZE (subtype))
1271 || !tree_to_shwi (TYPE_SIZE (subtype)) <= 0)
1272 goto give_up;
1273 offset = offset % tree_to_shwi (TYPE_SIZE (subtype));
1274 type = subtype;
1275 context->outer_type = type;
1276 context->offset = offset;
1277 context->maybe_derived_type = false;
1278 }
1279 /* Give up on anything else. */
1280 else
1281 goto give_up;
1282 }
1283
1284 /* If we failed to find subtype we look for, give up and fall back to the
1285 most generic query. */
1286 give_up:
1287 context->outer_type = expected_type;
1288 context->offset = 0;
1289 context->maybe_derived_type = true;
1290 context->maybe_in_construction = true;
1291 /* POD can be changed to an instance of a polymorphic type by
1292 placement new. Here we play safe and assume that any
1293 non-polymorphic type is POD. */
1294 if ((TREE_CODE (type) != RECORD_TYPE
1295 || !TYPE_BINFO (type)
1296 || !polymorphic_type_binfo_p (TYPE_BINFO (type)))
1297 && (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST
1298 || (offset + tree_to_uhwi (TYPE_SIZE (expected_type)) <=
1299 tree_to_uhwi (TYPE_SIZE (type)))))
1300 return true;
1301 return false;
1302 }
1303
1304 /* Return true if OUTER_TYPE contains OTR_TYPE at OFFSET. */
1305
1306 static bool
1307 contains_type_p (tree outer_type, HOST_WIDE_INT offset,
1308 tree otr_type)
1309 {
1310 ipa_polymorphic_call_context context = {offset,
1311 TYPE_MAIN_VARIANT (outer_type),
1312 false, true};
1313 return get_class_context (&context, otr_type);
1314 }
1315
1316 /* Lookup base of BINFO that has virtual table VTABLE with OFFSET. */
1317
1318 static tree
1319 subbinfo_with_vtable_at_offset (tree binfo, unsigned HOST_WIDE_INT offset,
1320 tree vtable)
1321 {
1322 tree v = BINFO_VTABLE (binfo);
1323 int i;
1324 tree base_binfo;
1325 unsigned HOST_WIDE_INT this_offset;
1326
1327 if (v)
1328 {
1329 if (!vtable_pointer_value_to_vtable (v, &v, &this_offset))
1330 gcc_unreachable ();
1331
1332 if (offset == this_offset
1333 && DECL_ASSEMBLER_NAME (v) == DECL_ASSEMBLER_NAME (vtable))
1334 return binfo;
1335 }
1336
1337 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
1338 if (polymorphic_type_binfo_p (base_binfo))
1339 {
1340 base_binfo = subbinfo_with_vtable_at_offset (base_binfo, offset, vtable);
1341 if (base_binfo)
1342 return base_binfo;
1343 }
1344 return NULL;
1345 }
1346
1347 /* T is known constant value of virtual table pointer.
1348 Store virtual table to V and its offset to OFFSET.
1349 Return false if T does not look like virtual table reference. */
1350
1351 bool
1352 vtable_pointer_value_to_vtable (tree t, tree *v, unsigned HOST_WIDE_INT *offset)
1353 {
1354 /* We expect &MEM[(void *)&virtual_table + 16B].
1355 We obtain object's BINFO from the context of the virtual table.
1356 This one contains pointer to virtual table represented via
1357 POINTER_PLUS_EXPR. Verify that this pointer match to what
1358 we propagated through.
1359
1360 In the case of virtual inheritance, the virtual tables may
1361 be nested, i.e. the offset may be different from 16 and we may
1362 need to dive into the type representation. */
1363 if (TREE_CODE (t) == ADDR_EXPR
1364 && TREE_CODE (TREE_OPERAND (t, 0)) == MEM_REF
1365 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 0)) == ADDR_EXPR
1366 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (t, 0), 1)) == INTEGER_CST
1367 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t, 0), 0), 0))
1368 == VAR_DECL)
1369 && DECL_VIRTUAL_P (TREE_OPERAND (TREE_OPERAND
1370 (TREE_OPERAND (t, 0), 0), 0)))
1371 {
1372 *v = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (t, 0), 0), 0);
1373 *offset = tree_to_uhwi (TREE_OPERAND (TREE_OPERAND (t, 0), 1));
1374 return true;
1375 }
1376
1377 /* Alternative representation, used by C++ frontend is POINTER_PLUS_EXPR.
1378 We need to handle it when T comes from static variable initializer or
1379 BINFO. */
1380 if (TREE_CODE (t) == POINTER_PLUS_EXPR)
1381 {
1382 *offset = tree_to_uhwi (TREE_OPERAND (t, 1));
1383 t = TREE_OPERAND (t, 0);
1384 }
1385 else
1386 *offset = 0;
1387
1388 if (TREE_CODE (t) != ADDR_EXPR)
1389 return false;
1390 *v = TREE_OPERAND (t, 0);
1391 return true;
1392 }
1393
1394 /* T is known constant value of virtual table pointer. Return BINFO of the
1395 instance type. */
1396
1397 tree
1398 vtable_pointer_value_to_binfo (tree t)
1399 {
1400 tree vtable;
1401 unsigned HOST_WIDE_INT offset;
1402
1403 if (!vtable_pointer_value_to_vtable (t, &vtable, &offset))
1404 return NULL_TREE;
1405
1406 /* FIXME: for stores of construction vtables we return NULL,
1407 because we do not have BINFO for those. Eventually we should fix
1408 our representation to allow this case to be handled, too.
1409 In the case we see store of BINFO we however may assume
1410 that standard folding will be ale to cope with it. */
1411 return subbinfo_with_vtable_at_offset (TYPE_BINFO (DECL_CONTEXT (vtable)),
1412 offset, vtable);
1413 }
1414
1415 /* Proudce polymorphic call context for call method of instance
1416 that is located within BASE (that is assumed to be a decl) at OFFSET. */
1417
1418 static void
1419 get_polymorphic_call_info_for_decl (ipa_polymorphic_call_context *context,
1420 tree base, HOST_WIDE_INT offset)
1421 {
1422 gcc_assert (DECL_P (base));
1423
1424 context->outer_type = TYPE_MAIN_VARIANT (TREE_TYPE (base));
1425 context->offset = offset;
1426 /* Make very conservative assumption that all objects
1427 may be in construction.
1428 TODO: ipa-prop already contains code to tell better.
1429 merge it later. */
1430 context->maybe_in_construction = true;
1431 context->maybe_derived_type = false;
1432 }
1433
1434 /* CST is an invariant (address of decl), try to get meaningful
1435 polymorphic call context for polymorphic call of method
1436 if instance of OTR_TYPE that is located at OFFSET of this invariant.
1437 Return FALSE if nothing meaningful can be found. */
1438
1439 bool
1440 get_polymorphic_call_info_from_invariant (ipa_polymorphic_call_context *context,
1441 tree cst,
1442 tree otr_type,
1443 HOST_WIDE_INT offset)
1444 {
1445 HOST_WIDE_INT offset2, size, max_size;
1446 tree base;
1447
1448 if (TREE_CODE (cst) != ADDR_EXPR)
1449 return false;
1450
1451 cst = TREE_OPERAND (cst, 0);
1452 base = get_ref_base_and_extent (cst, &offset2, &size, &max_size);
1453 if (!DECL_P (base) || max_size == -1 || max_size != size)
1454 return false;
1455
1456 /* Only type inconsistent programs can have otr_type that is
1457 not part of outer type. */
1458 if (!contains_type_p (TREE_TYPE (base), offset, otr_type))
1459 return false;
1460
1461 get_polymorphic_call_info_for_decl (context, base, offset);
1462 return true;
1463 }
1464
1465 /* Given REF call in FNDECL, determine class of the polymorphic
1466 call (OTR_TYPE), its token (OTR_TOKEN) and CONTEXT.
1467 Return pointer to object described by the context */
1468
1469 tree
1470 get_polymorphic_call_info (tree fndecl,
1471 tree ref,
1472 tree *otr_type,
1473 HOST_WIDE_INT *otr_token,
1474 ipa_polymorphic_call_context *context)
1475 {
1476 tree base_pointer;
1477 *otr_type = obj_type_ref_class (ref);
1478 *otr_token = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (ref));
1479
1480 /* Set up basic info in case we find nothing interesting in the analysis. */
1481 context->outer_type = TYPE_MAIN_VARIANT (*otr_type);
1482 context->offset = 0;
1483 base_pointer = OBJ_TYPE_REF_OBJECT (ref);
1484 context->maybe_derived_type = true;
1485 context->maybe_in_construction = true;
1486
1487 /* Walk SSA for outer object. */
1488 do
1489 {
1490 if (TREE_CODE (base_pointer) == SSA_NAME
1491 && !SSA_NAME_IS_DEFAULT_DEF (base_pointer)
1492 && SSA_NAME_DEF_STMT (base_pointer)
1493 && gimple_assign_single_p (SSA_NAME_DEF_STMT (base_pointer)))
1494 {
1495 base_pointer = gimple_assign_rhs1 (SSA_NAME_DEF_STMT (base_pointer));
1496 STRIP_NOPS (base_pointer);
1497 }
1498 else if (TREE_CODE (base_pointer) == ADDR_EXPR)
1499 {
1500 HOST_WIDE_INT size, max_size;
1501 HOST_WIDE_INT offset2;
1502 tree base = get_ref_base_and_extent (TREE_OPERAND (base_pointer, 0),
1503 &offset2, &size, &max_size);
1504
1505 /* If this is a varying address, punt. */
1506 if ((TREE_CODE (base) == MEM_REF || DECL_P (base))
1507 && max_size != -1
1508 && max_size == size)
1509 {
1510 /* We found dereference of a pointer. Type of the pointer
1511 and MEM_REF is meaningless, but we can look futher. */
1512 if (TREE_CODE (base) == MEM_REF)
1513 {
1514 base_pointer = TREE_OPERAND (base, 0);
1515 context->offset
1516 += offset2 + mem_ref_offset (base).to_short_addr () * BITS_PER_UNIT;
1517 context->outer_type = NULL;
1518 }
1519 /* We found base object. In this case the outer_type
1520 is known. */
1521 else if (DECL_P (base))
1522 {
1523 gcc_assert (!POINTER_TYPE_P (TREE_TYPE (base)));
1524
1525 /* Only type inconsistent programs can have otr_type that is
1526 not part of outer type. */
1527 if (!contains_type_p (TREE_TYPE (base),
1528 context->offset + offset2, *otr_type))
1529 {
1530 /* Use OTR_TOKEN = INT_MAX as a marker of probably type inconsistent
1531 code sequences; we arrange the calls to be builtin_unreachable
1532 later. */
1533 *otr_token = INT_MAX;
1534 return base_pointer;
1535 }
1536 get_polymorphic_call_info_for_decl (context, base,
1537 context->offset + offset2);
1538 return NULL;
1539 }
1540 else
1541 break;
1542 }
1543 else
1544 break;
1545 }
1546 else if (TREE_CODE (base_pointer) == POINTER_PLUS_EXPR
1547 && tree_fits_uhwi_p (TREE_OPERAND (base_pointer, 1)))
1548 {
1549 context->offset += tree_to_shwi (TREE_OPERAND (base_pointer, 1))
1550 * BITS_PER_UNIT;
1551 base_pointer = TREE_OPERAND (base_pointer, 0);
1552 }
1553 else
1554 break;
1555 }
1556 while (true);
1557
1558 /* Try to determine type of the outer object. */
1559 if (TREE_CODE (base_pointer) == SSA_NAME
1560 && SSA_NAME_IS_DEFAULT_DEF (base_pointer)
1561 && TREE_CODE (SSA_NAME_VAR (base_pointer)) == PARM_DECL)
1562 {
1563 /* See if parameter is THIS pointer of a method. */
1564 if (TREE_CODE (TREE_TYPE (fndecl)) == METHOD_TYPE
1565 && SSA_NAME_VAR (base_pointer) == DECL_ARGUMENTS (fndecl))
1566 {
1567 context->outer_type
1568 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (base_pointer)));
1569 gcc_assert (TREE_CODE (context->outer_type) == RECORD_TYPE);
1570
1571 /* Dynamic casting has possibly upcasted the type
1572 in the hiearchy. In this case outer type is less
1573 informative than inner type and we should forget
1574 about it. */
1575 if (!contains_type_p (context->outer_type, context->offset,
1576 *otr_type))
1577 {
1578 context->outer_type = NULL;
1579 return base_pointer;
1580 }
1581
1582 /* If the function is constructor or destructor, then
1583 the type is possibly in construction, but we know
1584 it is not derived type. */
1585 if (DECL_CXX_CONSTRUCTOR_P (fndecl)
1586 || DECL_CXX_DESTRUCTOR_P (fndecl))
1587 {
1588 context->maybe_in_construction = true;
1589 context->maybe_derived_type = false;
1590 }
1591 else
1592 {
1593 context->maybe_derived_type = true;
1594 context->maybe_in_construction = false;
1595 }
1596 return base_pointer;
1597 }
1598 /* Non-PODs passed by value are really passed by invisible
1599 reference. In this case we also know the type of the
1600 object. */
1601 if (DECL_BY_REFERENCE (SSA_NAME_VAR (base_pointer)))
1602 {
1603 context->outer_type
1604 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (base_pointer)));
1605 gcc_assert (!POINTER_TYPE_P (context->outer_type));
1606 /* Only type inconsistent programs can have otr_type that is
1607 not part of outer type. */
1608 if (!contains_type_p (context->outer_type, context->offset,
1609 *otr_type))
1610 {
1611 /* Use OTR_TOKEN = INT_MAX as a marker of probably type inconsistent
1612 code sequences; we arrange the calls to be builtin_unreachable
1613 later. */
1614 *otr_token = INT_MAX;
1615 return base_pointer;
1616 }
1617 context->maybe_derived_type = false;
1618 context->maybe_in_construction = false;
1619 return base_pointer;
1620 }
1621 }
1622 /* TODO: There are multiple ways to derive a type. For instance
1623 if BASE_POINTER is passed to an constructor call prior our refernece.
1624 We do not make this type of flow sensitive analysis yet. */
1625 return base_pointer;
1626 }
1627
1628 /* Walk bases of OUTER_TYPE that contain OTR_TYPE at OFFSET.
1629 Lookup their respecitve virtual methods for OTR_TOKEN and OTR_TYPE
1630 and insert them to NODES.
1631
1632 MATCHED_VTABLES and INSERTED is used to avoid duplicated work. */
1633
1634 static void
1635 record_targets_from_bases (tree otr_type,
1636 HOST_WIDE_INT otr_token,
1637 tree outer_type,
1638 HOST_WIDE_INT offset,
1639 vec <cgraph_node *> &nodes,
1640 pointer_set_t *inserted,
1641 pointer_set_t *matched_vtables,
1642 bool *completep)
1643 {
1644 while (true)
1645 {
1646 HOST_WIDE_INT pos, size;
1647 tree base_binfo;
1648 tree fld;
1649
1650 if (types_same_for_odr (outer_type, otr_type))
1651 return;
1652
1653 for (fld = TYPE_FIELDS (outer_type); fld; fld = DECL_CHAIN (fld))
1654 {
1655 if (TREE_CODE (fld) != FIELD_DECL)
1656 continue;
1657
1658 pos = int_bit_position (fld);
1659 size = tree_to_shwi (DECL_SIZE (fld));
1660 if (pos <= offset && (pos + size) > offset
1661 /* Do not get confused by zero sized bases. */
1662 && polymorphic_type_binfo_p (TYPE_BINFO (TREE_TYPE (fld))))
1663 break;
1664 }
1665 /* Within a class type we should always find correcponding fields. */
1666 gcc_assert (fld && TREE_CODE (TREE_TYPE (fld)) == RECORD_TYPE);
1667
1668 /* Nonbasetypes should have been stripped by outer_class_type. */
1669 gcc_assert (DECL_ARTIFICIAL (fld));
1670
1671 outer_type = TREE_TYPE (fld);
1672 offset -= pos;
1673
1674 base_binfo = get_binfo_at_offset (TYPE_BINFO (outer_type),
1675 offset, otr_type);
1676 if (!base_binfo)
1677 {
1678 gcc_assert (odr_violation_reported);
1679 return;
1680 }
1681 gcc_assert (base_binfo);
1682 if (!pointer_set_insert (matched_vtables, BINFO_VTABLE (base_binfo)))
1683 {
1684 bool can_refer;
1685 tree target = gimple_get_virt_method_for_binfo (otr_token,
1686 base_binfo,
1687 &can_refer);
1688 if (!target || ! DECL_CXX_DESTRUCTOR_P (target))
1689 maybe_record_node (nodes, target, inserted, can_refer, completep);
1690 pointer_set_insert (matched_vtables, BINFO_VTABLE (base_binfo));
1691 }
1692 }
1693 }
1694
1695 /* When virtual table is removed, we may need to flush the cache. */
1696
1697 static void
1698 devirt_variable_node_removal_hook (varpool_node *n,
1699 void *d ATTRIBUTE_UNUSED)
1700 {
1701 if (cached_polymorphic_call_targets
1702 && DECL_VIRTUAL_P (n->decl)
1703 && type_in_anonymous_namespace_p (DECL_CONTEXT (n->decl)))
1704 free_polymorphic_call_targets_hash ();
1705 }
1706
1707 /* Return vector containing possible targets of polymorphic call of type
1708 OTR_TYPE caling method OTR_TOKEN within type of OTR_OUTER_TYPE and OFFSET.
1709 If INCLUDE_BASES is true, walk also base types of OUTER_TYPES containig
1710 OTR_TYPE and include their virtual method. This is useful for types
1711 possibly in construction or destruction where the virtual table may
1712 temporarily change to one of base types. INCLUDE_DERIVER_TYPES make
1713 us to walk the inheritance graph for all derivations.
1714
1715 OTR_TOKEN == INT_MAX is used to mark calls that are provably
1716 undefined and should be redirected to unreachable.
1717
1718 If COMPLETEP is non-NULL, store true if the list is complete.
1719 CACHE_TOKEN (if non-NULL) will get stored to an unique ID of entry
1720 in the target cache. If user needs to visit every target list
1721 just once, it can memoize them.
1722
1723 NONCONSTRUCTION_TARGETS specify number of targets with asumption that
1724 the type is not in the construction. Those targets appear first in the
1725 vector returned.
1726
1727 Returned vector is placed into cache. It is NOT caller's responsibility
1728 to free it. The vector can be freed on cgraph_remove_node call if
1729 the particular node is a virtual function present in the cache. */
1730
1731 vec <cgraph_node *>
1732 possible_polymorphic_call_targets (tree otr_type,
1733 HOST_WIDE_INT otr_token,
1734 ipa_polymorphic_call_context context,
1735 bool *completep,
1736 void **cache_token,
1737 int *nonconstruction_targetsp)
1738 {
1739 static struct cgraph_node_hook_list *node_removal_hook_holder;
1740 pointer_set_t *inserted;
1741 pointer_set_t *matched_vtables;
1742 vec <cgraph_node *> nodes = vNULL;
1743 vec <tree> bases_to_consider = vNULL;
1744 odr_type type, outer_type;
1745 polymorphic_call_target_d key;
1746 polymorphic_call_target_d **slot;
1747 unsigned int i;
1748 tree binfo, target;
1749 bool complete;
1750 bool can_refer;
1751 bool skipped = false;
1752
1753 otr_type = TYPE_MAIN_VARIANT (otr_type);
1754
1755 /* If ODR is not initialized, return empty incomplete list. */
1756 if (!odr_hash)
1757 {
1758 if (completep)
1759 *completep = false;
1760 if (cache_token)
1761 *cache_token = NULL;
1762 if (nonconstruction_targetsp)
1763 *nonconstruction_targetsp = 0;
1764 return nodes;
1765 }
1766
1767 /* If we hit type inconsistency, just return empty list of targets. */
1768 if (otr_token == INT_MAX)
1769 {
1770 if (completep)
1771 *completep = true;
1772 if (cache_token)
1773 *cache_token = NULL;
1774 if (nonconstruction_targetsp)
1775 *nonconstruction_targetsp = 0;
1776 return nodes;
1777 }
1778
1779 type = get_odr_type (otr_type, true);
1780
1781 /* Recording type variants would wast results cache. */
1782 gcc_assert (!context.outer_type
1783 || TYPE_MAIN_VARIANT (context.outer_type) == context.outer_type);
1784
1785 /* Lookup the outer class type we want to walk. */
1786 if (context.outer_type
1787 && !get_class_context (&context, otr_type))
1788 {
1789 if (completep)
1790 *completep = false;
1791 if (cache_token)
1792 *cache_token = NULL;
1793 if (nonconstruction_targetsp)
1794 *nonconstruction_targetsp = 0;
1795 return nodes;
1796 }
1797
1798 /* Check that get_class_context kept the main variant. */
1799 gcc_assert (!context.outer_type
1800 || TYPE_MAIN_VARIANT (context.outer_type) == context.outer_type);
1801
1802 /* We canonicalize our query, so we do not need extra hashtable entries. */
1803
1804 /* Without outer type, we have no use for offset. Just do the
1805 basic search from innter type */
1806 if (!context.outer_type)
1807 {
1808 context.outer_type = otr_type;
1809 context.offset = 0;
1810 }
1811 /* We need to update our hiearchy if the type does not exist. */
1812 outer_type = get_odr_type (context.outer_type, true);
1813 /* If the type is complete, there are no derivations. */
1814 if (TYPE_FINAL_P (outer_type->type))
1815 context.maybe_derived_type = false;
1816
1817 /* Initialize query cache. */
1818 if (!cached_polymorphic_call_targets)
1819 {
1820 cached_polymorphic_call_targets = pointer_set_create ();
1821 polymorphic_call_target_hash
1822 = new polymorphic_call_target_hash_type (23);
1823 if (!node_removal_hook_holder)
1824 {
1825 node_removal_hook_holder =
1826 cgraph_add_node_removal_hook (&devirt_node_removal_hook, NULL);
1827 varpool_add_node_removal_hook (&devirt_variable_node_removal_hook,
1828 NULL);
1829 }
1830 }
1831
1832 /* Lookup cached answer. */
1833 key.type = type;
1834 key.otr_token = otr_token;
1835 key.context = context;
1836 slot = polymorphic_call_target_hash->find_slot (&key, INSERT);
1837 if (cache_token)
1838 *cache_token = (void *)*slot;
1839 if (*slot)
1840 {
1841 if (completep)
1842 *completep = (*slot)->complete;
1843 if (nonconstruction_targetsp)
1844 *nonconstruction_targetsp = (*slot)->nonconstruction_targets;
1845 return (*slot)->targets;
1846 }
1847
1848 complete = true;
1849
1850 /* Do actual search. */
1851 timevar_push (TV_IPA_VIRTUAL_CALL);
1852 *slot = XCNEW (polymorphic_call_target_d);
1853 if (cache_token)
1854 *cache_token = (void *)*slot;
1855 (*slot)->type = type;
1856 (*slot)->otr_token = otr_token;
1857 (*slot)->context = context;
1858
1859 inserted = pointer_set_create ();
1860 matched_vtables = pointer_set_create ();
1861
1862 /* First see virtual method of type itself. */
1863 binfo = get_binfo_at_offset (TYPE_BINFO (outer_type->type),
1864 context.offset, otr_type);
1865 if (binfo)
1866 target = gimple_get_virt_method_for_binfo (otr_token, binfo,
1867 &can_refer);
1868 else
1869 {
1870 gcc_assert (odr_violation_reported);
1871 target = NULL;
1872 }
1873
1874 /* Destructors are never called through construction virtual tables,
1875 because the type is always known. */
1876 if (target && DECL_CXX_DESTRUCTOR_P (target))
1877 context.maybe_in_construction = false;
1878
1879 if (target)
1880 {
1881 /* In the case we get complete method, we don't need
1882 to walk derivations. */
1883 if (DECL_FINAL_P (target))
1884 context.maybe_derived_type = false;
1885 }
1886
1887 /* If OUTER_TYPE is abstract, we know we are not seeing its instance. */
1888 if (type_possibly_instantiated_p (outer_type->type))
1889 maybe_record_node (nodes, target, inserted, can_refer, &complete);
1890 else
1891 {
1892 skipped = true;
1893 gcc_assert (in_lto_p || context.maybe_derived_type);
1894 }
1895
1896 if (binfo)
1897 pointer_set_insert (matched_vtables, BINFO_VTABLE (binfo));
1898
1899 /* Next walk recursively all derived types. */
1900 if (context.maybe_derived_type)
1901 {
1902 /* For anonymous namespace types we can attempt to build full type.
1903 All derivations must be in this unit (unless we see partial unit). */
1904 if (!type->all_derivations_known)
1905 complete = false;
1906 for (i = 0; i < outer_type->derived_types.length(); i++)
1907 possible_polymorphic_call_targets_1 (nodes, inserted,
1908 matched_vtables,
1909 otr_type,
1910 outer_type->derived_types[i],
1911 otr_token, outer_type->type,
1912 context.offset, &complete,
1913 bases_to_consider,
1914 context.maybe_in_construction);
1915 }
1916
1917 /* Finally walk bases, if asked to. */
1918 (*slot)->nonconstruction_targets = nodes.length();
1919
1920 /* Destructors are never called through construction virtual tables,
1921 because the type is always known. One of entries may be cxa_pure_virtual
1922 so look to at least two of them. */
1923 if (context.maybe_in_construction)
1924 for (i =0 ; i < MIN (nodes.length (), 2); i++)
1925 if (DECL_CXX_DESTRUCTOR_P (nodes[i]->decl))
1926 context.maybe_in_construction = false;
1927 if (context.maybe_in_construction)
1928 {
1929 if (type != outer_type
1930 && (!skipped
1931 || (context.maybe_derived_type
1932 && !type_all_derivations_known_p (outer_type->type))))
1933 record_targets_from_bases (otr_type, otr_token, outer_type->type,
1934 context.offset, nodes, inserted,
1935 matched_vtables, &complete);
1936 if (skipped)
1937 maybe_record_node (nodes, target, inserted, can_refer, &complete);
1938 for (i = 0; i < bases_to_consider.length(); i++)
1939 maybe_record_node (nodes, bases_to_consider[i], inserted, can_refer, &complete);
1940 }
1941 bases_to_consider.release();
1942
1943 (*slot)->targets = nodes;
1944 (*slot)->complete = complete;
1945 if (completep)
1946 *completep = complete;
1947 if (nonconstruction_targetsp)
1948 *nonconstruction_targetsp = (*slot)->nonconstruction_targets;
1949
1950 pointer_set_destroy (inserted);
1951 pointer_set_destroy (matched_vtables);
1952 timevar_pop (TV_IPA_VIRTUAL_CALL);
1953 return nodes;
1954 }
1955
1956 /* Dump all possible targets of a polymorphic call. */
1957
1958 void
1959 dump_possible_polymorphic_call_targets (FILE *f,
1960 tree otr_type,
1961 HOST_WIDE_INT otr_token,
1962 const ipa_polymorphic_call_context &ctx)
1963 {
1964 vec <cgraph_node *> targets;
1965 bool final;
1966 odr_type type = get_odr_type (TYPE_MAIN_VARIANT (otr_type), false);
1967 unsigned int i;
1968 int nonconstruction;
1969
1970 if (!type)
1971 return;
1972 targets = possible_polymorphic_call_targets (otr_type, otr_token,
1973 ctx,
1974 &final, NULL, &nonconstruction);
1975 fprintf (f, " Targets of polymorphic call of type %i:", type->id);
1976 print_generic_expr (f, type->type, TDF_SLIM);
1977 fprintf (f, " token %i\n", (int)otr_token);
1978 if (ctx.outer_type || ctx.offset)
1979 {
1980 fprintf (f, " Contained in type:");
1981 print_generic_expr (f, ctx.outer_type, TDF_SLIM);
1982 fprintf (f, " at offset "HOST_WIDE_INT_PRINT_DEC"\n",
1983 ctx.offset);
1984 }
1985
1986 fprintf (f, " %s%s%s\n ",
1987 final ? "This is a complete list." :
1988 "This is partial list; extra targets may be defined in other units.",
1989 ctx.maybe_in_construction ? " (base types included)" : "",
1990 ctx.maybe_derived_type ? " (derived types included)" : "");
1991 for (i = 0; i < targets.length (); i++)
1992 {
1993 char *name = NULL;
1994 if (i == (unsigned)nonconstruction)
1995 fprintf (f, "\n If the type is in construction,"
1996 " then additional tarets are:\n"
1997 " ");
1998 if (in_lto_p)
1999 name = cplus_demangle_v3 (targets[i]->asm_name (), 0);
2000 fprintf (f, " %s/%i", name ? name : targets[i]->name (), targets[i]->order);
2001 if (in_lto_p)
2002 free (name);
2003 if (!targets[i]->definition)
2004 fprintf (f, " (no definition%s)",
2005 DECL_DECLARED_INLINE_P (targets[i]->decl)
2006 ? " inline" : "");
2007 }
2008 fprintf (f, "\n\n");
2009 }
2010
2011
2012 /* Return true if N can be possibly target of a polymorphic call of
2013 OTR_TYPE/OTR_TOKEN. */
2014
2015 bool
2016 possible_polymorphic_call_target_p (tree otr_type,
2017 HOST_WIDE_INT otr_token,
2018 const ipa_polymorphic_call_context &ctx,
2019 struct cgraph_node *n)
2020 {
2021 vec <cgraph_node *> targets;
2022 unsigned int i;
2023 enum built_in_function fcode;
2024 bool final;
2025
2026 if (TREE_CODE (TREE_TYPE (n->decl)) == FUNCTION_TYPE
2027 && ((fcode = DECL_FUNCTION_CODE (n->decl))
2028 == BUILT_IN_UNREACHABLE
2029 || fcode == BUILT_IN_TRAP))
2030 return true;
2031
2032 if (!odr_hash)
2033 return true;
2034 targets = possible_polymorphic_call_targets (otr_type, otr_token, ctx, &final);
2035 for (i = 0; i < targets.length (); i++)
2036 if (symtab_semantically_equivalent_p (n, targets[i]))
2037 return true;
2038
2039 /* At a moment we allow middle end to dig out new external declarations
2040 as a targets of polymorphic calls. */
2041 if (!final && !n->definition)
2042 return true;
2043 return false;
2044 }
2045
2046
2047 /* After callgraph construction new external nodes may appear.
2048 Add them into the graph. */
2049
2050 void
2051 update_type_inheritance_graph (void)
2052 {
2053 struct cgraph_node *n;
2054
2055 if (!odr_hash)
2056 return;
2057 free_polymorphic_call_targets_hash ();
2058 timevar_push (TV_IPA_INHERITANCE);
2059 /* We reconstruct the graph starting from types of all methods seen in the
2060 the unit. */
2061 FOR_EACH_FUNCTION (n)
2062 if (DECL_VIRTUAL_P (n->decl)
2063 && !n->definition
2064 && symtab_real_symbol_p (n))
2065 get_odr_type (method_class_type (TYPE_MAIN_VARIANT (TREE_TYPE (n->decl))),
2066 true);
2067 timevar_pop (TV_IPA_INHERITANCE);
2068 }
2069
2070
2071 /* Return true if N looks like likely target of a polymorphic call.
2072 Rule out cxa_pure_virtual, noreturns, function declared cold and
2073 other obvious cases. */
2074
2075 bool
2076 likely_target_p (struct cgraph_node *n)
2077 {
2078 int flags;
2079 /* cxa_pure_virtual and similar things are not likely. */
2080 if (TREE_CODE (TREE_TYPE (n->decl)) != METHOD_TYPE)
2081 return false;
2082 flags = flags_from_decl_or_type (n->decl);
2083 if (flags & ECF_NORETURN)
2084 return false;
2085 if (lookup_attribute ("cold",
2086 DECL_ATTRIBUTES (n->decl)))
2087 return false;
2088 if (n->frequency < NODE_FREQUENCY_NORMAL)
2089 return false;
2090 /* If there are no virtual tables refering the target alive,
2091 the only way the target can be called is an instance comming from other
2092 compilation unit; speculative devirtualization is build around an
2093 assumption that won't happen. */
2094 if (!referenced_from_vtable_p (n))
2095 return false;
2096 return true;
2097 }
2098
2099 /* The ipa-devirt pass.
2100 When polymorphic call has only one likely target in the unit,
2101 turn it into speculative call. */
2102
2103 static unsigned int
2104 ipa_devirt (void)
2105 {
2106 struct cgraph_node *n;
2107 struct pointer_set_t *bad_call_targets = pointer_set_create ();
2108 struct cgraph_edge *e;
2109
2110 int npolymorphic = 0, nspeculated = 0, nconverted = 0, ncold = 0;
2111 int nmultiple = 0, noverwritable = 0, ndevirtualized = 0, nnotdefined = 0;
2112 int nwrong = 0, nok = 0, nexternal = 0, nartificial = 0;
2113
2114 FOR_EACH_DEFINED_FUNCTION (n)
2115 {
2116 bool update = false;
2117 if (dump_file && n->indirect_calls)
2118 fprintf (dump_file, "\n\nProcesing function %s/%i\n",
2119 n->name (), n->order);
2120 for (e = n->indirect_calls; e; e = e->next_callee)
2121 if (e->indirect_info->polymorphic)
2122 {
2123 struct cgraph_node *likely_target = NULL;
2124 void *cache_token;
2125 bool final;
2126 int nonconstruction_targets;
2127 vec <cgraph_node *>targets
2128 = possible_polymorphic_call_targets
2129 (e, &final, &cache_token, &nonconstruction_targets);
2130 unsigned int i;
2131
2132 if (dump_file)
2133 dump_possible_polymorphic_call_targets
2134 (dump_file, e);
2135
2136 npolymorphic++;
2137
2138 if (!cgraph_maybe_hot_edge_p (e))
2139 {
2140 if (dump_file)
2141 fprintf (dump_file, "Call is cold\n\n");
2142 ncold++;
2143 continue;
2144 }
2145 if (e->speculative)
2146 {
2147 if (dump_file)
2148 fprintf (dump_file, "Call is aready speculated\n\n");
2149 nspeculated++;
2150
2151 /* When dumping see if we agree with speculation. */
2152 if (!dump_file)
2153 continue;
2154 }
2155 if (pointer_set_contains (bad_call_targets,
2156 cache_token))
2157 {
2158 if (dump_file)
2159 fprintf (dump_file, "Target list is known to be useless\n\n");
2160 nmultiple++;
2161 continue;
2162 }
2163 for (i = 0; i < targets.length (); i++)
2164 if (likely_target_p (targets[i]))
2165 {
2166 if (likely_target)
2167 {
2168 if (i < (unsigned) nonconstruction_targets)
2169 {
2170 likely_target = NULL;
2171 if (dump_file)
2172 fprintf (dump_file, "More than one likely target\n\n");
2173 nmultiple++;
2174 }
2175 break;
2176 }
2177 likely_target = targets[i];
2178 }
2179 if (!likely_target)
2180 {
2181 pointer_set_insert (bad_call_targets, cache_token);
2182 continue;
2183 }
2184 /* This is reached only when dumping; check if we agree or disagree
2185 with the speculation. */
2186 if (e->speculative)
2187 {
2188 struct cgraph_edge *e2;
2189 struct ipa_ref *ref;
2190 cgraph_speculative_call_info (e, e2, e, ref);
2191 if (cgraph_function_or_thunk_node (e2->callee, NULL)
2192 == cgraph_function_or_thunk_node (likely_target, NULL))
2193 {
2194 fprintf (dump_file, "We agree with speculation\n\n");
2195 nok++;
2196 }
2197 else
2198 {
2199 fprintf (dump_file, "We disagree with speculation\n\n");
2200 nwrong++;
2201 }
2202 continue;
2203 }
2204 if (!likely_target->definition)
2205 {
2206 if (dump_file)
2207 fprintf (dump_file, "Target is not an definition\n\n");
2208 nnotdefined++;
2209 continue;
2210 }
2211 /* Do not introduce new references to external symbols. While we
2212 can handle these just well, it is common for programs to
2213 incorrectly with headers defining methods they are linked
2214 with. */
2215 if (DECL_EXTERNAL (likely_target->decl))
2216 {
2217 if (dump_file)
2218 fprintf (dump_file, "Target is external\n\n");
2219 nexternal++;
2220 continue;
2221 }
2222 /* Don't use an implicitly-declared destructor (c++/58678). */
2223 struct cgraph_node *non_thunk_target
2224 = cgraph_function_node (likely_target);
2225 if (DECL_ARTIFICIAL (non_thunk_target->decl)
2226 && DECL_COMDAT (non_thunk_target->decl))
2227 {
2228 if (dump_file)
2229 fprintf (dump_file, "Target is artificial\n\n");
2230 nartificial++;
2231 continue;
2232 }
2233 if (cgraph_function_body_availability (likely_target)
2234 <= AVAIL_OVERWRITABLE
2235 && symtab_can_be_discarded (likely_target))
2236 {
2237 if (dump_file)
2238 fprintf (dump_file, "Target is overwritable\n\n");
2239 noverwritable++;
2240 continue;
2241 }
2242 else if (dbg_cnt (devirt))
2243 {
2244 if (dump_enabled_p ())
2245 {
2246 location_t locus = gimple_location_safe (e->call_stmt);
2247 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, locus,
2248 "speculatively devirtualizing call in %s/%i to %s/%i\n",
2249 n->name (), n->order,
2250 likely_target->name (),
2251 likely_target->order);
2252 }
2253 if (!symtab_can_be_discarded (likely_target))
2254 {
2255 cgraph_node *alias;
2256 alias = cgraph (symtab_nonoverwritable_alias
2257 (likely_target));
2258 if (alias)
2259 likely_target = alias;
2260 }
2261 nconverted++;
2262 update = true;
2263 cgraph_turn_edge_to_speculative
2264 (e, likely_target, e->count * 8 / 10, e->frequency * 8 / 10);
2265 }
2266 }
2267 if (update)
2268 inline_update_overall_summary (n);
2269 }
2270 pointer_set_destroy (bad_call_targets);
2271
2272 if (dump_file)
2273 fprintf (dump_file,
2274 "%i polymorphic calls, %i devirtualized,"
2275 " %i speculatively devirtualized, %i cold\n"
2276 "%i have multiple targets, %i overwritable,"
2277 " %i already speculated (%i agree, %i disagree),"
2278 " %i external, %i not defined, %i artificial\n",
2279 npolymorphic, ndevirtualized, nconverted, ncold,
2280 nmultiple, noverwritable, nspeculated, nok, nwrong,
2281 nexternal, nnotdefined, nartificial);
2282 return ndevirtualized ? TODO_remove_functions : 0;
2283 }
2284
2285 namespace {
2286
2287 const pass_data pass_data_ipa_devirt =
2288 {
2289 IPA_PASS, /* type */
2290 "devirt", /* name */
2291 OPTGROUP_NONE, /* optinfo_flags */
2292 true, /* has_execute */
2293 TV_IPA_DEVIRT, /* tv_id */
2294 0, /* properties_required */
2295 0, /* properties_provided */
2296 0, /* properties_destroyed */
2297 0, /* todo_flags_start */
2298 ( TODO_dump_symtab ), /* todo_flags_finish */
2299 };
2300
2301 class pass_ipa_devirt : public ipa_opt_pass_d
2302 {
2303 public:
2304 pass_ipa_devirt (gcc::context *ctxt)
2305 : ipa_opt_pass_d (pass_data_ipa_devirt, ctxt,
2306 NULL, /* generate_summary */
2307 NULL, /* write_summary */
2308 NULL, /* read_summary */
2309 NULL, /* write_optimization_summary */
2310 NULL, /* read_optimization_summary */
2311 NULL, /* stmt_fixup */
2312 0, /* function_transform_todo_flags_start */
2313 NULL, /* function_transform */
2314 NULL) /* variable_transform */
2315 {}
2316
2317 /* opt_pass methods: */
2318 virtual bool gate (function *)
2319 {
2320 return (flag_devirtualize
2321 && flag_devirtualize_speculatively
2322 && optimize);
2323 }
2324
2325 virtual unsigned int execute (function *) { return ipa_devirt (); }
2326
2327 }; // class pass_ipa_devirt
2328
2329 } // anon namespace
2330
2331 ipa_opt_pass_d *
2332 make_pass_ipa_devirt (gcc::context *ctxt)
2333 {
2334 return new pass_ipa_devirt (ctxt);
2335 }
2336
2337 #include "gt-ipa-devirt.h"