DWARF array bounds missing from C++ array definitions
[official-gcc.git] / gcc / cgraph.c
blob19158f08818e319a1377f376e062f43495ef3cd2
1 /* Callgraph handling code.
2 Copyright (C) 2003-2019 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
5 This file is part of GCC.
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.
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.
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/>. */
21 /* This file contains basic routines manipulating call graph
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. */
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 "params.h"
61 #include "context.h"
62 #include "gimplify.h"
63 #include "stringpool.h"
64 #include "attribs.h"
65 #include "selftest.h"
67 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
68 #include "tree-pass.h"
70 /* Queue of cgraph nodes scheduled to be lowered. */
71 symtab_node *x_cgraph_nodes_queue;
72 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
74 /* Symbol table global context. */
75 symbol_table *symtab;
77 /* List of hooks triggered on cgraph_edge events. */
78 struct cgraph_edge_hook_list {
79 cgraph_edge_hook hook;
80 void *data;
81 struct cgraph_edge_hook_list *next;
84 /* List of hooks triggered on cgraph_node events. */
85 struct cgraph_node_hook_list {
86 cgraph_node_hook hook;
87 void *data;
88 struct cgraph_node_hook_list *next;
91 /* List of hooks triggered on events involving two cgraph_edges. */
92 struct cgraph_2edge_hook_list {
93 cgraph_2edge_hook hook;
94 void *data;
95 struct cgraph_2edge_hook_list *next;
98 /* List of hooks triggered on events involving two cgraph_nodes. */
99 struct cgraph_2node_hook_list {
100 cgraph_2node_hook hook;
101 void *data;
102 struct cgraph_2node_hook_list *next;
105 /* Hash descriptor for cgraph_function_version_info. */
107 struct function_version_hasher : ggc_ptr_hash<cgraph_function_version_info>
109 static hashval_t hash (cgraph_function_version_info *);
110 static bool equal (cgraph_function_version_info *,
111 cgraph_function_version_info *);
114 /* Map a cgraph_node to cgraph_function_version_info using this htab.
115 The cgraph_function_version_info has a THIS_NODE field that is the
116 corresponding cgraph_node.. */
118 static GTY(()) hash_table<function_version_hasher> *cgraph_fnver_htab = NULL;
120 /* Hash function for cgraph_fnver_htab. */
121 hashval_t
122 function_version_hasher::hash (cgraph_function_version_info *ptr)
124 int uid = ptr->this_node->get_uid ();
125 return (hashval_t)(uid);
128 /* eq function for cgraph_fnver_htab. */
129 bool
130 function_version_hasher::equal (cgraph_function_version_info *n1,
131 cgraph_function_version_info *n2)
133 return n1->this_node->get_uid () == n2->this_node->get_uid ();
136 /* Mark as GC root all allocated nodes. */
137 static GTY(()) struct cgraph_function_version_info *
138 version_info_node = NULL;
140 /* Return true if NODE's address can be compared. */
142 bool
143 symtab_node::address_can_be_compared_p ()
145 /* Address of virtual tables and functions is never compared. */
146 if (DECL_VIRTUAL_P (decl))
147 return false;
148 /* Address of C++ cdtors is never compared. */
149 if (is_a <cgraph_node *> (this)
150 && (DECL_CXX_CONSTRUCTOR_P (decl)
151 || DECL_CXX_DESTRUCTOR_P (decl)))
152 return false;
153 /* Constant pool symbols addresses are never compared.
154 flag_merge_constants permits us to assume the same on readonly vars. */
155 if (is_a <varpool_node *> (this)
156 && (DECL_IN_CONSTANT_POOL (decl)
157 || (flag_merge_constants >= 2
158 && TREE_READONLY (decl) && !TREE_THIS_VOLATILE (decl))))
159 return false;
160 return true;
163 /* Get the cgraph_function_version_info node corresponding to node. */
164 cgraph_function_version_info *
165 cgraph_node::function_version (void)
167 cgraph_function_version_info key;
168 key.this_node = this;
170 if (cgraph_fnver_htab == NULL)
171 return NULL;
173 return cgraph_fnver_htab->find (&key);
176 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
177 corresponding to cgraph_node NODE. */
178 cgraph_function_version_info *
179 cgraph_node::insert_new_function_version (void)
181 version_info_node = NULL;
182 version_info_node = ggc_cleared_alloc<cgraph_function_version_info> ();
183 version_info_node->this_node = this;
185 if (cgraph_fnver_htab == NULL)
186 cgraph_fnver_htab = hash_table<function_version_hasher>::create_ggc (2);
188 *cgraph_fnver_htab->find_slot (version_info_node, INSERT)
189 = version_info_node;
190 return version_info_node;
193 /* Remove the cgraph_function_version_info node given by DECL_V. */
194 static void
195 delete_function_version (cgraph_function_version_info *decl_v)
197 if (decl_v == NULL)
198 return;
200 if (decl_v->prev != NULL)
201 decl_v->prev->next = decl_v->next;
203 if (decl_v->next != NULL)
204 decl_v->next->prev = decl_v->prev;
206 if (cgraph_fnver_htab != NULL)
207 cgraph_fnver_htab->remove_elt (decl_v);
210 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
211 DECL is a duplicate declaration. */
212 void
213 cgraph_node::delete_function_version_by_decl (tree decl)
215 cgraph_node *decl_node = cgraph_node::get (decl);
217 if (decl_node == NULL)
218 return;
220 delete_function_version (decl_node->function_version ());
222 decl_node->remove ();
225 /* Record that DECL1 and DECL2 are semantically identical function
226 versions. */
227 void
228 cgraph_node::record_function_versions (tree decl1, tree decl2)
230 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
231 cgraph_node *decl2_node = cgraph_node::get_create (decl2);
232 cgraph_function_version_info *decl1_v = NULL;
233 cgraph_function_version_info *decl2_v = NULL;
234 cgraph_function_version_info *before;
235 cgraph_function_version_info *after;
237 gcc_assert (decl1_node != NULL && decl2_node != NULL);
238 decl1_v = decl1_node->function_version ();
239 decl2_v = decl2_node->function_version ();
241 if (decl1_v != NULL && decl2_v != NULL)
242 return;
244 if (decl1_v == NULL)
245 decl1_v = decl1_node->insert_new_function_version ();
247 if (decl2_v == NULL)
248 decl2_v = decl2_node->insert_new_function_version ();
250 /* Chain decl2_v and decl1_v. All semantically identical versions
251 will be chained together. */
253 before = decl1_v;
254 after = decl2_v;
256 while (before->next != NULL)
257 before = before->next;
259 while (after->prev != NULL)
260 after= after->prev;
262 before->next = after;
263 after->prev = before;
266 /* Initialize callgraph dump file. */
268 void
269 symbol_table::initialize (void)
271 if (!dump_file)
272 dump_file = dump_begin (TDI_cgraph, NULL);
274 if (!ipa_clones_dump_file)
275 ipa_clones_dump_file = dump_begin (TDI_clones, NULL);
278 /* Allocate new callgraph node and insert it into basic data structures. */
280 cgraph_node *
281 symbol_table::create_empty (void)
283 cgraph_node *node = allocate_cgraph_symbol ();
285 node->type = SYMTAB_FUNCTION;
286 node->frequency = NODE_FREQUENCY_NORMAL;
287 node->count_materialization_scale = REG_BR_PROB_BASE;
288 cgraph_count++;
290 return node;
293 /* Register HOOK to be called with DATA on each removed edge. */
294 cgraph_edge_hook_list *
295 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook, void *data)
297 cgraph_edge_hook_list *entry;
298 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
300 entry = (cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
301 entry->hook = hook;
302 entry->data = data;
303 entry->next = NULL;
304 while (*ptr)
305 ptr = &(*ptr)->next;
306 *ptr = entry;
307 return entry;
310 /* Remove ENTRY from the list of hooks called on removing edges. */
311 void
312 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list *entry)
314 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
316 while (*ptr != entry)
317 ptr = &(*ptr)->next;
318 *ptr = entry->next;
319 free (entry);
322 /* Call all edge removal hooks. */
323 void
324 symbol_table::call_edge_removal_hooks (cgraph_edge *e)
326 cgraph_edge_hook_list *entry = m_first_edge_removal_hook;
327 while (entry)
329 entry->hook (e, entry->data);
330 entry = entry->next;
334 /* Register HOOK to be called with DATA on each removed node. */
335 cgraph_node_hook_list *
336 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook, void *data)
338 cgraph_node_hook_list *entry;
339 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
341 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
342 entry->hook = hook;
343 entry->data = data;
344 entry->next = NULL;
345 while (*ptr)
346 ptr = &(*ptr)->next;
347 *ptr = entry;
348 return entry;
351 /* Remove ENTRY from the list of hooks called on removing nodes. */
352 void
353 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list *entry)
355 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
357 while (*ptr != entry)
358 ptr = &(*ptr)->next;
359 *ptr = entry->next;
360 free (entry);
363 /* Call all node removal hooks. */
364 void
365 symbol_table::call_cgraph_removal_hooks (cgraph_node *node)
367 cgraph_node_hook_list *entry = m_first_cgraph_removal_hook;
368 while (entry)
370 entry->hook (node, entry->data);
371 entry = entry->next;
375 /* Call all node removal hooks. */
376 void
377 symbol_table::call_cgraph_insertion_hooks (cgraph_node *node)
379 cgraph_node_hook_list *entry = m_first_cgraph_insertion_hook;
380 while (entry)
382 entry->hook (node, entry->data);
383 entry = entry->next;
388 /* Register HOOK to be called with DATA on each inserted node. */
389 cgraph_node_hook_list *
390 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook, void *data)
392 cgraph_node_hook_list *entry;
393 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
395 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
396 entry->hook = hook;
397 entry->data = data;
398 entry->next = NULL;
399 while (*ptr)
400 ptr = &(*ptr)->next;
401 *ptr = entry;
402 return entry;
405 /* Remove ENTRY from the list of hooks called on inserted nodes. */
406 void
407 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list *entry)
409 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
411 while (*ptr != entry)
412 ptr = &(*ptr)->next;
413 *ptr = entry->next;
414 free (entry);
417 /* Register HOOK to be called with DATA on each duplicated edge. */
418 cgraph_2edge_hook_list *
419 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
421 cgraph_2edge_hook_list *entry;
422 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
424 entry = (cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
425 entry->hook = hook;
426 entry->data = data;
427 entry->next = NULL;
428 while (*ptr)
429 ptr = &(*ptr)->next;
430 *ptr = entry;
431 return entry;
434 /* Remove ENTRY from the list of hooks called on duplicating edges. */
435 void
436 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list *entry)
438 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
440 while (*ptr != entry)
441 ptr = &(*ptr)->next;
442 *ptr = entry->next;
443 free (entry);
446 /* Call all edge duplication hooks. */
447 void
448 symbol_table::call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)
450 cgraph_2edge_hook_list *entry = m_first_edge_duplicated_hook;
451 while (entry)
453 entry->hook (cs1, cs2, entry->data);
454 entry = entry->next;
458 /* Register HOOK to be called with DATA on each duplicated node. */
459 cgraph_2node_hook_list *
460 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook, void *data)
462 cgraph_2node_hook_list *entry;
463 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
465 entry = (cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
466 entry->hook = hook;
467 entry->data = data;
468 entry->next = NULL;
469 while (*ptr)
470 ptr = &(*ptr)->next;
471 *ptr = entry;
472 return entry;
475 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
476 void
477 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry)
479 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
481 while (*ptr != entry)
482 ptr = &(*ptr)->next;
483 *ptr = entry->next;
484 free (entry);
487 /* Call all node duplication hooks. */
488 void
489 symbol_table::call_cgraph_duplication_hooks (cgraph_node *node,
490 cgraph_node *node2)
492 cgraph_2node_hook_list *entry = m_first_cgraph_duplicated_hook;
493 while (entry)
495 entry->hook (node, node2, entry->data);
496 entry = entry->next;
500 /* Return cgraph node assigned to DECL. Create new one when needed. */
502 cgraph_node *
503 cgraph_node::create (tree decl)
505 cgraph_node *node = symtab->create_empty ();
506 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
508 node->decl = decl;
510 node->count = profile_count::uninitialized ();
512 if ((flag_openacc || flag_openmp)
513 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl)))
515 node->offloadable = 1;
516 if (ENABLE_OFFLOADING)
517 g->have_offload = true;
520 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
521 node->ifunc_resolver = true;
523 node->register_symbol ();
525 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
527 node->origin = cgraph_node::get_create (DECL_CONTEXT (decl));
528 node->next_nested = node->origin->nested;
529 node->origin->nested = node;
531 return node;
534 /* Try to find a call graph node for declaration DECL and if it does not exist
535 or if it corresponds to an inline clone, create a new one. */
537 cgraph_node *
538 cgraph_node::get_create (tree decl)
540 cgraph_node *first_clone = cgraph_node::get (decl);
542 if (first_clone && !first_clone->global.inlined_to)
543 return first_clone;
545 cgraph_node *node = cgraph_node::create (decl);
546 if (first_clone)
548 first_clone->clone_of = node;
549 node->clones = first_clone;
550 symtab->symtab_prevail_in_asm_name_hash (node);
551 node->decl->decl_with_vis.symtab_node = node;
552 if (dump_file)
553 fprintf (dump_file, "Introduced new external node "
554 "(%s) and turned into root of the clone tree.\n",
555 node->dump_name ());
557 else if (dump_file)
558 fprintf (dump_file, "Introduced new external node "
559 "(%s).\n", node->dump_name ());
560 return node;
563 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
564 the function body is associated with (not necessarily cgraph_node (DECL). */
566 cgraph_node *
567 cgraph_node::create_alias (tree alias, tree target)
569 cgraph_node *alias_node;
571 gcc_assert (TREE_CODE (target) == FUNCTION_DECL
572 || TREE_CODE (target) == IDENTIFIER_NODE);
573 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
574 alias_node = cgraph_node::get_create (alias);
575 gcc_assert (!alias_node->definition);
576 alias_node->alias_target = target;
577 alias_node->definition = true;
578 alias_node->alias = true;
579 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias)) != NULL)
580 alias_node->transparent_alias = alias_node->weakref = true;
581 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (alias)))
582 alias_node->ifunc_resolver = true;
583 return alias_node;
586 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
587 and NULL otherwise.
588 Same body aliases are output whenever the body of DECL is output,
589 and cgraph_node::get (ALIAS) transparently returns
590 cgraph_node::get (DECL). */
592 cgraph_node *
593 cgraph_node::create_same_body_alias (tree alias, tree decl)
595 cgraph_node *n;
597 /* If aliases aren't supported by the assembler, fail. */
598 if (!TARGET_SUPPORTS_ALIASES)
599 return NULL;
601 /* Langhooks can create same body aliases of symbols not defined.
602 Those are useless. Drop them on the floor. */
603 if (symtab->global_info_ready)
604 return NULL;
606 n = cgraph_node::create_alias (alias, decl);
607 n->cpp_implicit_alias = true;
608 if (symtab->cpp_implicit_aliases_done)
609 n->resolve_alias (cgraph_node::get (decl));
610 return n;
613 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
614 aliases DECL with an adjustments made into the first parameter.
615 See comments in struct cgraph_thunk_info for detail on the parameters. */
617 cgraph_node *
618 cgraph_node::create_thunk (tree alias, tree, bool this_adjusting,
619 HOST_WIDE_INT fixed_offset,
620 HOST_WIDE_INT virtual_value,
621 HOST_WIDE_INT indirect_offset,
622 tree virtual_offset,
623 tree real_alias)
625 cgraph_node *node;
627 node = cgraph_node::get (alias);
628 if (node)
629 node->reset ();
630 else
631 node = cgraph_node::create (alias);
633 /* Make sure that if VIRTUAL_OFFSET is in sync with VIRTUAL_VALUE. */
634 gcc_checking_assert (virtual_offset
635 ? virtual_value == wi::to_wide (virtual_offset)
636 : virtual_value == 0);
638 node->thunk.fixed_offset = fixed_offset;
639 node->thunk.virtual_value = virtual_value;
640 node->thunk.indirect_offset = indirect_offset;
641 node->thunk.alias = real_alias;
642 node->thunk.this_adjusting = this_adjusting;
643 node->thunk.virtual_offset_p = virtual_offset != NULL;
644 node->thunk.thunk_p = true;
645 node->definition = true;
647 return node;
650 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
651 Return NULL if there's no such node. */
653 cgraph_node *
654 cgraph_node::get_for_asmname (tree asmname)
656 /* We do not want to look at inline clones. */
657 for (symtab_node *node = symtab_node::get_for_asmname (asmname);
658 node;
659 node = node->next_sharing_asm_name)
661 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
662 if (cn && !cn->global.inlined_to)
663 return cn;
665 return NULL;
668 /* Returns a hash value for X (which really is a cgraph_edge). */
670 hashval_t
671 cgraph_edge_hasher::hash (cgraph_edge *e)
673 /* This is a really poor hash function, but it is what htab_hash_pointer
674 uses. */
675 return (hashval_t) ((intptr_t)e->call_stmt >> 3);
678 /* Returns a hash value for X (which really is a cgraph_edge). */
680 hashval_t
681 cgraph_edge_hasher::hash (gimple *call_stmt)
683 /* This is a really poor hash function, but it is what htab_hash_pointer
684 uses. */
685 return (hashval_t) ((intptr_t)call_stmt >> 3);
688 /* Return nonzero if the call_stmt of cgraph_edge X is stmt *Y. */
690 inline bool
691 cgraph_edge_hasher::equal (cgraph_edge *x, gimple *y)
693 return x->call_stmt == y;
696 /* Add call graph edge E to call site hash of its caller. */
698 static inline void
699 cgraph_update_edge_in_call_site_hash (cgraph_edge *e)
701 gimple *call = e->call_stmt;
702 *e->caller->call_site_hash->find_slot_with_hash
703 (call, cgraph_edge_hasher::hash (call), INSERT) = e;
706 /* Add call graph edge E to call site hash of its caller. */
708 static inline void
709 cgraph_add_edge_to_call_site_hash (cgraph_edge *e)
711 /* There are two speculative edges for every statement (one direct,
712 one indirect); always hash the direct one. */
713 if (e->speculative && e->indirect_unknown_callee)
714 return;
715 cgraph_edge **slot = e->caller->call_site_hash->find_slot_with_hash
716 (e->call_stmt, cgraph_edge_hasher::hash (e->call_stmt), INSERT);
717 if (*slot)
719 gcc_assert (((cgraph_edge *)*slot)->speculative);
720 if (e->callee)
721 *slot = e;
722 return;
724 gcc_assert (!*slot || e->speculative);
725 *slot = e;
728 /* Return the callgraph edge representing the GIMPLE_CALL statement
729 CALL_STMT. */
731 cgraph_edge *
732 cgraph_node::get_edge (gimple *call_stmt)
734 cgraph_edge *e, *e2;
735 int n = 0;
737 if (call_site_hash)
738 return call_site_hash->find_with_hash
739 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
741 /* This loop may turn out to be performance problem. In such case adding
742 hashtables into call nodes with very many edges is probably best
743 solution. It is not good idea to add pointer into CALL_EXPR itself
744 because we want to make possible having multiple cgraph nodes representing
745 different clones of the same body before the body is actually cloned. */
746 for (e = callees; e; e = e->next_callee)
748 if (e->call_stmt == call_stmt)
749 break;
750 n++;
753 if (!e)
754 for (e = indirect_calls; e; e = e->next_callee)
756 if (e->call_stmt == call_stmt)
757 break;
758 n++;
761 if (n > 100)
763 call_site_hash = hash_table<cgraph_edge_hasher>::create_ggc (120);
764 for (e2 = callees; e2; e2 = e2->next_callee)
765 cgraph_add_edge_to_call_site_hash (e2);
766 for (e2 = indirect_calls; e2; e2 = e2->next_callee)
767 cgraph_add_edge_to_call_site_hash (e2);
770 return e;
774 /* Change field call_stmt of edge to NEW_STMT.
775 If UPDATE_SPECULATIVE and E is any component of speculative
776 edge, then update all components. */
778 void
779 cgraph_edge::set_call_stmt (gcall *new_stmt, bool update_speculative)
781 tree decl;
783 /* Speculative edges has three component, update all of them
784 when asked to. */
785 if (update_speculative && speculative)
787 cgraph_edge *direct, *indirect;
788 ipa_ref *ref;
790 speculative_call_info (direct, indirect, ref);
791 direct->set_call_stmt (new_stmt, false);
792 indirect->set_call_stmt (new_stmt, false);
793 ref->stmt = new_stmt;
794 return;
797 /* Only direct speculative edges go to call_site_hash. */
798 if (caller->call_site_hash
799 && (!speculative || !indirect_unknown_callee))
801 caller->call_site_hash->remove_elt_with_hash
802 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
805 cgraph_edge *e = this;
807 call_stmt = new_stmt;
808 if (indirect_unknown_callee
809 && (decl = gimple_call_fndecl (new_stmt)))
811 /* Constant propagation (and possibly also inlining?) can turn an
812 indirect call into a direct one. */
813 cgraph_node *new_callee = cgraph_node::get (decl);
815 gcc_checking_assert (new_callee);
816 e = make_direct (new_callee);
819 function *fun = DECL_STRUCT_FUNCTION (e->caller->decl);
820 e->can_throw_external = stmt_can_throw_external (fun, new_stmt);
821 if (e->caller->call_site_hash)
822 cgraph_add_edge_to_call_site_hash (e);
825 /* Allocate a cgraph_edge structure and fill it with data according to the
826 parameters of which only CALLEE can be NULL (when creating an indirect call
827 edge). */
829 cgraph_edge *
830 symbol_table::create_edge (cgraph_node *caller, cgraph_node *callee,
831 gcall *call_stmt, profile_count count,
832 bool indir_unknown_callee)
834 cgraph_edge *edge;
836 /* LTO does not actually have access to the call_stmt since these
837 have not been loaded yet. */
838 if (call_stmt)
840 /* This is a rather expensive check possibly triggering
841 construction of call stmt hashtable. */
842 cgraph_edge *e;
843 gcc_checking_assert (!(e = caller->get_edge (call_stmt))
844 || e->speculative);
846 gcc_assert (is_gimple_call (call_stmt));
849 edge = ggc_alloc<cgraph_edge> ();
850 edge->m_summary_id = -1;
851 edges_count++;
853 gcc_assert (++edges_max_uid != 0);
854 edge->m_uid = edges_max_uid;
855 edge->aux = NULL;
856 edge->caller = caller;
857 edge->callee = callee;
858 edge->prev_caller = NULL;
859 edge->next_caller = NULL;
860 edge->prev_callee = NULL;
861 edge->next_callee = NULL;
862 edge->lto_stmt_uid = 0;
864 edge->count = count;
866 edge->call_stmt = call_stmt;
867 edge->can_throw_external
868 = call_stmt ? stmt_can_throw_external (DECL_STRUCT_FUNCTION (caller->decl),
869 call_stmt) : false;
870 if (call_stmt
871 && callee && callee->decl
872 && !gimple_check_call_matching_types (call_stmt, callee->decl,
873 false))
875 edge->inline_failed = CIF_MISMATCHED_ARGUMENTS;
876 edge->call_stmt_cannot_inline_p = true;
878 else
880 edge->inline_failed = CIF_FUNCTION_NOT_CONSIDERED;
881 edge->call_stmt_cannot_inline_p = false;
884 edge->indirect_info = NULL;
885 edge->indirect_inlining_edge = 0;
886 edge->speculative = false;
887 edge->indirect_unknown_callee = indir_unknown_callee;
888 if (opt_for_fn (edge->caller->decl, flag_devirtualize)
889 && call_stmt && DECL_STRUCT_FUNCTION (caller->decl))
890 edge->in_polymorphic_cdtor
891 = decl_maybe_in_construction_p (NULL, NULL, call_stmt,
892 caller->decl);
893 else
894 edge->in_polymorphic_cdtor = caller->thunk.thunk_p;
895 if (call_stmt && caller->call_site_hash)
896 cgraph_add_edge_to_call_site_hash (edge);
898 return edge;
901 /* Create edge from a given function to CALLEE in the cgraph. */
903 cgraph_edge *
904 cgraph_node::create_edge (cgraph_node *callee,
905 gcall *call_stmt, profile_count count)
907 cgraph_edge *edge = symtab->create_edge (this, callee, call_stmt, count,
908 false);
910 initialize_inline_failed (edge);
912 edge->next_caller = callee->callers;
913 if (callee->callers)
914 callee->callers->prev_caller = edge;
915 edge->next_callee = callees;
916 if (callees)
917 callees->prev_callee = edge;
918 callees = edge;
919 callee->callers = edge;
921 return edge;
924 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
926 cgraph_indirect_call_info *
927 cgraph_allocate_init_indirect_info (void)
929 cgraph_indirect_call_info *ii;
931 ii = ggc_cleared_alloc<cgraph_indirect_call_info> ();
932 ii->param_index = -1;
933 return ii;
936 /* Create an indirect edge with a yet-undetermined callee where the call
937 statement destination is a formal parameter of the caller with index
938 PARAM_INDEX. */
940 cgraph_edge *
941 cgraph_node::create_indirect_edge (gcall *call_stmt, int ecf_flags,
942 profile_count count,
943 bool compute_indirect_info)
945 cgraph_edge *edge = symtab->create_edge (this, NULL, call_stmt,
946 count, true);
947 tree target;
949 initialize_inline_failed (edge);
951 edge->indirect_info = cgraph_allocate_init_indirect_info ();
952 edge->indirect_info->ecf_flags = ecf_flags;
953 edge->indirect_info->vptr_changed = true;
955 /* Record polymorphic call info. */
956 if (compute_indirect_info
957 && call_stmt
958 && (target = gimple_call_fn (call_stmt))
959 && virtual_method_call_p (target))
961 ipa_polymorphic_call_context context (decl, target, call_stmt);
963 /* Only record types can have virtual calls. */
964 edge->indirect_info->polymorphic = true;
965 edge->indirect_info->param_index = -1;
966 edge->indirect_info->otr_token
967 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
968 edge->indirect_info->otr_type = obj_type_ref_class (target);
969 gcc_assert (TREE_CODE (edge->indirect_info->otr_type) == RECORD_TYPE);
970 edge->indirect_info->context = context;
973 edge->next_callee = indirect_calls;
974 if (indirect_calls)
975 indirect_calls->prev_callee = edge;
976 indirect_calls = edge;
978 return edge;
981 /* Remove the edge from the list of the callees of the caller. */
983 void
984 cgraph_edge::remove_caller (void)
986 if (prev_callee)
987 prev_callee->next_callee = next_callee;
988 if (next_callee)
989 next_callee->prev_callee = prev_callee;
990 if (!prev_callee)
992 if (indirect_unknown_callee)
993 caller->indirect_calls = next_callee;
994 else
995 caller->callees = next_callee;
997 if (caller->call_site_hash)
998 caller->call_site_hash->remove_elt_with_hash
999 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
1002 /* Put the edge onto the free list. */
1004 void
1005 symbol_table::free_edge (cgraph_edge *e)
1007 edges_count--;
1008 if (e->m_summary_id != -1)
1009 edge_released_summary_ids.safe_push (e->m_summary_id);
1011 if (e->indirect_info)
1012 ggc_free (e->indirect_info);
1013 ggc_free (e);
1016 /* Remove the edge in the cgraph. */
1018 void
1019 cgraph_edge::remove (void)
1021 /* Call all edge removal hooks. */
1022 symtab->call_edge_removal_hooks (this);
1024 if (!indirect_unknown_callee)
1025 /* Remove from callers list of the callee. */
1026 remove_callee ();
1028 /* Remove from callees list of the callers. */
1029 remove_caller ();
1031 /* Put the edge onto the free list. */
1032 symtab->free_edge (this);
1035 /* Turn edge into speculative call calling N2. Update
1036 the profile so the direct call is taken COUNT times
1037 with FREQUENCY.
1039 At clone materialization time, the indirect call E will
1040 be expanded as:
1042 if (call_dest == N2)
1043 n2 ();
1044 else
1045 call call_dest
1047 At this time the function just creates the direct call,
1048 the referencd representing the if conditional and attaches
1049 them all to the orginal indirect call statement.
1051 Return direct edge created. */
1053 cgraph_edge *
1054 cgraph_edge::make_speculative (cgraph_node *n2, profile_count direct_count)
1056 cgraph_node *n = caller;
1057 ipa_ref *ref = NULL;
1058 cgraph_edge *e2;
1060 if (dump_file)
1061 fprintf (dump_file, "Indirect call -> speculative call %s => %s\n",
1062 n->dump_name (), n2->dump_name ());
1063 speculative = true;
1064 e2 = n->create_edge (n2, call_stmt, direct_count);
1065 initialize_inline_failed (e2);
1066 e2->speculative = true;
1067 if (TREE_NOTHROW (n2->decl))
1068 e2->can_throw_external = false;
1069 else
1070 e2->can_throw_external = can_throw_external;
1071 e2->lto_stmt_uid = lto_stmt_uid;
1072 e2->in_polymorphic_cdtor = in_polymorphic_cdtor;
1073 count -= e2->count;
1074 symtab->call_edge_duplication_hooks (this, e2);
1075 ref = n->create_reference (n2, IPA_REF_ADDR, call_stmt);
1076 ref->lto_stmt_uid = lto_stmt_uid;
1077 ref->speculative = speculative;
1078 n2->mark_address_taken ();
1079 return e2;
1082 /* Speculative call consist of three components:
1083 1) an indirect edge representing the original call
1084 2) an direct edge representing the new call
1085 3) ADDR_EXPR reference representing the speculative check.
1086 All three components are attached to single statement (the indirect
1087 call) and if one of them exists, all of them must exist.
1089 Given speculative call edge, return all three components.
1092 void
1093 cgraph_edge::speculative_call_info (cgraph_edge *&direct,
1094 cgraph_edge *&indirect,
1095 ipa_ref *&reference)
1097 ipa_ref *ref;
1098 int i;
1099 cgraph_edge *e2;
1100 cgraph_edge *e = this;
1102 if (!e->indirect_unknown_callee)
1103 for (e2 = e->caller->indirect_calls;
1104 e2->call_stmt != e->call_stmt || e2->lto_stmt_uid != e->lto_stmt_uid;
1105 e2 = e2->next_callee)
1107 else
1109 e2 = e;
1110 /* We can take advantage of the call stmt hash. */
1111 if (e2->call_stmt)
1113 e = e->caller->get_edge (e2->call_stmt);
1114 gcc_assert (e->speculative && !e->indirect_unknown_callee);
1116 else
1117 for (e = e->caller->callees;
1118 e2->call_stmt != e->call_stmt
1119 || e2->lto_stmt_uid != e->lto_stmt_uid;
1120 e = e->next_callee)
1123 gcc_assert (e->speculative && e2->speculative);
1124 direct = e;
1125 indirect = e2;
1127 reference = NULL;
1128 for (i = 0; e->caller->iterate_reference (i, ref); i++)
1129 if (ref->speculative
1130 && ((ref->stmt && ref->stmt == e->call_stmt)
1131 || (!ref->stmt && ref->lto_stmt_uid == e->lto_stmt_uid)))
1133 reference = ref;
1134 break;
1137 /* Speculative edge always consist of all three components - direct edge,
1138 indirect and reference. */
1140 gcc_assert (e && e2 && ref);
1143 /* Speculative call edge turned out to be direct call to CALLE_DECL.
1144 Remove the speculative call sequence and return edge representing the call.
1145 It is up to caller to redirect the call as appropriate. */
1147 cgraph_edge *
1148 cgraph_edge::resolve_speculation (tree callee_decl)
1150 cgraph_edge *edge = this;
1151 cgraph_edge *e2;
1152 ipa_ref *ref;
1154 gcc_assert (edge->speculative);
1155 edge->speculative_call_info (e2, edge, ref);
1156 if (!callee_decl
1157 || !ref->referred->semantically_equivalent_p
1158 (symtab_node::get (callee_decl)))
1160 if (dump_file)
1162 if (callee_decl)
1164 fprintf (dump_file, "Speculative indirect call %s => %s has "
1165 "turned out to have contradicting known target ",
1166 edge->caller->dump_name (),
1167 e2->callee->dump_name ());
1168 print_generic_expr (dump_file, callee_decl);
1169 fprintf (dump_file, "\n");
1171 else
1173 fprintf (dump_file, "Removing speculative call %s => %s\n",
1174 edge->caller->dump_name (),
1175 e2->callee->dump_name ());
1179 else
1181 cgraph_edge *tmp = edge;
1182 if (dump_file)
1183 fprintf (dump_file, "Speculative call turned into direct call.\n");
1184 edge = e2;
1185 e2 = tmp;
1186 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1187 in the functions inlined through it. */
1189 edge->count += e2->count;
1190 edge->speculative = false;
1191 e2->speculative = false;
1192 ref->remove_reference ();
1193 if (e2->indirect_unknown_callee || e2->inline_failed)
1194 e2->remove ();
1195 else
1196 e2->callee->remove_symbol_and_inline_clones ();
1197 if (edge->caller->call_site_hash)
1198 cgraph_update_edge_in_call_site_hash (edge);
1199 return edge;
1202 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1203 CALLEE. DELTA is an integer constant that is to be added to the this
1204 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1206 cgraph_edge *
1207 cgraph_edge::make_direct (cgraph_node *callee)
1209 cgraph_edge *edge = this;
1210 gcc_assert (indirect_unknown_callee);
1212 /* If we are redirecting speculative call, make it non-speculative. */
1213 if (indirect_unknown_callee && speculative)
1215 edge = edge->resolve_speculation (callee->decl);
1217 /* On successful speculation just return the pre existing direct edge. */
1218 if (!edge->indirect_unknown_callee)
1219 return edge;
1222 indirect_unknown_callee = 0;
1223 ggc_free (indirect_info);
1224 indirect_info = NULL;
1226 /* Get the edge out of the indirect edge list. */
1227 if (prev_callee)
1228 prev_callee->next_callee = next_callee;
1229 if (next_callee)
1230 next_callee->prev_callee = prev_callee;
1231 if (!prev_callee)
1232 caller->indirect_calls = next_callee;
1234 /* Put it into the normal callee list */
1235 prev_callee = NULL;
1236 next_callee = caller->callees;
1237 if (caller->callees)
1238 caller->callees->prev_callee = edge;
1239 caller->callees = edge;
1241 /* Insert to callers list of the new callee. */
1242 edge->set_callee (callee);
1244 if (call_stmt
1245 && !gimple_check_call_matching_types (call_stmt, callee->decl, false))
1247 call_stmt_cannot_inline_p = true;
1248 inline_failed = CIF_MISMATCHED_ARGUMENTS;
1251 /* We need to re-determine the inlining status of the edge. */
1252 initialize_inline_failed (edge);
1253 return edge;
1256 /* If necessary, change the function declaration in the call statement
1257 associated with E so that it corresponds to the edge callee. */
1259 gimple *
1260 cgraph_edge::redirect_call_stmt_to_callee (void)
1262 cgraph_edge *e = this;
1264 tree decl = gimple_call_fndecl (e->call_stmt);
1265 gcall *new_stmt;
1266 gimple_stmt_iterator gsi;
1268 if (e->speculative)
1270 cgraph_edge *e2;
1271 gcall *new_stmt;
1272 ipa_ref *ref;
1274 e->speculative_call_info (e, e2, ref);
1275 /* If there already is an direct call (i.e. as a result of inliner's
1276 substitution), forget about speculating. */
1277 if (decl)
1278 e = e->resolve_speculation (decl);
1279 /* If types do not match, speculation was likely wrong.
1280 The direct edge was possibly redirected to the clone with a different
1281 signature. We did not update the call statement yet, so compare it
1282 with the reference that still points to the proper type. */
1283 else if (!gimple_check_call_matching_types (e->call_stmt,
1284 ref->referred->decl,
1285 true))
1287 if (dump_file)
1288 fprintf (dump_file, "Not expanding speculative call of %s -> %s\n"
1289 "Type mismatch.\n",
1290 e->caller->dump_name (),
1291 e->callee->dump_name ());
1292 e = e->resolve_speculation ();
1293 /* We are producing the final function body and will throw away the
1294 callgraph edges really soon. Reset the counts/frequencies to
1295 keep verifier happy in the case of roundoff errors. */
1296 e->count = gimple_bb (e->call_stmt)->count;
1298 /* Expand speculation into GIMPLE code. */
1299 else
1301 if (dump_file)
1303 fprintf (dump_file,
1304 "Expanding speculative call of %s -> %s count: ",
1305 e->caller->dump_name (),
1306 e->callee->dump_name ());
1307 e->count.dump (dump_file);
1308 fprintf (dump_file, "\n");
1310 gcc_assert (e2->speculative);
1311 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
1313 profile_probability prob = e->count.probability_in (e->count
1314 + e2->count);
1315 if (!prob.initialized_p ())
1316 prob = profile_probability::even ();
1317 new_stmt = gimple_ic (e->call_stmt,
1318 dyn_cast<cgraph_node *> (ref->referred),
1319 prob);
1320 e->speculative = false;
1321 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt,
1322 false);
1323 e->count = gimple_bb (e->call_stmt)->count;
1324 e2->speculative = false;
1325 e2->count = gimple_bb (e2->call_stmt)->count;
1326 ref->speculative = false;
1327 ref->stmt = NULL;
1328 /* Indirect edges are not both in the call site hash.
1329 get it updated. */
1330 if (e->caller->call_site_hash)
1331 cgraph_update_edge_in_call_site_hash (e2);
1332 pop_cfun ();
1333 /* Continue redirecting E to proper target. */
1338 if (e->indirect_unknown_callee
1339 || decl == e->callee->decl)
1340 return e->call_stmt;
1342 if (flag_checking && decl)
1344 cgraph_node *node = cgraph_node::get (decl);
1345 gcc_assert (!node || !node->clone.param_adjustments);
1348 if (symtab->dump_file)
1350 fprintf (symtab->dump_file, "updating call of %s -> %s: ",
1351 e->caller->dump_name (), e->callee->dump_name ());
1352 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1353 if (e->callee->clone.param_adjustments)
1354 e->callee->clone.param_adjustments->dump (symtab->dump_file);
1355 unsigned performed_len
1356 = vec_safe_length (e->caller->clone.performed_splits);
1357 if (performed_len > 0)
1358 fprintf (symtab->dump_file, "Performed splits records:\n");
1359 for (unsigned i = 0; i < performed_len; i++)
1361 ipa_param_performed_split *sm
1362 = &(*e->caller->clone.performed_splits)[i];
1363 print_node_brief (symtab->dump_file, " dummy_decl: ", sm->dummy_decl,
1364 TDF_UID);
1365 fprintf (symtab->dump_file, ", unit_offset: %u\n", sm->unit_offset);
1369 if (ipa_param_adjustments *padjs = e->callee->clone.param_adjustments)
1371 /* We need to defer cleaning EH info on the new statement to
1372 fixup-cfg. We may not have dominator information at this point
1373 and thus would end up with unreachable blocks and have no way
1374 to communicate that we need to run CFG cleanup then. */
1375 int lp_nr = lookup_stmt_eh_lp (e->call_stmt);
1376 if (lp_nr != 0)
1377 remove_stmt_from_eh_lp (e->call_stmt);
1379 tree old_fntype = gimple_call_fntype (e->call_stmt);
1380 new_stmt = padjs->modify_call (e->call_stmt,
1381 e->caller->clone.performed_splits,
1382 e->callee->decl, false);
1383 cgraph_node *origin = e->callee;
1384 while (origin->clone_of)
1385 origin = origin->clone_of;
1387 if ((origin->former_clone_of
1388 && old_fntype == TREE_TYPE (origin->former_clone_of))
1389 || old_fntype == TREE_TYPE (origin->decl))
1390 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1391 else
1393 tree new_fntype = padjs->build_new_function_type (old_fntype, true);
1394 gimple_call_set_fntype (new_stmt, new_fntype);
1397 if (lp_nr != 0)
1398 add_stmt_to_eh_lp (new_stmt, lp_nr);
1400 else
1402 new_stmt = e->call_stmt;
1403 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1404 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1407 /* If changing the call to __cxa_pure_virtual or similar noreturn function,
1408 adjust gimple_call_fntype too. */
1409 if (gimple_call_noreturn_p (new_stmt)
1410 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (e->callee->decl)))
1411 && TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl))
1412 && (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl)))
1413 == void_type_node))
1414 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1416 /* If the call becomes noreturn, remove the LHS if possible. */
1417 tree lhs = gimple_call_lhs (new_stmt);
1418 if (lhs
1419 && gimple_call_noreturn_p (new_stmt)
1420 && (VOID_TYPE_P (TREE_TYPE (gimple_call_fntype (new_stmt)))
1421 || should_remove_lhs_p (lhs)))
1423 if (TREE_CODE (lhs) == SSA_NAME)
1425 tree var = create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e->caller->decl),
1426 TREE_TYPE (lhs), NULL);
1427 var = get_or_create_ssa_default_def
1428 (DECL_STRUCT_FUNCTION (e->caller->decl), var);
1429 gimple *set_stmt = gimple_build_assign (lhs, var);
1430 gsi = gsi_for_stmt (new_stmt);
1431 gsi_insert_before_without_update (&gsi, set_stmt, GSI_SAME_STMT);
1432 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), set_stmt);
1434 gimple_call_set_lhs (new_stmt, NULL_TREE);
1435 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1438 /* If new callee has no static chain, remove it. */
1439 if (gimple_call_chain (new_stmt) && !DECL_STATIC_CHAIN (e->callee->decl))
1441 gimple_call_set_chain (new_stmt, NULL);
1442 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1445 maybe_remove_unused_call_args (DECL_STRUCT_FUNCTION (e->caller->decl),
1446 new_stmt);
1448 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt, false);
1450 if (symtab->dump_file)
1452 fprintf (symtab->dump_file, " updated to:");
1453 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1455 return new_stmt;
1458 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1459 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1460 of OLD_STMT if it was previously call statement.
1461 If NEW_STMT is NULL, the call has been dropped without any
1462 replacement. */
1464 static void
1465 cgraph_update_edges_for_call_stmt_node (cgraph_node *node,
1466 gimple *old_stmt, tree old_call,
1467 gimple *new_stmt)
1469 tree new_call = (new_stmt && is_gimple_call (new_stmt))
1470 ? gimple_call_fndecl (new_stmt) : 0;
1472 /* We are seeing indirect calls, then there is nothing to update. */
1473 if (!new_call && !old_call)
1474 return;
1475 /* See if we turned indirect call into direct call or folded call to one builtin
1476 into different builtin. */
1477 if (old_call != new_call)
1479 cgraph_edge *e = node->get_edge (old_stmt);
1480 cgraph_edge *ne = NULL;
1481 profile_count count;
1483 if (e)
1485 /* Keep calls marked as dead dead. */
1486 if (new_stmt && is_gimple_call (new_stmt) && e->callee
1487 && fndecl_built_in_p (e->callee->decl, BUILT_IN_UNREACHABLE))
1489 node->get_edge (old_stmt)->set_call_stmt
1490 (as_a <gcall *> (new_stmt));
1491 return;
1493 /* See if the edge is already there and has the correct callee. It
1494 might be so because of indirect inlining has already updated
1495 it. We also might've cloned and redirected the edge. */
1496 if (new_call && e->callee)
1498 cgraph_node *callee = e->callee;
1499 while (callee)
1501 if (callee->decl == new_call
1502 || callee->former_clone_of == new_call)
1504 e->set_call_stmt (as_a <gcall *> (new_stmt));
1505 return;
1507 callee = callee->clone_of;
1511 /* Otherwise remove edge and create new one; we can't simply redirect
1512 since function has changed, so inline plan and other information
1513 attached to edge is invalid. */
1514 count = e->count;
1515 if (e->indirect_unknown_callee || e->inline_failed)
1516 e->remove ();
1517 else
1518 e->callee->remove_symbol_and_inline_clones ();
1520 else if (new_call)
1522 /* We are seeing new direct call; compute profile info based on BB. */
1523 basic_block bb = gimple_bb (new_stmt);
1524 count = bb->count;
1527 if (new_call)
1529 ne = node->create_edge (cgraph_node::get_create (new_call),
1530 as_a <gcall *> (new_stmt), count);
1531 gcc_assert (ne->inline_failed);
1534 /* We only updated the call stmt; update pointer in cgraph edge.. */
1535 else if (old_stmt != new_stmt)
1536 node->get_edge (old_stmt)->set_call_stmt (as_a <gcall *> (new_stmt));
1539 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1540 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1541 of OLD_STMT before it was updated (updating can happen inplace). */
1543 void
1544 cgraph_update_edges_for_call_stmt (gimple *old_stmt, tree old_decl,
1545 gimple *new_stmt)
1547 cgraph_node *orig = cgraph_node::get (cfun->decl);
1548 cgraph_node *node;
1550 gcc_checking_assert (orig);
1551 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1552 if (orig->clones)
1553 for (node = orig->clones; node != orig;)
1555 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1556 if (node->clones)
1557 node = node->clones;
1558 else if (node->next_sibling_clone)
1559 node = node->next_sibling_clone;
1560 else
1562 while (node != orig && !node->next_sibling_clone)
1563 node = node->clone_of;
1564 if (node != orig)
1565 node = node->next_sibling_clone;
1571 /* Remove all callees from the node. */
1573 void
1574 cgraph_node::remove_callees (void)
1576 cgraph_edge *e, *f;
1578 /* It is sufficient to remove the edges from the lists of callers of
1579 the callees. The callee list of the node can be zapped with one
1580 assignment. */
1581 for (e = callees; e; e = f)
1583 f = e->next_callee;
1584 symtab->call_edge_removal_hooks (e);
1585 if (!e->indirect_unknown_callee)
1586 e->remove_callee ();
1587 symtab->free_edge (e);
1589 for (e = indirect_calls; e; e = f)
1591 f = e->next_callee;
1592 symtab->call_edge_removal_hooks (e);
1593 if (!e->indirect_unknown_callee)
1594 e->remove_callee ();
1595 symtab->free_edge (e);
1597 indirect_calls = NULL;
1598 callees = NULL;
1599 if (call_site_hash)
1601 call_site_hash->empty ();
1602 call_site_hash = NULL;
1606 /* Remove all callers from the node. */
1608 void
1609 cgraph_node::remove_callers (void)
1611 cgraph_edge *e, *f;
1613 /* It is sufficient to remove the edges from the lists of callees of
1614 the callers. The caller list of the node can be zapped with one
1615 assignment. */
1616 for (e = callers; e; e = f)
1618 f = e->next_caller;
1619 symtab->call_edge_removal_hooks (e);
1620 e->remove_caller ();
1621 symtab->free_edge (e);
1623 callers = NULL;
1626 /* Helper function for cgraph_release_function_body and free_lang_data.
1627 It releases body from function DECL without having to inspect its
1628 possibly non-existent symtab node. */
1630 void
1631 release_function_body (tree decl)
1633 function *fn = DECL_STRUCT_FUNCTION (decl);
1634 if (fn)
1636 if (fn->cfg
1637 && loops_for_fn (fn))
1639 fn->curr_properties &= ~PROP_loops;
1640 loop_optimizer_finalize (fn);
1642 if (fn->gimple_df)
1644 delete_tree_ssa (fn);
1645 fn->eh = NULL;
1647 if (fn->cfg)
1649 gcc_assert (!dom_info_available_p (fn, CDI_DOMINATORS));
1650 gcc_assert (!dom_info_available_p (fn, CDI_POST_DOMINATORS));
1651 delete_tree_cfg_annotations (fn);
1652 clear_edges (fn);
1653 fn->cfg = NULL;
1655 if (fn->value_histograms)
1656 free_histograms (fn);
1657 gimple_set_body (decl, NULL);
1658 /* Struct function hangs a lot of data that would leak if we didn't
1659 removed all pointers to it. */
1660 ggc_free (fn);
1661 DECL_STRUCT_FUNCTION (decl) = NULL;
1663 DECL_SAVED_TREE (decl) = NULL;
1666 /* Release memory used to represent body of function.
1667 Use this only for functions that are released before being translated to
1668 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1669 are free'd in final.c via free_after_compilation().
1670 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1672 void
1673 cgraph_node::release_body (bool keep_arguments)
1675 ipa_transforms_to_apply.release ();
1676 if (!used_as_abstract_origin && symtab->state != PARSING)
1678 DECL_RESULT (decl) = NULL;
1680 if (!keep_arguments)
1681 DECL_ARGUMENTS (decl) = NULL;
1683 /* If the node is abstract and needed, then do not clear
1684 DECL_INITIAL of its associated function declaration because it's
1685 needed to emit debug info later. */
1686 if (!used_as_abstract_origin && DECL_INITIAL (decl))
1687 DECL_INITIAL (decl) = error_mark_node;
1688 release_function_body (decl);
1689 if (lto_file_data)
1691 lto_free_function_in_decl_state_for_node (this);
1692 lto_file_data = NULL;
1696 /* Remove function from symbol table. */
1698 void
1699 cgraph_node::remove (void)
1701 if (symtab->ipa_clones_dump_file && symtab->cloned_nodes.contains (this))
1702 fprintf (symtab->ipa_clones_dump_file,
1703 "Callgraph removal;%s;%d;%s;%d;%d\n", asm_name (), order,
1704 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl),
1705 DECL_SOURCE_COLUMN (decl));
1707 symtab->call_cgraph_removal_hooks (this);
1708 remove_callers ();
1709 remove_callees ();
1710 ipa_transforms_to_apply.release ();
1711 delete_function_version (function_version ());
1713 /* Incremental inlining access removed nodes stored in the postorder list.
1715 force_output = false;
1716 forced_by_abi = false;
1717 cgraph_node *next;
1718 for (cgraph_node *n = nested; n; n = next)
1720 next = n->next_nested;
1721 n->origin = NULL;
1722 n->next_nested = NULL;
1724 nested = NULL;
1725 if (origin)
1727 cgraph_node **node2 = &origin->nested;
1729 while (*node2 != this)
1730 node2 = &(*node2)->next_nested;
1731 *node2 = next_nested;
1733 unregister ();
1734 if (prev_sibling_clone)
1735 prev_sibling_clone->next_sibling_clone = next_sibling_clone;
1736 else if (clone_of)
1737 clone_of->clones = next_sibling_clone;
1738 if (next_sibling_clone)
1739 next_sibling_clone->prev_sibling_clone = prev_sibling_clone;
1740 if (clones)
1742 cgraph_node *n, *next;
1744 if (clone_of)
1746 for (n = clones; n->next_sibling_clone; n = n->next_sibling_clone)
1747 n->clone_of = clone_of;
1748 n->clone_of = clone_of;
1749 n->next_sibling_clone = clone_of->clones;
1750 if (clone_of->clones)
1751 clone_of->clones->prev_sibling_clone = n;
1752 clone_of->clones = clones;
1754 else
1756 /* We are removing node with clones. This makes clones inconsistent,
1757 but assume they will be removed subsequently and just keep clone
1758 tree intact. This can happen in unreachable function removal since
1759 we remove unreachable functions in random order, not by bottom-up
1760 walk of clone trees. */
1761 for (n = clones; n; n = next)
1763 next = n->next_sibling_clone;
1764 n->next_sibling_clone = NULL;
1765 n->prev_sibling_clone = NULL;
1766 n->clone_of = NULL;
1771 /* While all the clones are removed after being proceeded, the function
1772 itself is kept in the cgraph even after it is compiled. Check whether
1773 we are done with this body and reclaim it proactively if this is the case.
1775 if (symtab->state != LTO_STREAMING)
1777 cgraph_node *n = cgraph_node::get (decl);
1778 if (!n
1779 || (!n->clones && !n->clone_of && !n->global.inlined_to
1780 && ((symtab->global_info_ready || in_lto_p)
1781 && (TREE_ASM_WRITTEN (n->decl)
1782 || DECL_EXTERNAL (n->decl)
1783 || !n->analyzed
1784 || (!flag_wpa && n->in_other_partition)))))
1785 release_body ();
1787 else
1789 lto_free_function_in_decl_state_for_node (this);
1790 lto_file_data = NULL;
1793 decl = NULL;
1794 if (call_site_hash)
1796 call_site_hash->empty ();
1797 call_site_hash = NULL;
1800 symtab->release_symbol (this);
1803 /* Likewise indicate that a node is having address taken. */
1805 void
1806 cgraph_node::mark_address_taken (void)
1808 /* Indirect inlining can figure out that all uses of the address are
1809 inlined. */
1810 if (global.inlined_to)
1812 gcc_assert (cfun->after_inlining);
1813 gcc_assert (callers->indirect_inlining_edge);
1814 return;
1816 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1817 IPA_REF_ADDR reference exists (and thus it should be set on node
1818 representing alias we take address of) and as a test whether address
1819 of the object was taken (and thus it should be set on node alias is
1820 referring to). We should remove the first use and the remove the
1821 following set. */
1822 address_taken = 1;
1823 cgraph_node *node = ultimate_alias_target ();
1824 node->address_taken = 1;
1827 /* Return local info for the compiled function. */
1829 cgraph_local_info *
1830 cgraph_node::local_info (tree decl)
1832 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1833 cgraph_node *node = get (decl);
1834 if (!node)
1835 return NULL;
1836 return &node->ultimate_alias_target ()->local;
1839 /* Return local info for the compiled function. */
1841 cgraph_rtl_info *
1842 cgraph_node::rtl_info (const_tree decl)
1844 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1845 cgraph_node *node = get (decl);
1846 if (!node)
1847 return NULL;
1848 enum availability avail;
1849 node = node->ultimate_alias_target (&avail);
1850 if (decl != current_function_decl
1851 && (avail < AVAIL_AVAILABLE
1852 || (node->decl != current_function_decl
1853 && !TREE_ASM_WRITTEN (node->decl))))
1854 return NULL;
1855 /* Allocate if it doesn't exist. */
1856 if (node->rtl == NULL)
1858 node->rtl = ggc_cleared_alloc<cgraph_rtl_info> ();
1859 node->rtl->function_used_regs = reg_class_contents[ALL_REGS];
1861 return node->rtl;
1864 /* Return a string describing the failure REASON. */
1866 const char*
1867 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1869 #undef DEFCIFCODE
1870 #define DEFCIFCODE(code, type, string) string,
1872 static const char *cif_string_table[CIF_N_REASONS] = {
1873 #include "cif-code.def"
1876 /* Signedness of an enum type is implementation defined, so cast it
1877 to unsigned before testing. */
1878 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1879 return cif_string_table[reason];
1882 /* Return a type describing the failure REASON. */
1884 cgraph_inline_failed_type_t
1885 cgraph_inline_failed_type (cgraph_inline_failed_t reason)
1887 #undef DEFCIFCODE
1888 #define DEFCIFCODE(code, type, string) type,
1890 static cgraph_inline_failed_type_t cif_type_table[CIF_N_REASONS] = {
1891 #include "cif-code.def"
1894 /* Signedness of an enum type is implementation defined, so cast it
1895 to unsigned before testing. */
1896 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1897 return cif_type_table[reason];
1900 /* Names used to print out the availability enum. */
1901 const char * const cgraph_availability_names[] =
1902 {"unset", "not_available", "overwritable", "available", "local"};
1904 /* Output flags of edge to a file F. */
1906 void
1907 cgraph_edge::dump_edge_flags (FILE *f)
1909 if (speculative)
1910 fprintf (f, "(speculative) ");
1911 if (!inline_failed)
1912 fprintf (f, "(inlined) ");
1913 if (call_stmt_cannot_inline_p)
1914 fprintf (f, "(call_stmt_cannot_inline_p) ");
1915 if (indirect_inlining_edge)
1916 fprintf (f, "(indirect_inlining) ");
1917 if (count.initialized_p ())
1919 fprintf (f, "(");
1920 count.dump (f);
1921 fprintf (f, ",");
1922 fprintf (f, "%.2f per call) ", sreal_frequency ().to_double ());
1924 if (can_throw_external)
1925 fprintf (f, "(can throw external) ");
1928 /* Dump call graph node to file F. */
1930 void
1931 cgraph_node::dump (FILE *f)
1933 cgraph_edge *edge;
1935 dump_base (f);
1937 if (global.inlined_to)
1938 fprintf (f, " Function %s is inline copy in %s\n",
1939 dump_name (),
1940 global.inlined_to->dump_name ());
1941 if (clone_of)
1942 fprintf (f, " Clone of %s\n", clone_of->dump_asm_name ());
1943 if (symtab->function_flags_ready)
1944 fprintf (f, " Availability: %s\n",
1945 cgraph_availability_names [get_availability ()]);
1947 if (profile_id)
1948 fprintf (f, " Profile id: %i\n",
1949 profile_id);
1950 cgraph_function_version_info *vi = function_version ();
1951 if (vi != NULL)
1953 fprintf (f, " Version info: ");
1954 if (vi->prev != NULL)
1956 fprintf (f, "prev: ");
1957 fprintf (f, "%s ", vi->prev->this_node->dump_asm_name ());
1959 if (vi->next != NULL)
1961 fprintf (f, "next: ");
1962 fprintf (f, "%s ", vi->next->this_node->dump_asm_name ());
1964 if (vi->dispatcher_resolver != NULL_TREE)
1965 fprintf (f, "dispatcher: %s",
1966 lang_hooks.decl_printable_name (vi->dispatcher_resolver, 2));
1968 fprintf (f, "\n");
1970 fprintf (f, " Function flags:");
1971 if (count.initialized_p ())
1973 fprintf (f, " count:");
1974 count.dump (f);
1976 if (tp_first_run > 0)
1977 fprintf (f, " first_run:%i", tp_first_run);
1978 if (origin)
1979 fprintf (f, " nested in:%s", origin->asm_name ());
1980 if (gimple_has_body_p (decl))
1981 fprintf (f, " body");
1982 if (process)
1983 fprintf (f, " process");
1984 if (local.local)
1985 fprintf (f, " local");
1986 if (local.redefined_extern_inline)
1987 fprintf (f, " redefined_extern_inline");
1988 if (only_called_at_startup)
1989 fprintf (f, " only_called_at_startup");
1990 if (only_called_at_exit)
1991 fprintf (f, " only_called_at_exit");
1992 if (tm_clone)
1993 fprintf (f, " tm_clone");
1994 if (calls_comdat_local)
1995 fprintf (f, " calls_comdat_local");
1996 if (icf_merged)
1997 fprintf (f, " icf_merged");
1998 if (merged_comdat)
1999 fprintf (f, " merged_comdat");
2000 if (split_part)
2001 fprintf (f, " split_part");
2002 if (indirect_call_target)
2003 fprintf (f, " indirect_call_target");
2004 if (nonfreeing_fn)
2005 fprintf (f, " nonfreeing_fn");
2006 if (DECL_STATIC_CONSTRUCTOR (decl))
2007 fprintf (f," static_constructor (priority:%i)", get_init_priority ());
2008 if (DECL_STATIC_DESTRUCTOR (decl))
2009 fprintf (f," static_destructor (priority:%i)", get_fini_priority ());
2010 if (frequency == NODE_FREQUENCY_HOT)
2011 fprintf (f, " hot");
2012 if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2013 fprintf (f, " unlikely_executed");
2014 if (frequency == NODE_FREQUENCY_EXECUTED_ONCE)
2015 fprintf (f, " executed_once");
2016 if (opt_for_fn (decl, optimize_size))
2017 fprintf (f, " optimize_size");
2018 if (parallelized_function)
2019 fprintf (f, " parallelized_function");
2020 if (DECL_IS_OPERATOR_NEW_P (decl))
2021 fprintf (f, " operator_new");
2022 if (DECL_IS_OPERATOR_DELETE_P (decl))
2023 fprintf (f, " operator_delete");
2026 fprintf (f, "\n");
2028 if (thunk.thunk_p)
2030 fprintf (f, " Thunk");
2031 if (thunk.alias)
2032 fprintf (f, " of %s (asm:%s)",
2033 lang_hooks.decl_printable_name (thunk.alias, 2),
2034 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2035 fprintf (f, " fixed offset %i virtual value %i indirect_offset %i "
2036 "has virtual offset %i\n",
2037 (int)thunk.fixed_offset,
2038 (int)thunk.virtual_value,
2039 (int)thunk.indirect_offset,
2040 (int)thunk.virtual_offset_p);
2042 else if (former_thunk_p ())
2043 fprintf (f, " Former thunk fixed offset %i virtual value %i "
2044 "indirect_offset %i has virtual offset %i\n",
2045 (int)thunk.fixed_offset,
2046 (int)thunk.virtual_value,
2047 (int)thunk.indirect_offset,
2048 (int)thunk.virtual_offset_p);
2049 if (alias && thunk.alias
2050 && DECL_P (thunk.alias))
2052 fprintf (f, " Alias of %s",
2053 lang_hooks.decl_printable_name (thunk.alias, 2));
2054 if (DECL_ASSEMBLER_NAME_SET_P (thunk.alias))
2055 fprintf (f, " (asm:%s)",
2056 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2057 fprintf (f, "\n");
2060 fprintf (f, " Called by: ");
2062 profile_count sum = profile_count::zero ();
2063 for (edge = callers; edge; edge = edge->next_caller)
2065 fprintf (f, "%s ", edge->caller->dump_name ());
2066 edge->dump_edge_flags (f);
2067 if (edge->count.initialized_p ())
2068 sum += edge->count.ipa ();
2071 fprintf (f, "\n Calls: ");
2072 for (edge = callees; edge; edge = edge->next_callee)
2074 fprintf (f, "%s ", edge->callee->dump_name ());
2075 edge->dump_edge_flags (f);
2077 fprintf (f, "\n");
2079 if (count.ipa ().initialized_p ())
2081 bool ok = true;
2082 bool min = false;
2083 ipa_ref *ref;
2085 FOR_EACH_ALIAS (this, ref)
2086 if (dyn_cast <cgraph_node *> (ref->referring)->count.initialized_p ())
2087 sum += dyn_cast <cgraph_node *> (ref->referring)->count.ipa ();
2089 if (global.inlined_to
2090 || (symtab->state < EXPANSION
2091 && ultimate_alias_target () == this && only_called_directly_p ()))
2092 ok = !count.ipa ().differs_from_p (sum);
2093 else if (count.ipa () > profile_count::from_gcov_type (100)
2094 && count.ipa () < sum.apply_scale (99, 100))
2095 ok = false, min = true;
2096 if (!ok)
2098 fprintf (f, " Invalid sum of caller counts ");
2099 sum.dump (f);
2100 if (min)
2101 fprintf (f, ", should be at most ");
2102 else
2103 fprintf (f, ", should be ");
2104 count.ipa ().dump (f);
2105 fprintf (f, "\n");
2109 for (edge = indirect_calls; edge; edge = edge->next_callee)
2111 if (edge->indirect_info->polymorphic)
2113 fprintf (f, " Polymorphic indirect call of type ");
2114 print_generic_expr (f, edge->indirect_info->otr_type, TDF_SLIM);
2115 fprintf (f, " token:%i", (int) edge->indirect_info->otr_token);
2117 else
2118 fprintf (f, " Indirect call");
2119 edge->dump_edge_flags (f);
2120 if (edge->indirect_info->param_index != -1)
2122 fprintf (f, " of param:%i", edge->indirect_info->param_index);
2123 if (edge->indirect_info->agg_contents)
2124 fprintf (f, " loaded from %s %s at offset %i",
2125 edge->indirect_info->member_ptr ? "member ptr" : "aggregate",
2126 edge->indirect_info->by_ref ? "passed by reference":"",
2127 (int)edge->indirect_info->offset);
2128 if (edge->indirect_info->vptr_changed)
2129 fprintf (f, " (vptr maybe changed)");
2131 fprintf (f, "\n");
2132 if (edge->indirect_info->polymorphic)
2133 edge->indirect_info->context.dump (f);
2137 /* Dump call graph node to file F in graphviz format. */
2139 void
2140 cgraph_node::dump_graphviz (FILE *f)
2142 cgraph_edge *edge;
2144 for (edge = callees; edge; edge = edge->next_callee)
2146 cgraph_node *callee = edge->callee;
2148 fprintf (f, "\t\"%s\" -> \"%s\"\n", name (), callee->name ());
2153 /* Dump call graph node NODE to stderr. */
2155 DEBUG_FUNCTION void
2156 cgraph_node::debug (void)
2158 dump (stderr);
2161 /* Dump the callgraph to file F. */
2163 void
2164 cgraph_node::dump_cgraph (FILE *f)
2166 cgraph_node *node;
2168 fprintf (f, "callgraph:\n\n");
2169 FOR_EACH_FUNCTION (node)
2170 node->dump (f);
2173 /* Return true when the DECL can possibly be inlined. */
2175 bool
2176 cgraph_function_possibly_inlined_p (tree decl)
2178 if (!symtab->global_info_ready)
2179 return !DECL_UNINLINABLE (decl);
2180 return DECL_POSSIBLY_INLINED (decl);
2183 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2184 void
2185 cgraph_node::unnest (void)
2187 cgraph_node **node2 = &origin->nested;
2188 gcc_assert (origin);
2190 while (*node2 != this)
2191 node2 = &(*node2)->next_nested;
2192 *node2 = next_nested;
2193 origin = NULL;
2196 /* Return function availability. See cgraph.h for description of individual
2197 return values. */
2198 enum availability
2199 cgraph_node::get_availability (symtab_node *ref)
2201 if (ref)
2203 cgraph_node *cref = dyn_cast <cgraph_node *> (ref);
2204 if (cref)
2205 ref = cref->global.inlined_to;
2207 enum availability avail;
2208 if (!analyzed)
2209 avail = AVAIL_NOT_AVAILABLE;
2210 else if (local.local)
2211 avail = AVAIL_LOCAL;
2212 else if (global.inlined_to)
2213 avail = AVAIL_AVAILABLE;
2214 else if (transparent_alias)
2215 ultimate_alias_target (&avail, ref);
2216 else if (ifunc_resolver
2217 || lookup_attribute ("noipa", DECL_ATTRIBUTES (decl)))
2218 avail = AVAIL_INTERPOSABLE;
2219 else if (!externally_visible)
2220 avail = AVAIL_AVAILABLE;
2221 /* If this is a reference from symbol itself and there are no aliases, we
2222 may be sure that the symbol was not interposed by something else because
2223 the symbol itself would be unreachable otherwise.
2225 Also comdat groups are always resolved in groups. */
2226 else if ((this == ref && !has_aliases_p ())
2227 || (ref && get_comdat_group ()
2228 && get_comdat_group () == ref->get_comdat_group ()))
2229 avail = AVAIL_AVAILABLE;
2230 /* Inline functions are safe to be analyzed even if their symbol can
2231 be overwritten at runtime. It is not meaningful to enforce any sane
2232 behavior on replacing inline function by different body. */
2233 else if (DECL_DECLARED_INLINE_P (decl))
2234 avail = AVAIL_AVAILABLE;
2236 /* If the function can be overwritten, return OVERWRITABLE. Take
2237 care at least of two notable extensions - the COMDAT functions
2238 used to share template instantiations in C++ (this is symmetric
2239 to code cp_cannot_inline_tree_fn and probably shall be shared and
2240 the inlinability hooks completely eliminated). */
2242 else if (decl_replaceable_p (decl) && !DECL_EXTERNAL (decl))
2243 avail = AVAIL_INTERPOSABLE;
2244 else avail = AVAIL_AVAILABLE;
2246 return avail;
2249 /* Worker for cgraph_node_can_be_local_p. */
2250 static bool
2251 cgraph_node_cannot_be_local_p_1 (cgraph_node *node, void *)
2253 return !(!node->force_output
2254 && ((DECL_COMDAT (node->decl)
2255 && !node->forced_by_abi
2256 && !node->used_from_object_file_p ()
2257 && !node->same_comdat_group)
2258 || !node->externally_visible));
2261 /* Return true if cgraph_node can be made local for API change.
2262 Extern inline functions and C++ COMDAT functions can be made local
2263 at the expense of possible code size growth if function is used in multiple
2264 compilation units. */
2265 bool
2266 cgraph_node::can_be_local_p (void)
2268 return (!address_taken
2269 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1,
2270 NULL, true));
2273 /* Call callback on cgraph_node, thunks and aliases associated to cgraph_node.
2274 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
2275 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
2276 skipped. */
2277 bool
2278 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback)
2279 (cgraph_node *, void *),
2280 void *data,
2281 bool include_overwritable,
2282 bool exclude_virtual_thunks)
2284 cgraph_edge *e;
2285 ipa_ref *ref;
2286 enum availability avail = AVAIL_AVAILABLE;
2288 if (include_overwritable
2289 || (avail = get_availability ()) > AVAIL_INTERPOSABLE)
2291 if (callback (this, data))
2292 return true;
2294 FOR_EACH_ALIAS (this, ref)
2296 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2297 if (include_overwritable
2298 || alias->get_availability () > AVAIL_INTERPOSABLE)
2299 if (alias->call_for_symbol_thunks_and_aliases (callback, data,
2300 include_overwritable,
2301 exclude_virtual_thunks))
2302 return true;
2304 if (avail <= AVAIL_INTERPOSABLE)
2305 return false;
2306 for (e = callers; e; e = e->next_caller)
2307 if (e->caller->thunk.thunk_p
2308 && (include_overwritable
2309 || e->caller->get_availability () > AVAIL_INTERPOSABLE)
2310 && !(exclude_virtual_thunks
2311 && e->caller->thunk.virtual_offset_p))
2312 if (e->caller->call_for_symbol_thunks_and_aliases (callback, data,
2313 include_overwritable,
2314 exclude_virtual_thunks))
2315 return true;
2317 return false;
2320 /* Worker to bring NODE local. */
2322 bool
2323 cgraph_node::make_local (cgraph_node *node, void *)
2325 gcc_checking_assert (node->can_be_local_p ());
2326 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2328 node->make_decl_local ();
2329 node->set_section (NULL);
2330 node->set_comdat_group (NULL);
2331 node->externally_visible = false;
2332 node->forced_by_abi = false;
2333 node->local.local = true;
2334 node->set_section (NULL);
2335 node->unique_name = ((node->resolution == LDPR_PREVAILING_DEF_IRONLY
2336 || node->resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
2337 && !flag_incremental_link);
2338 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2339 gcc_assert (node->get_availability () == AVAIL_LOCAL);
2341 return false;
2344 /* Bring cgraph node local. */
2346 void
2347 cgraph_node::make_local (void)
2349 call_for_symbol_thunks_and_aliases (cgraph_node::make_local, NULL, true);
2352 /* Worker to set nothrow flag. */
2354 static void
2355 set_nothrow_flag_1 (cgraph_node *node, bool nothrow, bool non_call,
2356 bool *changed)
2358 cgraph_edge *e;
2360 if (nothrow && !TREE_NOTHROW (node->decl))
2362 /* With non-call exceptions we can't say for sure if other function body
2363 was not possibly optimized to stil throw. */
2364 if (!non_call || node->binds_to_current_def_p ())
2366 TREE_NOTHROW (node->decl) = true;
2367 *changed = true;
2368 for (e = node->callers; e; e = e->next_caller)
2369 e->can_throw_external = false;
2372 else if (!nothrow && TREE_NOTHROW (node->decl))
2374 TREE_NOTHROW (node->decl) = false;
2375 *changed = true;
2377 ipa_ref *ref;
2378 FOR_EACH_ALIAS (node, ref)
2380 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2381 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2382 set_nothrow_flag_1 (alias, nothrow, non_call, changed);
2384 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2385 if (e->caller->thunk.thunk_p
2386 && (!nothrow || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2387 set_nothrow_flag_1 (e->caller, nothrow, non_call, changed);
2390 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2391 if any to NOTHROW. */
2393 bool
2394 cgraph_node::set_nothrow_flag (bool nothrow)
2396 bool changed = false;
2397 bool non_call = opt_for_fn (decl, flag_non_call_exceptions);
2399 if (!nothrow || get_availability () > AVAIL_INTERPOSABLE)
2400 set_nothrow_flag_1 (this, nothrow, non_call, &changed);
2401 else
2403 ipa_ref *ref;
2405 FOR_EACH_ALIAS (this, ref)
2407 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2408 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2409 set_nothrow_flag_1 (alias, nothrow, non_call, &changed);
2412 return changed;
2415 /* Worker to set malloc flag. */
2416 static void
2417 set_malloc_flag_1 (cgraph_node *node, bool malloc_p, bool *changed)
2419 if (malloc_p && !DECL_IS_MALLOC (node->decl))
2421 DECL_IS_MALLOC (node->decl) = true;
2422 *changed = true;
2425 ipa_ref *ref;
2426 FOR_EACH_ALIAS (node, ref)
2428 cgraph_node *alias = dyn_cast<cgraph_node *> (ref->referring);
2429 if (!malloc_p || alias->get_availability () > AVAIL_INTERPOSABLE)
2430 set_malloc_flag_1 (alias, malloc_p, changed);
2433 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2434 if (e->caller->thunk.thunk_p
2435 && (!malloc_p || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2436 set_malloc_flag_1 (e->caller, malloc_p, changed);
2439 /* Set DECL_IS_MALLOC on NODE's decl and on NODE's aliases if any. */
2441 bool
2442 cgraph_node::set_malloc_flag (bool malloc_p)
2444 bool changed = false;
2446 if (!malloc_p || get_availability () > AVAIL_INTERPOSABLE)
2447 set_malloc_flag_1 (this, malloc_p, &changed);
2448 else
2450 ipa_ref *ref;
2452 FOR_EACH_ALIAS (this, ref)
2454 cgraph_node *alias = dyn_cast<cgraph_node *> (ref->referring);
2455 if (!malloc_p || alias->get_availability () > AVAIL_INTERPOSABLE)
2456 set_malloc_flag_1 (alias, malloc_p, &changed);
2459 return changed;
2462 /* Worker to set_const_flag. */
2464 static void
2465 set_const_flag_1 (cgraph_node *node, bool set_const, bool looping,
2466 bool *changed)
2468 /* Static constructors and destructors without a side effect can be
2469 optimized out. */
2470 if (set_const && !looping)
2472 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2474 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2475 *changed = true;
2477 if (DECL_STATIC_DESTRUCTOR (node->decl))
2479 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2480 *changed = true;
2483 if (!set_const)
2485 if (TREE_READONLY (node->decl))
2487 TREE_READONLY (node->decl) = 0;
2488 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2489 *changed = true;
2492 else
2494 /* Consider function:
2496 bool a(int *p)
2498 return *p==*p;
2501 During early optimization we will turn this into:
2503 bool a(int *p)
2505 return true;
2508 Now if this function will be detected as CONST however when interposed
2509 it may end up being just pure. We always must assume the worst
2510 scenario here. */
2511 if (TREE_READONLY (node->decl))
2513 if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2515 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2516 *changed = true;
2519 else if (node->binds_to_current_def_p ())
2521 TREE_READONLY (node->decl) = true;
2522 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2523 DECL_PURE_P (node->decl) = false;
2524 *changed = true;
2526 else
2528 if (dump_file && (dump_flags & TDF_DETAILS))
2529 fprintf (dump_file, "Dropping state to PURE because function does "
2530 "not bind to current def.\n");
2531 if (!DECL_PURE_P (node->decl))
2533 DECL_PURE_P (node->decl) = true;
2534 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2535 *changed = true;
2537 else if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2539 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2540 *changed = true;
2545 ipa_ref *ref;
2546 FOR_EACH_ALIAS (node, ref)
2548 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2549 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2550 set_const_flag_1 (alias, set_const, looping, changed);
2552 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2553 if (e->caller->thunk.thunk_p
2554 && (!set_const || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2556 /* Virtual thunks access virtual offset in the vtable, so they can
2557 only be pure, never const. */
2558 if (set_const
2559 && (e->caller->thunk.virtual_offset_p
2560 || !node->binds_to_current_def_p (e->caller)))
2561 *changed |= e->caller->set_pure_flag (true, looping);
2562 else
2563 set_const_flag_1 (e->caller, set_const, looping, changed);
2567 /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST.
2568 If SET_CONST if false, clear the flag.
2570 When setting the flag be careful about possible interposition and
2571 do not set the flag for functions that can be interposet and set pure
2572 flag for functions that can bind to other definition.
2574 Return true if any change was done. */
2576 bool
2577 cgraph_node::set_const_flag (bool set_const, bool looping)
2579 bool changed = false;
2580 if (!set_const || get_availability () > AVAIL_INTERPOSABLE)
2581 set_const_flag_1 (this, set_const, looping, &changed);
2582 else
2584 ipa_ref *ref;
2586 FOR_EACH_ALIAS (this, ref)
2588 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2589 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2590 set_const_flag_1 (alias, set_const, looping, &changed);
2593 return changed;
2596 /* Info used by set_pure_flag_1. */
2598 struct set_pure_flag_info
2600 bool pure;
2601 bool looping;
2602 bool changed;
2605 /* Worker to set_pure_flag. */
2607 static bool
2608 set_pure_flag_1 (cgraph_node *node, void *data)
2610 struct set_pure_flag_info *info = (struct set_pure_flag_info *)data;
2611 /* Static constructors and destructors without a side effect can be
2612 optimized out. */
2613 if (info->pure && !info->looping)
2615 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2617 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2618 info->changed = true;
2620 if (DECL_STATIC_DESTRUCTOR (node->decl))
2622 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2623 info->changed = true;
2626 if (info->pure)
2628 if (!DECL_PURE_P (node->decl) && !TREE_READONLY (node->decl))
2630 DECL_PURE_P (node->decl) = true;
2631 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = info->looping;
2632 info->changed = true;
2634 else if (DECL_LOOPING_CONST_OR_PURE_P (node->decl)
2635 && !info->looping)
2637 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2638 info->changed = true;
2641 else
2643 if (DECL_PURE_P (node->decl))
2645 DECL_PURE_P (node->decl) = false;
2646 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2647 info->changed = true;
2650 return false;
2653 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2654 if any to PURE.
2656 When setting the flag, be careful about possible interposition.
2657 Return true if any change was done. */
2659 bool
2660 cgraph_node::set_pure_flag (bool pure, bool looping)
2662 struct set_pure_flag_info info = {pure, looping, false};
2663 call_for_symbol_thunks_and_aliases (set_pure_flag_1, &info, !pure, true);
2664 return info.changed;
2667 /* Return true when cgraph_node cannot return or throw and thus
2668 it is safe to ignore its side effects for IPA analysis. */
2670 bool
2671 cgraph_node::cannot_return_p (void)
2673 int flags = flags_from_decl_or_type (decl);
2674 if (!opt_for_fn (decl, flag_exceptions))
2675 return (flags & ECF_NORETURN) != 0;
2676 else
2677 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2678 == (ECF_NORETURN | ECF_NOTHROW));
2681 /* Return true when call of edge cannot lead to return from caller
2682 and thus it is safe to ignore its side effects for IPA analysis
2683 when computing side effects of the caller.
2684 FIXME: We could actually mark all edges that have no reaching
2685 patch to the exit block or throw to get better results. */
2686 bool
2687 cgraph_edge::cannot_lead_to_return_p (void)
2689 if (caller->cannot_return_p ())
2690 return true;
2691 if (indirect_unknown_callee)
2693 int flags = indirect_info->ecf_flags;
2694 if (!opt_for_fn (caller->decl, flag_exceptions))
2695 return (flags & ECF_NORETURN) != 0;
2696 else
2697 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2698 == (ECF_NORETURN | ECF_NOTHROW));
2700 else
2701 return callee->cannot_return_p ();
2704 /* Return true if the edge may be considered hot. */
2706 bool
2707 cgraph_edge::maybe_hot_p (void)
2709 if (!maybe_hot_count_p (NULL, count.ipa ()))
2710 return false;
2711 if (caller->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
2712 || (callee
2713 && callee->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED))
2714 return false;
2715 if (caller->frequency > NODE_FREQUENCY_UNLIKELY_EXECUTED
2716 && (callee
2717 && callee->frequency <= NODE_FREQUENCY_EXECUTED_ONCE))
2718 return false;
2719 if (opt_for_fn (caller->decl, optimize_size))
2720 return false;
2721 if (caller->frequency == NODE_FREQUENCY_HOT)
2722 return true;
2723 /* If profile is now known yet, be conservative.
2724 FIXME: this predicate is used by early inliner and can do better there. */
2725 if (symtab->state < IPA_SSA)
2726 return true;
2727 if (caller->frequency == NODE_FREQUENCY_EXECUTED_ONCE
2728 && sreal_frequency () * 2 < 3)
2729 return false;
2730 if (sreal_frequency () * PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION) <= 1)
2731 return false;
2732 return true;
2735 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2737 static bool
2738 nonremovable_p (cgraph_node *node, void *)
2740 return !node->can_remove_if_no_direct_calls_and_refs_p ();
2743 /* Return true if whole comdat group can be removed if there are no direct
2744 calls to THIS. */
2746 bool
2747 cgraph_node::can_remove_if_no_direct_calls_p (bool will_inline)
2749 struct ipa_ref *ref;
2751 /* For local symbols or non-comdat group it is the same as
2752 can_remove_if_no_direct_calls_p. */
2753 if (!externally_visible || !same_comdat_group)
2755 if (DECL_EXTERNAL (decl))
2756 return true;
2757 if (address_taken)
2758 return false;
2759 return !call_for_symbol_and_aliases (nonremovable_p, NULL, true);
2762 if (will_inline && address_taken)
2763 return false;
2765 /* Otheriwse check if we can remove the symbol itself and then verify
2766 that only uses of the comdat groups are direct call to THIS
2767 or its aliases. */
2768 if (!can_remove_if_no_direct_calls_and_refs_p ())
2769 return false;
2771 /* Check that all refs come from within the comdat group. */
2772 for (int i = 0; iterate_referring (i, ref); i++)
2773 if (ref->referring->get_comdat_group () != get_comdat_group ())
2774 return false;
2776 struct cgraph_node *target = ultimate_alias_target ();
2777 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2778 next != this; next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2780 if (!externally_visible)
2781 continue;
2782 if (!next->alias
2783 && !next->can_remove_if_no_direct_calls_and_refs_p ())
2784 return false;
2786 /* If we see different symbol than THIS, be sure to check calls. */
2787 if (next->ultimate_alias_target () != target)
2788 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2789 if (e->caller->get_comdat_group () != get_comdat_group ()
2790 || will_inline)
2791 return false;
2793 /* If function is not being inlined, we care only about
2794 references outside of the comdat group. */
2795 if (!will_inline)
2796 for (int i = 0; next->iterate_referring (i, ref); i++)
2797 if (ref->referring->get_comdat_group () != get_comdat_group ())
2798 return false;
2800 return true;
2803 /* Return true when function cgraph_node can be expected to be removed
2804 from program when direct calls in this compilation unit are removed.
2806 As a special case COMDAT functions are
2807 cgraph_can_remove_if_no_direct_calls_p while the are not
2808 cgraph_only_called_directly_p (it is possible they are called from other
2809 unit)
2811 This function behaves as cgraph_only_called_directly_p because eliminating
2812 all uses of COMDAT function does not make it necessarily disappear from
2813 the program unless we are compiling whole program or we do LTO. In this
2814 case we know we win since dynamic linking will not really discard the
2815 linkonce section. */
2817 bool
2818 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p
2819 (bool will_inline)
2821 gcc_assert (!global.inlined_to);
2822 if (DECL_EXTERNAL (decl))
2823 return true;
2825 if (!in_lto_p && !flag_whole_program)
2827 /* If the symbol is in comdat group, we need to verify that whole comdat
2828 group becomes unreachable. Technically we could skip references from
2829 within the group, too. */
2830 if (!only_called_directly_p ())
2831 return false;
2832 if (same_comdat_group && externally_visible)
2834 struct cgraph_node *target = ultimate_alias_target ();
2836 if (will_inline && address_taken)
2837 return true;
2838 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2839 next != this;
2840 next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2842 if (!externally_visible)
2843 continue;
2844 if (!next->alias
2845 && !next->only_called_directly_p ())
2846 return false;
2848 /* If we see different symbol than THIS,
2849 be sure to check calls. */
2850 if (next->ultimate_alias_target () != target)
2851 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2852 if (e->caller->get_comdat_group () != get_comdat_group ()
2853 || will_inline)
2854 return false;
2857 return true;
2859 else
2860 return can_remove_if_no_direct_calls_p (will_inline);
2864 /* Worker for cgraph_only_called_directly_p. */
2866 static bool
2867 cgraph_not_only_called_directly_p_1 (cgraph_node *node, void *)
2869 return !node->only_called_directly_or_aliased_p ();
2872 /* Return true when function cgraph_node and all its aliases are only called
2873 directly.
2874 i.e. it is not externally visible, address was not taken and
2875 it is not used in any other non-standard way. */
2877 bool
2878 cgraph_node::only_called_directly_p (void)
2880 gcc_assert (ultimate_alias_target () == this);
2881 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1,
2882 NULL, true);
2886 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2888 static bool
2889 collect_callers_of_node_1 (cgraph_node *node, void *data)
2891 vec<cgraph_edge *> *redirect_callers = (vec<cgraph_edge *> *)data;
2892 cgraph_edge *cs;
2893 enum availability avail;
2894 node->ultimate_alias_target (&avail);
2896 if (avail > AVAIL_INTERPOSABLE)
2897 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
2898 if (!cs->indirect_inlining_edge
2899 && !cs->caller->thunk.thunk_p)
2900 redirect_callers->safe_push (cs);
2901 return false;
2904 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2905 cgraph_node (i.e. are not overwritable). */
2907 vec<cgraph_edge *>
2908 cgraph_node::collect_callers (void)
2910 vec<cgraph_edge *> redirect_callers = vNULL;
2911 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1,
2912 &redirect_callers, false);
2913 return redirect_callers;
2917 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. Return
2918 optimistically true if this cannot be determined. */
2920 static bool
2921 clone_of_p (cgraph_node *node, cgraph_node *node2)
2923 node = node->ultimate_alias_target ();
2924 node2 = node2->ultimate_alias_target ();
2926 if (node2->clone_of == node
2927 || node2->former_clone_of == node->decl)
2928 return true;
2930 if (!node->thunk.thunk_p && !node->former_thunk_p ())
2932 while (node2 && node->decl != node2->decl)
2933 node2 = node2->clone_of;
2934 return node2 != NULL;
2937 /* There are no virtual clones of thunks so check former_clone_of or if we
2938 might have skipped thunks because this adjustments are no longer
2939 necessary. */
2940 while (node->thunk.thunk_p || node->former_thunk_p ())
2942 if (!node->thunk.this_adjusting)
2943 return false;
2944 /* In case of instrumented expanded thunks, which can have multiple calls
2945 in them, we do not know how to continue and just have to be
2946 optimistic. */
2947 if (node->callees->next_callee)
2948 return true;
2949 node = node->callees->callee->ultimate_alias_target ();
2951 if (!node2->clone.param_adjustments
2952 || node2->clone.param_adjustments->first_param_intact_p ())
2953 return false;
2954 if (node2->former_clone_of == node->decl)
2955 return true;
2957 cgraph_node *n2 = node2;
2958 while (n2 && node->decl != n2->decl)
2959 n2 = n2->clone_of;
2960 if (n2)
2961 return true;
2964 return false;
2967 /* Verify edge count and frequency. */
2969 bool
2970 cgraph_edge::verify_count ()
2972 bool error_found = false;
2973 if (!count.verify ())
2975 error ("caller edge count invalid");
2976 error_found = true;
2978 return error_found;
2981 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
2982 static void
2983 cgraph_debug_gimple_stmt (function *this_cfun, gimple *stmt)
2985 bool fndecl_was_null = false;
2986 /* debug_gimple_stmt needs correct cfun */
2987 if (cfun != this_cfun)
2988 set_cfun (this_cfun);
2989 /* ...and an actual current_function_decl */
2990 if (!current_function_decl)
2992 current_function_decl = this_cfun->decl;
2993 fndecl_was_null = true;
2995 debug_gimple_stmt (stmt);
2996 if (fndecl_was_null)
2997 current_function_decl = NULL;
3000 /* Verify that call graph edge corresponds to DECL from the associated
3001 statement. Return true if the verification should fail. */
3003 bool
3004 cgraph_edge::verify_corresponds_to_fndecl (tree decl)
3006 cgraph_node *node;
3008 if (!decl || callee->global.inlined_to)
3009 return false;
3010 if (symtab->state == LTO_STREAMING)
3011 return false;
3012 node = cgraph_node::get (decl);
3014 /* We do not know if a node from a different partition is an alias or what it
3015 aliases and therefore cannot do the former_clone_of check reliably. When
3016 body_removed is set, we have lost all information about what was alias or
3017 thunk of and also cannot proceed. */
3018 if (!node
3019 || node->body_removed
3020 || node->in_other_partition
3021 || callee->icf_merged
3022 || callee->in_other_partition)
3023 return false;
3025 node = node->ultimate_alias_target ();
3027 /* Optimizers can redirect unreachable calls or calls triggering undefined
3028 behavior to builtin_unreachable. */
3030 if (fndecl_built_in_p (callee->decl, BUILT_IN_UNREACHABLE))
3031 return false;
3033 if (callee->former_clone_of != node->decl
3034 && (node != callee->ultimate_alias_target ())
3035 && !clone_of_p (node, callee))
3036 return true;
3037 else
3038 return false;
3041 /* Disable warnings about missing quoting in GCC diagnostics for
3042 the verification errors. Their format strings don't follow GCC
3043 diagnostic conventions and the calls are ultimately followed by
3044 one to internal_error. */
3045 #if __GNUC__ >= 10
3046 # pragma GCC diagnostic push
3047 # pragma GCC diagnostic ignored "-Wformat-diag"
3048 #endif
3050 /* Verify cgraph nodes of given cgraph node. */
3051 DEBUG_FUNCTION void
3052 cgraph_node::verify_node (void)
3054 cgraph_edge *e;
3055 function *this_cfun = DECL_STRUCT_FUNCTION (decl);
3056 basic_block this_block;
3057 gimple_stmt_iterator gsi;
3058 bool error_found = false;
3060 if (seen_error ())
3061 return;
3063 timevar_push (TV_CGRAPH_VERIFY);
3064 error_found |= verify_base ();
3065 for (e = callees; e; e = e->next_callee)
3066 if (e->aux)
3068 error ("aux field set for edge %s->%s",
3069 identifier_to_locale (e->caller->name ()),
3070 identifier_to_locale (e->callee->name ()));
3071 error_found = true;
3073 if (!count.verify ())
3075 error ("cgraph count invalid");
3076 error_found = true;
3078 if (global.inlined_to && same_comdat_group)
3080 error ("inline clone in same comdat group list");
3081 error_found = true;
3083 if (!definition && !in_other_partition && local.local)
3085 error ("local symbols must be defined");
3086 error_found = true;
3088 if (global.inlined_to && externally_visible)
3090 error ("externally visible inline clone");
3091 error_found = true;
3093 if (global.inlined_to && address_taken)
3095 error ("inline clone with address taken");
3096 error_found = true;
3098 if (global.inlined_to && force_output)
3100 error ("inline clone is forced to output");
3101 error_found = true;
3103 for (e = indirect_calls; e; e = e->next_callee)
3105 if (e->aux)
3107 error ("aux field set for indirect edge from %s",
3108 identifier_to_locale (e->caller->name ()));
3109 error_found = true;
3111 if (!e->indirect_unknown_callee
3112 || !e->indirect_info)
3114 error ("An indirect edge from %s is not marked as indirect or has "
3115 "associated indirect_info, the corresponding statement is: ",
3116 identifier_to_locale (e->caller->name ()));
3117 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3118 error_found = true;
3121 bool check_comdat = comdat_local_p ();
3122 for (e = callers; e; e = e->next_caller)
3124 if (e->verify_count ())
3125 error_found = true;
3126 if (check_comdat
3127 && !in_same_comdat_group_p (e->caller))
3129 error ("comdat-local function called by %s outside its comdat",
3130 identifier_to_locale (e->caller->name ()));
3131 error_found = true;
3133 if (!e->inline_failed)
3135 if (global.inlined_to
3136 != (e->caller->global.inlined_to
3137 ? e->caller->global.inlined_to : e->caller))
3139 error ("inlined_to pointer is wrong");
3140 error_found = true;
3142 if (callers->next_caller)
3144 error ("multiple inline callers");
3145 error_found = true;
3148 else
3149 if (global.inlined_to)
3151 error ("inlined_to pointer set for noninline callers");
3152 error_found = true;
3155 for (e = callees; e; e = e->next_callee)
3157 if (e->verify_count ())
3158 error_found = true;
3159 if (gimple_has_body_p (e->caller->decl)
3160 && !e->caller->global.inlined_to
3161 && !e->speculative
3162 /* Optimized out calls are redirected to __builtin_unreachable. */
3163 && (e->count.nonzero_p ()
3164 || ! e->callee->decl
3165 || !fndecl_built_in_p (e->callee->decl, BUILT_IN_UNREACHABLE))
3166 && count
3167 == ENTRY_BLOCK_PTR_FOR_FN (DECL_STRUCT_FUNCTION (decl))->count
3168 && (!e->count.ipa_p ()
3169 && e->count.differs_from_p (gimple_bb (e->call_stmt)->count)))
3171 error ("caller edge count does not match BB count");
3172 fprintf (stderr, "edge count: ");
3173 e->count.dump (stderr);
3174 fprintf (stderr, "\n bb count: ");
3175 gimple_bb (e->call_stmt)->count.dump (stderr);
3176 fprintf (stderr, "\n");
3177 error_found = true;
3180 for (e = indirect_calls; e; e = e->next_callee)
3182 if (e->verify_count ())
3183 error_found = true;
3184 if (gimple_has_body_p (e->caller->decl)
3185 && !e->caller->global.inlined_to
3186 && !e->speculative
3187 && e->count.ipa_p ()
3188 && count
3189 == ENTRY_BLOCK_PTR_FOR_FN (DECL_STRUCT_FUNCTION (decl))->count
3190 && (!e->count.ipa_p ()
3191 && e->count.differs_from_p (gimple_bb (e->call_stmt)->count)))
3193 error ("indirect call count does not match BB count");
3194 fprintf (stderr, "edge count: ");
3195 e->count.dump (stderr);
3196 fprintf (stderr, "\n bb count: ");
3197 gimple_bb (e->call_stmt)->count.dump (stderr);
3198 fprintf (stderr, "\n");
3199 error_found = true;
3202 if (!callers && global.inlined_to)
3204 error ("inlined_to pointer is set but no predecessors found");
3205 error_found = true;
3207 if (global.inlined_to == this)
3209 error ("inlined_to pointer refers to itself");
3210 error_found = true;
3213 if (clone_of)
3215 cgraph_node *first_clone = clone_of->clones;
3216 if (first_clone != this)
3218 if (prev_sibling_clone->clone_of != clone_of)
3220 error ("cgraph_node has wrong clone_of");
3221 error_found = true;
3225 if (clones)
3227 cgraph_node *n;
3228 for (n = clones; n; n = n->next_sibling_clone)
3229 if (n->clone_of != this)
3230 break;
3231 if (n)
3233 error ("cgraph_node has wrong clone list");
3234 error_found = true;
3237 if ((prev_sibling_clone || next_sibling_clone) && !clone_of)
3239 error ("cgraph_node is in clone list but it is not clone");
3240 error_found = true;
3242 if (!prev_sibling_clone && clone_of && clone_of->clones != this)
3244 error ("cgraph_node has wrong prev_clone pointer");
3245 error_found = true;
3247 if (prev_sibling_clone && prev_sibling_clone->next_sibling_clone != this)
3249 error ("double linked list of clones corrupted");
3250 error_found = true;
3253 if (analyzed && alias)
3255 bool ref_found = false;
3256 int i;
3257 ipa_ref *ref = NULL;
3259 if (callees)
3261 error ("Alias has call edges");
3262 error_found = true;
3264 for (i = 0; iterate_reference (i, ref); i++)
3265 if (ref->use != IPA_REF_ALIAS)
3267 error ("Alias has non-alias reference");
3268 error_found = true;
3270 else if (ref_found)
3272 error ("Alias has more than one alias reference");
3273 error_found = true;
3275 else
3276 ref_found = true;
3277 if (!ref_found)
3279 error ("Analyzed alias has no reference");
3280 error_found = true;
3284 if (analyzed && thunk.thunk_p)
3286 if (!callees)
3288 error ("No edge out of thunk node");
3289 error_found = true;
3291 else if (callees->next_callee)
3293 error ("More than one edge out of thunk node");
3294 error_found = true;
3296 if (gimple_has_body_p (decl) && !global.inlined_to)
3298 error ("Thunk is not supposed to have body");
3299 error_found = true;
3302 else if (analyzed && gimple_has_body_p (decl)
3303 && !TREE_ASM_WRITTEN (decl)
3304 && (!DECL_EXTERNAL (decl) || global.inlined_to)
3305 && !flag_wpa)
3307 if (this_cfun->cfg)
3309 hash_set<gimple *> stmts;
3310 int i;
3311 ipa_ref *ref = NULL;
3313 /* Reach the trees by walking over the CFG, and note the
3314 enclosing basic-blocks in the call edges. */
3315 FOR_EACH_BB_FN (this_block, this_cfun)
3317 for (gsi = gsi_start_phis (this_block);
3318 !gsi_end_p (gsi); gsi_next (&gsi))
3319 stmts.add (gsi_stmt (gsi));
3320 for (gsi = gsi_start_bb (this_block);
3321 !gsi_end_p (gsi);
3322 gsi_next (&gsi))
3324 gimple *stmt = gsi_stmt (gsi);
3325 stmts.add (stmt);
3326 if (is_gimple_call (stmt))
3328 cgraph_edge *e = get_edge (stmt);
3329 tree decl = gimple_call_fndecl (stmt);
3330 if (e)
3332 if (e->aux)
3334 error ("shared call_stmt:");
3335 cgraph_debug_gimple_stmt (this_cfun, stmt);
3336 error_found = true;
3338 if (!e->indirect_unknown_callee)
3340 if (e->verify_corresponds_to_fndecl (decl))
3342 error ("edge points to wrong declaration:");
3343 debug_tree (e->callee->decl);
3344 fprintf (stderr," Instead of:");
3345 debug_tree (decl);
3346 error_found = true;
3349 else if (decl)
3351 error ("an indirect edge with unknown callee "
3352 "corresponding to a call_stmt with "
3353 "a known declaration:");
3354 error_found = true;
3355 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3357 e->aux = (void *)1;
3359 else if (decl)
3361 error ("missing callgraph edge for call stmt:");
3362 cgraph_debug_gimple_stmt (this_cfun, stmt);
3363 error_found = true;
3368 for (i = 0; iterate_reference (i, ref); i++)
3369 if (ref->stmt && !stmts.contains (ref->stmt))
3371 error ("reference to dead statement");
3372 cgraph_debug_gimple_stmt (this_cfun, ref->stmt);
3373 error_found = true;
3376 else
3377 /* No CFG available?! */
3378 gcc_unreachable ();
3380 for (e = callees; e; e = e->next_callee)
3382 if (!e->aux)
3384 error ("edge %s->%s has no corresponding call_stmt",
3385 identifier_to_locale (e->caller->name ()),
3386 identifier_to_locale (e->callee->name ()));
3387 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3388 error_found = true;
3390 e->aux = 0;
3392 for (e = indirect_calls; e; e = e->next_callee)
3394 if (!e->aux && !e->speculative)
3396 error ("an indirect edge from %s has no corresponding call_stmt",
3397 identifier_to_locale (e->caller->name ()));
3398 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3399 error_found = true;
3401 e->aux = 0;
3405 if (nested != NULL)
3407 for (cgraph_node *n = nested; n != NULL; n = n->next_nested)
3409 if (n->origin == NULL)
3411 error ("missing origin for a node in a nested list");
3412 error_found = true;
3414 else if (n->origin != this)
3416 error ("origin points to a different parent");
3417 error_found = true;
3418 break;
3422 if (next_nested != NULL && origin == NULL)
3424 error ("missing origin for a node in a nested list");
3425 error_found = true;
3428 if (error_found)
3430 dump (stderr);
3431 internal_error ("verify_cgraph_node failed");
3433 timevar_pop (TV_CGRAPH_VERIFY);
3436 /* Verify whole cgraph structure. */
3437 DEBUG_FUNCTION void
3438 cgraph_node::verify_cgraph_nodes (void)
3440 cgraph_node *node;
3442 if (seen_error ())
3443 return;
3445 FOR_EACH_FUNCTION (node)
3446 node->verify ();
3449 #if __GNUC__ >= 10
3450 # pragma GCC diagnostic pop
3451 #endif
3453 /* Walk the alias chain to return the function cgraph_node is alias of.
3454 Walk through thunks, too.
3455 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3456 When REF is non-NULL, assume that reference happens in symbol REF
3457 when determining the availability. */
3459 cgraph_node *
3460 cgraph_node::function_symbol (enum availability *availability,
3461 struct symtab_node *ref)
3463 cgraph_node *node = ultimate_alias_target (availability, ref);
3465 while (node->thunk.thunk_p)
3467 ref = node;
3468 node = node->callees->callee;
3469 if (availability)
3471 enum availability a;
3472 a = node->get_availability (ref);
3473 if (a < *availability)
3474 *availability = a;
3476 node = node->ultimate_alias_target (availability, ref);
3478 return node;
3481 /* Walk the alias chain to return the function cgraph_node is alias of.
3482 Walk through non virtual thunks, too. Thus we return either a function
3483 or a virtual thunk node.
3484 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3485 When REF is non-NULL, assume that reference happens in symbol REF
3486 when determining the availability. */
3488 cgraph_node *
3489 cgraph_node::function_or_virtual_thunk_symbol
3490 (enum availability *availability,
3491 struct symtab_node *ref)
3493 cgraph_node *node = ultimate_alias_target (availability, ref);
3495 while (node->thunk.thunk_p && !node->thunk.virtual_offset_p)
3497 ref = node;
3498 node = node->callees->callee;
3499 if (availability)
3501 enum availability a;
3502 a = node->get_availability (ref);
3503 if (a < *availability)
3504 *availability = a;
3506 node = node->ultimate_alias_target (availability, ref);
3508 return node;
3511 /* When doing LTO, read cgraph_node's body from disk if it is not already
3512 present. */
3514 bool
3515 cgraph_node::get_untransformed_body (void)
3517 lto_file_decl_data *file_data;
3518 const char *data, *name;
3519 size_t len;
3520 tree decl = this->decl;
3522 /* Check if body is already there. Either we have gimple body or
3523 the function is thunk and in that case we set DECL_ARGUMENTS. */
3524 if (DECL_ARGUMENTS (decl) || gimple_has_body_p (decl))
3525 return false;
3527 gcc_assert (in_lto_p && !DECL_RESULT (decl));
3529 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3531 file_data = lto_file_data;
3532 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
3534 /* We may have renamed the declaration, e.g., a static function. */
3535 name = lto_get_decl_name_mapping (file_data, name);
3536 struct lto_in_decl_state *decl_state
3537 = lto_get_function_in_decl_state (file_data, decl);
3539 data = lto_get_section_data (file_data, LTO_section_function_body,
3540 name, &len, decl_state->compressed);
3541 if (!data)
3542 fatal_error (input_location, "%s: section %s is missing",
3543 file_data->file_name,
3544 name);
3546 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
3548 if (!quiet_flag)
3549 fprintf (stderr, " in:%s", IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
3550 lto_input_function_body (file_data, this, data);
3551 lto_stats.num_function_bodies++;
3552 lto_free_section_data (file_data, LTO_section_function_body, name,
3553 data, len, decl_state->compressed);
3554 lto_free_function_in_decl_state_for_node (this);
3555 /* Keep lto file data so ipa-inline-analysis knows about cross module
3556 inlining. */
3558 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
3560 return true;
3563 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3564 if it is not already present. When some IPA transformations are scheduled,
3565 apply them. */
3567 bool
3568 cgraph_node::get_body (void)
3570 bool updated;
3572 updated = get_untransformed_body ();
3574 /* Getting transformed body makes no sense for inline clones;
3575 we should never use this on real clones because they are materialized
3576 early.
3577 TODO: Materializing clones here will likely lead to smaller LTRANS
3578 footprint. */
3579 gcc_assert (!global.inlined_to && !clone_of);
3580 if (ipa_transforms_to_apply.exists ())
3582 opt_pass *saved_current_pass = current_pass;
3583 FILE *saved_dump_file = dump_file;
3584 const char *saved_dump_file_name = dump_file_name;
3585 dump_flags_t saved_dump_flags = dump_flags;
3586 dump_file_name = NULL;
3587 set_dump_file (NULL);
3589 push_cfun (DECL_STRUCT_FUNCTION (decl));
3590 execute_all_ipa_transforms (true);
3591 cgraph_edge::rebuild_edges ();
3592 free_dominance_info (CDI_DOMINATORS);
3593 free_dominance_info (CDI_POST_DOMINATORS);
3594 pop_cfun ();
3595 updated = true;
3597 current_pass = saved_current_pass;
3598 set_dump_file (saved_dump_file);
3599 dump_file_name = saved_dump_file_name;
3600 dump_flags = saved_dump_flags;
3602 return updated;
3605 /* Return the DECL_STRUCT_FUNCTION of the function. */
3607 struct function *
3608 cgraph_node::get_fun () const
3610 const cgraph_node *node = this;
3611 struct function *fun = DECL_STRUCT_FUNCTION (node->decl);
3613 while (!fun && node->clone_of)
3615 node = node->clone_of;
3616 fun = DECL_STRUCT_FUNCTION (node->decl);
3619 return fun;
3622 /* Verify if the type of the argument matches that of the function
3623 declaration. If we cannot verify this or there is a mismatch,
3624 return false. */
3626 static bool
3627 gimple_check_call_args (gimple *stmt, tree fndecl, bool args_count_match)
3629 tree parms, p;
3630 unsigned int i, nargs;
3632 /* Calls to internal functions always match their signature. */
3633 if (gimple_call_internal_p (stmt))
3634 return true;
3636 nargs = gimple_call_num_args (stmt);
3638 /* Get argument types for verification. */
3639 if (fndecl)
3640 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
3641 else
3642 parms = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
3644 /* Verify if the type of the argument matches that of the function
3645 declaration. If we cannot verify this or there is a mismatch,
3646 return false. */
3647 if (fndecl && DECL_ARGUMENTS (fndecl))
3649 for (i = 0, p = DECL_ARGUMENTS (fndecl);
3650 i < nargs;
3651 i++, p = DECL_CHAIN (p))
3653 tree arg;
3654 /* We cannot distinguish a varargs function from the case
3655 of excess parameters, still deferring the inlining decision
3656 to the callee is possible. */
3657 if (!p)
3658 break;
3659 arg = gimple_call_arg (stmt, i);
3660 if (p == error_mark_node
3661 || DECL_ARG_TYPE (p) == error_mark_node
3662 || arg == error_mark_node
3663 || (!types_compatible_p (DECL_ARG_TYPE (p), TREE_TYPE (arg))
3664 && !fold_convertible_p (DECL_ARG_TYPE (p), arg)))
3665 return false;
3667 if (args_count_match && p)
3668 return false;
3670 else if (parms)
3672 for (i = 0, p = parms; i < nargs; i++, p = TREE_CHAIN (p))
3674 tree arg;
3675 /* If this is a varargs function defer inlining decision
3676 to callee. */
3677 if (!p)
3678 break;
3679 arg = gimple_call_arg (stmt, i);
3680 if (TREE_VALUE (p) == error_mark_node
3681 || arg == error_mark_node
3682 || TREE_CODE (TREE_VALUE (p)) == VOID_TYPE
3683 || (!types_compatible_p (TREE_VALUE (p), TREE_TYPE (arg))
3684 && !fold_convertible_p (TREE_VALUE (p), arg)))
3685 return false;
3688 else
3690 if (nargs != 0)
3691 return false;
3693 return true;
3696 /* Verify if the type of the argument and lhs of CALL_STMT matches
3697 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3698 true, the arg count needs to be the same.
3699 If we cannot verify this or there is a mismatch, return false. */
3701 bool
3702 gimple_check_call_matching_types (gimple *call_stmt, tree callee,
3703 bool args_count_match)
3705 tree lhs;
3707 if ((DECL_RESULT (callee)
3708 && !DECL_BY_REFERENCE (DECL_RESULT (callee))
3709 && (lhs = gimple_call_lhs (call_stmt)) != NULL_TREE
3710 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee)),
3711 TREE_TYPE (lhs))
3712 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee)), lhs))
3713 || !gimple_check_call_args (call_stmt, callee, args_count_match))
3714 return false;
3715 return true;
3718 /* Reset all state within cgraph.c so that we can rerun the compiler
3719 within the same process. For use by toplev::finalize. */
3721 void
3722 cgraph_c_finalize (void)
3724 symtab = NULL;
3726 x_cgraph_nodes_queue = NULL;
3728 cgraph_fnver_htab = NULL;
3729 version_info_node = NULL;
3732 /* A wroker for call_for_symbol_and_aliases. */
3734 bool
3735 cgraph_node::call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
3736 void *),
3737 void *data,
3738 bool include_overwritable)
3740 ipa_ref *ref;
3741 FOR_EACH_ALIAS (this, ref)
3743 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
3744 if (include_overwritable
3745 || alias->get_availability () > AVAIL_INTERPOSABLE)
3746 if (alias->call_for_symbol_and_aliases (callback, data,
3747 include_overwritable))
3748 return true;
3750 return false;
3753 /* Return true if NODE has thunk. */
3755 bool
3756 cgraph_node::has_thunk_p (cgraph_node *node, void *)
3758 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
3759 if (e->caller->thunk.thunk_p)
3760 return true;
3761 return false;
3764 /* Expected frequency of executions within the function. */
3766 sreal
3767 cgraph_edge::sreal_frequency ()
3769 return count.to_sreal_scale (caller->global.inlined_to
3770 ? caller->global.inlined_to->count
3771 : caller->count);
3775 /* During LTO stream in this can be used to check whether call can possibly
3776 be internal to the current translation unit. */
3778 bool
3779 cgraph_edge::possibly_call_in_translation_unit_p (void)
3781 gcc_checking_assert (in_lto_p && caller->prevailing_p ());
3783 /* While incremental linking we may end up getting function body later. */
3784 if (flag_incremental_link == INCREMENTAL_LINK_LTO)
3785 return true;
3787 /* We may be smarter here and avoid stremaing in indirect calls we can't
3788 track, but that would require arranging stremaing the indirect call
3789 summary first. */
3790 if (!callee)
3791 return true;
3793 /* If calle is local to the original translation unit, it will be defined. */
3794 if (!TREE_PUBLIC (callee->decl) && !DECL_EXTERNAL (callee->decl))
3795 return true;
3797 /* Otherwise we need to lookup prevailing symbol (symbol table is not merged,
3798 yet) and see if it is a definition. In fact we may also resolve aliases,
3799 but that is probably not too important. */
3800 symtab_node *node = callee;
3801 for (int n = 10; node->previous_sharing_asm_name && n ; n--)
3802 node = node->previous_sharing_asm_name;
3803 if (node->previous_sharing_asm_name)
3804 node = symtab_node::get_for_asmname (DECL_ASSEMBLER_NAME (callee->decl));
3805 gcc_assert (TREE_PUBLIC (node->decl));
3806 return node->get_availability () >= AVAIL_AVAILABLE;
3809 /* A stashed copy of "symtab" for use by selftest::symbol_table_test.
3810 This needs to be a global so that it can be a GC root, and thus
3811 prevent the stashed copy from being garbage-collected if the GC runs
3812 during a symbol_table_test. */
3814 symbol_table *saved_symtab;
3816 #if CHECKING_P
3818 namespace selftest {
3820 /* class selftest::symbol_table_test. */
3822 /* Constructor. Store the old value of symtab, and create a new one. */
3824 symbol_table_test::symbol_table_test ()
3826 gcc_assert (saved_symtab == NULL);
3827 saved_symtab = symtab;
3828 symtab = new (ggc_cleared_alloc <symbol_table> ()) symbol_table ();
3831 /* Destructor. Restore the old value of symtab. */
3833 symbol_table_test::~symbol_table_test ()
3835 gcc_assert (saved_symtab != NULL);
3836 symtab = saved_symtab;
3837 saved_symtab = NULL;
3840 /* Verify that symbol_table_test works. */
3842 static void
3843 test_symbol_table_test ()
3845 /* Simulate running two selftests involving symbol tables. */
3846 for (int i = 0; i < 2; i++)
3848 symbol_table_test stt;
3849 tree test_decl = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL,
3850 get_identifier ("test_decl"),
3851 build_function_type_list (void_type_node,
3852 NULL_TREE));
3853 cgraph_node *node = cgraph_node::get_create (test_decl);
3854 gcc_assert (node);
3856 /* Verify that the node has order 0 on both iterations,
3857 and thus that nodes have predictable dump names in selftests. */
3858 ASSERT_EQ (node->order, 0);
3859 ASSERT_STREQ (node->dump_name (), "test_decl/0");
3863 /* Run all of the selftests within this file. */
3865 void
3866 cgraph_c_tests ()
3868 test_symbol_table_test ();
3871 } // namespace selftest
3873 #endif /* CHECKING_P */
3875 #include "gt-cgraph.h"