]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cgraph.c
x86: Remove "%!" before ret
[thirdparty/gcc.git] / gcc / cgraph.c
1 /* Callgraph handling code.
2 Copyright (C) 2003-2021 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21 /* This file contains basic routines manipulating call graph
22
23 The call-graph is a data structure designed for inter-procedural
24 optimization. It represents a multi-graph where nodes are functions
25 (symbols within symbol table) and edges are call sites. */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "backend.h"
31 #include "target.h"
32 #include "rtl.h"
33 #include "tree.h"
34 #include "gimple.h"
35 #include "predict.h"
36 #include "alloc-pool.h"
37 #include "gimple-ssa.h"
38 #include "cgraph.h"
39 #include "lto-streamer.h"
40 #include "fold-const.h"
41 #include "varasm.h"
42 #include "calls.h"
43 #include "print-tree.h"
44 #include "langhooks.h"
45 #include "intl.h"
46 #include "tree-eh.h"
47 #include "gimple-iterator.h"
48 #include "tree-cfg.h"
49 #include "tree-ssa.h"
50 #include "value-prof.h"
51 #include "ipa-utils.h"
52 #include "symbol-summary.h"
53 #include "tree-vrp.h"
54 #include "ipa-prop.h"
55 #include "ipa-fnsummary.h"
56 #include "cfgloop.h"
57 #include "gimple-pretty-print.h"
58 #include "tree-dfa.h"
59 #include "profile.h"
60 #include "context.h"
61 #include "gimplify.h"
62 #include "stringpool.h"
63 #include "attribs.h"
64 #include "selftest.h"
65 #include "tree-into-ssa.h"
66 #include "ipa-inline.h"
67 #include "tree-nested.h"
68 #include "symtab-thunks.h"
69 #include "symtab-clones.h"
70
71 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
72 #include "tree-pass.h"
73
74 /* Queue of cgraph nodes scheduled to be lowered. */
75 symtab_node *x_cgraph_nodes_queue;
76 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
77
78 /* Symbol table global context. */
79 symbol_table *symtab;
80
81 /* List of hooks triggered on cgraph_edge events. */
82 struct cgraph_edge_hook_list {
83 cgraph_edge_hook hook;
84 void *data;
85 struct cgraph_edge_hook_list *next;
86 };
87
88 /* List of hooks triggered on cgraph_node events. */
89 struct cgraph_node_hook_list {
90 cgraph_node_hook hook;
91 void *data;
92 struct cgraph_node_hook_list *next;
93 };
94
95 /* List of hooks triggered on events involving two cgraph_edges. */
96 struct cgraph_2edge_hook_list {
97 cgraph_2edge_hook hook;
98 void *data;
99 struct cgraph_2edge_hook_list *next;
100 };
101
102 /* List of hooks triggered on events involving two cgraph_nodes. */
103 struct cgraph_2node_hook_list {
104 cgraph_2node_hook hook;
105 void *data;
106 struct cgraph_2node_hook_list *next;
107 };
108
109 /* Hash descriptor for cgraph_function_version_info. */
110
111 struct function_version_hasher : ggc_ptr_hash<cgraph_function_version_info>
112 {
113 static hashval_t hash (cgraph_function_version_info *);
114 static bool equal (cgraph_function_version_info *,
115 cgraph_function_version_info *);
116 };
117
118 /* Map a cgraph_node to cgraph_function_version_info using this htab.
119 The cgraph_function_version_info has a THIS_NODE field that is the
120 corresponding cgraph_node.. */
121
122 static GTY(()) hash_table<function_version_hasher> *cgraph_fnver_htab = NULL;
123
124 /* Hash function for cgraph_fnver_htab. */
125 hashval_t
126 function_version_hasher::hash (cgraph_function_version_info *ptr)
127 {
128 int uid = ptr->this_node->get_uid ();
129 return (hashval_t)(uid);
130 }
131
132 /* eq function for cgraph_fnver_htab. */
133 bool
134 function_version_hasher::equal (cgraph_function_version_info *n1,
135 cgraph_function_version_info *n2)
136 {
137 return n1->this_node->get_uid () == n2->this_node->get_uid ();
138 }
139
140 /* Mark as GC root all allocated nodes. */
141 static GTY(()) struct cgraph_function_version_info *
142 version_info_node = NULL;
143
144 /* Return true if NODE's address can be compared. */
145
146 bool
147 symtab_node::address_can_be_compared_p ()
148 {
149 /* Address of virtual tables and functions is never compared. */
150 if (DECL_VIRTUAL_P (decl))
151 return false;
152 /* Address of C++ cdtors is never compared. */
153 if (is_a <cgraph_node *> (this)
154 && (DECL_CXX_CONSTRUCTOR_P (decl)
155 || DECL_CXX_DESTRUCTOR_P (decl)))
156 return false;
157 /* Constant pool symbols addresses are never compared.
158 flag_merge_constants permits us to assume the same on readonly vars. */
159 if (is_a <varpool_node *> (this)
160 && (DECL_IN_CONSTANT_POOL (decl)
161 || (flag_merge_constants >= 2
162 && TREE_READONLY (decl) && !TREE_THIS_VOLATILE (decl))))
163 return false;
164 return true;
165 }
166
167 /* Get the cgraph_function_version_info node corresponding to node. */
168 cgraph_function_version_info *
169 cgraph_node::function_version (void)
170 {
171 cgraph_function_version_info key;
172 key.this_node = this;
173
174 if (cgraph_fnver_htab == NULL)
175 return NULL;
176
177 return cgraph_fnver_htab->find (&key);
178 }
179
180 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
181 corresponding to cgraph_node NODE. */
182 cgraph_function_version_info *
183 cgraph_node::insert_new_function_version (void)
184 {
185 version_info_node = NULL;
186 version_info_node = ggc_cleared_alloc<cgraph_function_version_info> ();
187 version_info_node->this_node = this;
188
189 if (cgraph_fnver_htab == NULL)
190 cgraph_fnver_htab = hash_table<function_version_hasher>::create_ggc (2);
191
192 *cgraph_fnver_htab->find_slot (version_info_node, INSERT)
193 = version_info_node;
194 return version_info_node;
195 }
196
197 /* Remove the cgraph_function_version_info node given by DECL_V. */
198 static void
199 delete_function_version (cgraph_function_version_info *decl_v)
200 {
201 if (decl_v == NULL)
202 return;
203
204 if (version_info_node == decl_v)
205 version_info_node = NULL;
206
207 if (decl_v->prev != NULL)
208 decl_v->prev->next = decl_v->next;
209
210 if (decl_v->next != NULL)
211 decl_v->next->prev = decl_v->prev;
212
213 if (cgraph_fnver_htab != NULL)
214 cgraph_fnver_htab->remove_elt (decl_v);
215 }
216
217 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
218 DECL is a duplicate declaration. */
219 void
220 cgraph_node::delete_function_version_by_decl (tree decl)
221 {
222 cgraph_node *decl_node = cgraph_node::get (decl);
223
224 if (decl_node == NULL)
225 return;
226
227 delete_function_version (decl_node->function_version ());
228
229 decl_node->remove ();
230 }
231
232 /* Record that DECL1 and DECL2 are semantically identical function
233 versions. */
234 void
235 cgraph_node::record_function_versions (tree decl1, tree decl2)
236 {
237 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
238 cgraph_node *decl2_node = cgraph_node::get_create (decl2);
239 cgraph_function_version_info *decl1_v = NULL;
240 cgraph_function_version_info *decl2_v = NULL;
241 cgraph_function_version_info *before;
242 cgraph_function_version_info *after;
243
244 gcc_assert (decl1_node != NULL && decl2_node != NULL);
245 decl1_v = decl1_node->function_version ();
246 decl2_v = decl2_node->function_version ();
247
248 if (decl1_v != NULL && decl2_v != NULL)
249 return;
250
251 if (decl1_v == NULL)
252 decl1_v = decl1_node->insert_new_function_version ();
253
254 if (decl2_v == NULL)
255 decl2_v = decl2_node->insert_new_function_version ();
256
257 /* Chain decl2_v and decl1_v. All semantically identical versions
258 will be chained together. */
259
260 before = decl1_v;
261 after = decl2_v;
262
263 while (before->next != NULL)
264 before = before->next;
265
266 while (after->prev != NULL)
267 after= after->prev;
268
269 before->next = after;
270 after->prev = before;
271 }
272
273 /* Initialize callgraph dump file. */
274
275 void
276 symbol_table::initialize (void)
277 {
278 if (!dump_file)
279 dump_file = dump_begin (TDI_cgraph, NULL);
280
281 if (!ipa_clones_dump_file)
282 ipa_clones_dump_file = dump_begin (TDI_clones, NULL);
283 }
284
285 /* Allocate new callgraph node and insert it into basic data structures. */
286
287 cgraph_node *
288 symbol_table::create_empty (void)
289 {
290 cgraph_count++;
291 return new (ggc_alloc<cgraph_node> ()) cgraph_node (cgraph_max_uid++);
292 }
293
294 /* Register HOOK to be called with DATA on each removed edge. */
295 cgraph_edge_hook_list *
296 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook, void *data)
297 {
298 cgraph_edge_hook_list *entry;
299 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
300
301 entry = (cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
302 entry->hook = hook;
303 entry->data = data;
304 entry->next = NULL;
305 while (*ptr)
306 ptr = &(*ptr)->next;
307 *ptr = entry;
308 return entry;
309 }
310
311 /* Remove ENTRY from the list of hooks called on removing edges. */
312 void
313 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list *entry)
314 {
315 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
316
317 while (*ptr != entry)
318 ptr = &(*ptr)->next;
319 *ptr = entry->next;
320 free (entry);
321 }
322
323 /* Call all edge removal hooks. */
324 void
325 symbol_table::call_edge_removal_hooks (cgraph_edge *e)
326 {
327 cgraph_edge_hook_list *entry = m_first_edge_removal_hook;
328 while (entry)
329 {
330 entry->hook (e, entry->data);
331 entry = entry->next;
332 }
333 }
334
335 /* Register HOOK to be called with DATA on each removed node. */
336 cgraph_node_hook_list *
337 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook, void *data)
338 {
339 cgraph_node_hook_list *entry;
340 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
341
342 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
343 entry->hook = hook;
344 entry->data = data;
345 entry->next = NULL;
346 while (*ptr)
347 ptr = &(*ptr)->next;
348 *ptr = entry;
349 return entry;
350 }
351
352 /* Remove ENTRY from the list of hooks called on removing nodes. */
353 void
354 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list *entry)
355 {
356 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
357
358 while (*ptr != entry)
359 ptr = &(*ptr)->next;
360 *ptr = entry->next;
361 free (entry);
362 }
363
364 /* Call all node removal hooks. */
365 void
366 symbol_table::call_cgraph_removal_hooks (cgraph_node *node)
367 {
368 cgraph_node_hook_list *entry = m_first_cgraph_removal_hook;
369 while (entry)
370 {
371 entry->hook (node, entry->data);
372 entry = entry->next;
373 }
374 }
375
376 /* Call all node removal hooks. */
377 void
378 symbol_table::call_cgraph_insertion_hooks (cgraph_node *node)
379 {
380 cgraph_node_hook_list *entry = m_first_cgraph_insertion_hook;
381 while (entry)
382 {
383 entry->hook (node, entry->data);
384 entry = entry->next;
385 }
386 }
387
388
389 /* Register HOOK to be called with DATA on each inserted node. */
390 cgraph_node_hook_list *
391 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook, void *data)
392 {
393 cgraph_node_hook_list *entry;
394 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
395
396 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
397 entry->hook = hook;
398 entry->data = data;
399 entry->next = NULL;
400 while (*ptr)
401 ptr = &(*ptr)->next;
402 *ptr = entry;
403 return entry;
404 }
405
406 /* Remove ENTRY from the list of hooks called on inserted nodes. */
407 void
408 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list *entry)
409 {
410 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
411
412 while (*ptr != entry)
413 ptr = &(*ptr)->next;
414 *ptr = entry->next;
415 free (entry);
416 }
417
418 /* Register HOOK to be called with DATA on each duplicated edge. */
419 cgraph_2edge_hook_list *
420 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
421 {
422 cgraph_2edge_hook_list *entry;
423 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
424
425 entry = (cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
426 entry->hook = hook;
427 entry->data = data;
428 entry->next = NULL;
429 while (*ptr)
430 ptr = &(*ptr)->next;
431 *ptr = entry;
432 return entry;
433 }
434
435 /* Remove ENTRY from the list of hooks called on duplicating edges. */
436 void
437 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list *entry)
438 {
439 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
440
441 while (*ptr != entry)
442 ptr = &(*ptr)->next;
443 *ptr = entry->next;
444 free (entry);
445 }
446
447 /* Call all edge duplication hooks. */
448 void
449 symbol_table::call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)
450 {
451 cgraph_2edge_hook_list *entry = m_first_edge_duplicated_hook;
452 while (entry)
453 {
454 entry->hook (cs1, cs2, entry->data);
455 entry = entry->next;
456 }
457 }
458
459 /* Register HOOK to be called with DATA on each duplicated node. */
460 cgraph_2node_hook_list *
461 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook, void *data)
462 {
463 cgraph_2node_hook_list *entry;
464 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
465
466 entry = (cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
467 entry->hook = hook;
468 entry->data = data;
469 entry->next = NULL;
470 while (*ptr)
471 ptr = &(*ptr)->next;
472 *ptr = entry;
473 return entry;
474 }
475
476 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
477 void
478 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry)
479 {
480 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
481
482 while (*ptr != entry)
483 ptr = &(*ptr)->next;
484 *ptr = entry->next;
485 free (entry);
486 }
487
488 /* Call all node duplication hooks. */
489 void
490 symbol_table::call_cgraph_duplication_hooks (cgraph_node *node,
491 cgraph_node *node2)
492 {
493 cgraph_2node_hook_list *entry = m_first_cgraph_duplicated_hook;
494 while (entry)
495 {
496 entry->hook (node, node2, entry->data);
497 entry = entry->next;
498 }
499 }
500
501 /* Return cgraph node assigned to DECL. Create new one when needed. */
502
503 cgraph_node *
504 cgraph_node::create (tree decl)
505 {
506 cgraph_node *node = symtab->create_empty ();
507 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
508
509 node->decl = decl;
510
511 if ((flag_openacc || flag_openmp)
512 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl)))
513 {
514 node->offloadable = 1;
515 if (ENABLE_OFFLOADING)
516 g->have_offload = true;
517 }
518
519 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
520 node->ifunc_resolver = true;
521
522 node->register_symbol ();
523 maybe_record_nested_function (node);
524
525 return node;
526 }
527
528 /* Try to find a call graph node for declaration DECL and if it does not exist
529 or if it corresponds to an inline clone, create a new one. */
530
531 cgraph_node *
532 cgraph_node::get_create (tree decl)
533 {
534 cgraph_node *first_clone = cgraph_node::get (decl);
535
536 if (first_clone && !first_clone->inlined_to)
537 return first_clone;
538
539 cgraph_node *node = cgraph_node::create (decl);
540 if (first_clone)
541 {
542 first_clone->clone_of = node;
543 node->clones = first_clone;
544 node->order = first_clone->order;
545 symtab->symtab_prevail_in_asm_name_hash (node);
546 node->decl->decl_with_vis.symtab_node = node;
547 if (dump_file)
548 fprintf (dump_file, "Introduced new external node "
549 "(%s) and turned into root of the clone tree.\n",
550 node->dump_name ());
551 }
552 else if (dump_file)
553 fprintf (dump_file, "Introduced new external node "
554 "(%s).\n", node->dump_name ());
555 return node;
556 }
557
558 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
559 the function body is associated with
560 (not necessarily cgraph_node (DECL)). */
561
562 cgraph_node *
563 cgraph_node::create_alias (tree alias, tree target)
564 {
565 cgraph_node *alias_node;
566
567 gcc_assert (TREE_CODE (target) == FUNCTION_DECL
568 || TREE_CODE (target) == IDENTIFIER_NODE);
569 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
570 alias_node = cgraph_node::get_create (alias);
571 gcc_assert (!alias_node->definition);
572 alias_node->alias_target = target;
573 alias_node->definition = true;
574 alias_node->alias = true;
575 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias)) != NULL)
576 alias_node->transparent_alias = alias_node->weakref = true;
577 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (alias)))
578 alias_node->ifunc_resolver = true;
579 return alias_node;
580 }
581
582 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
583 and NULL otherwise.
584 Same body aliases are output whenever the body of DECL is output,
585 and cgraph_node::get (ALIAS) transparently returns
586 cgraph_node::get (DECL). */
587
588 cgraph_node *
589 cgraph_node::create_same_body_alias (tree alias, tree decl)
590 {
591 cgraph_node *n;
592
593 /* If aliases aren't supported by the assembler, fail. */
594 if (!TARGET_SUPPORTS_ALIASES)
595 return NULL;
596
597 /* Langhooks can create same body aliases of symbols not defined.
598 Those are useless. Drop them on the floor. */
599 if (symtab->global_info_ready)
600 return NULL;
601
602 n = cgraph_node::create_alias (alias, decl);
603 n->cpp_implicit_alias = true;
604 if (symtab->cpp_implicit_aliases_done)
605 n->resolve_alias (cgraph_node::get (decl));
606 return n;
607 }
608
609 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
610 aliases DECL with an adjustments made into the first parameter.
611 See comments in struct cgraph_thunk_info for detail on the parameters. */
612
613 cgraph_node *
614 cgraph_node::create_thunk (tree alias, tree, bool this_adjusting,
615 HOST_WIDE_INT fixed_offset,
616 HOST_WIDE_INT virtual_value,
617 HOST_WIDE_INT indirect_offset,
618 tree virtual_offset,
619 tree real_alias)
620 {
621 cgraph_node *node;
622
623 node = cgraph_node::get (alias);
624 if (node)
625 node->reset ();
626 else
627 node = cgraph_node::create (alias);
628
629 /* Make sure that if VIRTUAL_OFFSET is in sync with VIRTUAL_VALUE. */
630 gcc_checking_assert (virtual_offset
631 ? virtual_value == wi::to_wide (virtual_offset)
632 : virtual_value == 0);
633
634 node->thunk = true;
635 node->definition = true;
636
637 thunk_info *i;
638 thunk_info local_info;
639 if (symtab->state < CONSTRUCTION)
640 i = &local_info;
641 else
642 i = thunk_info::get_create (node);
643 i->fixed_offset = fixed_offset;
644 i->virtual_value = virtual_value;
645 i->indirect_offset = indirect_offset;
646 i->alias = real_alias;
647 i->this_adjusting = this_adjusting;
648 i->virtual_offset_p = virtual_offset != NULL;
649 if (symtab->state < CONSTRUCTION)
650 i->register_early (node);
651
652 return node;
653 }
654
655 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
656 Return NULL if there's no such node. */
657
658 cgraph_node *
659 cgraph_node::get_for_asmname (tree asmname)
660 {
661 /* We do not want to look at inline clones. */
662 for (symtab_node *node = symtab_node::get_for_asmname (asmname);
663 node;
664 node = node->next_sharing_asm_name)
665 {
666 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
667 if (cn && !cn->inlined_to)
668 return cn;
669 }
670 return NULL;
671 }
672
673 /* Returns a hash value for X (which really is a cgraph_edge). */
674
675 hashval_t
676 cgraph_edge_hasher::hash (cgraph_edge *e)
677 {
678 /* This is a really poor hash function, but it is what htab_hash_pointer
679 uses. */
680 return (hashval_t) ((intptr_t)e->call_stmt >> 3);
681 }
682
683 /* Returns a hash value for X (which really is a cgraph_edge). */
684
685 hashval_t
686 cgraph_edge_hasher::hash (gimple *call_stmt)
687 {
688 /* This is a really poor hash function, but it is what htab_hash_pointer
689 uses. */
690 return (hashval_t) ((intptr_t)call_stmt >> 3);
691 }
692
693 /* Return nonzero if the call_stmt of cgraph_edge X is stmt *Y. */
694
695 inline bool
696 cgraph_edge_hasher::equal (cgraph_edge *x, gimple *y)
697 {
698 return x->call_stmt == y;
699 }
700
701 /* Add call graph edge E to call site hash of its caller. */
702
703 static inline void
704 cgraph_update_edge_in_call_site_hash (cgraph_edge *e)
705 {
706 gimple *call = e->call_stmt;
707 *e->caller->call_site_hash->find_slot_with_hash
708 (call, cgraph_edge_hasher::hash (call), INSERT) = e;
709 }
710
711 /* Add call graph edge E to call site hash of its caller. */
712
713 static inline void
714 cgraph_add_edge_to_call_site_hash (cgraph_edge *e)
715 {
716 /* There are two speculative edges for every statement (one direct,
717 one indirect); always hash the direct one. */
718 if (e->speculative && e->indirect_unknown_callee)
719 return;
720 cgraph_edge **slot = e->caller->call_site_hash->find_slot_with_hash
721 (e->call_stmt, cgraph_edge_hasher::hash (e->call_stmt), INSERT);
722 if (*slot)
723 {
724 gcc_assert (((cgraph_edge *)*slot)->speculative);
725 if (e->callee && (!e->prev_callee
726 || !e->prev_callee->speculative
727 || e->prev_callee->call_stmt != e->call_stmt))
728 *slot = e;
729 return;
730 }
731 gcc_assert (!*slot || e->speculative);
732 *slot = e;
733 }
734
735 /* Return the callgraph edge representing the GIMPLE_CALL statement
736 CALL_STMT. */
737
738 cgraph_edge *
739 cgraph_node::get_edge (gimple *call_stmt)
740 {
741 cgraph_edge *e, *e2;
742 int n = 0;
743
744 if (call_site_hash)
745 return call_site_hash->find_with_hash
746 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
747
748 /* This loop may turn out to be performance problem. In such case adding
749 hashtables into call nodes with very many edges is probably best
750 solution. It is not good idea to add pointer into CALL_EXPR itself
751 because we want to make possible having multiple cgraph nodes representing
752 different clones of the same body before the body is actually cloned. */
753 for (e = callees; e; e = e->next_callee)
754 {
755 if (e->call_stmt == call_stmt)
756 break;
757 n++;
758 }
759
760 if (!e)
761 for (e = indirect_calls; e; e = e->next_callee)
762 {
763 if (e->call_stmt == call_stmt)
764 break;
765 n++;
766 }
767
768 if (n > 100)
769 {
770 call_site_hash = hash_table<cgraph_edge_hasher>::create_ggc (120);
771 for (e2 = callees; e2; e2 = e2->next_callee)
772 cgraph_add_edge_to_call_site_hash (e2);
773 for (e2 = indirect_calls; e2; e2 = e2->next_callee)
774 cgraph_add_edge_to_call_site_hash (e2);
775 }
776
777 return e;
778 }
779
780
781 /* Change field call_stmt of edge E to NEW_STMT. If UPDATE_SPECULATIVE and E
782 is any component of speculative edge, then update all components.
783 Speculations can be resolved in the process and EDGE can be removed and
784 deallocated. Return the edge that now represents the call. */
785
786 cgraph_edge *
787 cgraph_edge::set_call_stmt (cgraph_edge *e, gcall *new_stmt,
788 bool update_speculative)
789 {
790 tree decl;
791
792 cgraph_node *new_direct_callee = NULL;
793 if ((e->indirect_unknown_callee || e->speculative)
794 && (decl = gimple_call_fndecl (new_stmt)))
795 {
796 /* Constant propagation and especially inlining can turn an indirect call
797 into a direct one. */
798 new_direct_callee = cgraph_node::get (decl);
799 gcc_checking_assert (new_direct_callee);
800 }
801
802 /* Speculative edges has three component, update all of them
803 when asked to. */
804 if (update_speculative && e->speculative
805 /* If we are about to resolve the speculation by calling make_direct
806 below, do not bother going over all the speculative edges now. */
807 && !new_direct_callee)
808 {
809 cgraph_edge *direct, *indirect, *next;
810 ipa_ref *ref;
811 bool e_indirect = e->indirect_unknown_callee;
812 int n = 0;
813
814 direct = e->first_speculative_call_target ();
815 indirect = e->speculative_call_indirect_edge ();
816
817 gcall *old_stmt = direct->call_stmt;
818 for (cgraph_edge *d = direct; d; d = next)
819 {
820 next = d->next_speculative_call_target ();
821 cgraph_edge *d2 = set_call_stmt (d, new_stmt, false);
822 gcc_assert (d2 == d);
823 n++;
824 }
825 gcc_checking_assert (indirect->num_speculative_call_targets_p () == n);
826 for (unsigned int i = 0; e->caller->iterate_reference (i, ref); i++)
827 if (ref->speculative && ref->stmt == old_stmt)
828 {
829 ref->stmt = new_stmt;
830 n--;
831 }
832
833 indirect = set_call_stmt (indirect, new_stmt, false);
834 return e_indirect ? indirect : direct;
835 }
836
837 if (new_direct_callee)
838 e = make_direct (e, new_direct_callee);
839
840 /* Only direct speculative edges go to call_site_hash. */
841 if (e->caller->call_site_hash
842 && (!e->speculative || !e->indirect_unknown_callee)
843 /* It is possible that edge was previously speculative. In this case
844 we have different value in call stmt hash which needs preserving. */
845 && e->caller->get_edge (e->call_stmt) == e)
846 e->caller->call_site_hash->remove_elt_with_hash
847 (e->call_stmt, cgraph_edge_hasher::hash (e->call_stmt));
848
849 e->call_stmt = new_stmt;
850
851 function *fun = DECL_STRUCT_FUNCTION (e->caller->decl);
852 e->can_throw_external = stmt_can_throw_external (fun, new_stmt);
853 /* Update call stite hash. For speculative calls we only record the first
854 direct edge. */
855 if (e->caller->call_site_hash
856 && (!e->speculative
857 || (e->callee
858 && (!e->prev_callee || !e->prev_callee->speculative
859 || e->prev_callee->call_stmt != e->call_stmt))
860 || (e->speculative && !e->callee)))
861 cgraph_add_edge_to_call_site_hash (e);
862 return e;
863 }
864
865 /* Allocate a cgraph_edge structure and fill it with data according to the
866 parameters of which only CALLEE can be NULL (when creating an indirect call
867 edge). CLONING_P should be set if properties that are copied from an
868 original edge should not be calculated. */
869
870 cgraph_edge *
871 symbol_table::create_edge (cgraph_node *caller, cgraph_node *callee,
872 gcall *call_stmt, profile_count count,
873 bool indir_unknown_callee, bool cloning_p)
874 {
875 cgraph_edge *edge;
876
877 /* LTO does not actually have access to the call_stmt since these
878 have not been loaded yet. */
879 if (call_stmt)
880 {
881 /* This is a rather expensive check possibly triggering
882 construction of call stmt hashtable. */
883 cgraph_edge *e;
884 gcc_checking_assert (!(e = caller->get_edge (call_stmt))
885 || e->speculative);
886
887 gcc_assert (is_gimple_call (call_stmt));
888 }
889
890 edge = ggc_alloc<cgraph_edge> ();
891 edge->m_summary_id = -1;
892 edges_count++;
893
894 gcc_assert (++edges_max_uid != 0);
895 edge->m_uid = edges_max_uid;
896 edge->aux = NULL;
897 edge->caller = caller;
898 edge->callee = callee;
899 edge->prev_caller = NULL;
900 edge->next_caller = NULL;
901 edge->prev_callee = NULL;
902 edge->next_callee = NULL;
903 edge->lto_stmt_uid = 0;
904 edge->speculative_id = 0;
905
906 edge->count = count;
907 edge->call_stmt = call_stmt;
908 edge->indirect_info = NULL;
909 edge->indirect_inlining_edge = 0;
910 edge->speculative = false;
911 edge->indirect_unknown_callee = indir_unknown_callee;
912 if (call_stmt && caller->call_site_hash)
913 cgraph_add_edge_to_call_site_hash (edge);
914
915 if (cloning_p)
916 return edge;
917
918 edge->can_throw_external
919 = call_stmt ? stmt_can_throw_external (DECL_STRUCT_FUNCTION (caller->decl),
920 call_stmt) : false;
921 edge->inline_failed = CIF_FUNCTION_NOT_CONSIDERED;
922 edge->call_stmt_cannot_inline_p = false;
923
924 if (opt_for_fn (edge->caller->decl, flag_devirtualize)
925 && call_stmt && DECL_STRUCT_FUNCTION (caller->decl))
926 edge->in_polymorphic_cdtor
927 = decl_maybe_in_construction_p (NULL, NULL, call_stmt,
928 caller->decl);
929 else
930 edge->in_polymorphic_cdtor = caller->thunk;
931 if (callee)
932 caller->calls_declare_variant_alt |= callee->declare_variant_alt;
933
934 if (callee && symtab->state != LTO_STREAMING
935 && edge->callee->comdat_local_p ())
936 edge->caller->calls_comdat_local = true;
937
938 return edge;
939 }
940
941 /* Create edge from a given function to CALLEE in the cgraph. CLONING_P should
942 be set if properties that are copied from an original edge should not be
943 calculated. */
944
945 cgraph_edge *
946 cgraph_node::create_edge (cgraph_node *callee,
947 gcall *call_stmt, profile_count count, bool cloning_p)
948 {
949 cgraph_edge *edge = symtab->create_edge (this, callee, call_stmt, count,
950 false, cloning_p);
951
952 if (!cloning_p)
953 initialize_inline_failed (edge);
954
955 edge->next_caller = callee->callers;
956 if (callee->callers)
957 callee->callers->prev_caller = edge;
958 edge->next_callee = callees;
959 if (callees)
960 callees->prev_callee = edge;
961 callees = edge;
962 callee->callers = edge;
963
964 return edge;
965 }
966
967 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
968
969 cgraph_indirect_call_info *
970 cgraph_allocate_init_indirect_info (void)
971 {
972 cgraph_indirect_call_info *ii;
973
974 ii = ggc_cleared_alloc<cgraph_indirect_call_info> ();
975 ii->param_index = -1;
976 return ii;
977 }
978
979 /* Create an indirect edge with a yet-undetermined callee where the call
980 statement destination is a formal parameter of the caller with index
981 PARAM_INDEX. CLONING_P should be set if properties that are copied from an
982 original edge should not be calculated and indirect_info structure should
983 not be calculated. */
984
985 cgraph_edge *
986 cgraph_node::create_indirect_edge (gcall *call_stmt, int ecf_flags,
987 profile_count count,
988 bool cloning_p)
989 {
990 cgraph_edge *edge = symtab->create_edge (this, NULL, call_stmt, count, true,
991 cloning_p);
992 tree target;
993
994 if (!cloning_p)
995 initialize_inline_failed (edge);
996
997 edge->indirect_info = cgraph_allocate_init_indirect_info ();
998 edge->indirect_info->ecf_flags = ecf_flags;
999 edge->indirect_info->vptr_changed = true;
1000
1001 /* Record polymorphic call info. */
1002 if (!cloning_p
1003 && call_stmt
1004 && (target = gimple_call_fn (call_stmt))
1005 && virtual_method_call_p (target))
1006 {
1007 ipa_polymorphic_call_context context (decl, target, call_stmt);
1008
1009 /* Only record types can have virtual calls. */
1010 edge->indirect_info->polymorphic = true;
1011 edge->indirect_info->param_index = -1;
1012 edge->indirect_info->otr_token
1013 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
1014 edge->indirect_info->otr_type = obj_type_ref_class (target);
1015 gcc_assert (TREE_CODE (edge->indirect_info->otr_type) == RECORD_TYPE);
1016 edge->indirect_info->context = context;
1017 }
1018
1019 edge->next_callee = indirect_calls;
1020 if (indirect_calls)
1021 indirect_calls->prev_callee = edge;
1022 indirect_calls = edge;
1023
1024 return edge;
1025 }
1026
1027 /* Remove the edge from the list of the callees of the caller. */
1028
1029 void
1030 cgraph_edge::remove_caller (void)
1031 {
1032 if (prev_callee)
1033 prev_callee->next_callee = next_callee;
1034 if (next_callee)
1035 next_callee->prev_callee = prev_callee;
1036 if (!prev_callee)
1037 {
1038 if (indirect_unknown_callee)
1039 caller->indirect_calls = next_callee;
1040 else
1041 caller->callees = next_callee;
1042 }
1043 if (caller->call_site_hash
1044 && this == caller->get_edge (call_stmt))
1045 caller->call_site_hash->remove_elt_with_hash
1046 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
1047 }
1048
1049 /* Put the edge onto the free list. */
1050
1051 void
1052 symbol_table::free_edge (cgraph_edge *e)
1053 {
1054 edges_count--;
1055 if (e->m_summary_id != -1)
1056 edge_released_summary_ids.safe_push (e->m_summary_id);
1057
1058 if (e->indirect_info)
1059 ggc_free (e->indirect_info);
1060 ggc_free (e);
1061 }
1062
1063 /* Remove the edge in the cgraph. */
1064
1065 void
1066 cgraph_edge::remove (cgraph_edge *edge)
1067 {
1068 /* Call all edge removal hooks. */
1069 symtab->call_edge_removal_hooks (edge);
1070
1071 if (!edge->indirect_unknown_callee)
1072 /* Remove from callers list of the callee. */
1073 edge->remove_callee ();
1074
1075 /* Remove from callees list of the callers. */
1076 edge->remove_caller ();
1077
1078 /* Put the edge onto the free list. */
1079 symtab->free_edge (edge);
1080 }
1081
1082 /* Turn edge into speculative call calling N2. Update
1083 the profile so the direct call is taken COUNT times
1084 with FREQUENCY.
1085
1086 At clone materialization time, the indirect call E will
1087 be expanded as:
1088
1089 if (call_dest == N2)
1090 n2 ();
1091 else
1092 call call_dest
1093
1094 At this time the function just creates the direct call,
1095 the reference representing the if conditional and attaches
1096 them all to the original indirect call statement.
1097
1098 speculative_id is used to link direct calls with their corresponding
1099 IPA_REF_ADDR references when representing speculative calls.
1100
1101 Return direct edge created. */
1102
1103 cgraph_edge *
1104 cgraph_edge::make_speculative (cgraph_node *n2, profile_count direct_count,
1105 unsigned int speculative_id)
1106 {
1107 cgraph_node *n = caller;
1108 ipa_ref *ref = NULL;
1109 cgraph_edge *e2;
1110
1111 if (dump_file)
1112 fprintf (dump_file, "Indirect call -> speculative call %s => %s\n",
1113 n->dump_name (), n2->dump_name ());
1114 speculative = true;
1115 e2 = n->create_edge (n2, call_stmt, direct_count);
1116 initialize_inline_failed (e2);
1117 e2->speculative = true;
1118 if (TREE_NOTHROW (n2->decl))
1119 e2->can_throw_external = false;
1120 else
1121 e2->can_throw_external = can_throw_external;
1122 e2->lto_stmt_uid = lto_stmt_uid;
1123 e2->speculative_id = speculative_id;
1124 e2->in_polymorphic_cdtor = in_polymorphic_cdtor;
1125 indirect_info->num_speculative_call_targets++;
1126 count -= e2->count;
1127 symtab->call_edge_duplication_hooks (this, e2);
1128 ref = n->create_reference (n2, IPA_REF_ADDR, call_stmt);
1129 ref->lto_stmt_uid = lto_stmt_uid;
1130 ref->speculative_id = speculative_id;
1131 ref->speculative = speculative;
1132 n2->mark_address_taken ();
1133 return e2;
1134 }
1135
1136 /* Speculative call consists of an indirect edge and one or more
1137 direct edge+ref pairs.
1138
1139 Given an edge which is part of speculative call, return the first
1140 direct call edge in the speculative call sequence. */
1141
1142 cgraph_edge *
1143 cgraph_edge::first_speculative_call_target ()
1144 {
1145 cgraph_edge *e = this;
1146
1147 gcc_checking_assert (e->speculative);
1148 if (e->callee)
1149 {
1150 while (e->prev_callee && e->prev_callee->speculative
1151 && e->prev_callee->call_stmt == e->call_stmt
1152 && e->prev_callee->lto_stmt_uid == e->lto_stmt_uid)
1153 e = e->prev_callee;
1154 return e;
1155 }
1156 /* Call stmt site hash always points to the first target of the
1157 speculative call sequence. */
1158 if (e->call_stmt)
1159 return e->caller->get_edge (e->call_stmt);
1160 for (cgraph_edge *e2 = e->caller->callees; true; e2 = e2->next_callee)
1161 if (e2->speculative
1162 && e->call_stmt == e2->call_stmt
1163 && e->lto_stmt_uid == e2->lto_stmt_uid)
1164 return e2;
1165 }
1166
1167 /* We always maintain first direct edge in the call site hash, if one
1168 exists. E is going to be removed. See if it is first one and update
1169 hash accordingly. INDIRECT is the indirect edge of speculative call.
1170 We assume that INDIRECT->num_speculative_call_targets_p () is already
1171 updated for removal of E. */
1172 static void
1173 update_call_stmt_hash_for_removing_direct_edge (cgraph_edge *e,
1174 cgraph_edge *indirect)
1175 {
1176 if (e->caller->call_site_hash)
1177 {
1178 if (e->caller->get_edge (e->call_stmt) != e)
1179 ;
1180 else if (!indirect->num_speculative_call_targets_p ())
1181 cgraph_update_edge_in_call_site_hash (indirect);
1182 else
1183 {
1184 gcc_checking_assert (e->next_callee && e->next_callee->speculative
1185 && e->next_callee->call_stmt == e->call_stmt);
1186 cgraph_update_edge_in_call_site_hash (e->next_callee);
1187 }
1188 }
1189 }
1190
1191 /* Speculative call EDGE turned out to be direct call to CALLEE_DECL. Remove
1192 the speculative call sequence and return edge representing the call, the
1193 original EDGE can be removed and deallocated. Return the edge that now
1194 represents the call.
1195
1196 For "speculative" indirect call that contains multiple "speculative"
1197 targets (i.e. edge->indirect_info->num_speculative_call_targets > 1),
1198 decrease the count and only remove current direct edge.
1199
1200 If no speculative direct call left to the speculative indirect call, remove
1201 the speculative of both the indirect call and corresponding direct edge.
1202
1203 It is up to caller to iteratively resolve each "speculative" direct call and
1204 redirect the call as appropriate. */
1205
1206 cgraph_edge *
1207 cgraph_edge::resolve_speculation (cgraph_edge *edge, tree callee_decl)
1208 {
1209 cgraph_edge *e2;
1210 ipa_ref *ref;
1211
1212 gcc_assert (edge->speculative && (!callee_decl || edge->callee));
1213 if (!edge->callee)
1214 e2 = edge->first_speculative_call_target ();
1215 else
1216 e2 = edge;
1217 ref = e2->speculative_call_target_ref ();
1218 edge = edge->speculative_call_indirect_edge ();
1219 if (!callee_decl
1220 || !ref->referred->semantically_equivalent_p
1221 (symtab_node::get (callee_decl)))
1222 {
1223 if (dump_file)
1224 {
1225 if (callee_decl)
1226 {
1227 fprintf (dump_file, "Speculative indirect call %s => %s has "
1228 "turned out to have contradicting known target ",
1229 edge->caller->dump_name (),
1230 e2->callee->dump_name ());
1231 print_generic_expr (dump_file, callee_decl);
1232 fprintf (dump_file, "\n");
1233 }
1234 else
1235 {
1236 fprintf (dump_file, "Removing speculative call %s => %s\n",
1237 edge->caller->dump_name (),
1238 e2->callee->dump_name ());
1239 }
1240 }
1241 }
1242 else
1243 {
1244 cgraph_edge *tmp = edge;
1245 if (dump_file)
1246 fprintf (dump_file, "Speculative call turned into direct call.\n");
1247 edge = e2;
1248 e2 = tmp;
1249 /* FIXME: If EDGE is inlined, we should scale up the frequencies
1250 and counts in the functions inlined through it. */
1251 }
1252 edge->count += e2->count;
1253 if (edge->num_speculative_call_targets_p ())
1254 {
1255 /* The indirect edge has multiple speculative targets, don't remove
1256 speculative until all related direct edges are resolved. */
1257 edge->indirect_info->num_speculative_call_targets--;
1258 if (!edge->indirect_info->num_speculative_call_targets)
1259 edge->speculative = false;
1260 }
1261 else
1262 edge->speculative = false;
1263 e2->speculative = false;
1264 update_call_stmt_hash_for_removing_direct_edge (e2, edge);
1265 ref->remove_reference ();
1266 if (e2->indirect_unknown_callee || e2->inline_failed)
1267 remove (e2);
1268 else
1269 e2->callee->remove_symbol_and_inline_clones ();
1270 return edge;
1271 }
1272
1273 /* Return edge corresponding to speculative call to a given target.
1274 NULL if speculative call does not have one. */
1275
1276 cgraph_edge *
1277 cgraph_edge::speculative_call_for_target (cgraph_node *target)
1278 {
1279 for (cgraph_edge *direct = first_speculative_call_target ();
1280 direct;
1281 direct = direct->next_speculative_call_target ())
1282 if (direct->speculative_call_target_ref ()
1283 ->referred->semantically_equivalent_p (target))
1284 return direct;
1285 return NULL;
1286 }
1287
1288 /* Make an indirect or speculative EDGE with an unknown callee an ordinary edge
1289 leading to CALLEE. Speculations can be resolved in the process and EDGE can
1290 be removed and deallocated. Return the edge that now represents the
1291 call. */
1292
1293 cgraph_edge *
1294 cgraph_edge::make_direct (cgraph_edge *edge, cgraph_node *callee)
1295 {
1296 gcc_assert (edge->indirect_unknown_callee || edge->speculative);
1297
1298 /* If we are redirecting speculative call, make it non-speculative. */
1299 if (edge->speculative)
1300 {
1301 cgraph_edge *found = NULL;
1302 cgraph_edge *direct, *next;
1303
1304 edge = edge->speculative_call_indirect_edge ();
1305
1306 /* Look all speculative targets and remove all but one corresponding
1307 to callee (if it exists). */
1308 for (direct = edge->first_speculative_call_target ();
1309 direct;
1310 direct = next)
1311 {
1312 next = direct->next_speculative_call_target ();
1313
1314 /* Compare ref not direct->callee. Direct edge is possibly
1315 inlined or redirected. */
1316 if (!direct->speculative_call_target_ref ()
1317 ->referred->semantically_equivalent_p (callee))
1318 edge = direct->resolve_speculation (direct, NULL);
1319 else
1320 {
1321 gcc_checking_assert (!found);
1322 found = direct;
1323 }
1324 }
1325
1326 /* On successful speculation just remove the indirect edge and
1327 return the pre existing direct edge.
1328 It is important to not remove it and redirect because the direct
1329 edge may be inlined or redirected. */
1330 if (found)
1331 {
1332 cgraph_edge *e2 = resolve_speculation (found, callee->decl);
1333 gcc_checking_assert (!found->speculative && e2 == found);
1334 return found;
1335 }
1336 gcc_checking_assert (!edge->speculative);
1337 }
1338
1339 edge->indirect_unknown_callee = 0;
1340 ggc_free (edge->indirect_info);
1341 edge->indirect_info = NULL;
1342
1343 /* Get the edge out of the indirect edge list. */
1344 if (edge->prev_callee)
1345 edge->prev_callee->next_callee = edge->next_callee;
1346 if (edge->next_callee)
1347 edge->next_callee->prev_callee = edge->prev_callee;
1348 if (!edge->prev_callee)
1349 edge->caller->indirect_calls = edge->next_callee;
1350
1351 /* Put it into the normal callee list */
1352 edge->prev_callee = NULL;
1353 edge->next_callee = edge->caller->callees;
1354 if (edge->caller->callees)
1355 edge->caller->callees->prev_callee = edge;
1356 edge->caller->callees = edge;
1357
1358 /* Insert to callers list of the new callee. */
1359 edge->set_callee (callee);
1360
1361 /* We need to re-determine the inlining status of the edge. */
1362 initialize_inline_failed (edge);
1363 return edge;
1364 }
1365
1366 /* Redirect callee of the edge to N. The function does not update underlying
1367 call expression. */
1368
1369 void
1370 cgraph_edge::redirect_callee (cgraph_node *n)
1371 {
1372 bool loc = callee->comdat_local_p ();
1373 /* Remove from callers list of the current callee. */
1374 remove_callee ();
1375
1376 /* Insert to callers list of the new callee. */
1377 set_callee (n);
1378
1379 if (!inline_failed)
1380 return;
1381 if (!loc && n->comdat_local_p ())
1382 {
1383 cgraph_node *to = caller->inlined_to ? caller->inlined_to : caller;
1384 to->calls_comdat_local = true;
1385 }
1386 else if (loc && !n->comdat_local_p ())
1387 {
1388 cgraph_node *to = caller->inlined_to ? caller->inlined_to : caller;
1389 gcc_checking_assert (to->calls_comdat_local);
1390 to->calls_comdat_local = to->check_calls_comdat_local_p ();
1391 }
1392 }
1393
1394 /* If necessary, change the function declaration in the call statement
1395 associated with E so that it corresponds to the edge callee. Speculations
1396 can be resolved in the process and EDGE can be removed and deallocated.
1397
1398 The edge could be one of speculative direct call generated from speculative
1399 indirect call. In this circumstance, decrease the speculative targets
1400 count (i.e. num_speculative_call_targets) and redirect call stmt to the
1401 corresponding i-th target. If no speculative direct call left to the
1402 speculative indirect call, remove "speculative" of the indirect call and
1403 also redirect stmt to it's final direct target.
1404
1405 It is up to caller to iteratively transform each "speculative"
1406 direct call as appropriate. */
1407
1408 gimple *
1409 cgraph_edge::redirect_call_stmt_to_callee (cgraph_edge *e)
1410 {
1411 tree decl = gimple_call_fndecl (e->call_stmt);
1412 gcall *new_stmt;
1413 gimple_stmt_iterator gsi;
1414
1415 if (e->speculative)
1416 {
1417 /* If there already is an direct call (i.e. as a result of inliner's
1418 substitution), forget about speculating. */
1419 if (decl)
1420 e = make_direct (e->speculative_call_indirect_edge (),
1421 cgraph_node::get (decl));
1422 else
1423 {
1424 /* Be sure we redirect all speculative targets before poking
1425 abou tindirect edge. */
1426 gcc_checking_assert (e->callee);
1427 cgraph_edge *indirect = e->speculative_call_indirect_edge ();
1428 gcall *new_stmt;
1429 ipa_ref *ref;
1430
1431 /* Expand speculation into GIMPLE code. */
1432 if (dump_file)
1433 {
1434 fprintf (dump_file,
1435 "Expanding speculative call of %s -> %s count: ",
1436 e->caller->dump_name (),
1437 e->callee->dump_name ());
1438 e->count.dump (dump_file);
1439 fprintf (dump_file, "\n");
1440 }
1441 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
1442
1443 profile_count all = indirect->count;
1444 for (cgraph_edge *e2 = e->first_speculative_call_target ();
1445 e2;
1446 e2 = e2->next_speculative_call_target ())
1447 all = all + e2->count;
1448 profile_probability prob = e->count.probability_in (all);
1449 if (!prob.initialized_p ())
1450 prob = profile_probability::even ();
1451 ref = e->speculative_call_target_ref ();
1452 new_stmt = gimple_ic (e->call_stmt,
1453 dyn_cast<cgraph_node *> (ref->referred),
1454 prob);
1455 e->speculative = false;
1456 if (indirect->num_speculative_call_targets_p ())
1457 {
1458 /* The indirect edge has multiple speculative targets, don't
1459 remove speculative until all related direct edges are
1460 redirected. */
1461 indirect->indirect_info->num_speculative_call_targets--;
1462 if (!indirect->indirect_info->num_speculative_call_targets)
1463 indirect->speculative = false;
1464 }
1465 else
1466 indirect->speculative = false;
1467 /* Indirect edges are not both in the call site hash.
1468 get it updated. */
1469 update_call_stmt_hash_for_removing_direct_edge (e, indirect);
1470 cgraph_edge::set_call_stmt (e, new_stmt, false);
1471 e->count = gimple_bb (e->call_stmt)->count;
1472
1473 /* Once we are done with expanding the sequence, update also indirect
1474 call probability. Until then the basic block accounts for the
1475 sum of indirect edge and all non-expanded speculations. */
1476 if (!indirect->speculative)
1477 indirect->count = gimple_bb (indirect->call_stmt)->count;
1478 ref->speculative = false;
1479 ref->stmt = NULL;
1480 pop_cfun ();
1481 /* Continue redirecting E to proper target. */
1482 }
1483 }
1484
1485
1486 if (e->indirect_unknown_callee
1487 || decl == e->callee->decl)
1488 return e->call_stmt;
1489
1490 if (decl && ipa_saved_clone_sources)
1491 {
1492 tree *p = ipa_saved_clone_sources->get (e->callee);
1493 if (p && decl == *p)
1494 {
1495 gimple_call_set_fndecl (e->call_stmt, e->callee->decl);
1496 return e->call_stmt;
1497 }
1498 }
1499 if (flag_checking && decl)
1500 {
1501 if (cgraph_node *node = cgraph_node::get (decl))
1502 {
1503 clone_info *info = clone_info::get (node);
1504 gcc_assert (!info || !info->param_adjustments);
1505 }
1506 }
1507
1508 clone_info *callee_info = clone_info::get (e->callee);
1509 if (symtab->dump_file)
1510 {
1511 fprintf (symtab->dump_file, "updating call of %s -> %s: ",
1512 e->caller->dump_name (), e->callee->dump_name ());
1513 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1514 if (callee_info && callee_info->param_adjustments)
1515 callee_info->param_adjustments->dump (symtab->dump_file);
1516 }
1517
1518 if (ipa_param_adjustments *padjs
1519 = callee_info ? callee_info->param_adjustments : NULL)
1520 {
1521 /* We need to defer cleaning EH info on the new statement to
1522 fixup-cfg. We may not have dominator information at this point
1523 and thus would end up with unreachable blocks and have no way
1524 to communicate that we need to run CFG cleanup then. */
1525 int lp_nr = lookup_stmt_eh_lp (e->call_stmt);
1526 if (lp_nr != 0)
1527 remove_stmt_from_eh_lp (e->call_stmt);
1528
1529 tree old_fntype = gimple_call_fntype (e->call_stmt);
1530 new_stmt = padjs->modify_call (e, false);
1531 cgraph_node *origin = e->callee;
1532 while (origin->clone_of)
1533 origin = origin->clone_of;
1534
1535 if ((origin->former_clone_of
1536 && old_fntype == TREE_TYPE (origin->former_clone_of))
1537 || old_fntype == TREE_TYPE (origin->decl))
1538 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1539 else
1540 {
1541 tree new_fntype = padjs->build_new_function_type (old_fntype, true);
1542 gimple_call_set_fntype (new_stmt, new_fntype);
1543 }
1544
1545 if (lp_nr != 0)
1546 add_stmt_to_eh_lp (new_stmt, lp_nr);
1547 }
1548 else
1549 {
1550 if (flag_checking
1551 && !fndecl_built_in_p (e->callee->decl, BUILT_IN_UNREACHABLE))
1552 ipa_verify_edge_has_no_modifications (e);
1553 new_stmt = e->call_stmt;
1554 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1555 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1556 }
1557
1558 /* If changing the call to __cxa_pure_virtual or similar noreturn function,
1559 adjust gimple_call_fntype too. */
1560 if (gimple_call_noreturn_p (new_stmt)
1561 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (e->callee->decl)))
1562 && TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl))
1563 && (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl)))
1564 == void_type_node))
1565 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1566
1567 /* If the call becomes noreturn, remove the LHS if possible. */
1568 tree lhs = gimple_call_lhs (new_stmt);
1569 if (lhs
1570 && gimple_call_noreturn_p (new_stmt)
1571 && (VOID_TYPE_P (TREE_TYPE (gimple_call_fntype (new_stmt)))
1572 || should_remove_lhs_p (lhs)))
1573 {
1574 if (TREE_CODE (lhs) == SSA_NAME)
1575 {
1576 tree var = create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e->caller->decl),
1577 TREE_TYPE (lhs), NULL);
1578 var = get_or_create_ssa_default_def
1579 (DECL_STRUCT_FUNCTION (e->caller->decl), var);
1580 gimple *set_stmt = gimple_build_assign (lhs, var);
1581 gsi = gsi_for_stmt (new_stmt);
1582 gsi_insert_before_without_update (&gsi, set_stmt, GSI_SAME_STMT);
1583 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), set_stmt);
1584 }
1585 gimple_call_set_lhs (new_stmt, NULL_TREE);
1586 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1587 }
1588
1589 /* If new callee has no static chain, remove it. */
1590 if (gimple_call_chain (new_stmt) && !DECL_STATIC_CHAIN (e->callee->decl))
1591 {
1592 gimple_call_set_chain (new_stmt, NULL);
1593 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1594 }
1595
1596 maybe_remove_unused_call_args (DECL_STRUCT_FUNCTION (e->caller->decl),
1597 new_stmt);
1598
1599 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt, false);
1600
1601 if (symtab->dump_file)
1602 {
1603 fprintf (symtab->dump_file, " updated to:");
1604 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1605 }
1606 return new_stmt;
1607 }
1608
1609 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1610 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1611 of OLD_STMT if it was previously call statement.
1612 If NEW_STMT is NULL, the call has been dropped without any
1613 replacement. */
1614
1615 static void
1616 cgraph_update_edges_for_call_stmt_node (cgraph_node *node,
1617 gimple *old_stmt, tree old_call,
1618 gimple *new_stmt)
1619 {
1620 tree new_call = (new_stmt && is_gimple_call (new_stmt))
1621 ? gimple_call_fndecl (new_stmt) : 0;
1622
1623 /* We are seeing indirect calls, then there is nothing to update. */
1624 if (!new_call && !old_call)
1625 return;
1626 /* See if we turned indirect call into direct call or folded call to one builtin
1627 into different builtin. */
1628 if (old_call != new_call)
1629 {
1630 cgraph_edge *e = node->get_edge (old_stmt);
1631 cgraph_edge *ne = NULL;
1632 profile_count count;
1633
1634 if (e)
1635 {
1636 /* Keep calls marked as dead dead. */
1637 if (new_stmt && is_gimple_call (new_stmt) && e->callee
1638 && fndecl_built_in_p (e->callee->decl, BUILT_IN_UNREACHABLE))
1639 {
1640 cgraph_edge::set_call_stmt (node->get_edge (old_stmt),
1641 as_a <gcall *> (new_stmt));
1642 return;
1643 }
1644 /* See if the edge is already there and has the correct callee. It
1645 might be so because of indirect inlining has already updated
1646 it. We also might've cloned and redirected the edge. */
1647 if (new_call && e->callee)
1648 {
1649 cgraph_node *callee = e->callee;
1650 while (callee)
1651 {
1652 if (callee->decl == new_call
1653 || callee->former_clone_of == new_call)
1654 {
1655 cgraph_edge::set_call_stmt (e, as_a <gcall *> (new_stmt));
1656 return;
1657 }
1658 callee = callee->clone_of;
1659 }
1660 }
1661
1662 /* Otherwise remove edge and create new one; we can't simply redirect
1663 since function has changed, so inline plan and other information
1664 attached to edge is invalid. */
1665 count = e->count;
1666 if (e->indirect_unknown_callee || e->inline_failed)
1667 cgraph_edge::remove (e);
1668 else
1669 e->callee->remove_symbol_and_inline_clones ();
1670 }
1671 else if (new_call)
1672 {
1673 /* We are seeing new direct call; compute profile info based on BB. */
1674 basic_block bb = gimple_bb (new_stmt);
1675 count = bb->count;
1676 }
1677
1678 if (new_call)
1679 {
1680 ne = node->create_edge (cgraph_node::get_create (new_call),
1681 as_a <gcall *> (new_stmt), count);
1682 gcc_assert (ne->inline_failed);
1683 }
1684 }
1685 /* We only updated the call stmt; update pointer in cgraph edge.. */
1686 else if (old_stmt != new_stmt)
1687 cgraph_edge::set_call_stmt (node->get_edge (old_stmt),
1688 as_a <gcall *> (new_stmt));
1689 }
1690
1691 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1692 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1693 of OLD_STMT before it was updated (updating can happen inplace). */
1694
1695 void
1696 cgraph_update_edges_for_call_stmt (gimple *old_stmt, tree old_decl,
1697 gimple *new_stmt)
1698 {
1699 cgraph_node *orig = cgraph_node::get (cfun->decl);
1700 cgraph_node *node;
1701
1702 gcc_checking_assert (orig);
1703 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1704 if (orig->clones)
1705 for (node = orig->clones; node != orig;)
1706 {
1707 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl,
1708 new_stmt);
1709 if (node->clones)
1710 node = node->clones;
1711 else if (node->next_sibling_clone)
1712 node = node->next_sibling_clone;
1713 else
1714 {
1715 while (node != orig && !node->next_sibling_clone)
1716 node = node->clone_of;
1717 if (node != orig)
1718 node = node->next_sibling_clone;
1719 }
1720 }
1721 }
1722
1723
1724 /* Remove all callees from the node. */
1725
1726 void
1727 cgraph_node::remove_callees (void)
1728 {
1729 cgraph_edge *e, *f;
1730
1731 calls_comdat_local = false;
1732
1733 /* It is sufficient to remove the edges from the lists of callers of
1734 the callees. The callee list of the node can be zapped with one
1735 assignment. */
1736 for (e = callees; e; e = f)
1737 {
1738 f = e->next_callee;
1739 symtab->call_edge_removal_hooks (e);
1740 if (!e->indirect_unknown_callee)
1741 e->remove_callee ();
1742 symtab->free_edge (e);
1743 }
1744 for (e = indirect_calls; e; e = f)
1745 {
1746 f = e->next_callee;
1747 symtab->call_edge_removal_hooks (e);
1748 if (!e->indirect_unknown_callee)
1749 e->remove_callee ();
1750 symtab->free_edge (e);
1751 }
1752 indirect_calls = NULL;
1753 callees = NULL;
1754 if (call_site_hash)
1755 {
1756 call_site_hash->empty ();
1757 call_site_hash = NULL;
1758 }
1759 }
1760
1761 /* Remove all callers from the node. */
1762
1763 void
1764 cgraph_node::remove_callers (void)
1765 {
1766 cgraph_edge *e, *f;
1767
1768 /* It is sufficient to remove the edges from the lists of callees of
1769 the callers. The caller list of the node can be zapped with one
1770 assignment. */
1771 for (e = callers; e; e = f)
1772 {
1773 f = e->next_caller;
1774 symtab->call_edge_removal_hooks (e);
1775 e->remove_caller ();
1776 symtab->free_edge (e);
1777 }
1778 callers = NULL;
1779 }
1780
1781 /* Helper function for cgraph_release_function_body and free_lang_data.
1782 It releases body from function DECL without having to inspect its
1783 possibly non-existent symtab node. */
1784
1785 void
1786 release_function_body (tree decl)
1787 {
1788 function *fn = DECL_STRUCT_FUNCTION (decl);
1789 if (fn)
1790 {
1791 if (fn->cfg
1792 && loops_for_fn (fn))
1793 {
1794 fn->curr_properties &= ~PROP_loops;
1795 loop_optimizer_finalize (fn);
1796 }
1797 if (fn->gimple_df)
1798 {
1799 delete_tree_ssa (fn);
1800 fn->eh = NULL;
1801 }
1802 if (fn->cfg)
1803 {
1804 gcc_assert (!dom_info_available_p (fn, CDI_DOMINATORS));
1805 gcc_assert (!dom_info_available_p (fn, CDI_POST_DOMINATORS));
1806 delete_tree_cfg_annotations (fn);
1807 free_cfg (fn);
1808 fn->cfg = NULL;
1809 }
1810 if (fn->value_histograms)
1811 free_histograms (fn);
1812 gimple_set_body (decl, NULL);
1813 /* Struct function hangs a lot of data that would leak if we didn't
1814 removed all pointers to it. */
1815 ggc_free (fn);
1816 DECL_STRUCT_FUNCTION (decl) = NULL;
1817 }
1818 DECL_SAVED_TREE (decl) = NULL;
1819 }
1820
1821 /* Release memory used to represent body of function.
1822 Use this only for functions that are released before being translated to
1823 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1824 are free'd in final.c via free_after_compilation().
1825 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1826
1827 void
1828 cgraph_node::release_body (bool keep_arguments)
1829 {
1830 ipa_transforms_to_apply.release ();
1831 if (!used_as_abstract_origin && symtab->state != PARSING)
1832 {
1833 DECL_RESULT (decl) = NULL;
1834
1835 if (!keep_arguments)
1836 DECL_ARGUMENTS (decl) = NULL;
1837 }
1838 /* If the node is abstract and needed, then do not clear
1839 DECL_INITIAL of its associated function declaration because it's
1840 needed to emit debug info later. */
1841 if (!used_as_abstract_origin && DECL_INITIAL (decl))
1842 DECL_INITIAL (decl) = error_mark_node;
1843 release_function_body (decl);
1844 if (lto_file_data)
1845 {
1846 lto_free_function_in_decl_state_for_node (this);
1847 lto_file_data = NULL;
1848 }
1849 if (flag_checking && clones)
1850 {
1851 /* It is invalid to release body before materializing clones except
1852 for thunks that don't really need a body. Verify also that we do
1853 not leak pointers to the call statements. */
1854 for (cgraph_node *node = clones; node;
1855 node = node->next_sibling_clone)
1856 gcc_assert (node->thunk && !node->callees->call_stmt);
1857 }
1858 remove_callees ();
1859 remove_all_references ();
1860 }
1861
1862 /* Remove function from symbol table. */
1863
1864 void
1865 cgraph_node::remove (void)
1866 {
1867 bool clone_info_set = false;
1868 clone_info *info, saved_info;
1869 if (symtab->ipa_clones_dump_file && symtab->cloned_nodes.contains (this))
1870 fprintf (symtab->ipa_clones_dump_file,
1871 "Callgraph removal;%s;%d;%s;%d;%d\n", asm_name (), order,
1872 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl),
1873 DECL_SOURCE_COLUMN (decl));
1874
1875 if ((info = clone_info::get (this)) != NULL)
1876 {
1877 saved_info = *info;
1878 clone_info_set = true;
1879 }
1880 symtab->call_cgraph_removal_hooks (this);
1881 remove_callers ();
1882 remove_callees ();
1883 ipa_transforms_to_apply.release ();
1884 delete_function_version (function_version ());
1885
1886 /* Incremental inlining access removed nodes stored in the postorder list.
1887 */
1888 force_output = false;
1889 forced_by_abi = false;
1890
1891 unregister (clone_info_set ? &saved_info : NULL);
1892 if (prev_sibling_clone)
1893 prev_sibling_clone->next_sibling_clone = next_sibling_clone;
1894 else if (clone_of)
1895 clone_of->clones = next_sibling_clone;
1896 if (next_sibling_clone)
1897 next_sibling_clone->prev_sibling_clone = prev_sibling_clone;
1898 if (clones)
1899 {
1900 cgraph_node *n, *next;
1901
1902 if (clone_of)
1903 {
1904 for (n = clones; n->next_sibling_clone; n = n->next_sibling_clone)
1905 n->clone_of = clone_of;
1906 n->clone_of = clone_of;
1907 n->next_sibling_clone = clone_of->clones;
1908 if (clone_of->clones)
1909 clone_of->clones->prev_sibling_clone = n;
1910 clone_of->clones = clones;
1911 }
1912 else
1913 {
1914 /* We are removing node with clones. This makes clones inconsistent,
1915 but assume they will be removed subsequently and just keep clone
1916 tree intact. This can happen in unreachable function removal since
1917 we remove unreachable functions in random order, not by bottom-up
1918 walk of clone trees. */
1919 for (n = clones; n; n = next)
1920 {
1921 next = n->next_sibling_clone;
1922 n->next_sibling_clone = NULL;
1923 n->prev_sibling_clone = NULL;
1924 n->clone_of = NULL;
1925 }
1926 }
1927 }
1928
1929 /* While all the clones are removed after being proceeded, the function
1930 itself is kept in the cgraph even after it is compiled. Check whether
1931 we are done with this body and reclaim it proactively if this is the case.
1932 */
1933 if (symtab->state != LTO_STREAMING)
1934 {
1935 cgraph_node *n = cgraph_node::get (decl);
1936 if (!n
1937 || (!n->clones && !n->clone_of && !n->inlined_to
1938 && ((symtab->global_info_ready || in_lto_p)
1939 && (TREE_ASM_WRITTEN (n->decl)
1940 || DECL_EXTERNAL (n->decl)
1941 || !n->analyzed
1942 || (!flag_wpa && n->in_other_partition)))))
1943 release_body ();
1944 }
1945 else
1946 {
1947 lto_free_function_in_decl_state_for_node (this);
1948 lto_file_data = NULL;
1949 }
1950
1951 decl = NULL;
1952 if (call_site_hash)
1953 {
1954 call_site_hash->empty ();
1955 call_site_hash = NULL;
1956 }
1957
1958 symtab->release_symbol (this);
1959 }
1960
1961 /* Likewise indicate that a node is having address taken. */
1962
1963 void
1964 cgraph_node::mark_address_taken (void)
1965 {
1966 /* Indirect inlining can figure out that all uses of the address are
1967 inlined. */
1968 if (inlined_to)
1969 {
1970 gcc_assert (cfun->after_inlining);
1971 gcc_assert (callers->indirect_inlining_edge);
1972 return;
1973 }
1974 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1975 IPA_REF_ADDR reference exists (and thus it should be set on node
1976 representing alias we take address of) and as a test whether address
1977 of the object was taken (and thus it should be set on node alias is
1978 referring to). We should remove the first use and the remove the
1979 following set. */
1980 address_taken = 1;
1981 cgraph_node *node = ultimate_alias_target ();
1982 node->address_taken = 1;
1983 }
1984
1985 /* Return local info node for the compiled function. */
1986
1987 cgraph_node *
1988 cgraph_node::local_info_node (tree decl)
1989 {
1990 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1991 cgraph_node *node = get (decl);
1992 if (!node)
1993 return NULL;
1994 return node->ultimate_alias_target ();
1995 }
1996
1997 /* Return RTL info for the compiled function. */
1998
1999 cgraph_rtl_info *
2000 cgraph_node::rtl_info (const_tree decl)
2001 {
2002 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
2003 cgraph_node *node = get (decl);
2004 if (!node)
2005 return NULL;
2006 enum availability avail;
2007 node = node->ultimate_alias_target (&avail);
2008 if (decl != current_function_decl
2009 && (avail < AVAIL_AVAILABLE
2010 || (node->decl != current_function_decl
2011 && !TREE_ASM_WRITTEN (node->decl))))
2012 return NULL;
2013 /* Allocate if it doesn't exist. */
2014 if (node->rtl == NULL)
2015 {
2016 node->rtl = ggc_cleared_alloc<cgraph_rtl_info> ();
2017 SET_HARD_REG_SET (node->rtl->function_used_regs);
2018 }
2019 return node->rtl;
2020 }
2021
2022 /* Return a string describing the failure REASON. */
2023
2024 const char*
2025 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
2026 {
2027 #undef DEFCIFCODE
2028 #define DEFCIFCODE(code, type, string) string,
2029
2030 static const char *cif_string_table[CIF_N_REASONS] = {
2031 #include "cif-code.def"
2032 };
2033
2034 /* Signedness of an enum type is implementation defined, so cast it
2035 to unsigned before testing. */
2036 gcc_assert ((unsigned) reason < CIF_N_REASONS);
2037 return cif_string_table[reason];
2038 }
2039
2040 /* Return a type describing the failure REASON. */
2041
2042 cgraph_inline_failed_type_t
2043 cgraph_inline_failed_type (cgraph_inline_failed_t reason)
2044 {
2045 #undef DEFCIFCODE
2046 #define DEFCIFCODE(code, type, string) type,
2047
2048 static cgraph_inline_failed_type_t cif_type_table[CIF_N_REASONS] = {
2049 #include "cif-code.def"
2050 };
2051
2052 /* Signedness of an enum type is implementation defined, so cast it
2053 to unsigned before testing. */
2054 gcc_assert ((unsigned) reason < CIF_N_REASONS);
2055 return cif_type_table[reason];
2056 }
2057
2058 /* Names used to print out the availability enum. */
2059 const char * const cgraph_availability_names[] =
2060 {"unset", "not_available", "overwritable", "available", "local"};
2061
2062 /* Output flags of edge to a file F. */
2063
2064 void
2065 cgraph_edge::dump_edge_flags (FILE *f)
2066 {
2067 if (speculative)
2068 fprintf (f, "(speculative) ");
2069 if (!inline_failed)
2070 fprintf (f, "(inlined) ");
2071 if (call_stmt_cannot_inline_p)
2072 fprintf (f, "(call_stmt_cannot_inline_p) ");
2073 if (indirect_inlining_edge)
2074 fprintf (f, "(indirect_inlining) ");
2075 if (count.initialized_p ())
2076 {
2077 fprintf (f, "(");
2078 count.dump (f);
2079 fprintf (f, ",");
2080 fprintf (f, "%.2f per call) ", sreal_frequency ().to_double ());
2081 }
2082 if (can_throw_external)
2083 fprintf (f, "(can throw external) ");
2084 }
2085
2086 /* Dump edge to stderr. */
2087
2088 void
2089 cgraph_edge::debug (void)
2090 {
2091 fprintf (stderr, "%s -> %s ", caller->dump_asm_name (),
2092 callee == NULL ? "(null)" : callee->dump_asm_name ());
2093 dump_edge_flags (stderr);
2094 fprintf (stderr, "\n\n");
2095 caller->debug ();
2096 if (callee != NULL)
2097 callee->debug ();
2098 }
2099
2100 /* Dump call graph node to file F. */
2101
2102 void
2103 cgraph_node::dump (FILE *f)
2104 {
2105 cgraph_edge *edge;
2106
2107 dump_base (f);
2108
2109 if (inlined_to)
2110 fprintf (f, " Function %s is inline copy in %s\n",
2111 dump_name (),
2112 inlined_to->dump_name ());
2113 if (clone_of)
2114 fprintf (f, " Clone of %s\n", clone_of->dump_asm_name ());
2115 if (symtab->function_flags_ready)
2116 fprintf (f, " Availability: %s\n",
2117 cgraph_availability_names [get_availability ()]);
2118
2119 if (profile_id)
2120 fprintf (f, " Profile id: %i\n",
2121 profile_id);
2122 if (unit_id)
2123 fprintf (f, " Unit id: %i\n",
2124 unit_id);
2125 cgraph_function_version_info *vi = function_version ();
2126 if (vi != NULL)
2127 {
2128 fprintf (f, " Version info: ");
2129 if (vi->prev != NULL)
2130 {
2131 fprintf (f, "prev: ");
2132 fprintf (f, "%s ", vi->prev->this_node->dump_asm_name ());
2133 }
2134 if (vi->next != NULL)
2135 {
2136 fprintf (f, "next: ");
2137 fprintf (f, "%s ", vi->next->this_node->dump_asm_name ());
2138 }
2139 if (vi->dispatcher_resolver != NULL_TREE)
2140 fprintf (f, "dispatcher: %s",
2141 lang_hooks.decl_printable_name (vi->dispatcher_resolver, 2));
2142
2143 fprintf (f, "\n");
2144 }
2145 fprintf (f, " Function flags:");
2146 if (count.initialized_p ())
2147 {
2148 fprintf (f, " count:");
2149 count.dump (f);
2150 }
2151 if (tp_first_run > 0)
2152 fprintf (f, " first_run:%" PRId64, (int64_t) tp_first_run);
2153 if (cgraph_node *origin = nested_function_origin (this))
2154 fprintf (f, " nested in:%s", origin->dump_asm_name ());
2155 if (gimple_has_body_p (decl))
2156 fprintf (f, " body");
2157 if (process)
2158 fprintf (f, " process");
2159 if (local)
2160 fprintf (f, " local");
2161 if (redefined_extern_inline)
2162 fprintf (f, " redefined_extern_inline");
2163 if (only_called_at_startup)
2164 fprintf (f, " only_called_at_startup");
2165 if (only_called_at_exit)
2166 fprintf (f, " only_called_at_exit");
2167 if (tm_clone)
2168 fprintf (f, " tm_clone");
2169 if (calls_comdat_local)
2170 fprintf (f, " calls_comdat_local");
2171 if (icf_merged)
2172 fprintf (f, " icf_merged");
2173 if (merged_comdat)
2174 fprintf (f, " merged_comdat");
2175 if (merged_extern_inline)
2176 fprintf (f, " merged_extern_inline");
2177 if (split_part)
2178 fprintf (f, " split_part");
2179 if (indirect_call_target)
2180 fprintf (f, " indirect_call_target");
2181 if (nonfreeing_fn)
2182 fprintf (f, " nonfreeing_fn");
2183 if (DECL_STATIC_CONSTRUCTOR (decl))
2184 fprintf (f," static_constructor (priority:%i)", get_init_priority ());
2185 if (DECL_STATIC_DESTRUCTOR (decl))
2186 fprintf (f," static_destructor (priority:%i)", get_fini_priority ());
2187 if (frequency == NODE_FREQUENCY_HOT)
2188 fprintf (f, " hot");
2189 if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2190 fprintf (f, " unlikely_executed");
2191 if (frequency == NODE_FREQUENCY_EXECUTED_ONCE)
2192 fprintf (f, " executed_once");
2193 if (opt_for_fn (decl, optimize_size))
2194 fprintf (f, " optimize_size");
2195 if (parallelized_function)
2196 fprintf (f, " parallelized_function");
2197 if (DECL_IS_MALLOC (decl))
2198 fprintf (f, " decl_is_malloc");
2199 if (DECL_IS_OPERATOR_NEW_P (decl))
2200 fprintf (f, " %soperator_new",
2201 DECL_IS_REPLACEABLE_OPERATOR (decl) ? "replaceable_" : "");
2202 if (DECL_IS_OPERATOR_DELETE_P (decl))
2203 fprintf (f, " %soperator_delete",
2204 DECL_IS_REPLACEABLE_OPERATOR (decl) ? "replaceable_" : "");
2205
2206 if (DECL_STATIC_CHAIN (decl))
2207 fprintf (f, " static_chain");
2208
2209 fprintf (f, "\n");
2210
2211 if (thunk)
2212 {
2213 fprintf (f, " Thunk");
2214 thunk_info::get (this)->dump (f);
2215 }
2216 else if (former_thunk_p ())
2217 {
2218 fprintf (f, " Former thunk ");
2219 thunk_info::get (this)->dump (f);
2220 }
2221 else gcc_checking_assert (!thunk_info::get (this));
2222
2223 fprintf (f, " Called by: ");
2224
2225 profile_count sum = profile_count::zero ();
2226 for (edge = callers; edge; edge = edge->next_caller)
2227 {
2228 fprintf (f, "%s ", edge->caller->dump_asm_name ());
2229 edge->dump_edge_flags (f);
2230 if (edge->count.initialized_p ())
2231 sum += edge->count.ipa ();
2232 }
2233
2234 fprintf (f, "\n Calls: ");
2235 for (edge = callees; edge; edge = edge->next_callee)
2236 {
2237 fprintf (f, "%s ", edge->callee->dump_asm_name ());
2238 edge->dump_edge_flags (f);
2239 }
2240 fprintf (f, "\n");
2241
2242 if (!body_removed && count.ipa ().initialized_p ())
2243 {
2244 bool ok = true;
2245 bool min = false;
2246 ipa_ref *ref;
2247
2248 FOR_EACH_ALIAS (this, ref)
2249 if (dyn_cast <cgraph_node *> (ref->referring)->count.initialized_p ())
2250 sum += dyn_cast <cgraph_node *> (ref->referring)->count.ipa ();
2251
2252 if (inlined_to
2253 || (symtab->state < EXPANSION
2254 && ultimate_alias_target () == this && only_called_directly_p ()))
2255 ok = !count.ipa ().differs_from_p (sum);
2256 else if (count.ipa () > profile_count::from_gcov_type (100)
2257 && count.ipa () < sum.apply_scale (99, 100))
2258 ok = false, min = true;
2259 if (!ok)
2260 {
2261 fprintf (f, " Invalid sum of caller counts ");
2262 sum.dump (f);
2263 if (min)
2264 fprintf (f, ", should be at most ");
2265 else
2266 fprintf (f, ", should be ");
2267 count.ipa ().dump (f);
2268 fprintf (f, "\n");
2269 }
2270 }
2271
2272 for (edge = indirect_calls; edge; edge = edge->next_callee)
2273 {
2274 if (edge->indirect_info->polymorphic)
2275 {
2276 fprintf (f, " Polymorphic indirect call of type ");
2277 print_generic_expr (f, edge->indirect_info->otr_type, TDF_SLIM);
2278 fprintf (f, " token:%i", (int) edge->indirect_info->otr_token);
2279 }
2280 else
2281 fprintf (f, " Indirect call");
2282 edge->dump_edge_flags (f);
2283 if (edge->indirect_info->param_index != -1)
2284 {
2285 fprintf (f, "of param:%i ", edge->indirect_info->param_index);
2286 if (edge->indirect_info->agg_contents)
2287 fprintf (f, "loaded from %s %s at offset %i ",
2288 edge->indirect_info->member_ptr ? "member ptr" : "aggregate",
2289 edge->indirect_info->by_ref ? "passed by reference":"",
2290 (int)edge->indirect_info->offset);
2291 if (edge->indirect_info->vptr_changed)
2292 fprintf (f, "(vptr maybe changed) ");
2293 }
2294 fprintf (f, "num speculative call targets: %i\n",
2295 edge->indirect_info->num_speculative_call_targets);
2296 if (edge->indirect_info->polymorphic)
2297 edge->indirect_info->context.dump (f);
2298 }
2299 }
2300
2301 /* Dump call graph node to file F in graphviz format. */
2302
2303 void
2304 cgraph_node::dump_graphviz (FILE *f)
2305 {
2306 cgraph_edge *edge;
2307
2308 for (edge = callees; edge; edge = edge->next_callee)
2309 {
2310 cgraph_node *callee = edge->callee;
2311
2312 fprintf (f, "\t\"%s\" -> \"%s\"\n", dump_name (), callee->dump_name ());
2313 }
2314 }
2315
2316
2317 /* Dump call graph node NODE to stderr. */
2318
2319 DEBUG_FUNCTION void
2320 cgraph_node::debug (void)
2321 {
2322 dump (stderr);
2323 }
2324
2325 /* Dump the callgraph to file F. */
2326
2327 void
2328 cgraph_node::dump_cgraph (FILE *f)
2329 {
2330 cgraph_node *node;
2331
2332 fprintf (f, "callgraph:\n\n");
2333 FOR_EACH_FUNCTION (node)
2334 node->dump (f);
2335 }
2336
2337 /* Return true when the DECL can possibly be inlined. */
2338
2339 bool
2340 cgraph_function_possibly_inlined_p (tree decl)
2341 {
2342 if (!symtab->global_info_ready)
2343 return !DECL_UNINLINABLE (decl);
2344 return DECL_POSSIBLY_INLINED (decl);
2345 }
2346
2347 /* Return function availability. See cgraph.h for description of individual
2348 return values. */
2349 enum availability
2350 cgraph_node::get_availability (symtab_node *ref)
2351 {
2352 if (ref)
2353 {
2354 cgraph_node *cref = dyn_cast <cgraph_node *> (ref);
2355 if (cref)
2356 ref = cref->inlined_to;
2357 }
2358 enum availability avail;
2359 if (!analyzed && !in_other_partition)
2360 avail = AVAIL_NOT_AVAILABLE;
2361 else if (local)
2362 avail = AVAIL_LOCAL;
2363 else if (inlined_to)
2364 avail = AVAIL_AVAILABLE;
2365 else if (transparent_alias)
2366 ultimate_alias_target (&avail, ref);
2367 else if (ifunc_resolver
2368 || lookup_attribute ("noipa", DECL_ATTRIBUTES (decl)))
2369 avail = AVAIL_INTERPOSABLE;
2370 else if (!externally_visible)
2371 avail = AVAIL_AVAILABLE;
2372 /* If this is a reference from symbol itself and there are no aliases, we
2373 may be sure that the symbol was not interposed by something else because
2374 the symbol itself would be unreachable otherwise.
2375
2376 Also comdat groups are always resolved in groups. */
2377 else if ((this == ref && !has_aliases_p ())
2378 || (ref && get_comdat_group ()
2379 && get_comdat_group () == ref->get_comdat_group ()))
2380 avail = AVAIL_AVAILABLE;
2381 /* Inline functions are safe to be analyzed even if their symbol can
2382 be overwritten at runtime. It is not meaningful to enforce any sane
2383 behavior on replacing inline function by different body. */
2384 else if (DECL_DECLARED_INLINE_P (decl))
2385 avail = AVAIL_AVAILABLE;
2386
2387 /* If the function can be overwritten, return OVERWRITABLE. Take
2388 care at least of two notable extensions - the COMDAT functions
2389 used to share template instantiations in C++ (this is symmetric
2390 to code cp_cannot_inline_tree_fn and probably shall be shared and
2391 the inlinability hooks completely eliminated). */
2392
2393 else if (decl_replaceable_p (decl) && !DECL_EXTERNAL (decl))
2394 avail = AVAIL_INTERPOSABLE;
2395 else avail = AVAIL_AVAILABLE;
2396
2397 return avail;
2398 }
2399
2400 /* Worker for cgraph_node_can_be_local_p. */
2401 static bool
2402 cgraph_node_cannot_be_local_p_1 (cgraph_node *node, void *)
2403 {
2404 return !(!node->force_output
2405 && !node->ifunc_resolver
2406 /* Limitation of gas requires us to output targets of symver aliases
2407 as global symbols. This is binutils PR 25295. */
2408 && !node->symver
2409 && ((DECL_COMDAT (node->decl)
2410 && !node->forced_by_abi
2411 && !node->used_from_object_file_p ()
2412 && !node->same_comdat_group)
2413 || !node->externally_visible));
2414 }
2415
2416 /* Return true if cgraph_node can be made local for API change.
2417 Extern inline functions and C++ COMDAT functions can be made local
2418 at the expense of possible code size growth if function is used in multiple
2419 compilation units. */
2420 bool
2421 cgraph_node::can_be_local_p (void)
2422 {
2423 return (!address_taken
2424 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1,
2425 NULL, true));
2426 }
2427
2428 /* Call callback on cgraph_node, thunks and aliases associated to cgraph_node.
2429 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
2430 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
2431 skipped. */
2432 bool
2433 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback)
2434 (cgraph_node *, void *),
2435 void *data,
2436 bool include_overwritable,
2437 bool exclude_virtual_thunks)
2438 {
2439 cgraph_edge *e;
2440 ipa_ref *ref;
2441 enum availability avail = AVAIL_AVAILABLE;
2442
2443 if (include_overwritable
2444 || (avail = get_availability ()) > AVAIL_INTERPOSABLE)
2445 {
2446 if (callback (this, data))
2447 return true;
2448 }
2449 FOR_EACH_ALIAS (this, ref)
2450 {
2451 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2452 if (include_overwritable
2453 || alias->get_availability () > AVAIL_INTERPOSABLE)
2454 if (alias->call_for_symbol_thunks_and_aliases (callback, data,
2455 include_overwritable,
2456 exclude_virtual_thunks))
2457 return true;
2458 }
2459 if (avail <= AVAIL_INTERPOSABLE)
2460 return false;
2461 for (e = callers; e; e = e->next_caller)
2462 if (e->caller->thunk
2463 && (include_overwritable
2464 || e->caller->get_availability () > AVAIL_INTERPOSABLE)
2465 && !(exclude_virtual_thunks
2466 && thunk_info::get (e->caller)->virtual_offset_p))
2467 if (e->caller->call_for_symbol_thunks_and_aliases (callback, data,
2468 include_overwritable,
2469 exclude_virtual_thunks))
2470 return true;
2471
2472 return false;
2473 }
2474
2475 /* Worker to bring NODE local. */
2476
2477 bool
2478 cgraph_node::make_local (cgraph_node *node, void *)
2479 {
2480 gcc_checking_assert (node->can_be_local_p ());
2481 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2482 {
2483 node->make_decl_local ();
2484 node->set_section (NULL);
2485 node->set_comdat_group (NULL);
2486 node->externally_visible = false;
2487 node->forced_by_abi = false;
2488 node->local = true;
2489 node->set_section (NULL);
2490 node->unique_name = ((node->resolution == LDPR_PREVAILING_DEF_IRONLY
2491 || node->resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
2492 && !flag_incremental_link);
2493 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2494 gcc_assert (node->get_availability () == AVAIL_LOCAL);
2495 }
2496 return false;
2497 }
2498
2499 /* Bring cgraph node local. */
2500
2501 void
2502 cgraph_node::make_local (void)
2503 {
2504 call_for_symbol_thunks_and_aliases (cgraph_node::make_local, NULL, true);
2505 }
2506
2507 /* Worker to set nothrow flag. */
2508
2509 static void
2510 set_nothrow_flag_1 (cgraph_node *node, bool nothrow, bool non_call,
2511 bool *changed)
2512 {
2513 cgraph_edge *e;
2514
2515 if (nothrow && !TREE_NOTHROW (node->decl))
2516 {
2517 /* With non-call exceptions we can't say for sure if other function body
2518 was not possibly optimized to still throw. */
2519 if (!non_call || node->binds_to_current_def_p ())
2520 {
2521 TREE_NOTHROW (node->decl) = true;
2522 *changed = true;
2523 for (e = node->callers; e; e = e->next_caller)
2524 e->can_throw_external = false;
2525 }
2526 }
2527 else if (!nothrow && TREE_NOTHROW (node->decl))
2528 {
2529 TREE_NOTHROW (node->decl) = false;
2530 *changed = true;
2531 }
2532 ipa_ref *ref;
2533 FOR_EACH_ALIAS (node, ref)
2534 {
2535 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2536 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2537 set_nothrow_flag_1 (alias, nothrow, non_call, changed);
2538 }
2539 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2540 if (e->caller->thunk
2541 && (!nothrow || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2542 set_nothrow_flag_1 (e->caller, nothrow, non_call, changed);
2543 }
2544
2545 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2546 if any to NOTHROW. */
2547
2548 bool
2549 cgraph_node::set_nothrow_flag (bool nothrow)
2550 {
2551 bool changed = false;
2552 bool non_call = opt_for_fn (decl, flag_non_call_exceptions);
2553
2554 if (!nothrow || get_availability () > AVAIL_INTERPOSABLE)
2555 set_nothrow_flag_1 (this, nothrow, non_call, &changed);
2556 else
2557 {
2558 ipa_ref *ref;
2559
2560 FOR_EACH_ALIAS (this, ref)
2561 {
2562 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2563 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2564 set_nothrow_flag_1 (alias, nothrow, non_call, &changed);
2565 }
2566 }
2567 return changed;
2568 }
2569
2570 /* Worker to set malloc flag. */
2571 static void
2572 set_malloc_flag_1 (cgraph_node *node, bool malloc_p, bool *changed)
2573 {
2574 if (malloc_p && !DECL_IS_MALLOC (node->decl))
2575 {
2576 DECL_IS_MALLOC (node->decl) = true;
2577 *changed = true;
2578 }
2579
2580 ipa_ref *ref;
2581 FOR_EACH_ALIAS (node, ref)
2582 {
2583 cgraph_node *alias = dyn_cast<cgraph_node *> (ref->referring);
2584 if (!malloc_p || alias->get_availability () > AVAIL_INTERPOSABLE)
2585 set_malloc_flag_1 (alias, malloc_p, changed);
2586 }
2587
2588 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2589 if (e->caller->thunk
2590 && (!malloc_p || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2591 set_malloc_flag_1 (e->caller, malloc_p, changed);
2592 }
2593
2594 /* Set DECL_IS_MALLOC on NODE's decl and on NODE's aliases if any. */
2595
2596 bool
2597 cgraph_node::set_malloc_flag (bool malloc_p)
2598 {
2599 bool changed = false;
2600
2601 if (!malloc_p || get_availability () > AVAIL_INTERPOSABLE)
2602 set_malloc_flag_1 (this, malloc_p, &changed);
2603 else
2604 {
2605 ipa_ref *ref;
2606
2607 FOR_EACH_ALIAS (this, ref)
2608 {
2609 cgraph_node *alias = dyn_cast<cgraph_node *> (ref->referring);
2610 if (!malloc_p || alias->get_availability () > AVAIL_INTERPOSABLE)
2611 set_malloc_flag_1 (alias, malloc_p, &changed);
2612 }
2613 }
2614 return changed;
2615 }
2616
2617 /* Worker to set noreturng flag. */
2618 static void
2619 set_noreturn_flag_1 (cgraph_node *node, bool noreturn_p, bool *changed)
2620 {
2621 if (noreturn_p && !TREE_THIS_VOLATILE (node->decl))
2622 {
2623 TREE_THIS_VOLATILE (node->decl) = true;
2624 *changed = true;
2625 }
2626
2627 ipa_ref *ref;
2628 FOR_EACH_ALIAS (node, ref)
2629 {
2630 cgraph_node *alias = dyn_cast<cgraph_node *> (ref->referring);
2631 if (!noreturn_p || alias->get_availability () > AVAIL_INTERPOSABLE)
2632 set_noreturn_flag_1 (alias, noreturn_p, changed);
2633 }
2634
2635 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2636 if (e->caller->thunk
2637 && (!noreturn_p || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2638 set_noreturn_flag_1 (e->caller, noreturn_p, changed);
2639 }
2640
2641 /* Set TREE_THIS_VOLATILE on NODE's decl and on NODE's aliases if any. */
2642
2643 bool
2644 cgraph_node::set_noreturn_flag (bool noreturn_p)
2645 {
2646 bool changed = false;
2647
2648 if (!noreturn_p || get_availability () > AVAIL_INTERPOSABLE)
2649 set_noreturn_flag_1 (this, noreturn_p, &changed);
2650 else
2651 {
2652 ipa_ref *ref;
2653
2654 FOR_EACH_ALIAS (this, ref)
2655 {
2656 cgraph_node *alias = dyn_cast<cgraph_node *> (ref->referring);
2657 if (!noreturn_p || alias->get_availability () > AVAIL_INTERPOSABLE)
2658 set_noreturn_flag_1 (alias, noreturn_p, &changed);
2659 }
2660 }
2661 return changed;
2662 }
2663
2664 /* Worker to set_const_flag. */
2665
2666 static void
2667 set_const_flag_1 (cgraph_node *node, bool set_const, bool looping,
2668 bool *changed)
2669 {
2670 /* Static constructors and destructors without a side effect can be
2671 optimized out. */
2672 if (set_const && !looping)
2673 {
2674 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2675 {
2676 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2677 *changed = true;
2678 }
2679 if (DECL_STATIC_DESTRUCTOR (node->decl))
2680 {
2681 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2682 *changed = true;
2683 }
2684 }
2685 if (!set_const)
2686 {
2687 if (TREE_READONLY (node->decl))
2688 {
2689 TREE_READONLY (node->decl) = 0;
2690 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2691 *changed = true;
2692 }
2693 }
2694 else
2695 {
2696 /* Consider function:
2697
2698 bool a(int *p)
2699 {
2700 return *p==*p;
2701 }
2702
2703 During early optimization we will turn this into:
2704
2705 bool a(int *p)
2706 {
2707 return true;
2708 }
2709
2710 Now if this function will be detected as CONST however when interposed
2711 it may end up being just pure. We always must assume the worst
2712 scenario here. */
2713 if (TREE_READONLY (node->decl))
2714 {
2715 if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2716 {
2717 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2718 *changed = true;
2719 }
2720 }
2721 else if (node->binds_to_current_def_p ())
2722 {
2723 TREE_READONLY (node->decl) = true;
2724 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2725 DECL_PURE_P (node->decl) = false;
2726 *changed = true;
2727 }
2728 else
2729 {
2730 if (dump_file && (dump_flags & TDF_DETAILS))
2731 fprintf (dump_file, "Dropping state to PURE because function does "
2732 "not bind to current def.\n");
2733 if (!DECL_PURE_P (node->decl))
2734 {
2735 DECL_PURE_P (node->decl) = true;
2736 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2737 *changed = true;
2738 }
2739 else if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2740 {
2741 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2742 *changed = true;
2743 }
2744 }
2745 }
2746
2747 ipa_ref *ref;
2748 FOR_EACH_ALIAS (node, ref)
2749 {
2750 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2751 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2752 set_const_flag_1 (alias, set_const, looping, changed);
2753 }
2754 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2755 if (e->caller->thunk
2756 && (!set_const || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2757 {
2758 /* Virtual thunks access virtual offset in the vtable, so they can
2759 only be pure, never const. */
2760 if (set_const
2761 && (thunk_info::get (e->caller)->virtual_offset_p
2762 || !node->binds_to_current_def_p (e->caller)))
2763 *changed |= e->caller->set_pure_flag (true, looping);
2764 else
2765 set_const_flag_1 (e->caller, set_const, looping, changed);
2766 }
2767 }
2768
2769 /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST.
2770 If SET_CONST if false, clear the flag.
2771
2772 When setting the flag be careful about possible interposition and
2773 do not set the flag for functions that can be interposed and set pure
2774 flag for functions that can bind to other definition.
2775
2776 Return true if any change was done. */
2777
2778 bool
2779 cgraph_node::set_const_flag (bool set_const, bool looping)
2780 {
2781 bool changed = false;
2782 if (!set_const || get_availability () > AVAIL_INTERPOSABLE)
2783 set_const_flag_1 (this, set_const, looping, &changed);
2784 else
2785 {
2786 ipa_ref *ref;
2787
2788 FOR_EACH_ALIAS (this, ref)
2789 {
2790 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2791 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2792 set_const_flag_1 (alias, set_const, looping, &changed);
2793 }
2794 }
2795 return changed;
2796 }
2797
2798 /* Info used by set_pure_flag_1. */
2799
2800 struct set_pure_flag_info
2801 {
2802 bool pure;
2803 bool looping;
2804 bool changed;
2805 };
2806
2807 /* Worker to set_pure_flag. */
2808
2809 static bool
2810 set_pure_flag_1 (cgraph_node *node, void *data)
2811 {
2812 struct set_pure_flag_info *info = (struct set_pure_flag_info *)data;
2813 /* Static constructors and destructors without a side effect can be
2814 optimized out. */
2815 if (info->pure && !info->looping)
2816 {
2817 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2818 {
2819 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2820 info->changed = true;
2821 }
2822 if (DECL_STATIC_DESTRUCTOR (node->decl))
2823 {
2824 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2825 info->changed = true;
2826 }
2827 }
2828 if (info->pure)
2829 {
2830 if (!DECL_PURE_P (node->decl) && !TREE_READONLY (node->decl))
2831 {
2832 DECL_PURE_P (node->decl) = true;
2833 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = info->looping;
2834 info->changed = true;
2835 }
2836 else if (DECL_LOOPING_CONST_OR_PURE_P (node->decl)
2837 && !info->looping)
2838 {
2839 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2840 info->changed = true;
2841 }
2842 }
2843 else
2844 {
2845 if (DECL_PURE_P (node->decl))
2846 {
2847 DECL_PURE_P (node->decl) = false;
2848 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2849 info->changed = true;
2850 }
2851 }
2852 return false;
2853 }
2854
2855 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2856 if any to PURE.
2857
2858 When setting the flag, be careful about possible interposition.
2859 Return true if any change was done. */
2860
2861 bool
2862 cgraph_node::set_pure_flag (bool pure, bool looping)
2863 {
2864 struct set_pure_flag_info info = {pure, looping, false};
2865 call_for_symbol_thunks_and_aliases (set_pure_flag_1, &info, !pure, true);
2866 return info.changed;
2867 }
2868
2869 /* Return true when cgraph_node cannot return or throw and thus
2870 it is safe to ignore its side effects for IPA analysis. */
2871
2872 bool
2873 cgraph_node::cannot_return_p (void)
2874 {
2875 int flags = flags_from_decl_or_type (decl);
2876 if (!opt_for_fn (decl, flag_exceptions))
2877 return (flags & ECF_NORETURN) != 0;
2878 else
2879 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2880 == (ECF_NORETURN | ECF_NOTHROW));
2881 }
2882
2883 /* Return true when call of edge cannot lead to return from caller
2884 and thus it is safe to ignore its side effects for IPA analysis
2885 when computing side effects of the caller.
2886 FIXME: We could actually mark all edges that have no reaching
2887 patch to the exit block or throw to get better results. */
2888 bool
2889 cgraph_edge::cannot_lead_to_return_p (void)
2890 {
2891 if (caller->cannot_return_p ())
2892 return true;
2893 if (indirect_unknown_callee)
2894 {
2895 int flags = indirect_info->ecf_flags;
2896 if (!opt_for_fn (caller->decl, flag_exceptions))
2897 return (flags & ECF_NORETURN) != 0;
2898 else
2899 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2900 == (ECF_NORETURN | ECF_NOTHROW));
2901 }
2902 else
2903 return callee->cannot_return_p ();
2904 }
2905
2906 /* Return true if the edge may be considered hot. */
2907
2908 bool
2909 cgraph_edge::maybe_hot_p (void)
2910 {
2911 if (!maybe_hot_count_p (NULL, count.ipa ()))
2912 return false;
2913 if (caller->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
2914 || (callee
2915 && callee->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED))
2916 return false;
2917 if (caller->frequency > NODE_FREQUENCY_UNLIKELY_EXECUTED
2918 && (callee
2919 && callee->frequency <= NODE_FREQUENCY_EXECUTED_ONCE))
2920 return false;
2921 if (opt_for_fn (caller->decl, optimize_size))
2922 return false;
2923 if (caller->frequency == NODE_FREQUENCY_HOT)
2924 return true;
2925 if (!count.initialized_p ())
2926 return true;
2927 cgraph_node *where = caller->inlined_to ? caller->inlined_to : caller;
2928 if (!where->count.initialized_p ())
2929 return false;
2930 if (caller->frequency == NODE_FREQUENCY_EXECUTED_ONCE)
2931 {
2932 if (count.apply_scale (2, 1) < where->count.apply_scale (3, 1))
2933 return false;
2934 }
2935 else if (count.apply_scale (param_hot_bb_frequency_fraction , 1)
2936 < where->count)
2937 return false;
2938 return true;
2939 }
2940
2941 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2942
2943 static bool
2944 nonremovable_p (cgraph_node *node, void *)
2945 {
2946 return !node->can_remove_if_no_direct_calls_and_refs_p ();
2947 }
2948
2949 /* Return true if whole comdat group can be removed if there are no direct
2950 calls to THIS. */
2951
2952 bool
2953 cgraph_node::can_remove_if_no_direct_calls_p (bool will_inline)
2954 {
2955 struct ipa_ref *ref;
2956
2957 /* For local symbols or non-comdat group it is the same as
2958 can_remove_if_no_direct_calls_p. */
2959 if (!externally_visible || !same_comdat_group)
2960 {
2961 if (DECL_EXTERNAL (decl))
2962 return true;
2963 if (address_taken)
2964 return false;
2965 return !call_for_symbol_and_aliases (nonremovable_p, NULL, true);
2966 }
2967
2968 if (will_inline && address_taken)
2969 return false;
2970
2971 /* Otherwise check if we can remove the symbol itself and then verify
2972 that only uses of the comdat groups are direct call to THIS
2973 or its aliases. */
2974 if (!can_remove_if_no_direct_calls_and_refs_p ())
2975 return false;
2976
2977 /* Check that all refs come from within the comdat group. */
2978 for (int i = 0; iterate_referring (i, ref); i++)
2979 if (ref->referring->get_comdat_group () != get_comdat_group ())
2980 return false;
2981
2982 struct cgraph_node *target = ultimate_alias_target ();
2983 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2984 next != this; next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2985 {
2986 if (!externally_visible)
2987 continue;
2988 if (!next->alias
2989 && !next->can_remove_if_no_direct_calls_and_refs_p ())
2990 return false;
2991
2992 /* If we see different symbol than THIS, be sure to check calls. */
2993 if (next->ultimate_alias_target () != target)
2994 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2995 if (e->caller->get_comdat_group () != get_comdat_group ()
2996 || will_inline)
2997 return false;
2998
2999 /* If function is not being inlined, we care only about
3000 references outside of the comdat group. */
3001 if (!will_inline)
3002 for (int i = 0; next->iterate_referring (i, ref); i++)
3003 if (ref->referring->get_comdat_group () != get_comdat_group ())
3004 return false;
3005 }
3006 return true;
3007 }
3008
3009 /* Return true when function cgraph_node can be expected to be removed
3010 from program when direct calls in this compilation unit are removed.
3011
3012 As a special case COMDAT functions are
3013 cgraph_can_remove_if_no_direct_calls_p while the are not
3014 cgraph_only_called_directly_p (it is possible they are called from other
3015 unit)
3016
3017 This function behaves as cgraph_only_called_directly_p because eliminating
3018 all uses of COMDAT function does not make it necessarily disappear from
3019 the program unless we are compiling whole program or we do LTO. In this
3020 case we know we win since dynamic linking will not really discard the
3021 linkonce section. */
3022
3023 bool
3024 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p
3025 (bool will_inline)
3026 {
3027 gcc_assert (!inlined_to);
3028 if (DECL_EXTERNAL (decl))
3029 return true;
3030
3031 if (!in_lto_p && !flag_whole_program)
3032 {
3033 /* If the symbol is in comdat group, we need to verify that whole comdat
3034 group becomes unreachable. Technically we could skip references from
3035 within the group, too. */
3036 if (!only_called_directly_p ())
3037 return false;
3038 if (same_comdat_group && externally_visible)
3039 {
3040 struct cgraph_node *target = ultimate_alias_target ();
3041
3042 if (will_inline && address_taken)
3043 return true;
3044 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
3045 next != this;
3046 next = dyn_cast<cgraph_node *> (next->same_comdat_group))
3047 {
3048 if (!externally_visible)
3049 continue;
3050 if (!next->alias
3051 && !next->only_called_directly_p ())
3052 return false;
3053
3054 /* If we see different symbol than THIS,
3055 be sure to check calls. */
3056 if (next->ultimate_alias_target () != target)
3057 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
3058 if (e->caller->get_comdat_group () != get_comdat_group ()
3059 || will_inline)
3060 return false;
3061 }
3062 }
3063 return true;
3064 }
3065 else
3066 return can_remove_if_no_direct_calls_p (will_inline);
3067 }
3068
3069
3070 /* Worker for cgraph_only_called_directly_p. */
3071
3072 static bool
3073 cgraph_not_only_called_directly_p_1 (cgraph_node *node, void *)
3074 {
3075 return !node->only_called_directly_or_aliased_p ();
3076 }
3077
3078 /* Return true when function cgraph_node and all its aliases are only called
3079 directly.
3080 i.e. it is not externally visible, address was not taken and
3081 it is not used in any other non-standard way. */
3082
3083 bool
3084 cgraph_node::only_called_directly_p (void)
3085 {
3086 gcc_assert (ultimate_alias_target () == this);
3087 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1,
3088 NULL, true);
3089 }
3090
3091
3092 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
3093
3094 static bool
3095 collect_callers_of_node_1 (cgraph_node *node, void *data)
3096 {
3097 vec<cgraph_edge *> *redirect_callers = (vec<cgraph_edge *> *)data;
3098 cgraph_edge *cs;
3099 enum availability avail;
3100 node->ultimate_alias_target (&avail);
3101
3102 if (avail > AVAIL_INTERPOSABLE)
3103 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
3104 if (!cs->indirect_inlining_edge
3105 && !cs->caller->thunk)
3106 redirect_callers->safe_push (cs);
3107 return false;
3108 }
3109
3110 /* Collect all callers of cgraph_node and its aliases that are known to lead to
3111 cgraph_node (i.e. are not overwritable). */
3112
3113 auto_vec<cgraph_edge *>
3114 cgraph_node::collect_callers (void)
3115 {
3116 auto_vec<cgraph_edge *> redirect_callers;
3117 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1,
3118 &redirect_callers, false);
3119 return redirect_callers;
3120 }
3121
3122
3123 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. Return
3124 optimistically true if this cannot be determined. */
3125
3126 static bool
3127 clone_of_p (cgraph_node *node, cgraph_node *node2)
3128 {
3129 node = node->ultimate_alias_target ();
3130 node2 = node2->ultimate_alias_target ();
3131
3132 if (node2->clone_of == node
3133 || node2->former_clone_of == node->decl)
3134 return true;
3135
3136 if (!node->thunk && !node->former_thunk_p ())
3137 {
3138 while (node2
3139 && node->decl != node2->decl
3140 && node->decl != node2->former_clone_of)
3141 node2 = node2->clone_of;
3142 return node2 != NULL;
3143 }
3144
3145 /* There are no virtual clones of thunks so check former_clone_of or if we
3146 might have skipped thunks because this adjustments are no longer
3147 necessary. */
3148 while (node->thunk || node->former_thunk_p ())
3149 {
3150 if (!thunk_info::get (node)->this_adjusting)
3151 return false;
3152 /* In case of instrumented expanded thunks, which can have multiple calls
3153 in them, we do not know how to continue and just have to be
3154 optimistic. The same applies if all calls have already been inlined
3155 into the thunk. */
3156 if (!node->callees || node->callees->next_callee)
3157 return true;
3158 node = node->callees->callee->ultimate_alias_target ();
3159
3160 clone_info *info = clone_info::get (node2);
3161 if (!info || !info->param_adjustments
3162 || info->param_adjustments->first_param_intact_p ())
3163 return false;
3164 if (node2->former_clone_of == node->decl
3165 || node2->former_clone_of == node->former_clone_of)
3166 return true;
3167
3168 cgraph_node *n2 = node2;
3169 while (n2 && node->decl != n2->decl)
3170 n2 = n2->clone_of;
3171 if (n2)
3172 return true;
3173 }
3174
3175 return false;
3176 }
3177
3178 /* Verify edge count and frequency. */
3179
3180 bool
3181 cgraph_edge::verify_count ()
3182 {
3183 bool error_found = false;
3184 if (!count.verify ())
3185 {
3186 error ("caller edge count invalid");
3187 error_found = true;
3188 }
3189 return error_found;
3190 }
3191
3192 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
3193 static void
3194 cgraph_debug_gimple_stmt (function *this_cfun, gimple *stmt)
3195 {
3196 bool fndecl_was_null = false;
3197 /* debug_gimple_stmt needs correct cfun */
3198 if (cfun != this_cfun)
3199 set_cfun (this_cfun);
3200 /* ...and an actual current_function_decl */
3201 if (!current_function_decl)
3202 {
3203 current_function_decl = this_cfun->decl;
3204 fndecl_was_null = true;
3205 }
3206 debug_gimple_stmt (stmt);
3207 if (fndecl_was_null)
3208 current_function_decl = NULL;
3209 }
3210
3211 /* Verify that call graph edge corresponds to DECL from the associated
3212 statement. Return true if the verification should fail. */
3213
3214 bool
3215 cgraph_edge::verify_corresponds_to_fndecl (tree decl)
3216 {
3217 cgraph_node *node;
3218
3219 if (!decl || callee->inlined_to)
3220 return false;
3221 if (symtab->state == LTO_STREAMING)
3222 return false;
3223 node = cgraph_node::get (decl);
3224
3225 /* We do not know if a node from a different partition is an alias or what it
3226 aliases and therefore cannot do the former_clone_of check reliably. When
3227 body_removed is set, we have lost all information about what was alias or
3228 thunk of and also cannot proceed. */
3229 if (!node
3230 || node->body_removed
3231 || node->in_other_partition
3232 || callee->icf_merged
3233 || callee->in_other_partition)
3234 return false;
3235
3236 node = node->ultimate_alias_target ();
3237
3238 /* Optimizers can redirect unreachable calls or calls triggering undefined
3239 behavior to builtin_unreachable. */
3240
3241 if (fndecl_built_in_p (callee->decl, BUILT_IN_UNREACHABLE))
3242 return false;
3243
3244 if (callee->former_clone_of != node->decl
3245 && (node != callee->ultimate_alias_target ())
3246 && !clone_of_p (node, callee))
3247 return true;
3248 else
3249 return false;
3250 }
3251
3252 /* Disable warnings about missing quoting in GCC diagnostics for
3253 the verification errors. Their format strings don't follow GCC
3254 diagnostic conventions and the calls are ultimately followed by
3255 one to internal_error. */
3256 #if __GNUC__ >= 10
3257 # pragma GCC diagnostic push
3258 # pragma GCC diagnostic ignored "-Wformat-diag"
3259 #endif
3260
3261 /* Verify consistency of speculative call in NODE corresponding to STMT
3262 and LTO_STMT_UID. If INDIRECT is set, assume that it is the indirect
3263 edge of call sequence. Return true if error is found.
3264
3265 This function is called to every component of indirect call (direct edges,
3266 indirect edge and refs). To save duplicated work, do full testing only
3267 in that case. */
3268 static bool
3269 verify_speculative_call (struct cgraph_node *node, gimple *stmt,
3270 unsigned int lto_stmt_uid,
3271 struct cgraph_edge *indirect)
3272 {
3273 if (indirect == NULL)
3274 {
3275 for (indirect = node->indirect_calls; indirect;
3276 indirect = indirect->next_callee)
3277 if (indirect->call_stmt == stmt
3278 && indirect->lto_stmt_uid == lto_stmt_uid)
3279 break;
3280 if (!indirect)
3281 {
3282 error ("missing indirect call in speculative call sequence");
3283 return true;
3284 }
3285 if (!indirect->speculative)
3286 {
3287 error ("indirect call in speculative call sequence has no "
3288 "speculative flag");
3289 return true;
3290 }
3291 return false;
3292 }
3293
3294 /* Maximal number of targets. We probably will never want to have more than
3295 this. */
3296 const unsigned int num = 256;
3297 cgraph_edge *direct_calls[num];
3298 ipa_ref *refs[num];
3299
3300 for (unsigned int i = 0; i < num; i++)
3301 {
3302 direct_calls[i] = NULL;
3303 refs[i] = NULL;
3304 }
3305
3306 cgraph_edge *first_call = NULL;
3307 cgraph_edge *prev_call = NULL;
3308
3309 for (cgraph_edge *direct = node->callees; direct;
3310 direct = direct->next_callee)
3311 if (direct->call_stmt == stmt && direct->lto_stmt_uid == lto_stmt_uid)
3312 {
3313 if (!first_call)
3314 first_call = direct;
3315 if (prev_call && direct != prev_call->next_callee)
3316 {
3317 error ("speculative edges are not adjacent");
3318 return true;
3319 }
3320 prev_call = direct;
3321 if (!direct->speculative)
3322 {
3323 error ("direct call to %s in speculative call sequence has no "
3324 "speculative flag", direct->callee->dump_name ());
3325 return true;
3326 }
3327 if (direct->speculative_id >= num)
3328 {
3329 error ("direct call to %s in speculative call sequence has "
3330 "speculative_id %i out of range",
3331 direct->callee->dump_name (), direct->speculative_id);
3332 return true;
3333 }
3334 if (direct_calls[direct->speculative_id])
3335 {
3336 error ("duplicate direct call to %s in speculative call sequence "
3337 "with speculative_id %i",
3338 direct->callee->dump_name (), direct->speculative_id);
3339 return true;
3340 }
3341 direct_calls[direct->speculative_id] = direct;
3342 }
3343
3344 if (first_call->call_stmt
3345 && first_call != node->get_edge (first_call->call_stmt))
3346 {
3347 error ("call stmt hash does not point to first direct edge of "
3348 "speculative call sequence");
3349 return true;
3350 }
3351
3352 ipa_ref *ref;
3353 for (int i = 0; node->iterate_reference (i, ref); i++)
3354 if (ref->speculative
3355 && ref->stmt == stmt && ref->lto_stmt_uid == lto_stmt_uid)
3356 {
3357 if (ref->speculative_id >= num)
3358 {
3359 error ("direct call to %s in speculative call sequence has "
3360 "speculative_id %i out of range",
3361 ref->referred->dump_name (), ref->speculative_id);
3362 return true;
3363 }
3364 if (refs[ref->speculative_id])
3365 {
3366 error ("duplicate reference %s in speculative call sequence "
3367 "with speculative_id %i",
3368 ref->referred->dump_name (), ref->speculative_id);
3369 return true;
3370 }
3371 refs[ref->speculative_id] = ref;
3372 }
3373
3374 int num_targets = 0;
3375 for (unsigned int i = 0 ; i < num ; i++)
3376 {
3377 if (refs[i] && !direct_calls[i])
3378 {
3379 error ("missing direct call for speculation %i", i);
3380 return true;
3381 }
3382 if (!refs[i] && direct_calls[i])
3383 {
3384 error ("missing ref for speculation %i", i);
3385 return true;
3386 }
3387 if (refs[i] != NULL)
3388 num_targets++;
3389 }
3390
3391 if (num_targets != indirect->num_speculative_call_targets_p ())
3392 {
3393 error ("number of speculative targets %i mismatched with "
3394 "num_speculative_call_targets %i",
3395 num_targets,
3396 indirect->num_speculative_call_targets_p ());
3397 return true;
3398 }
3399 return false;
3400 }
3401
3402 /* Verify cgraph nodes of given cgraph node. */
3403 DEBUG_FUNCTION void
3404 cgraph_node::verify_node (void)
3405 {
3406 cgraph_edge *e;
3407 function *this_cfun = DECL_STRUCT_FUNCTION (decl);
3408 basic_block this_block;
3409 gimple_stmt_iterator gsi;
3410 bool error_found = false;
3411 int i;
3412 ipa_ref *ref = NULL;
3413
3414 if (seen_error ())
3415 return;
3416
3417 timevar_push (TV_CGRAPH_VERIFY);
3418 error_found |= verify_base ();
3419 for (e = callees; e; e = e->next_callee)
3420 if (e->aux)
3421 {
3422 error ("aux field set for edge %s->%s",
3423 identifier_to_locale (e->caller->name ()),
3424 identifier_to_locale (e->callee->name ()));
3425 error_found = true;
3426 }
3427 if (!count.verify ())
3428 {
3429 error ("cgraph count invalid");
3430 error_found = true;
3431 }
3432 if (inlined_to && same_comdat_group)
3433 {
3434 error ("inline clone in same comdat group list");
3435 error_found = true;
3436 }
3437 if (inlined_to && !count.compatible_p (inlined_to->count))
3438 {
3439 error ("inline clone count is not compatible");
3440 count.debug ();
3441 inlined_to->count.debug ();
3442 error_found = true;
3443 }
3444 if (tp_first_run < 0)
3445 {
3446 error ("tp_first_run must be non-negative");
3447 error_found = true;
3448 }
3449 if (!definition && !in_other_partition && local)
3450 {
3451 error ("local symbols must be defined");
3452 error_found = true;
3453 }
3454 if (inlined_to && externally_visible)
3455 {
3456 error ("externally visible inline clone");
3457 error_found = true;
3458 }
3459 if (inlined_to && address_taken)
3460 {
3461 error ("inline clone with address taken");
3462 error_found = true;
3463 }
3464 if (inlined_to && force_output)
3465 {
3466 error ("inline clone is forced to output");
3467 error_found = true;
3468 }
3469 if (symtab->state != LTO_STREAMING)
3470 {
3471 if (calls_comdat_local && !same_comdat_group)
3472 {
3473 error ("calls_comdat_local is set outside of a comdat group");
3474 error_found = true;
3475 }
3476 if (!inlined_to && calls_comdat_local != check_calls_comdat_local_p ())
3477 {
3478 error ("invalid calls_comdat_local flag");
3479 error_found = true;
3480 }
3481 }
3482 if (DECL_IS_MALLOC (decl)
3483 && !POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
3484 {
3485 error ("malloc attribute should be used for a function that "
3486 "returns a pointer");
3487 error_found = true;
3488 }
3489 for (e = indirect_calls; e; e = e->next_callee)
3490 {
3491 if (e->aux)
3492 {
3493 error ("aux field set for indirect edge from %s",
3494 identifier_to_locale (e->caller->name ()));
3495 error_found = true;
3496 }
3497 if (!e->count.compatible_p (count))
3498 {
3499 error ("edge count is not compatible with function count");
3500 e->count.debug ();
3501 count.debug ();
3502 error_found = true;
3503 }
3504 if (!e->indirect_unknown_callee
3505 || !e->indirect_info)
3506 {
3507 error ("An indirect edge from %s is not marked as indirect or has "
3508 "associated indirect_info, the corresponding statement is: ",
3509 identifier_to_locale (e->caller->name ()));
3510 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3511 error_found = true;
3512 }
3513 if (e->call_stmt && e->lto_stmt_uid)
3514 {
3515 error ("edge has both call_stmt and lto_stmt_uid set");
3516 error_found = true;
3517 }
3518 }
3519 bool check_comdat = comdat_local_p ();
3520 for (e = callers; e; e = e->next_caller)
3521 {
3522 if (e->verify_count ())
3523 error_found = true;
3524 if (check_comdat
3525 && !in_same_comdat_group_p (e->caller))
3526 {
3527 error ("comdat-local function called by %s outside its comdat",
3528 identifier_to_locale (e->caller->name ()));
3529 error_found = true;
3530 }
3531 if (!e->inline_failed)
3532 {
3533 if (inlined_to
3534 != (e->caller->inlined_to
3535 ? e->caller->inlined_to : e->caller))
3536 {
3537 error ("inlined_to pointer is wrong");
3538 error_found = true;
3539 }
3540 if (callers->next_caller)
3541 {
3542 error ("multiple inline callers");
3543 error_found = true;
3544 }
3545 }
3546 else
3547 if (inlined_to)
3548 {
3549 error ("inlined_to pointer set for noninline callers");
3550 error_found = true;
3551 }
3552 }
3553 for (e = callees; e; e = e->next_callee)
3554 {
3555 if (e->verify_count ())
3556 error_found = true;
3557 if (!e->count.compatible_p (count))
3558 {
3559 error ("edge count is not compatible with function count");
3560 e->count.debug ();
3561 count.debug ();
3562 error_found = true;
3563 }
3564 if (gimple_has_body_p (e->caller->decl)
3565 && !e->caller->inlined_to
3566 && !e->speculative
3567 /* Optimized out calls are redirected to __builtin_unreachable. */
3568 && (e->count.nonzero_p ()
3569 || ! e->callee->decl
3570 || !fndecl_built_in_p (e->callee->decl, BUILT_IN_UNREACHABLE))
3571 && count
3572 == ENTRY_BLOCK_PTR_FOR_FN (DECL_STRUCT_FUNCTION (decl))->count
3573 && (!e->count.ipa_p ()
3574 && e->count.differs_from_p (gimple_bb (e->call_stmt)->count)))
3575 {
3576 error ("caller edge count does not match BB count");
3577 fprintf (stderr, "edge count: ");
3578 e->count.dump (stderr);
3579 fprintf (stderr, "\n bb count: ");
3580 gimple_bb (e->call_stmt)->count.dump (stderr);
3581 fprintf (stderr, "\n");
3582 error_found = true;
3583 }
3584 if (e->call_stmt && e->lto_stmt_uid)
3585 {
3586 error ("edge has both call_stmt and lto_stmt_uid set");
3587 error_found = true;
3588 }
3589 if (e->speculative
3590 && verify_speculative_call (e->caller, e->call_stmt, e->lto_stmt_uid,
3591 NULL))
3592 error_found = true;
3593 }
3594 for (e = indirect_calls; e; e = e->next_callee)
3595 {
3596 if (e->verify_count ())
3597 error_found = true;
3598 if (gimple_has_body_p (e->caller->decl)
3599 && !e->caller->inlined_to
3600 && !e->speculative
3601 && e->count.ipa_p ()
3602 && count
3603 == ENTRY_BLOCK_PTR_FOR_FN (DECL_STRUCT_FUNCTION (decl))->count
3604 && (!e->count.ipa_p ()
3605 && e->count.differs_from_p (gimple_bb (e->call_stmt)->count)))
3606 {
3607 error ("indirect call count does not match BB count");
3608 fprintf (stderr, "edge count: ");
3609 e->count.dump (stderr);
3610 fprintf (stderr, "\n bb count: ");
3611 gimple_bb (e->call_stmt)->count.dump (stderr);
3612 fprintf (stderr, "\n");
3613 error_found = true;
3614 }
3615 if (e->speculative
3616 && verify_speculative_call (e->caller, e->call_stmt, e->lto_stmt_uid,
3617 e))
3618 error_found = true;
3619 }
3620 for (i = 0; iterate_reference (i, ref); i++)
3621 {
3622 if (ref->stmt && ref->lto_stmt_uid)
3623 {
3624 error ("reference has both stmt and lto_stmt_uid set");
3625 error_found = true;
3626 }
3627 if (ref->speculative
3628 && verify_speculative_call (this, ref->stmt,
3629 ref->lto_stmt_uid, NULL))
3630 error_found = true;
3631 }
3632
3633 if (!callers && inlined_to)
3634 {
3635 error ("inlined_to pointer is set but no predecessors found");
3636 error_found = true;
3637 }
3638 if (inlined_to == this)
3639 {
3640 error ("inlined_to pointer refers to itself");
3641 error_found = true;
3642 }
3643
3644 if (clone_of)
3645 {
3646 cgraph_node *first_clone = clone_of->clones;
3647 if (first_clone != this)
3648 {
3649 if (prev_sibling_clone->clone_of != clone_of)
3650 {
3651 error ("cgraph_node has wrong clone_of");
3652 error_found = true;
3653 }
3654 }
3655 }
3656 if (clones)
3657 {
3658 cgraph_node *n;
3659 for (n = clones; n; n = n->next_sibling_clone)
3660 if (n->clone_of != this)
3661 break;
3662 if (n)
3663 {
3664 error ("cgraph_node has wrong clone list");
3665 error_found = true;
3666 }
3667 }
3668 if ((prev_sibling_clone || next_sibling_clone) && !clone_of)
3669 {
3670 error ("cgraph_node is in clone list but it is not clone");
3671 error_found = true;
3672 }
3673 if (!prev_sibling_clone && clone_of && clone_of->clones != this)
3674 {
3675 error ("cgraph_node has wrong prev_clone pointer");
3676 error_found = true;
3677 }
3678 if (prev_sibling_clone && prev_sibling_clone->next_sibling_clone != this)
3679 {
3680 error ("double linked list of clones corrupted");
3681 error_found = true;
3682 }
3683
3684 if (analyzed && alias)
3685 {
3686 bool ref_found = false;
3687 int i;
3688 ipa_ref *ref = NULL;
3689
3690 if (callees)
3691 {
3692 error ("Alias has call edges");
3693 error_found = true;
3694 }
3695 for (i = 0; iterate_reference (i, ref); i++)
3696 if (ref->use != IPA_REF_ALIAS)
3697 {
3698 error ("Alias has non-alias reference");
3699 error_found = true;
3700 }
3701 else if (ref_found)
3702 {
3703 error ("Alias has more than one alias reference");
3704 error_found = true;
3705 }
3706 else
3707 ref_found = true;
3708 if (!ref_found)
3709 {
3710 error ("Analyzed alias has no reference");
3711 error_found = true;
3712 }
3713 }
3714
3715 if (analyzed && thunk)
3716 {
3717 if (!callees)
3718 {
3719 error ("No edge out of thunk node");
3720 error_found = true;
3721 }
3722 else if (callees->next_callee)
3723 {
3724 error ("More than one edge out of thunk node");
3725 error_found = true;
3726 }
3727 if (gimple_has_body_p (decl) && !inlined_to)
3728 {
3729 error ("Thunk is not supposed to have body");
3730 error_found = true;
3731 }
3732 }
3733 else if (analyzed && gimple_has_body_p (decl)
3734 && !TREE_ASM_WRITTEN (decl)
3735 && (!DECL_EXTERNAL (decl) || inlined_to)
3736 && !flag_wpa)
3737 {
3738 if (this_cfun->cfg)
3739 {
3740 hash_set<gimple *> stmts;
3741
3742 /* Reach the trees by walking over the CFG, and note the
3743 enclosing basic-blocks in the call edges. */
3744 FOR_EACH_BB_FN (this_block, this_cfun)
3745 {
3746 for (gsi = gsi_start_phis (this_block);
3747 !gsi_end_p (gsi); gsi_next (&gsi))
3748 stmts.add (gsi_stmt (gsi));
3749 for (gsi = gsi_start_bb (this_block);
3750 !gsi_end_p (gsi);
3751 gsi_next (&gsi))
3752 {
3753 gimple *stmt = gsi_stmt (gsi);
3754 stmts.add (stmt);
3755 if (is_gimple_call (stmt))
3756 {
3757 cgraph_edge *e = get_edge (stmt);
3758 tree decl = gimple_call_fndecl (stmt);
3759 if (e)
3760 {
3761 if (e->aux)
3762 {
3763 error ("shared call_stmt:");
3764 cgraph_debug_gimple_stmt (this_cfun, stmt);
3765 error_found = true;
3766 }
3767 if (!e->indirect_unknown_callee)
3768 {
3769 if (e->verify_corresponds_to_fndecl (decl))
3770 {
3771 error ("edge points to wrong declaration:");
3772 debug_tree (e->callee->decl);
3773 fprintf (stderr," Instead of:");
3774 debug_tree (decl);
3775 error_found = true;
3776 }
3777 }
3778 else if (decl)
3779 {
3780 error ("an indirect edge with unknown callee "
3781 "corresponding to a call_stmt with "
3782 "a known declaration:");
3783 error_found = true;
3784 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3785 }
3786 e->aux = (void *)1;
3787 }
3788 else if (decl)
3789 {
3790 error ("missing callgraph edge for call stmt:");
3791 cgraph_debug_gimple_stmt (this_cfun, stmt);
3792 error_found = true;
3793 }
3794 }
3795 }
3796 }
3797 for (i = 0; iterate_reference (i, ref); i++)
3798 if (ref->stmt && !stmts.contains (ref->stmt))
3799 {
3800 error ("reference to dead statement");
3801 cgraph_debug_gimple_stmt (this_cfun, ref->stmt);
3802 error_found = true;
3803 }
3804 }
3805 else
3806 /* No CFG available?! */
3807 gcc_unreachable ();
3808
3809 for (e = callees; e; e = e->next_callee)
3810 {
3811 if (!e->aux && !e->speculative)
3812 {
3813 error ("edge %s->%s has no corresponding call_stmt",
3814 identifier_to_locale (e->caller->name ()),
3815 identifier_to_locale (e->callee->name ()));
3816 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3817 error_found = true;
3818 }
3819 e->aux = 0;
3820 }
3821 for (e = indirect_calls; e; e = e->next_callee)
3822 {
3823 if (!e->aux && !e->speculative)
3824 {
3825 error ("an indirect edge from %s has no corresponding call_stmt",
3826 identifier_to_locale (e->caller->name ()));
3827 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3828 error_found = true;
3829 }
3830 e->aux = 0;
3831 }
3832 }
3833
3834 if (nested_function_info *info = nested_function_info::get (this))
3835 {
3836 if (info->nested != NULL)
3837 {
3838 for (cgraph_node *n = info->nested; n != NULL;
3839 n = next_nested_function (n))
3840 {
3841 nested_function_info *ninfo = nested_function_info::get (n);
3842 if (ninfo->origin == NULL)
3843 {
3844 error ("missing origin for a node in a nested list");
3845 error_found = true;
3846 }
3847 else if (ninfo->origin != this)
3848 {
3849 error ("origin points to a different parent");
3850 error_found = true;
3851 break;
3852 }
3853 }
3854 }
3855 if (info->next_nested != NULL && info->origin == NULL)
3856 {
3857 error ("missing origin for a node in a nested list");
3858 error_found = true;
3859 }
3860 }
3861
3862 if (error_found)
3863 {
3864 dump (stderr);
3865 internal_error ("verify_cgraph_node failed");
3866 }
3867 timevar_pop (TV_CGRAPH_VERIFY);
3868 }
3869
3870 /* Verify whole cgraph structure. */
3871 DEBUG_FUNCTION void
3872 cgraph_node::verify_cgraph_nodes (void)
3873 {
3874 cgraph_node *node;
3875
3876 if (seen_error ())
3877 return;
3878
3879 FOR_EACH_FUNCTION (node)
3880 node->verify ();
3881 }
3882
3883 #if __GNUC__ >= 10
3884 # pragma GCC diagnostic pop
3885 #endif
3886
3887 /* Walk the alias chain to return the function cgraph_node is alias of.
3888 Walk through thunks, too.
3889 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3890 When REF is non-NULL, assume that reference happens in symbol REF
3891 when determining the availability. */
3892
3893 cgraph_node *
3894 cgraph_node::function_symbol (enum availability *availability,
3895 struct symtab_node *ref)
3896 {
3897 cgraph_node *node = ultimate_alias_target (availability, ref);
3898
3899 while (node->thunk)
3900 {
3901 enum availability a;
3902
3903 ref = node;
3904 node = node->callees->callee;
3905 node = node->ultimate_alias_target (availability ? &a : NULL, ref);
3906 if (availability && a < *availability)
3907 *availability = a;
3908 }
3909 return node;
3910 }
3911
3912 /* Walk the alias chain to return the function cgraph_node is alias of.
3913 Walk through non virtual thunks, too. Thus we return either a function
3914 or a virtual thunk node.
3915 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3916 When REF is non-NULL, assume that reference happens in symbol REF
3917 when determining the availability. */
3918
3919 cgraph_node *
3920 cgraph_node::function_or_virtual_thunk_symbol
3921 (enum availability *availability,
3922 struct symtab_node *ref)
3923 {
3924 cgraph_node *node = ultimate_alias_target (availability, ref);
3925
3926 while (node->thunk && !thunk_info::get (node)->virtual_offset_p)
3927 {
3928 enum availability a;
3929
3930 ref = node;
3931 node = node->callees->callee;
3932 node = node->ultimate_alias_target (availability ? &a : NULL, ref);
3933 if (availability && a < *availability)
3934 *availability = a;
3935 }
3936 return node;
3937 }
3938
3939 /* When doing LTO, read cgraph_node's body from disk if it is not already
3940 present. Also perform any necessary clone materializations. */
3941
3942 bool
3943 cgraph_node::get_untransformed_body ()
3944 {
3945 lto_file_decl_data *file_data;
3946 const char *data, *name;
3947 size_t len;
3948 tree decl = this->decl;
3949
3950 /* See if there is clone to be materialized.
3951 (inline clones does not need materialization, but we can be seeing
3952 an inline clone of real clone). */
3953 cgraph_node *p = this;
3954 for (cgraph_node *c = clone_of; c; c = c->clone_of)
3955 {
3956 if (c->decl != decl)
3957 p->materialize_clone ();
3958 p = c;
3959 }
3960
3961 /* Check if body is already there. Either we have gimple body or
3962 the function is thunk and in that case we set DECL_ARGUMENTS. */
3963 if (DECL_ARGUMENTS (decl) || gimple_has_body_p (decl))
3964 return false;
3965
3966 gcc_assert (in_lto_p && !DECL_RESULT (decl));
3967
3968 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3969
3970 file_data = lto_file_data;
3971 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
3972
3973 /* We may have renamed the declaration, e.g., a static function. */
3974 name = lto_get_decl_name_mapping (file_data, name);
3975 struct lto_in_decl_state *decl_state
3976 = lto_get_function_in_decl_state (file_data, decl);
3977
3978 cgraph_node *origin = this;
3979 while (origin->clone_of)
3980 origin = origin->clone_of;
3981
3982 int stream_order = origin->order - file_data->order_base;
3983 data = lto_get_section_data (file_data, LTO_section_function_body,
3984 name, stream_order, &len,
3985 decl_state->compressed);
3986 if (!data)
3987 fatal_error (input_location, "%s: section %s.%d is missing",
3988 file_data->file_name, name, stream_order);
3989
3990 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
3991
3992 if (!quiet_flag)
3993 fprintf (stderr, " in:%s", IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
3994 lto_input_function_body (file_data, this, data);
3995 lto_stats.num_function_bodies++;
3996 lto_free_section_data (file_data, LTO_section_function_body, name,
3997 data, len, decl_state->compressed);
3998 lto_free_function_in_decl_state_for_node (this);
3999 /* Keep lto file data so ipa-inline-analysis knows about cross module
4000 inlining. */
4001
4002 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
4003
4004 return true;
4005 }
4006
4007 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
4008 if it is not already present. When some IPA transformations are scheduled,
4009 apply them. */
4010
4011 bool
4012 cgraph_node::get_body (void)
4013 {
4014 bool updated;
4015
4016 updated = get_untransformed_body ();
4017
4018 /* Getting transformed body makes no sense for inline clones;
4019 we should never use this on real clones because they are materialized
4020 early.
4021 TODO: Materializing clones here will likely lead to smaller LTRANS
4022 footprint. */
4023 gcc_assert (!inlined_to && !clone_of);
4024 if (ipa_transforms_to_apply.exists ())
4025 {
4026 opt_pass *saved_current_pass = current_pass;
4027 FILE *saved_dump_file = dump_file;
4028 const char *saved_dump_file_name = dump_file_name;
4029 dump_flags_t saved_dump_flags = dump_flags;
4030 dump_file_name = NULL;
4031 set_dump_file (NULL);
4032
4033 push_cfun (DECL_STRUCT_FUNCTION (decl));
4034
4035 update_ssa (TODO_update_ssa_only_virtuals);
4036 execute_all_ipa_transforms (true);
4037 cgraph_edge::rebuild_edges ();
4038 free_dominance_info (CDI_DOMINATORS);
4039 free_dominance_info (CDI_POST_DOMINATORS);
4040 pop_cfun ();
4041 updated = true;
4042
4043 current_pass = saved_current_pass;
4044 set_dump_file (saved_dump_file);
4045 dump_file_name = saved_dump_file_name;
4046 dump_flags = saved_dump_flags;
4047 }
4048 return updated;
4049 }
4050
4051 /* Return the DECL_STRUCT_FUNCTION of the function. */
4052
4053 struct function *
4054 cgraph_node::get_fun () const
4055 {
4056 const cgraph_node *node = this;
4057 struct function *fun = DECL_STRUCT_FUNCTION (node->decl);
4058
4059 while (!fun && node->clone_of)
4060 {
4061 node = node->clone_of;
4062 fun = DECL_STRUCT_FUNCTION (node->decl);
4063 }
4064
4065 return fun;
4066 }
4067
4068 /* Reset all state within cgraph.c so that we can rerun the compiler
4069 within the same process. For use by toplev::finalize. */
4070
4071 void
4072 cgraph_c_finalize (void)
4073 {
4074 nested_function_info::release ();
4075 thunk_info::release ();
4076 clone_info::release ();
4077 symtab = NULL;
4078
4079 x_cgraph_nodes_queue = NULL;
4080
4081 cgraph_fnver_htab = NULL;
4082 version_info_node = NULL;
4083 }
4084
4085 /* A worker for call_for_symbol_and_aliases. */
4086
4087 bool
4088 cgraph_node::call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
4089 void *),
4090 void *data,
4091 bool include_overwritable)
4092 {
4093 ipa_ref *ref;
4094 FOR_EACH_ALIAS (this, ref)
4095 {
4096 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
4097 if (include_overwritable
4098 || alias->get_availability () > AVAIL_INTERPOSABLE)
4099 if (alias->call_for_symbol_and_aliases (callback, data,
4100 include_overwritable))
4101 return true;
4102 }
4103 return false;
4104 }
4105
4106 /* Return true if NODE has thunk. */
4107
4108 bool
4109 cgraph_node::has_thunk_p (cgraph_node *node, void *)
4110 {
4111 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
4112 if (e->caller->thunk)
4113 return true;
4114 return false;
4115 }
4116
4117 /* Expected frequency of executions within the function. */
4118
4119 sreal
4120 cgraph_edge::sreal_frequency ()
4121 {
4122 return count.to_sreal_scale (caller->inlined_to
4123 ? caller->inlined_to->count
4124 : caller->count);
4125 }
4126
4127
4128 /* During LTO stream in this can be used to check whether call can possibly
4129 be internal to the current translation unit. */
4130
4131 bool
4132 cgraph_edge::possibly_call_in_translation_unit_p (void)
4133 {
4134 gcc_checking_assert (in_lto_p && caller->prevailing_p ());
4135
4136 /* While incremental linking we may end up getting function body later. */
4137 if (flag_incremental_link == INCREMENTAL_LINK_LTO)
4138 return true;
4139
4140 /* We may be smarter here and avoid streaming in indirect calls we can't
4141 track, but that would require arranging streaming the indirect call
4142 summary first. */
4143 if (!callee)
4144 return true;
4145
4146 /* If callee is local to the original translation unit, it will be
4147 defined. */
4148 if (!TREE_PUBLIC (callee->decl) && !DECL_EXTERNAL (callee->decl))
4149 return true;
4150
4151 /* Otherwise we need to lookup prevailing symbol (symbol table is not merged,
4152 yet) and see if it is a definition. In fact we may also resolve aliases,
4153 but that is probably not too important. */
4154 symtab_node *node = callee;
4155 for (int n = 10; node->previous_sharing_asm_name && n ; n--)
4156 node = node->previous_sharing_asm_name;
4157 if (node->previous_sharing_asm_name)
4158 node = symtab_node::get_for_asmname (DECL_ASSEMBLER_NAME (callee->decl));
4159 gcc_assert (TREE_PUBLIC (node->decl));
4160 return node->get_availability () >= AVAIL_INTERPOSABLE;
4161 }
4162
4163 /* Return num_speculative_targets of this edge. */
4164
4165 int
4166 cgraph_edge::num_speculative_call_targets_p (void)
4167 {
4168 return indirect_info ? indirect_info->num_speculative_call_targets : 0;
4169 }
4170
4171 /* Check if function calls comdat local. This is used to recompute
4172 calls_comdat_local flag after function transformations. */
4173 bool
4174 cgraph_node::check_calls_comdat_local_p ()
4175 {
4176 for (cgraph_edge *e = callees; e; e = e->next_callee)
4177 if (e->inline_failed
4178 ? e->callee->comdat_local_p ()
4179 : e->callee->check_calls_comdat_local_p ())
4180 return true;
4181 return false;
4182 }
4183
4184 /* Return true if this node represents a former, i.e. an expanded, thunk. */
4185
4186 bool
4187 cgraph_node::former_thunk_p (void)
4188 {
4189 if (thunk)
4190 return false;
4191 thunk_info *i = thunk_info::get (this);
4192 if (!i)
4193 return false;
4194 gcc_checking_assert (i->fixed_offset || i->virtual_offset_p
4195 || i->indirect_offset);
4196 return true;
4197 }
4198
4199 /* A stashed copy of "symtab" for use by selftest::symbol_table_test.
4200 This needs to be a global so that it can be a GC root, and thus
4201 prevent the stashed copy from being garbage-collected if the GC runs
4202 during a symbol_table_test. */
4203
4204 symbol_table *saved_symtab;
4205
4206 #if CHECKING_P
4207
4208 namespace selftest {
4209
4210 /* class selftest::symbol_table_test. */
4211
4212 /* Constructor. Store the old value of symtab, and create a new one. */
4213
4214 symbol_table_test::symbol_table_test ()
4215 {
4216 gcc_assert (saved_symtab == NULL);
4217 saved_symtab = symtab;
4218 symtab = new (ggc_alloc<symbol_table> ()) symbol_table ();
4219 }
4220
4221 /* Destructor. Restore the old value of symtab. */
4222
4223 symbol_table_test::~symbol_table_test ()
4224 {
4225 gcc_assert (saved_symtab != NULL);
4226 symtab = saved_symtab;
4227 saved_symtab = NULL;
4228 }
4229
4230 /* Verify that symbol_table_test works. */
4231
4232 static void
4233 test_symbol_table_test ()
4234 {
4235 /* Simulate running two selftests involving symbol tables. */
4236 for (int i = 0; i < 2; i++)
4237 {
4238 symbol_table_test stt;
4239 tree test_decl = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL,
4240 get_identifier ("test_decl"),
4241 build_function_type_list (void_type_node,
4242 NULL_TREE));
4243 cgraph_node *node = cgraph_node::get_create (test_decl);
4244 gcc_assert (node);
4245
4246 /* Verify that the node has order 0 on both iterations,
4247 and thus that nodes have predictable dump names in selftests. */
4248 ASSERT_EQ (node->order, 0);
4249 ASSERT_STREQ (node->dump_name (), "test_decl/0");
4250 }
4251 }
4252
4253 /* Run all of the selftests within this file. */
4254
4255 void
4256 cgraph_c_tests ()
4257 {
4258 test_symbol_table_test ();
4259 }
4260
4261 } // namespace selftest
4262
4263 #endif /* CHECKING_P */
4264
4265 #include "gt-cgraph.h"