Ignore properly -mdirect-move (PR target/87164).
[official-gcc.git] / gcc / cgraph.c
blob148f29ea749daef482a6b094a0510beaded8d49e
1 /* Callgraph handling code.
2 Copyright (C) 2003-2018 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"
66 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
67 #include "tree-pass.h"
69 /* Queue of cgraph nodes scheduled to be lowered. */
70 symtab_node *x_cgraph_nodes_queue;
71 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
73 /* Symbol table global context. */
74 symbol_table *symtab;
76 /* List of hooks triggered on cgraph_edge events. */
77 struct cgraph_edge_hook_list {
78 cgraph_edge_hook hook;
79 void *data;
80 struct cgraph_edge_hook_list *next;
83 /* List of hooks triggered on cgraph_node events. */
84 struct cgraph_node_hook_list {
85 cgraph_node_hook hook;
86 void *data;
87 struct cgraph_node_hook_list *next;
90 /* List of hooks triggered on events involving two cgraph_edges. */
91 struct cgraph_2edge_hook_list {
92 cgraph_2edge_hook hook;
93 void *data;
94 struct cgraph_2edge_hook_list *next;
97 /* List of hooks triggered on events involving two cgraph_nodes. */
98 struct cgraph_2node_hook_list {
99 cgraph_2node_hook hook;
100 void *data;
101 struct cgraph_2node_hook_list *next;
104 /* Hash descriptor for cgraph_function_version_info. */
106 struct function_version_hasher : ggc_ptr_hash<cgraph_function_version_info>
108 static hashval_t hash (cgraph_function_version_info *);
109 static bool equal (cgraph_function_version_info *,
110 cgraph_function_version_info *);
113 /* Map a cgraph_node to cgraph_function_version_info using this htab.
114 The cgraph_function_version_info has a THIS_NODE field that is the
115 corresponding cgraph_node.. */
117 static GTY(()) hash_table<function_version_hasher> *cgraph_fnver_htab = NULL;
119 /* Hash function for cgraph_fnver_htab. */
120 hashval_t
121 function_version_hasher::hash (cgraph_function_version_info *ptr)
123 int uid = ptr->this_node->get_uid ();
124 return (hashval_t)(uid);
127 /* eq function for cgraph_fnver_htab. */
128 bool
129 function_version_hasher::equal (cgraph_function_version_info *n1,
130 cgraph_function_version_info *n2)
132 return n1->this_node->get_uid () == n2->this_node->get_uid ();
135 /* Mark as GC root all allocated nodes. */
136 static GTY(()) struct cgraph_function_version_info *
137 version_info_node = NULL;
139 /* Return true if NODE's address can be compared. */
141 bool
142 symtab_node::address_can_be_compared_p ()
144 /* Address of virtual tables and functions is never compared. */
145 if (DECL_VIRTUAL_P (decl))
146 return false;
147 /* Address of C++ cdtors is never compared. */
148 if (is_a <cgraph_node *> (this)
149 && (DECL_CXX_CONSTRUCTOR_P (decl)
150 || DECL_CXX_DESTRUCTOR_P (decl)))
151 return false;
152 /* Constant pool symbols addresses are never compared.
153 flag_merge_constants permits us to assume the same on readonly vars. */
154 if (is_a <varpool_node *> (this)
155 && (DECL_IN_CONSTANT_POOL (decl)
156 || (flag_merge_constants >= 2
157 && TREE_READONLY (decl) && !TREE_THIS_VOLATILE (decl))))
158 return false;
159 return true;
162 /* Get the cgraph_function_version_info node corresponding to node. */
163 cgraph_function_version_info *
164 cgraph_node::function_version (void)
166 cgraph_function_version_info key;
167 key.this_node = this;
169 if (cgraph_fnver_htab == NULL)
170 return NULL;
172 return cgraph_fnver_htab->find (&key);
175 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
176 corresponding to cgraph_node NODE. */
177 cgraph_function_version_info *
178 cgraph_node::insert_new_function_version (void)
180 version_info_node = NULL;
181 version_info_node = ggc_cleared_alloc<cgraph_function_version_info> ();
182 version_info_node->this_node = this;
184 if (cgraph_fnver_htab == NULL)
185 cgraph_fnver_htab = hash_table<function_version_hasher>::create_ggc (2);
187 *cgraph_fnver_htab->find_slot (version_info_node, INSERT)
188 = version_info_node;
189 return version_info_node;
192 /* Remove the cgraph_function_version_info node given by DECL_V. */
193 static void
194 delete_function_version (cgraph_function_version_info *decl_v)
196 if (decl_v == NULL)
197 return;
199 if (decl_v->prev != NULL)
200 decl_v->prev->next = decl_v->next;
202 if (decl_v->next != NULL)
203 decl_v->next->prev = decl_v->prev;
205 if (cgraph_fnver_htab != NULL)
206 cgraph_fnver_htab->remove_elt (decl_v);
209 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
210 DECL is a duplicate declaration. */
211 void
212 cgraph_node::delete_function_version_by_decl (tree decl)
214 cgraph_node *decl_node = cgraph_node::get (decl);
216 if (decl_node == NULL)
217 return;
219 delete_function_version (decl_node->function_version ());
221 decl_node->remove ();
224 /* Record that DECL1 and DECL2 are semantically identical function
225 versions. */
226 void
227 cgraph_node::record_function_versions (tree decl1, tree decl2)
229 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
230 cgraph_node *decl2_node = cgraph_node::get_create (decl2);
231 cgraph_function_version_info *decl1_v = NULL;
232 cgraph_function_version_info *decl2_v = NULL;
233 cgraph_function_version_info *before;
234 cgraph_function_version_info *after;
236 gcc_assert (decl1_node != NULL && decl2_node != NULL);
237 decl1_v = decl1_node->function_version ();
238 decl2_v = decl2_node->function_version ();
240 if (decl1_v != NULL && decl2_v != NULL)
241 return;
243 if (decl1_v == NULL)
244 decl1_v = decl1_node->insert_new_function_version ();
246 if (decl2_v == NULL)
247 decl2_v = decl2_node->insert_new_function_version ();
249 /* Chain decl2_v and decl1_v. All semantically identical versions
250 will be chained together. */
252 before = decl1_v;
253 after = decl2_v;
255 while (before->next != NULL)
256 before = before->next;
258 while (after->prev != NULL)
259 after= after->prev;
261 before->next = after;
262 after->prev = before;
265 /* Initialize callgraph dump file. */
267 void
268 symbol_table::initialize (void)
270 if (!dump_file)
271 dump_file = dump_begin (TDI_cgraph, NULL);
273 if (!ipa_clones_dump_file)
274 ipa_clones_dump_file = dump_begin (TDI_clones, NULL);
277 /* Allocate new callgraph node and insert it into basic data structures. */
279 cgraph_node *
280 symbol_table::create_empty (void)
282 cgraph_node *node = allocate_cgraph_symbol ();
284 node->type = SYMTAB_FUNCTION;
285 node->frequency = NODE_FREQUENCY_NORMAL;
286 node->count_materialization_scale = REG_BR_PROB_BASE;
287 cgraph_count++;
289 return node;
292 /* Register HOOK to be called with DATA on each removed edge. */
293 cgraph_edge_hook_list *
294 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook, void *data)
296 cgraph_edge_hook_list *entry;
297 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
299 entry = (cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
300 entry->hook = hook;
301 entry->data = data;
302 entry->next = NULL;
303 while (*ptr)
304 ptr = &(*ptr)->next;
305 *ptr = entry;
306 return entry;
309 /* Remove ENTRY from the list of hooks called on removing edges. */
310 void
311 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list *entry)
313 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
315 while (*ptr != entry)
316 ptr = &(*ptr)->next;
317 *ptr = entry->next;
318 free (entry);
321 /* Call all edge removal hooks. */
322 void
323 symbol_table::call_edge_removal_hooks (cgraph_edge *e)
325 cgraph_edge_hook_list *entry = m_first_edge_removal_hook;
326 while (entry)
328 entry->hook (e, entry->data);
329 entry = entry->next;
333 /* Register HOOK to be called with DATA on each removed node. */
334 cgraph_node_hook_list *
335 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook, void *data)
337 cgraph_node_hook_list *entry;
338 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
340 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
341 entry->hook = hook;
342 entry->data = data;
343 entry->next = NULL;
344 while (*ptr)
345 ptr = &(*ptr)->next;
346 *ptr = entry;
347 return entry;
350 /* Remove ENTRY from the list of hooks called on removing nodes. */
351 void
352 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list *entry)
354 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
356 while (*ptr != entry)
357 ptr = &(*ptr)->next;
358 *ptr = entry->next;
359 free (entry);
362 /* Call all node removal hooks. */
363 void
364 symbol_table::call_cgraph_removal_hooks (cgraph_node *node)
366 cgraph_node_hook_list *entry = m_first_cgraph_removal_hook;
367 while (entry)
369 entry->hook (node, entry->data);
370 entry = entry->next;
374 /* Call all node removal hooks. */
375 void
376 symbol_table::call_cgraph_insertion_hooks (cgraph_node *node)
378 cgraph_node_hook_list *entry = m_first_cgraph_insertion_hook;
379 while (entry)
381 entry->hook (node, entry->data);
382 entry = entry->next;
387 /* Register HOOK to be called with DATA on each inserted node. */
388 cgraph_node_hook_list *
389 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook, void *data)
391 cgraph_node_hook_list *entry;
392 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
394 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
395 entry->hook = hook;
396 entry->data = data;
397 entry->next = NULL;
398 while (*ptr)
399 ptr = &(*ptr)->next;
400 *ptr = entry;
401 return entry;
404 /* Remove ENTRY from the list of hooks called on inserted nodes. */
405 void
406 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list *entry)
408 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
410 while (*ptr != entry)
411 ptr = &(*ptr)->next;
412 *ptr = entry->next;
413 free (entry);
416 /* Register HOOK to be called with DATA on each duplicated edge. */
417 cgraph_2edge_hook_list *
418 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
420 cgraph_2edge_hook_list *entry;
421 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
423 entry = (cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
424 entry->hook = hook;
425 entry->data = data;
426 entry->next = NULL;
427 while (*ptr)
428 ptr = &(*ptr)->next;
429 *ptr = entry;
430 return entry;
433 /* Remove ENTRY from the list of hooks called on duplicating edges. */
434 void
435 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list *entry)
437 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
439 while (*ptr != entry)
440 ptr = &(*ptr)->next;
441 *ptr = entry->next;
442 free (entry);
445 /* Call all edge duplication hooks. */
446 void
447 symbol_table::call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)
449 cgraph_2edge_hook_list *entry = m_first_edge_duplicated_hook;
450 while (entry)
452 entry->hook (cs1, cs2, entry->data);
453 entry = entry->next;
457 /* Register HOOK to be called with DATA on each duplicated node. */
458 cgraph_2node_hook_list *
459 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook, void *data)
461 cgraph_2node_hook_list *entry;
462 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
464 entry = (cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
465 entry->hook = hook;
466 entry->data = data;
467 entry->next = NULL;
468 while (*ptr)
469 ptr = &(*ptr)->next;
470 *ptr = entry;
471 return entry;
474 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
475 void
476 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry)
478 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
480 while (*ptr != entry)
481 ptr = &(*ptr)->next;
482 *ptr = entry->next;
483 free (entry);
486 /* Call all node duplication hooks. */
487 void
488 symbol_table::call_cgraph_duplication_hooks (cgraph_node *node,
489 cgraph_node *node2)
491 cgraph_2node_hook_list *entry = m_first_cgraph_duplicated_hook;
492 while (entry)
494 entry->hook (node, node2, entry->data);
495 entry = entry->next;
499 /* Return cgraph node assigned to DECL. Create new one when needed. */
501 cgraph_node *
502 cgraph_node::create (tree decl)
504 cgraph_node *node = symtab->create_empty ();
505 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
507 node->decl = decl;
509 node->count = profile_count::uninitialized ();
511 if ((flag_openacc || flag_openmp)
512 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl)))
514 node->offloadable = 1;
515 if (ENABLE_OFFLOADING)
516 g->have_offload = true;
519 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
520 node->ifunc_resolver = true;
522 node->register_symbol ();
524 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
526 node->origin = cgraph_node::get_create (DECL_CONTEXT (decl));
527 node->next_nested = node->origin->nested;
528 node->origin->nested = node;
530 return node;
533 /* Try to find a call graph node for declaration DECL and if it does not exist
534 or if it corresponds to an inline clone, create a new one. */
536 cgraph_node *
537 cgraph_node::get_create (tree decl)
539 cgraph_node *first_clone = cgraph_node::get (decl);
541 if (first_clone && !first_clone->global.inlined_to)
542 return first_clone;
544 cgraph_node *node = cgraph_node::create (decl);
545 if (first_clone)
547 first_clone->clone_of = node;
548 node->clones = first_clone;
549 symtab->symtab_prevail_in_asm_name_hash (node);
550 node->decl->decl_with_vis.symtab_node = node;
551 if (dump_file)
552 fprintf (dump_file, "Introduced new external node "
553 "(%s) and turned into root of the clone tree.\n",
554 node->dump_name ());
556 else if (dump_file)
557 fprintf (dump_file, "Introduced new external node "
558 "(%s).\n", node->dump_name ());
559 return node;
562 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
563 the function body is associated with (not necessarily cgraph_node (DECL). */
565 cgraph_node *
566 cgraph_node::create_alias (tree alias, tree target)
568 cgraph_node *alias_node;
570 gcc_assert (TREE_CODE (target) == FUNCTION_DECL
571 || TREE_CODE (target) == IDENTIFIER_NODE);
572 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
573 alias_node = cgraph_node::get_create (alias);
574 gcc_assert (!alias_node->definition);
575 alias_node->alias_target = target;
576 alias_node->definition = true;
577 alias_node->alias = true;
578 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias)) != NULL)
579 alias_node->transparent_alias = alias_node->weakref = true;
580 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (alias)))
581 alias_node->ifunc_resolver = true;
582 return alias_node;
585 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
586 and NULL otherwise.
587 Same body aliases are output whenever the body of DECL is output,
588 and cgraph_node::get (ALIAS) transparently returns
589 cgraph_node::get (DECL). */
591 cgraph_node *
592 cgraph_node::create_same_body_alias (tree alias, tree decl)
594 cgraph_node *n;
596 /* If aliases aren't supported by the assembler, fail. */
597 if (!TARGET_SUPPORTS_ALIASES)
598 return NULL;
600 /* Langhooks can create same body aliases of symbols not defined.
601 Those are useless. Drop them on the floor. */
602 if (symtab->global_info_ready)
603 return NULL;
605 n = cgraph_node::create_alias (alias, decl);
606 n->cpp_implicit_alias = true;
607 if (symtab->cpp_implicit_aliases_done)
608 n->resolve_alias (cgraph_node::get (decl));
609 return n;
612 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
613 aliases DECL with an adjustments made into the first parameter.
614 See comments in struct cgraph_thunk_info for detail on the parameters. */
616 cgraph_node *
617 cgraph_node::create_thunk (tree alias, tree, bool this_adjusting,
618 HOST_WIDE_INT fixed_offset,
619 HOST_WIDE_INT virtual_value,
620 tree virtual_offset,
621 tree real_alias)
623 cgraph_node *node;
625 node = cgraph_node::get (alias);
626 if (node)
627 node->reset ();
628 else
629 node = cgraph_node::create (alias);
631 /* Make sure that if VIRTUAL_OFFSET is in sync with VIRTUAL_VALUE. */
632 gcc_checking_assert (virtual_offset
633 ? virtual_value == wi::to_wide (virtual_offset)
634 : virtual_value == 0);
636 node->thunk.fixed_offset = fixed_offset;
637 node->thunk.virtual_value = virtual_value;
638 node->thunk.alias = real_alias;
639 node->thunk.this_adjusting = this_adjusting;
640 node->thunk.virtual_offset_p = virtual_offset != NULL;
641 node->thunk.thunk_p = true;
642 node->definition = true;
644 return node;
647 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
648 Return NULL if there's no such node. */
650 cgraph_node *
651 cgraph_node::get_for_asmname (tree asmname)
653 /* We do not want to look at inline clones. */
654 for (symtab_node *node = symtab_node::get_for_asmname (asmname);
655 node;
656 node = node->next_sharing_asm_name)
658 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
659 if (cn && !cn->global.inlined_to)
660 return cn;
662 return NULL;
665 /* Returns a hash value for X (which really is a cgraph_edge). */
667 hashval_t
668 cgraph_edge_hasher::hash (cgraph_edge *e)
670 /* This is a really poor hash function, but it is what htab_hash_pointer
671 uses. */
672 return (hashval_t) ((intptr_t)e->call_stmt >> 3);
675 /* Returns a hash value for X (which really is a cgraph_edge). */
677 hashval_t
678 cgraph_edge_hasher::hash (gimple *call_stmt)
680 /* This is a really poor hash function, but it is what htab_hash_pointer
681 uses. */
682 return (hashval_t) ((intptr_t)call_stmt >> 3);
685 /* Return nonzero if the call_stmt of cgraph_edge X is stmt *Y. */
687 inline bool
688 cgraph_edge_hasher::equal (cgraph_edge *x, gimple *y)
690 return x->call_stmt == y;
693 /* Add call graph edge E to call site hash of its caller. */
695 static inline void
696 cgraph_update_edge_in_call_site_hash (cgraph_edge *e)
698 gimple *call = e->call_stmt;
699 *e->caller->call_site_hash->find_slot_with_hash
700 (call, cgraph_edge_hasher::hash (call), INSERT) = e;
703 /* Add call graph edge E to call site hash of its caller. */
705 static inline void
706 cgraph_add_edge_to_call_site_hash (cgraph_edge *e)
708 /* There are two speculative edges for every statement (one direct,
709 one indirect); always hash the direct one. */
710 if (e->speculative && e->indirect_unknown_callee)
711 return;
712 cgraph_edge **slot = e->caller->call_site_hash->find_slot_with_hash
713 (e->call_stmt, cgraph_edge_hasher::hash (e->call_stmt), INSERT);
714 if (*slot)
716 gcc_assert (((cgraph_edge *)*slot)->speculative);
717 if (e->callee)
718 *slot = e;
719 return;
721 gcc_assert (!*slot || e->speculative);
722 *slot = e;
725 /* Return the callgraph edge representing the GIMPLE_CALL statement
726 CALL_STMT. */
728 cgraph_edge *
729 cgraph_node::get_edge (gimple *call_stmt)
731 cgraph_edge *e, *e2;
732 int n = 0;
734 if (call_site_hash)
735 return call_site_hash->find_with_hash
736 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
738 /* This loop may turn out to be performance problem. In such case adding
739 hashtables into call nodes with very many edges is probably best
740 solution. It is not good idea to add pointer into CALL_EXPR itself
741 because we want to make possible having multiple cgraph nodes representing
742 different clones of the same body before the body is actually cloned. */
743 for (e = callees; e; e = e->next_callee)
745 if (e->call_stmt == call_stmt)
746 break;
747 n++;
750 if (!e)
751 for (e = indirect_calls; e; e = e->next_callee)
753 if (e->call_stmt == call_stmt)
754 break;
755 n++;
758 if (n > 100)
760 call_site_hash = hash_table<cgraph_edge_hasher>::create_ggc (120);
761 for (e2 = callees; e2; e2 = e2->next_callee)
762 cgraph_add_edge_to_call_site_hash (e2);
763 for (e2 = indirect_calls; e2; e2 = e2->next_callee)
764 cgraph_add_edge_to_call_site_hash (e2);
767 return e;
771 /* Change field call_stmt of edge to NEW_STMT.
772 If UPDATE_SPECULATIVE and E is any component of speculative
773 edge, then update all components. */
775 void
776 cgraph_edge::set_call_stmt (gcall *new_stmt, bool update_speculative)
778 tree decl;
780 /* Speculative edges has three component, update all of them
781 when asked to. */
782 if (update_speculative && speculative)
784 cgraph_edge *direct, *indirect;
785 ipa_ref *ref;
787 speculative_call_info (direct, indirect, ref);
788 direct->set_call_stmt (new_stmt, false);
789 indirect->set_call_stmt (new_stmt, false);
790 ref->stmt = new_stmt;
791 return;
794 /* Only direct speculative edges go to call_site_hash. */
795 if (caller->call_site_hash
796 && (!speculative || !indirect_unknown_callee))
798 caller->call_site_hash->remove_elt_with_hash
799 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
802 cgraph_edge *e = this;
804 call_stmt = new_stmt;
805 if (indirect_unknown_callee
806 && (decl = gimple_call_fndecl (new_stmt)))
808 /* Constant propagation (and possibly also inlining?) can turn an
809 indirect call into a direct one. */
810 cgraph_node *new_callee = cgraph_node::get (decl);
812 gcc_checking_assert (new_callee);
813 e = make_direct (new_callee);
816 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
817 e->can_throw_external = stmt_can_throw_external (new_stmt);
818 pop_cfun ();
819 if (e->caller->call_site_hash)
820 cgraph_add_edge_to_call_site_hash (e);
823 /* Allocate a cgraph_edge structure and fill it with data according to the
824 parameters of which only CALLEE can be NULL (when creating an indirect call
825 edge). */
827 cgraph_edge *
828 symbol_table::create_edge (cgraph_node *caller, cgraph_node *callee,
829 gcall *call_stmt, profile_count count,
830 bool indir_unknown_callee)
832 cgraph_edge *edge;
834 /* LTO does not actually have access to the call_stmt since these
835 have not been loaded yet. */
836 if (call_stmt)
838 /* This is a rather expensive check possibly triggering
839 construction of call stmt hashtable. */
840 cgraph_edge *e;
841 gcc_checking_assert (!(e = caller->get_edge (call_stmt))
842 || e->speculative);
844 gcc_assert (is_gimple_call (call_stmt));
847 if (free_edges)
849 edge = free_edges;
850 free_edges = NEXT_FREE_EDGE (edge);
852 else
853 edge = ggc_alloc<cgraph_edge> ();
855 edges_count++;
857 gcc_assert (++edges_max_uid != 0);
858 edge->m_uid = edges_max_uid;
859 edge->aux = NULL;
860 edge->caller = caller;
861 edge->callee = callee;
862 edge->prev_caller = NULL;
863 edge->next_caller = NULL;
864 edge->prev_callee = NULL;
865 edge->next_callee = NULL;
866 edge->lto_stmt_uid = 0;
868 edge->count = count;
870 edge->call_stmt = call_stmt;
871 push_cfun (DECL_STRUCT_FUNCTION (caller->decl));
872 edge->can_throw_external
873 = call_stmt ? stmt_can_throw_external (call_stmt) : false;
874 pop_cfun ();
875 if (call_stmt
876 && callee && callee->decl
877 && !gimple_check_call_matching_types (call_stmt, callee->decl,
878 false))
880 edge->inline_failed = CIF_MISMATCHED_ARGUMENTS;
881 edge->call_stmt_cannot_inline_p = true;
883 else
885 edge->inline_failed = CIF_FUNCTION_NOT_CONSIDERED;
886 edge->call_stmt_cannot_inline_p = false;
889 edge->indirect_info = NULL;
890 edge->indirect_inlining_edge = 0;
891 edge->speculative = false;
892 edge->indirect_unknown_callee = indir_unknown_callee;
893 if (opt_for_fn (edge->caller->decl, flag_devirtualize)
894 && call_stmt && DECL_STRUCT_FUNCTION (caller->decl))
895 edge->in_polymorphic_cdtor
896 = decl_maybe_in_construction_p (NULL, NULL, call_stmt,
897 caller->decl);
898 else
899 edge->in_polymorphic_cdtor = caller->thunk.thunk_p;
900 if (call_stmt && caller->call_site_hash)
901 cgraph_add_edge_to_call_site_hash (edge);
903 return edge;
906 /* Create edge from a given function to CALLEE in the cgraph. */
908 cgraph_edge *
909 cgraph_node::create_edge (cgraph_node *callee,
910 gcall *call_stmt, profile_count count)
912 cgraph_edge *edge = symtab->create_edge (this, callee, call_stmt, count,
913 false);
915 initialize_inline_failed (edge);
917 edge->next_caller = callee->callers;
918 if (callee->callers)
919 callee->callers->prev_caller = edge;
920 edge->next_callee = callees;
921 if (callees)
922 callees->prev_callee = edge;
923 callees = edge;
924 callee->callers = edge;
926 return edge;
929 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
931 cgraph_indirect_call_info *
932 cgraph_allocate_init_indirect_info (void)
934 cgraph_indirect_call_info *ii;
936 ii = ggc_cleared_alloc<cgraph_indirect_call_info> ();
937 ii->param_index = -1;
938 return ii;
941 /* Create an indirect edge with a yet-undetermined callee where the call
942 statement destination is a formal parameter of the caller with index
943 PARAM_INDEX. */
945 cgraph_edge *
946 cgraph_node::create_indirect_edge (gcall *call_stmt, int ecf_flags,
947 profile_count count,
948 bool compute_indirect_info)
950 cgraph_edge *edge = symtab->create_edge (this, NULL, call_stmt,
951 count, true);
952 tree target;
954 initialize_inline_failed (edge);
956 edge->indirect_info = cgraph_allocate_init_indirect_info ();
957 edge->indirect_info->ecf_flags = ecf_flags;
958 edge->indirect_info->vptr_changed = true;
960 /* Record polymorphic call info. */
961 if (compute_indirect_info
962 && call_stmt
963 && (target = gimple_call_fn (call_stmt))
964 && virtual_method_call_p (target))
966 ipa_polymorphic_call_context context (decl, target, call_stmt);
968 /* Only record types can have virtual calls. */
969 edge->indirect_info->polymorphic = true;
970 edge->indirect_info->param_index = -1;
971 edge->indirect_info->otr_token
972 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
973 edge->indirect_info->otr_type = obj_type_ref_class (target);
974 gcc_assert (TREE_CODE (edge->indirect_info->otr_type) == RECORD_TYPE);
975 edge->indirect_info->context = context;
978 edge->next_callee = indirect_calls;
979 if (indirect_calls)
980 indirect_calls->prev_callee = edge;
981 indirect_calls = edge;
983 return edge;
986 /* Remove the edge from the list of the callees of the caller. */
988 void
989 cgraph_edge::remove_caller (void)
991 if (prev_callee)
992 prev_callee->next_callee = next_callee;
993 if (next_callee)
994 next_callee->prev_callee = prev_callee;
995 if (!prev_callee)
997 if (indirect_unknown_callee)
998 caller->indirect_calls = next_callee;
999 else
1000 caller->callees = next_callee;
1002 if (caller->call_site_hash)
1003 caller->call_site_hash->remove_elt_with_hash
1004 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
1007 /* Put the edge onto the free list. */
1009 void
1010 symbol_table::free_edge (cgraph_edge *e)
1012 if (e->indirect_info)
1013 ggc_free (e->indirect_info);
1015 /* Clear out the edge so we do not dangle pointers. */
1016 memset (e, 0, sizeof (*e));
1017 NEXT_FREE_EDGE (e) = free_edges;
1018 free_edges = e;
1019 edges_count--;
1022 /* Remove the edge in the cgraph. */
1024 void
1025 cgraph_edge::remove (void)
1027 /* Call all edge removal hooks. */
1028 symtab->call_edge_removal_hooks (this);
1030 if (!indirect_unknown_callee)
1031 /* Remove from callers list of the callee. */
1032 remove_callee ();
1034 /* Remove from callees list of the callers. */
1035 remove_caller ();
1037 /* Put the edge onto the free list. */
1038 symtab->free_edge (this);
1041 /* Turn edge into speculative call calling N2. Update
1042 the profile so the direct call is taken COUNT times
1043 with FREQUENCY.
1045 At clone materialization time, the indirect call E will
1046 be expanded as:
1048 if (call_dest == N2)
1049 n2 ();
1050 else
1051 call call_dest
1053 At this time the function just creates the direct call,
1054 the referencd representing the if conditional and attaches
1055 them all to the orginal indirect call statement.
1057 Return direct edge created. */
1059 cgraph_edge *
1060 cgraph_edge::make_speculative (cgraph_node *n2, profile_count direct_count)
1062 cgraph_node *n = caller;
1063 ipa_ref *ref = NULL;
1064 cgraph_edge *e2;
1066 if (dump_file)
1067 fprintf (dump_file, "Indirect call -> speculative call %s => %s\n",
1068 n->dump_name (), n2->dump_name ());
1069 speculative = true;
1070 e2 = n->create_edge (n2, call_stmt, direct_count);
1071 initialize_inline_failed (e2);
1072 e2->speculative = true;
1073 if (TREE_NOTHROW (n2->decl))
1074 e2->can_throw_external = false;
1075 else
1076 e2->can_throw_external = can_throw_external;
1077 e2->lto_stmt_uid = lto_stmt_uid;
1078 e2->in_polymorphic_cdtor = in_polymorphic_cdtor;
1079 count -= e2->count;
1080 symtab->call_edge_duplication_hooks (this, e2);
1081 ref = n->create_reference (n2, IPA_REF_ADDR, call_stmt);
1082 ref->lto_stmt_uid = lto_stmt_uid;
1083 ref->speculative = speculative;
1084 n2->mark_address_taken ();
1085 return e2;
1088 /* Speculative call consist of three components:
1089 1) an indirect edge representing the original call
1090 2) an direct edge representing the new call
1091 3) ADDR_EXPR reference representing the speculative check.
1092 All three components are attached to single statement (the indirect
1093 call) and if one of them exists, all of them must exist.
1095 Given speculative call edge, return all three components.
1098 void
1099 cgraph_edge::speculative_call_info (cgraph_edge *&direct,
1100 cgraph_edge *&indirect,
1101 ipa_ref *&reference)
1103 ipa_ref *ref;
1104 int i;
1105 cgraph_edge *e2;
1106 cgraph_edge *e = this;
1108 if (!e->indirect_unknown_callee)
1109 for (e2 = e->caller->indirect_calls;
1110 e2->call_stmt != e->call_stmt || e2->lto_stmt_uid != e->lto_stmt_uid;
1111 e2 = e2->next_callee)
1113 else
1115 e2 = e;
1116 /* We can take advantage of the call stmt hash. */
1117 if (e2->call_stmt)
1119 e = e->caller->get_edge (e2->call_stmt);
1120 gcc_assert (e->speculative && !e->indirect_unknown_callee);
1122 else
1123 for (e = e->caller->callees;
1124 e2->call_stmt != e->call_stmt
1125 || e2->lto_stmt_uid != e->lto_stmt_uid;
1126 e = e->next_callee)
1129 gcc_assert (e->speculative && e2->speculative);
1130 direct = e;
1131 indirect = e2;
1133 reference = NULL;
1134 for (i = 0; e->caller->iterate_reference (i, ref); i++)
1135 if (ref->speculative
1136 && ((ref->stmt && ref->stmt == e->call_stmt)
1137 || (!ref->stmt && ref->lto_stmt_uid == e->lto_stmt_uid)))
1139 reference = ref;
1140 break;
1143 /* Speculative edge always consist of all three components - direct edge,
1144 indirect and reference. */
1146 gcc_assert (e && e2 && ref);
1149 /* Speculative call edge turned out to be direct call to CALLE_DECL.
1150 Remove the speculative call sequence and return edge representing the call.
1151 It is up to caller to redirect the call as appropriate. */
1153 cgraph_edge *
1154 cgraph_edge::resolve_speculation (tree callee_decl)
1156 cgraph_edge *edge = this;
1157 cgraph_edge *e2;
1158 ipa_ref *ref;
1160 gcc_assert (edge->speculative);
1161 edge->speculative_call_info (e2, edge, ref);
1162 if (!callee_decl
1163 || !ref->referred->semantically_equivalent_p
1164 (symtab_node::get (callee_decl)))
1166 if (dump_file)
1168 if (callee_decl)
1170 fprintf (dump_file, "Speculative indirect call %s => %s has "
1171 "turned out to have contradicting known target ",
1172 edge->caller->dump_name (),
1173 e2->callee->dump_name ());
1174 print_generic_expr (dump_file, callee_decl);
1175 fprintf (dump_file, "\n");
1177 else
1179 fprintf (dump_file, "Removing speculative call %s => %s\n",
1180 edge->caller->dump_name (),
1181 e2->callee->dump_name ());
1185 else
1187 cgraph_edge *tmp = edge;
1188 if (dump_file)
1189 fprintf (dump_file, "Speculative call turned into direct call.\n");
1190 edge = e2;
1191 e2 = tmp;
1192 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1193 in the functions inlined through it. */
1195 edge->count += e2->count;
1196 edge->speculative = false;
1197 e2->speculative = false;
1198 ref->remove_reference ();
1199 if (e2->indirect_unknown_callee || e2->inline_failed)
1200 e2->remove ();
1201 else
1202 e2->callee->remove_symbol_and_inline_clones ();
1203 if (edge->caller->call_site_hash)
1204 cgraph_update_edge_in_call_site_hash (edge);
1205 return edge;
1208 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1209 CALLEE. DELTA is an integer constant that is to be added to the this
1210 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1212 cgraph_edge *
1213 cgraph_edge::make_direct (cgraph_node *callee)
1215 cgraph_edge *edge = this;
1216 gcc_assert (indirect_unknown_callee);
1218 /* If we are redirecting speculative call, make it non-speculative. */
1219 if (indirect_unknown_callee && speculative)
1221 edge = edge->resolve_speculation (callee->decl);
1223 /* On successful speculation just return the pre existing direct edge. */
1224 if (!indirect_unknown_callee)
1225 return edge;
1228 indirect_unknown_callee = 0;
1229 ggc_free (indirect_info);
1230 indirect_info = NULL;
1232 /* Get the edge out of the indirect edge list. */
1233 if (prev_callee)
1234 prev_callee->next_callee = next_callee;
1235 if (next_callee)
1236 next_callee->prev_callee = prev_callee;
1237 if (!prev_callee)
1238 caller->indirect_calls = next_callee;
1240 /* Put it into the normal callee list */
1241 prev_callee = NULL;
1242 next_callee = caller->callees;
1243 if (caller->callees)
1244 caller->callees->prev_callee = edge;
1245 caller->callees = edge;
1247 /* Insert to callers list of the new callee. */
1248 edge->set_callee (callee);
1250 if (call_stmt
1251 && !gimple_check_call_matching_types (call_stmt, callee->decl, false))
1253 call_stmt_cannot_inline_p = true;
1254 inline_failed = CIF_MISMATCHED_ARGUMENTS;
1257 /* We need to re-determine the inlining status of the edge. */
1258 initialize_inline_failed (edge);
1259 return edge;
1262 /* If necessary, change the function declaration in the call statement
1263 associated with E so that it corresponds to the edge callee. */
1265 gimple *
1266 cgraph_edge::redirect_call_stmt_to_callee (void)
1268 cgraph_edge *e = this;
1270 tree decl = gimple_call_fndecl (e->call_stmt);
1271 gcall *new_stmt;
1272 gimple_stmt_iterator gsi;
1274 if (e->speculative)
1276 cgraph_edge *e2;
1277 gcall *new_stmt;
1278 ipa_ref *ref;
1280 e->speculative_call_info (e, e2, ref);
1281 /* If there already is an direct call (i.e. as a result of inliner's
1282 substitution), forget about speculating. */
1283 if (decl)
1284 e = e->resolve_speculation (decl);
1285 /* If types do not match, speculation was likely wrong.
1286 The direct edge was possibly redirected to the clone with a different
1287 signature. We did not update the call statement yet, so compare it
1288 with the reference that still points to the proper type. */
1289 else if (!gimple_check_call_matching_types (e->call_stmt,
1290 ref->referred->decl,
1291 true))
1293 if (dump_file)
1294 fprintf (dump_file, "Not expanding speculative call of %s -> %s\n"
1295 "Type mismatch.\n",
1296 e->caller->dump_name (),
1297 e->callee->dump_name ());
1298 e = e->resolve_speculation ();
1299 /* We are producing the final function body and will throw away the
1300 callgraph edges really soon. Reset the counts/frequencies to
1301 keep verifier happy in the case of roundoff errors. */
1302 e->count = gimple_bb (e->call_stmt)->count;
1304 /* Expand speculation into GIMPLE code. */
1305 else
1307 if (dump_file)
1309 fprintf (dump_file,
1310 "Expanding speculative call of %s -> %s count: ",
1311 e->caller->dump_name (),
1312 e->callee->dump_name ());
1313 e->count.dump (dump_file);
1314 fprintf (dump_file, "\n");
1316 gcc_assert (e2->speculative);
1317 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
1319 profile_probability prob = e->count.probability_in (e->count
1320 + e2->count);
1321 if (!prob.initialized_p ())
1322 prob = profile_probability::even ();
1323 new_stmt = gimple_ic (e->call_stmt,
1324 dyn_cast<cgraph_node *> (ref->referred),
1325 prob);
1326 e->speculative = false;
1327 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt,
1328 false);
1329 e->count = gimple_bb (e->call_stmt)->count;
1330 e2->speculative = false;
1331 e2->count = gimple_bb (e2->call_stmt)->count;
1332 ref->speculative = false;
1333 ref->stmt = NULL;
1334 /* Indirect edges are not both in the call site hash.
1335 get it updated. */
1336 if (e->caller->call_site_hash)
1337 cgraph_update_edge_in_call_site_hash (e2);
1338 pop_cfun ();
1339 /* Continue redirecting E to proper target. */
1344 if (e->indirect_unknown_callee
1345 || decl == e->callee->decl)
1346 return e->call_stmt;
1348 if (flag_checking && decl)
1350 cgraph_node *node = cgraph_node::get (decl);
1351 gcc_assert (!node || !node->clone.combined_args_to_skip);
1354 if (symtab->dump_file)
1356 fprintf (symtab->dump_file, "updating call of %s -> %s: ",
1357 e->caller->dump_name (), e->callee->dump_name ());
1358 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1359 if (e->callee->clone.combined_args_to_skip)
1361 fprintf (symtab->dump_file, " combined args to skip: ");
1362 dump_bitmap (symtab->dump_file,
1363 e->callee->clone.combined_args_to_skip);
1367 if (e->callee->clone.combined_args_to_skip)
1369 int lp_nr;
1371 new_stmt = e->call_stmt;
1372 if (e->callee->clone.combined_args_to_skip)
1373 new_stmt
1374 = gimple_call_copy_skip_args (new_stmt,
1375 e->callee->clone.combined_args_to_skip);
1376 tree old_fntype = gimple_call_fntype (e->call_stmt);
1377 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1378 cgraph_node *origin = e->callee;
1379 while (origin->clone_of)
1380 origin = origin->clone_of;
1382 if ((origin->former_clone_of
1383 && old_fntype == TREE_TYPE (origin->former_clone_of))
1384 || old_fntype == TREE_TYPE (origin->decl))
1385 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1386 else
1388 bitmap skip = e->callee->clone.combined_args_to_skip;
1389 tree t = cgraph_build_function_type_skip_args (old_fntype, skip,
1390 false);
1391 gimple_call_set_fntype (new_stmt, t);
1394 if (gimple_vdef (new_stmt)
1395 && TREE_CODE (gimple_vdef (new_stmt)) == SSA_NAME)
1396 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
1398 gsi = gsi_for_stmt (e->call_stmt);
1400 /* For optimized away parameters, add on the caller side
1401 before the call
1402 DEBUG D#X => parm_Y(D)
1403 stmts and associate D#X with parm in decl_debug_args_lookup
1404 vector to say for debug info that if parameter parm had been passed,
1405 it would have value parm_Y(D). */
1406 if (e->callee->clone.combined_args_to_skip && MAY_HAVE_DEBUG_BIND_STMTS)
1408 vec<tree, va_gc> **debug_args
1409 = decl_debug_args_lookup (e->callee->decl);
1410 tree old_decl = gimple_call_fndecl (e->call_stmt);
1411 if (debug_args && old_decl)
1413 tree parm;
1414 unsigned i = 0, num;
1415 unsigned len = vec_safe_length (*debug_args);
1416 unsigned nargs = gimple_call_num_args (e->call_stmt);
1417 for (parm = DECL_ARGUMENTS (old_decl), num = 0;
1418 parm && num < nargs;
1419 parm = DECL_CHAIN (parm), num++)
1420 if (bitmap_bit_p (e->callee->clone.combined_args_to_skip, num)
1421 && is_gimple_reg (parm))
1423 unsigned last = i;
1425 while (i < len && (**debug_args)[i] != DECL_ORIGIN (parm))
1426 i += 2;
1427 if (i >= len)
1429 i = 0;
1430 while (i < last
1431 && (**debug_args)[i] != DECL_ORIGIN (parm))
1432 i += 2;
1433 if (i >= last)
1434 continue;
1436 tree ddecl = (**debug_args)[i + 1];
1437 tree arg = gimple_call_arg (e->call_stmt, num);
1438 if (!useless_type_conversion_p (TREE_TYPE (ddecl),
1439 TREE_TYPE (arg)))
1441 tree rhs1;
1442 if (!fold_convertible_p (TREE_TYPE (ddecl), arg))
1443 continue;
1444 if (TREE_CODE (arg) == SSA_NAME
1445 && gimple_assign_cast_p (SSA_NAME_DEF_STMT (arg))
1446 && (rhs1
1447 = gimple_assign_rhs1 (SSA_NAME_DEF_STMT (arg)))
1448 && useless_type_conversion_p (TREE_TYPE (ddecl),
1449 TREE_TYPE (rhs1)))
1450 arg = rhs1;
1451 else
1452 arg = fold_convert (TREE_TYPE (ddecl), arg);
1455 gimple *def_temp
1456 = gimple_build_debug_bind (ddecl, unshare_expr (arg),
1457 e->call_stmt);
1458 gsi_insert_before (&gsi, def_temp, GSI_SAME_STMT);
1463 gsi_replace (&gsi, new_stmt, false);
1464 /* We need to defer cleaning EH info on the new statement to
1465 fixup-cfg. We may not have dominator information at this point
1466 and thus would end up with unreachable blocks and have no way
1467 to communicate that we need to run CFG cleanup then. */
1468 lp_nr = lookup_stmt_eh_lp (e->call_stmt);
1469 if (lp_nr != 0)
1471 remove_stmt_from_eh_lp (e->call_stmt);
1472 add_stmt_to_eh_lp (new_stmt, lp_nr);
1475 else
1477 new_stmt = e->call_stmt;
1478 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1479 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1482 /* If changing the call to __cxa_pure_virtual or similar noreturn function,
1483 adjust gimple_call_fntype too. */
1484 if (gimple_call_noreturn_p (new_stmt)
1485 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (e->callee->decl)))
1486 && TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl))
1487 && (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl)))
1488 == void_type_node))
1489 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1491 /* If the call becomes noreturn, remove the LHS if possible. */
1492 tree lhs = gimple_call_lhs (new_stmt);
1493 if (lhs
1494 && gimple_call_noreturn_p (new_stmt)
1495 && (VOID_TYPE_P (TREE_TYPE (gimple_call_fntype (new_stmt)))
1496 || should_remove_lhs_p (lhs)))
1498 if (TREE_CODE (lhs) == SSA_NAME)
1500 tree var = create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e->caller->decl),
1501 TREE_TYPE (lhs), NULL);
1502 var = get_or_create_ssa_default_def
1503 (DECL_STRUCT_FUNCTION (e->caller->decl), var);
1504 gimple *set_stmt = gimple_build_assign (lhs, var);
1505 gsi = gsi_for_stmt (new_stmt);
1506 gsi_insert_before_without_update (&gsi, set_stmt, GSI_SAME_STMT);
1507 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), set_stmt);
1509 gimple_call_set_lhs (new_stmt, NULL_TREE);
1510 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1513 /* If new callee has no static chain, remove it. */
1514 if (gimple_call_chain (new_stmt) && !DECL_STATIC_CHAIN (e->callee->decl))
1516 gimple_call_set_chain (new_stmt, NULL);
1517 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1520 maybe_remove_unused_call_args (DECL_STRUCT_FUNCTION (e->caller->decl),
1521 new_stmt);
1523 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt, false);
1525 if (symtab->dump_file)
1527 fprintf (symtab->dump_file, " updated to:");
1528 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1530 return new_stmt;
1533 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1534 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1535 of OLD_STMT if it was previously call statement.
1536 If NEW_STMT is NULL, the call has been dropped without any
1537 replacement. */
1539 static void
1540 cgraph_update_edges_for_call_stmt_node (cgraph_node *node,
1541 gimple *old_stmt, tree old_call,
1542 gimple *new_stmt)
1544 tree new_call = (new_stmt && is_gimple_call (new_stmt))
1545 ? gimple_call_fndecl (new_stmt) : 0;
1547 /* We are seeing indirect calls, then there is nothing to update. */
1548 if (!new_call && !old_call)
1549 return;
1550 /* See if we turned indirect call into direct call or folded call to one builtin
1551 into different builtin. */
1552 if (old_call != new_call)
1554 cgraph_edge *e = node->get_edge (old_stmt);
1555 cgraph_edge *ne = NULL;
1556 profile_count count;
1558 if (e)
1560 /* Keep calls marked as dead dead. */
1561 if (new_stmt && is_gimple_call (new_stmt) && e->callee
1562 && fndecl_built_in_p (e->callee->decl, BUILT_IN_UNREACHABLE))
1564 node->get_edge (old_stmt)->set_call_stmt
1565 (as_a <gcall *> (new_stmt));
1566 return;
1568 /* See if the edge is already there and has the correct callee. It
1569 might be so because of indirect inlining has already updated
1570 it. We also might've cloned and redirected the edge. */
1571 if (new_call && e->callee)
1573 cgraph_node *callee = e->callee;
1574 while (callee)
1576 if (callee->decl == new_call
1577 || callee->former_clone_of == new_call)
1579 e->set_call_stmt (as_a <gcall *> (new_stmt));
1580 return;
1582 callee = callee->clone_of;
1586 /* Otherwise remove edge and create new one; we can't simply redirect
1587 since function has changed, so inline plan and other information
1588 attached to edge is invalid. */
1589 count = e->count;
1590 if (e->indirect_unknown_callee || e->inline_failed)
1591 e->remove ();
1592 else
1593 e->callee->remove_symbol_and_inline_clones ();
1595 else if (new_call)
1597 /* We are seeing new direct call; compute profile info based on BB. */
1598 basic_block bb = gimple_bb (new_stmt);
1599 count = bb->count;
1602 if (new_call)
1604 ne = node->create_edge (cgraph_node::get_create (new_call),
1605 as_a <gcall *> (new_stmt), count);
1606 gcc_assert (ne->inline_failed);
1609 /* We only updated the call stmt; update pointer in cgraph edge.. */
1610 else if (old_stmt != new_stmt)
1611 node->get_edge (old_stmt)->set_call_stmt (as_a <gcall *> (new_stmt));
1614 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1615 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1616 of OLD_STMT before it was updated (updating can happen inplace). */
1618 void
1619 cgraph_update_edges_for_call_stmt (gimple *old_stmt, tree old_decl,
1620 gimple *new_stmt)
1622 cgraph_node *orig = cgraph_node::get (cfun->decl);
1623 cgraph_node *node;
1625 gcc_checking_assert (orig);
1626 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1627 if (orig->clones)
1628 for (node = orig->clones; node != orig;)
1630 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1631 if (node->clones)
1632 node = node->clones;
1633 else if (node->next_sibling_clone)
1634 node = node->next_sibling_clone;
1635 else
1637 while (node != orig && !node->next_sibling_clone)
1638 node = node->clone_of;
1639 if (node != orig)
1640 node = node->next_sibling_clone;
1646 /* Remove all callees from the node. */
1648 void
1649 cgraph_node::remove_callees (void)
1651 cgraph_edge *e, *f;
1653 /* It is sufficient to remove the edges from the lists of callers of
1654 the callees. The callee list of the node can be zapped with one
1655 assignment. */
1656 for (e = callees; e; e = f)
1658 f = e->next_callee;
1659 symtab->call_edge_removal_hooks (e);
1660 if (!e->indirect_unknown_callee)
1661 e->remove_callee ();
1662 symtab->free_edge (e);
1664 for (e = indirect_calls; e; e = f)
1666 f = e->next_callee;
1667 symtab->call_edge_removal_hooks (e);
1668 if (!e->indirect_unknown_callee)
1669 e->remove_callee ();
1670 symtab->free_edge (e);
1672 indirect_calls = NULL;
1673 callees = NULL;
1674 if (call_site_hash)
1676 call_site_hash->empty ();
1677 call_site_hash = NULL;
1681 /* Remove all callers from the node. */
1683 void
1684 cgraph_node::remove_callers (void)
1686 cgraph_edge *e, *f;
1688 /* It is sufficient to remove the edges from the lists of callees of
1689 the callers. The caller list of the node can be zapped with one
1690 assignment. */
1691 for (e = callers; e; e = f)
1693 f = e->next_caller;
1694 symtab->call_edge_removal_hooks (e);
1695 e->remove_caller ();
1696 symtab->free_edge (e);
1698 callers = NULL;
1701 /* Helper function for cgraph_release_function_body and free_lang_data.
1702 It releases body from function DECL without having to inspect its
1703 possibly non-existent symtab node. */
1705 void
1706 release_function_body (tree decl)
1708 function *fn = DECL_STRUCT_FUNCTION (decl);
1709 if (fn)
1711 if (fn->cfg
1712 && loops_for_fn (fn))
1714 fn->curr_properties &= ~PROP_loops;
1715 loop_optimizer_finalize (fn);
1717 if (fn->gimple_df)
1719 delete_tree_ssa (fn);
1720 fn->eh = NULL;
1722 if (fn->cfg)
1724 gcc_assert (!dom_info_available_p (fn, CDI_DOMINATORS));
1725 gcc_assert (!dom_info_available_p (fn, CDI_POST_DOMINATORS));
1726 delete_tree_cfg_annotations (fn);
1727 clear_edges (fn);
1728 fn->cfg = NULL;
1730 if (fn->value_histograms)
1731 free_histograms (fn);
1732 gimple_set_body (decl, NULL);
1733 /* Struct function hangs a lot of data that would leak if we didn't
1734 removed all pointers to it. */
1735 ggc_free (fn);
1736 DECL_STRUCT_FUNCTION (decl) = NULL;
1738 DECL_SAVED_TREE (decl) = NULL;
1741 /* Release memory used to represent body of function.
1742 Use this only for functions that are released before being translated to
1743 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1744 are free'd in final.c via free_after_compilation().
1745 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1747 void
1748 cgraph_node::release_body (bool keep_arguments)
1750 ipa_transforms_to_apply.release ();
1751 if (!used_as_abstract_origin && symtab->state != PARSING)
1753 DECL_RESULT (decl) = NULL;
1755 if (!keep_arguments)
1756 DECL_ARGUMENTS (decl) = NULL;
1758 /* If the node is abstract and needed, then do not clear
1759 DECL_INITIAL of its associated function declaration because it's
1760 needed to emit debug info later. */
1761 if (!used_as_abstract_origin && DECL_INITIAL (decl))
1762 DECL_INITIAL (decl) = error_mark_node;
1763 release_function_body (decl);
1764 if (lto_file_data)
1766 lto_free_function_in_decl_state_for_node (this);
1767 lto_file_data = NULL;
1771 /* Remove function from symbol table. */
1773 void
1774 cgraph_node::remove (void)
1776 cgraph_node *n;
1778 if (symtab->ipa_clones_dump_file && symtab->cloned_nodes.contains (this))
1779 fprintf (symtab->ipa_clones_dump_file,
1780 "Callgraph removal;%s;%d;%s;%d;%d\n", asm_name (), order,
1781 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl),
1782 DECL_SOURCE_COLUMN (decl));
1784 symtab->call_cgraph_removal_hooks (this);
1785 remove_callers ();
1786 remove_callees ();
1787 ipa_transforms_to_apply.release ();
1788 delete_function_version (function_version ());
1790 /* Incremental inlining access removed nodes stored in the postorder list.
1792 force_output = false;
1793 forced_by_abi = false;
1794 for (n = nested; n; n = n->next_nested)
1795 n->origin = NULL;
1796 nested = NULL;
1797 if (origin)
1799 cgraph_node **node2 = &origin->nested;
1801 while (*node2 != this)
1802 node2 = &(*node2)->next_nested;
1803 *node2 = next_nested;
1805 unregister ();
1806 if (prev_sibling_clone)
1807 prev_sibling_clone->next_sibling_clone = next_sibling_clone;
1808 else if (clone_of)
1809 clone_of->clones = next_sibling_clone;
1810 if (next_sibling_clone)
1811 next_sibling_clone->prev_sibling_clone = prev_sibling_clone;
1812 if (clones)
1814 cgraph_node *n, *next;
1816 if (clone_of)
1818 for (n = clones; n->next_sibling_clone; n = n->next_sibling_clone)
1819 n->clone_of = clone_of;
1820 n->clone_of = clone_of;
1821 n->next_sibling_clone = clone_of->clones;
1822 if (clone_of->clones)
1823 clone_of->clones->prev_sibling_clone = n;
1824 clone_of->clones = clones;
1826 else
1828 /* We are removing node with clones. This makes clones inconsistent,
1829 but assume they will be removed subsequently and just keep clone
1830 tree intact. This can happen in unreachable function removal since
1831 we remove unreachable functions in random order, not by bottom-up
1832 walk of clone trees. */
1833 for (n = clones; n; n = next)
1835 next = n->next_sibling_clone;
1836 n->next_sibling_clone = NULL;
1837 n->prev_sibling_clone = NULL;
1838 n->clone_of = NULL;
1843 /* While all the clones are removed after being proceeded, the function
1844 itself is kept in the cgraph even after it is compiled. Check whether
1845 we are done with this body and reclaim it proactively if this is the case.
1847 if (symtab->state != LTO_STREAMING)
1849 n = cgraph_node::get (decl);
1850 if (!n
1851 || (!n->clones && !n->clone_of && !n->global.inlined_to
1852 && ((symtab->global_info_ready || in_lto_p)
1853 && (TREE_ASM_WRITTEN (n->decl)
1854 || DECL_EXTERNAL (n->decl)
1855 || !n->analyzed
1856 || (!flag_wpa && n->in_other_partition)))))
1857 release_body ();
1859 else
1861 lto_free_function_in_decl_state_for_node (this);
1862 lto_file_data = NULL;
1865 decl = NULL;
1866 if (call_site_hash)
1868 call_site_hash->empty ();
1869 call_site_hash = NULL;
1872 symtab->release_symbol (this);
1875 /* Likewise indicate that a node is having address taken. */
1877 void
1878 cgraph_node::mark_address_taken (void)
1880 /* Indirect inlining can figure out that all uses of the address are
1881 inlined. */
1882 if (global.inlined_to)
1884 gcc_assert (cfun->after_inlining);
1885 gcc_assert (callers->indirect_inlining_edge);
1886 return;
1888 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1889 IPA_REF_ADDR reference exists (and thus it should be set on node
1890 representing alias we take address of) and as a test whether address
1891 of the object was taken (and thus it should be set on node alias is
1892 referring to). We should remove the first use and the remove the
1893 following set. */
1894 address_taken = 1;
1895 cgraph_node *node = ultimate_alias_target ();
1896 node->address_taken = 1;
1899 /* Return local info for the compiled function. */
1901 cgraph_local_info *
1902 cgraph_node::local_info (tree decl)
1904 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1905 cgraph_node *node = get (decl);
1906 if (!node)
1907 return NULL;
1908 return &node->ultimate_alias_target ()->local;
1911 /* Return local info for the compiled function. */
1913 cgraph_rtl_info *
1914 cgraph_node::rtl_info (tree decl)
1916 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1917 cgraph_node *node = get (decl);
1918 if (!node)
1919 return NULL;
1920 enum availability avail;
1921 node = node->ultimate_alias_target (&avail);
1922 if (decl != current_function_decl
1923 && (avail < AVAIL_AVAILABLE
1924 || (node->decl != current_function_decl
1925 && !TREE_ASM_WRITTEN (node->decl))))
1926 return NULL;
1927 /* Allocate if it doesn't exist. */
1928 if (node->rtl == NULL)
1929 node->rtl = ggc_cleared_alloc<cgraph_rtl_info> ();
1930 return node->rtl;
1933 /* Return a string describing the failure REASON. */
1935 const char*
1936 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1938 #undef DEFCIFCODE
1939 #define DEFCIFCODE(code, type, string) string,
1941 static const char *cif_string_table[CIF_N_REASONS] = {
1942 #include "cif-code.def"
1945 /* Signedness of an enum type is implementation defined, so cast it
1946 to unsigned before testing. */
1947 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1948 return cif_string_table[reason];
1951 /* Return a type describing the failure REASON. */
1953 cgraph_inline_failed_type_t
1954 cgraph_inline_failed_type (cgraph_inline_failed_t reason)
1956 #undef DEFCIFCODE
1957 #define DEFCIFCODE(code, type, string) type,
1959 static cgraph_inline_failed_type_t cif_type_table[CIF_N_REASONS] = {
1960 #include "cif-code.def"
1963 /* Signedness of an enum type is implementation defined, so cast it
1964 to unsigned before testing. */
1965 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1966 return cif_type_table[reason];
1969 /* Names used to print out the availability enum. */
1970 const char * const cgraph_availability_names[] =
1971 {"unset", "not_available", "overwritable", "available", "local"};
1973 /* Output flags of edge to a file F. */
1975 void
1976 cgraph_edge::dump_edge_flags (FILE *f)
1978 if (speculative)
1979 fprintf (f, "(speculative) ");
1980 if (!inline_failed)
1981 fprintf (f, "(inlined) ");
1982 if (call_stmt_cannot_inline_p)
1983 fprintf (f, "(call_stmt_cannot_inline_p) ");
1984 if (indirect_inlining_edge)
1985 fprintf (f, "(indirect_inlining) ");
1986 if (count.initialized_p ())
1988 fprintf (f, "(");
1989 count.dump (f);
1990 fprintf (f, ",");
1991 fprintf (f, "%.2f per call) ", sreal_frequency ().to_double ());
1993 if (can_throw_external)
1994 fprintf (f, "(can throw external) ");
1997 /* Dump call graph node to file F. */
1999 void
2000 cgraph_node::dump (FILE *f)
2002 cgraph_edge *edge;
2004 dump_base (f);
2006 if (global.inlined_to)
2007 fprintf (f, " Function %s is inline copy in %s\n",
2008 dump_name (),
2009 global.inlined_to->dump_name ());
2010 if (clone_of)
2011 fprintf (f, " Clone of %s\n", clone_of->dump_asm_name ());
2012 if (symtab->function_flags_ready)
2013 fprintf (f, " Availability: %s\n",
2014 cgraph_availability_names [get_availability ()]);
2016 if (profile_id)
2017 fprintf (f, " Profile id: %i\n",
2018 profile_id);
2019 fprintf (f, " First run: %i\n", tp_first_run);
2020 cgraph_function_version_info *vi = function_version ();
2021 if (vi != NULL)
2023 fprintf (f, " Version info: ");
2024 if (vi->prev != NULL)
2026 fprintf (f, "prev: ");
2027 fprintf (f, "%s ", vi->prev->this_node->dump_asm_name ());
2029 if (vi->next != NULL)
2031 fprintf (f, "next: ");
2032 fprintf (f, "%s ", vi->next->this_node->dump_asm_name ());
2034 if (vi->dispatcher_resolver != NULL_TREE)
2035 fprintf (f, "dispatcher: %s",
2036 lang_hooks.decl_printable_name (vi->dispatcher_resolver, 2));
2038 fprintf (f, "\n");
2040 fprintf (f, " Function flags:");
2041 if (count.initialized_p ())
2043 fprintf (f, " count: ");
2044 count.dump (f);
2046 if (origin)
2047 fprintf (f, " nested in: %s", origin->asm_name ());
2048 if (gimple_has_body_p (decl))
2049 fprintf (f, " body");
2050 if (process)
2051 fprintf (f, " process");
2052 if (local.local)
2053 fprintf (f, " local");
2054 if (local.redefined_extern_inline)
2055 fprintf (f, " redefined_extern_inline");
2056 if (only_called_at_startup)
2057 fprintf (f, " only_called_at_startup");
2058 if (only_called_at_exit)
2059 fprintf (f, " only_called_at_exit");
2060 if (tm_clone)
2061 fprintf (f, " tm_clone");
2062 if (calls_comdat_local)
2063 fprintf (f, " calls_comdat_local");
2064 if (icf_merged)
2065 fprintf (f, " icf_merged");
2066 if (merged_comdat)
2067 fprintf (f, " merged_comdat");
2068 if (split_part)
2069 fprintf (f, " split_part");
2070 if (indirect_call_target)
2071 fprintf (f, " indirect_call_target");
2072 if (nonfreeing_fn)
2073 fprintf (f, " nonfreeing_fn");
2074 if (DECL_STATIC_CONSTRUCTOR (decl))
2075 fprintf (f," static_constructor (priority:%i)", get_init_priority ());
2076 if (DECL_STATIC_DESTRUCTOR (decl))
2077 fprintf (f," static_destructor (priority:%i)", get_fini_priority ());
2078 if (frequency == NODE_FREQUENCY_HOT)
2079 fprintf (f, " hot");
2080 if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2081 fprintf (f, " unlikely_executed");
2082 if (frequency == NODE_FREQUENCY_EXECUTED_ONCE)
2083 fprintf (f, " executed_once");
2084 if (only_called_at_startup)
2085 fprintf (f, " only_called_at_startup");
2086 if (only_called_at_exit)
2087 fprintf (f, " only_called_at_exit");
2088 if (opt_for_fn (decl, optimize_size))
2089 fprintf (f, " optimize_size");
2090 if (parallelized_function)
2091 fprintf (f, " parallelized_function");
2093 fprintf (f, "\n");
2095 if (thunk.thunk_p)
2097 fprintf (f, " Thunk");
2098 if (thunk.alias)
2099 fprintf (f, " of %s (asm: %s)",
2100 lang_hooks.decl_printable_name (thunk.alias, 2),
2101 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2102 fprintf (f, " fixed offset %i virtual value %i has "
2103 "virtual offset %i)\n",
2104 (int)thunk.fixed_offset,
2105 (int)thunk.virtual_value,
2106 (int)thunk.virtual_offset_p);
2108 if (alias && thunk.alias
2109 && DECL_P (thunk.alias))
2111 fprintf (f, " Alias of %s",
2112 lang_hooks.decl_printable_name (thunk.alias, 2));
2113 if (DECL_ASSEMBLER_NAME_SET_P (thunk.alias))
2114 fprintf (f, " (asm: %s)",
2115 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2116 fprintf (f, "\n");
2119 fprintf (f, " Called by: ");
2121 profile_count sum = profile_count::zero ();
2122 for (edge = callers; edge; edge = edge->next_caller)
2124 fprintf (f, "%s ", edge->caller->dump_name ());
2125 edge->dump_edge_flags (f);
2126 if (edge->count.initialized_p ())
2127 sum += edge->count.ipa ();
2130 fprintf (f, "\n Calls: ");
2131 for (edge = callees; edge; edge = edge->next_callee)
2133 fprintf (f, "%s ", edge->callee->dump_name ());
2134 edge->dump_edge_flags (f);
2136 fprintf (f, "\n");
2138 if (count.ipa ().initialized_p ())
2140 bool ok = true;
2141 bool min = false;
2142 ipa_ref *ref;
2144 FOR_EACH_ALIAS (this, ref)
2145 if (dyn_cast <cgraph_node *> (ref->referring)->count.initialized_p ())
2146 sum += dyn_cast <cgraph_node *> (ref->referring)->count.ipa ();
2148 if (global.inlined_to
2149 || (symtab->state < EXPANSION
2150 && ultimate_alias_target () == this && only_called_directly_p ()))
2151 ok = !count.ipa ().differs_from_p (sum);
2152 else if (count.ipa () > profile_count::from_gcov_type (100)
2153 && count.ipa () < sum.apply_scale (99, 100))
2154 ok = false, min = true;
2155 if (!ok)
2157 fprintf (f, " Invalid sum of caller counts ");
2158 sum.dump (f);
2159 if (min)
2160 fprintf (f, ", should be at most ");
2161 else
2162 fprintf (f, ", should be ");
2163 count.ipa ().dump (f);
2164 fprintf (f, "\n");
2168 for (edge = indirect_calls; edge; edge = edge->next_callee)
2170 if (edge->indirect_info->polymorphic)
2172 fprintf (f, " Polymorphic indirect call of type ");
2173 print_generic_expr (f, edge->indirect_info->otr_type, TDF_SLIM);
2174 fprintf (f, " token:%i", (int) edge->indirect_info->otr_token);
2176 else
2177 fprintf (f, " Indirect call");
2178 edge->dump_edge_flags (f);
2179 if (edge->indirect_info->param_index != -1)
2181 fprintf (f, " of param:%i", edge->indirect_info->param_index);
2182 if (edge->indirect_info->agg_contents)
2183 fprintf (f, " loaded from %s %s at offset %i",
2184 edge->indirect_info->member_ptr ? "member ptr" : "aggregate",
2185 edge->indirect_info->by_ref ? "passed by reference":"",
2186 (int)edge->indirect_info->offset);
2187 if (edge->indirect_info->vptr_changed)
2188 fprintf (f, " (vptr maybe changed)");
2190 fprintf (f, "\n");
2191 if (edge->indirect_info->polymorphic)
2192 edge->indirect_info->context.dump (f);
2196 /* Dump call graph node NODE to stderr. */
2198 DEBUG_FUNCTION void
2199 cgraph_node::debug (void)
2201 dump (stderr);
2204 /* Dump the callgraph to file F. */
2206 void
2207 cgraph_node::dump_cgraph (FILE *f)
2209 cgraph_node *node;
2211 fprintf (f, "callgraph:\n\n");
2212 FOR_EACH_FUNCTION (node)
2213 node->dump (f);
2216 /* Return true when the DECL can possibly be inlined. */
2218 bool
2219 cgraph_function_possibly_inlined_p (tree decl)
2221 if (!symtab->global_info_ready)
2222 return !DECL_UNINLINABLE (decl);
2223 return DECL_POSSIBLY_INLINED (decl);
2226 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2227 void
2228 cgraph_node::unnest (void)
2230 cgraph_node **node2 = &origin->nested;
2231 gcc_assert (origin);
2233 while (*node2 != this)
2234 node2 = &(*node2)->next_nested;
2235 *node2 = next_nested;
2236 origin = NULL;
2239 /* Return function availability. See cgraph.h for description of individual
2240 return values. */
2241 enum availability
2242 cgraph_node::get_availability (symtab_node *ref)
2244 if (ref)
2246 cgraph_node *cref = dyn_cast <cgraph_node *> (ref);
2247 if (cref)
2248 ref = cref->global.inlined_to;
2250 enum availability avail;
2251 if (!analyzed)
2252 avail = AVAIL_NOT_AVAILABLE;
2253 else if (local.local)
2254 avail = AVAIL_LOCAL;
2255 else if (global.inlined_to)
2256 avail = AVAIL_AVAILABLE;
2257 else if (transparent_alias)
2258 ultimate_alias_target (&avail, ref);
2259 else if (ifunc_resolver
2260 || lookup_attribute ("noipa", DECL_ATTRIBUTES (decl)))
2261 avail = AVAIL_INTERPOSABLE;
2262 else if (!externally_visible)
2263 avail = AVAIL_AVAILABLE;
2264 /* If this is a reference from symbol itself and there are no aliases, we
2265 may be sure that the symbol was not interposed by something else because
2266 the symbol itself would be unreachable otherwise.
2268 Also comdat groups are always resolved in groups. */
2269 else if ((this == ref && !has_aliases_p ())
2270 || (ref && get_comdat_group ()
2271 && get_comdat_group () == ref->get_comdat_group ()))
2272 avail = AVAIL_AVAILABLE;
2273 /* Inline functions are safe to be analyzed even if their symbol can
2274 be overwritten at runtime. It is not meaningful to enforce any sane
2275 behavior on replacing inline function by different body. */
2276 else if (DECL_DECLARED_INLINE_P (decl))
2277 avail = AVAIL_AVAILABLE;
2279 /* If the function can be overwritten, return OVERWRITABLE. Take
2280 care at least of two notable extensions - the COMDAT functions
2281 used to share template instantiations in C++ (this is symmetric
2282 to code cp_cannot_inline_tree_fn and probably shall be shared and
2283 the inlinability hooks completely eliminated). */
2285 else if (decl_replaceable_p (decl) && !DECL_EXTERNAL (decl))
2286 avail = AVAIL_INTERPOSABLE;
2287 else avail = AVAIL_AVAILABLE;
2289 return avail;
2292 /* Worker for cgraph_node_can_be_local_p. */
2293 static bool
2294 cgraph_node_cannot_be_local_p_1 (cgraph_node *node, void *)
2296 return !(!node->force_output
2297 && ((DECL_COMDAT (node->decl)
2298 && !node->forced_by_abi
2299 && !node->used_from_object_file_p ()
2300 && !node->same_comdat_group)
2301 || !node->externally_visible));
2304 /* Return true if cgraph_node can be made local for API change.
2305 Extern inline functions and C++ COMDAT functions can be made local
2306 at the expense of possible code size growth if function is used in multiple
2307 compilation units. */
2308 bool
2309 cgraph_node::can_be_local_p (void)
2311 return (!address_taken
2312 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1,
2313 NULL, true));
2316 /* Call callback on cgraph_node, thunks and aliases associated to cgraph_node.
2317 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
2318 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
2319 skipped. */
2320 bool
2321 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback)
2322 (cgraph_node *, void *),
2323 void *data,
2324 bool include_overwritable,
2325 bool exclude_virtual_thunks)
2327 cgraph_edge *e;
2328 ipa_ref *ref;
2329 enum availability avail = AVAIL_AVAILABLE;
2331 if (include_overwritable
2332 || (avail = get_availability ()) > AVAIL_INTERPOSABLE)
2334 if (callback (this, data))
2335 return true;
2337 FOR_EACH_ALIAS (this, ref)
2339 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2340 if (include_overwritable
2341 || alias->get_availability () > AVAIL_INTERPOSABLE)
2342 if (alias->call_for_symbol_thunks_and_aliases (callback, data,
2343 include_overwritable,
2344 exclude_virtual_thunks))
2345 return true;
2347 if (avail <= AVAIL_INTERPOSABLE)
2348 return false;
2349 for (e = callers; e; e = e->next_caller)
2350 if (e->caller->thunk.thunk_p
2351 && (include_overwritable
2352 || e->caller->get_availability () > AVAIL_INTERPOSABLE)
2353 && !(exclude_virtual_thunks
2354 && e->caller->thunk.virtual_offset_p))
2355 if (e->caller->call_for_symbol_thunks_and_aliases (callback, data,
2356 include_overwritable,
2357 exclude_virtual_thunks))
2358 return true;
2360 return false;
2363 /* Worker to bring NODE local. */
2365 bool
2366 cgraph_node::make_local (cgraph_node *node, void *)
2368 gcc_checking_assert (node->can_be_local_p ());
2369 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2371 node->make_decl_local ();
2372 node->set_section (NULL);
2373 node->set_comdat_group (NULL);
2374 node->externally_visible = false;
2375 node->forced_by_abi = false;
2376 node->local.local = true;
2377 node->set_section (NULL);
2378 node->unique_name = ((node->resolution == LDPR_PREVAILING_DEF_IRONLY
2379 || node->resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
2380 && !flag_incremental_link);
2381 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2382 gcc_assert (node->get_availability () == AVAIL_LOCAL);
2384 return false;
2387 /* Bring cgraph node local. */
2389 void
2390 cgraph_node::make_local (void)
2392 call_for_symbol_thunks_and_aliases (cgraph_node::make_local, NULL, true);
2395 /* Worker to set nothrow flag. */
2397 static void
2398 set_nothrow_flag_1 (cgraph_node *node, bool nothrow, bool non_call,
2399 bool *changed)
2401 cgraph_edge *e;
2403 if (nothrow && !TREE_NOTHROW (node->decl))
2405 /* With non-call exceptions we can't say for sure if other function body
2406 was not possibly optimized to stil throw. */
2407 if (!non_call || node->binds_to_current_def_p ())
2409 TREE_NOTHROW (node->decl) = true;
2410 *changed = true;
2411 for (e = node->callers; e; e = e->next_caller)
2412 e->can_throw_external = false;
2415 else if (!nothrow && TREE_NOTHROW (node->decl))
2417 TREE_NOTHROW (node->decl) = false;
2418 *changed = true;
2420 ipa_ref *ref;
2421 FOR_EACH_ALIAS (node, ref)
2423 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2424 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2425 set_nothrow_flag_1 (alias, nothrow, non_call, changed);
2427 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2428 if (e->caller->thunk.thunk_p
2429 && (!nothrow || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2430 set_nothrow_flag_1 (e->caller, nothrow, non_call, changed);
2433 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2434 if any to NOTHROW. */
2436 bool
2437 cgraph_node::set_nothrow_flag (bool nothrow)
2439 bool changed = false;
2440 bool non_call = opt_for_fn (decl, flag_non_call_exceptions);
2442 if (!nothrow || get_availability () > AVAIL_INTERPOSABLE)
2443 set_nothrow_flag_1 (this, nothrow, non_call, &changed);
2444 else
2446 ipa_ref *ref;
2448 FOR_EACH_ALIAS (this, ref)
2450 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2451 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2452 set_nothrow_flag_1 (alias, nothrow, non_call, &changed);
2455 return changed;
2458 /* Worker to set malloc flag. */
2459 static void
2460 set_malloc_flag_1 (cgraph_node *node, bool malloc_p, bool *changed)
2462 if (malloc_p && !DECL_IS_MALLOC (node->decl))
2464 DECL_IS_MALLOC (node->decl) = true;
2465 *changed = true;
2468 ipa_ref *ref;
2469 FOR_EACH_ALIAS (node, ref)
2471 cgraph_node *alias = dyn_cast<cgraph_node *> (ref->referring);
2472 if (!malloc_p || alias->get_availability () > AVAIL_INTERPOSABLE)
2473 set_malloc_flag_1 (alias, malloc_p, changed);
2476 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2477 if (e->caller->thunk.thunk_p
2478 && (!malloc_p || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2479 set_malloc_flag_1 (e->caller, malloc_p, changed);
2482 /* Set DECL_IS_MALLOC on NODE's decl and on NODE's aliases if any. */
2484 bool
2485 cgraph_node::set_malloc_flag (bool malloc_p)
2487 bool changed = false;
2489 if (!malloc_p || get_availability () > AVAIL_INTERPOSABLE)
2490 set_malloc_flag_1 (this, malloc_p, &changed);
2491 else
2493 ipa_ref *ref;
2495 FOR_EACH_ALIAS (this, ref)
2497 cgraph_node *alias = dyn_cast<cgraph_node *> (ref->referring);
2498 if (!malloc_p || alias->get_availability () > AVAIL_INTERPOSABLE)
2499 set_malloc_flag_1 (alias, malloc_p, &changed);
2502 return changed;
2505 /* Worker to set_const_flag. */
2507 static void
2508 set_const_flag_1 (cgraph_node *node, bool set_const, bool looping,
2509 bool *changed)
2511 /* Static constructors and destructors without a side effect can be
2512 optimized out. */
2513 if (set_const && !looping)
2515 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2517 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2518 *changed = true;
2520 if (DECL_STATIC_DESTRUCTOR (node->decl))
2522 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2523 *changed = true;
2526 if (!set_const)
2528 if (TREE_READONLY (node->decl))
2530 TREE_READONLY (node->decl) = 0;
2531 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2532 *changed = true;
2535 else
2537 /* Consider function:
2539 bool a(int *p)
2541 return *p==*p;
2544 During early optimization we will turn this into:
2546 bool a(int *p)
2548 return true;
2551 Now if this function will be detected as CONST however when interposed
2552 it may end up being just pure. We always must assume the worst
2553 scenario here. */
2554 if (TREE_READONLY (node->decl))
2556 if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2558 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2559 *changed = true;
2562 else if (node->binds_to_current_def_p ())
2564 TREE_READONLY (node->decl) = true;
2565 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2566 DECL_PURE_P (node->decl) = false;
2567 *changed = true;
2569 else
2571 if (dump_file && (dump_flags & TDF_DETAILS))
2572 fprintf (dump_file, "Dropping state to PURE because function does "
2573 "not bind to current def.\n");
2574 if (!DECL_PURE_P (node->decl))
2576 DECL_PURE_P (node->decl) = true;
2577 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2578 *changed = true;
2580 else if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2582 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2583 *changed = true;
2588 ipa_ref *ref;
2589 FOR_EACH_ALIAS (node, ref)
2591 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2592 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2593 set_const_flag_1 (alias, set_const, looping, changed);
2595 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2596 if (e->caller->thunk.thunk_p
2597 && (!set_const || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2599 /* Virtual thunks access virtual offset in the vtable, so they can
2600 only be pure, never const. */
2601 if (set_const
2602 && (e->caller->thunk.virtual_offset_p
2603 || !node->binds_to_current_def_p (e->caller)))
2604 *changed |= e->caller->set_pure_flag (true, looping);
2605 else
2606 set_const_flag_1 (e->caller, set_const, looping, changed);
2610 /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST.
2611 If SET_CONST if false, clear the flag.
2613 When setting the flag be careful about possible interposition and
2614 do not set the flag for functions that can be interposet and set pure
2615 flag for functions that can bind to other definition.
2617 Return true if any change was done. */
2619 bool
2620 cgraph_node::set_const_flag (bool set_const, bool looping)
2622 bool changed = false;
2623 if (!set_const || get_availability () > AVAIL_INTERPOSABLE)
2624 set_const_flag_1 (this, set_const, looping, &changed);
2625 else
2627 ipa_ref *ref;
2629 FOR_EACH_ALIAS (this, ref)
2631 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2632 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2633 set_const_flag_1 (alias, set_const, looping, &changed);
2636 return changed;
2639 /* Info used by set_pure_flag_1. */
2641 struct set_pure_flag_info
2643 bool pure;
2644 bool looping;
2645 bool changed;
2648 /* Worker to set_pure_flag. */
2650 static bool
2651 set_pure_flag_1 (cgraph_node *node, void *data)
2653 struct set_pure_flag_info *info = (struct set_pure_flag_info *)data;
2654 /* Static constructors and destructors without a side effect can be
2655 optimized out. */
2656 if (info->pure && !info->looping)
2658 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2660 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2661 info->changed = true;
2663 if (DECL_STATIC_DESTRUCTOR (node->decl))
2665 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2666 info->changed = true;
2669 if (info->pure)
2671 if (!DECL_PURE_P (node->decl) && !TREE_READONLY (node->decl))
2673 DECL_PURE_P (node->decl) = true;
2674 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = info->looping;
2675 info->changed = true;
2677 else if (DECL_LOOPING_CONST_OR_PURE_P (node->decl)
2678 && !info->looping)
2680 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2681 info->changed = true;
2684 else
2686 if (DECL_PURE_P (node->decl))
2688 DECL_PURE_P (node->decl) = false;
2689 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2690 info->changed = true;
2693 return false;
2696 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2697 if any to PURE.
2699 When setting the flag, be careful about possible interposition.
2700 Return true if any change was done. */
2702 bool
2703 cgraph_node::set_pure_flag (bool pure, bool looping)
2705 struct set_pure_flag_info info = {pure, looping, false};
2706 if (!pure)
2707 looping = false;
2708 call_for_symbol_thunks_and_aliases (set_pure_flag_1, &info, !pure, true);
2709 return info.changed;
2712 /* Return true when cgraph_node can not return or throw and thus
2713 it is safe to ignore its side effects for IPA analysis. */
2715 bool
2716 cgraph_node::cannot_return_p (void)
2718 int flags = flags_from_decl_or_type (decl);
2719 if (!opt_for_fn (decl, flag_exceptions))
2720 return (flags & ECF_NORETURN) != 0;
2721 else
2722 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2723 == (ECF_NORETURN | ECF_NOTHROW));
2726 /* Return true when call of edge can not lead to return from caller
2727 and thus it is safe to ignore its side effects for IPA analysis
2728 when computing side effects of the caller.
2729 FIXME: We could actually mark all edges that have no reaching
2730 patch to the exit block or throw to get better results. */
2731 bool
2732 cgraph_edge::cannot_lead_to_return_p (void)
2734 if (caller->cannot_return_p ())
2735 return true;
2736 if (indirect_unknown_callee)
2738 int flags = indirect_info->ecf_flags;
2739 if (!opt_for_fn (caller->decl, flag_exceptions))
2740 return (flags & ECF_NORETURN) != 0;
2741 else
2742 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2743 == (ECF_NORETURN | ECF_NOTHROW));
2745 else
2746 return callee->cannot_return_p ();
2749 /* Return true if the call can be hot. */
2751 bool
2752 cgraph_edge::maybe_hot_p (void)
2754 if (!maybe_hot_count_p (NULL, count.ipa ()))
2755 return false;
2756 if (caller->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
2757 || (callee
2758 && callee->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED))
2759 return false;
2760 if (caller->frequency > NODE_FREQUENCY_UNLIKELY_EXECUTED
2761 && (callee
2762 && callee->frequency <= NODE_FREQUENCY_EXECUTED_ONCE))
2763 return false;
2764 if (opt_for_fn (caller->decl, optimize_size))
2765 return false;
2766 if (caller->frequency == NODE_FREQUENCY_HOT)
2767 return true;
2768 /* If profile is now known yet, be conservative.
2769 FIXME: this predicate is used by early inliner and can do better there. */
2770 if (symtab->state < IPA_SSA)
2771 return true;
2772 if (caller->frequency == NODE_FREQUENCY_EXECUTED_ONCE
2773 && sreal_frequency () * 2 < 3)
2774 return false;
2775 if (PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION) == 0
2776 || sreal_frequency () * PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION) <= 1)
2777 return false;
2778 return true;
2781 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2783 static bool
2784 nonremovable_p (cgraph_node *node, void *)
2786 return !node->can_remove_if_no_direct_calls_and_refs_p ();
2789 /* Return true if whole comdat group can be removed if there are no direct
2790 calls to THIS. */
2792 bool
2793 cgraph_node::can_remove_if_no_direct_calls_p (bool will_inline)
2795 struct ipa_ref *ref;
2797 /* For local symbols or non-comdat group it is the same as
2798 can_remove_if_no_direct_calls_p. */
2799 if (!externally_visible || !same_comdat_group)
2801 if (DECL_EXTERNAL (decl))
2802 return true;
2803 if (address_taken)
2804 return false;
2805 return !call_for_symbol_and_aliases (nonremovable_p, NULL, true);
2808 if (will_inline && address_taken)
2809 return false;
2811 /* Otheriwse check if we can remove the symbol itself and then verify
2812 that only uses of the comdat groups are direct call to THIS
2813 or its aliases. */
2814 if (!can_remove_if_no_direct_calls_and_refs_p ())
2815 return false;
2817 /* Check that all refs come from within the comdat group. */
2818 for (int i = 0; iterate_referring (i, ref); i++)
2819 if (ref->referring->get_comdat_group () != get_comdat_group ())
2820 return false;
2822 struct cgraph_node *target = ultimate_alias_target ();
2823 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2824 next != this; next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2826 if (!externally_visible)
2827 continue;
2828 if (!next->alias
2829 && !next->can_remove_if_no_direct_calls_and_refs_p ())
2830 return false;
2832 /* If we see different symbol than THIS, be sure to check calls. */
2833 if (next->ultimate_alias_target () != target)
2834 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2835 if (e->caller->get_comdat_group () != get_comdat_group ()
2836 || will_inline)
2837 return false;
2839 /* If function is not being inlined, we care only about
2840 references outside of the comdat group. */
2841 if (!will_inline)
2842 for (int i = 0; next->iterate_referring (i, ref); i++)
2843 if (ref->referring->get_comdat_group () != get_comdat_group ())
2844 return false;
2846 return true;
2849 /* Return true when function cgraph_node can be expected to be removed
2850 from program when direct calls in this compilation unit are removed.
2852 As a special case COMDAT functions are
2853 cgraph_can_remove_if_no_direct_calls_p while the are not
2854 cgraph_only_called_directly_p (it is possible they are called from other
2855 unit)
2857 This function behaves as cgraph_only_called_directly_p because eliminating
2858 all uses of COMDAT function does not make it necessarily disappear from
2859 the program unless we are compiling whole program or we do LTO. In this
2860 case we know we win since dynamic linking will not really discard the
2861 linkonce section. */
2863 bool
2864 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p
2865 (bool will_inline)
2867 gcc_assert (!global.inlined_to);
2868 if (DECL_EXTERNAL (decl))
2869 return true;
2871 if (!in_lto_p && !flag_whole_program)
2873 /* If the symbol is in comdat group, we need to verify that whole comdat
2874 group becomes unreachable. Technically we could skip references from
2875 within the group, too. */
2876 if (!only_called_directly_p ())
2877 return false;
2878 if (same_comdat_group && externally_visible)
2880 struct cgraph_node *target = ultimate_alias_target ();
2882 if (will_inline && address_taken)
2883 return true;
2884 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2885 next != this;
2886 next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2888 if (!externally_visible)
2889 continue;
2890 if (!next->alias
2891 && !next->only_called_directly_p ())
2892 return false;
2894 /* If we see different symbol than THIS,
2895 be sure to check calls. */
2896 if (next->ultimate_alias_target () != target)
2897 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2898 if (e->caller->get_comdat_group () != get_comdat_group ()
2899 || will_inline)
2900 return false;
2903 return true;
2905 else
2906 return can_remove_if_no_direct_calls_p (will_inline);
2910 /* Worker for cgraph_only_called_directly_p. */
2912 static bool
2913 cgraph_not_only_called_directly_p_1 (cgraph_node *node, void *)
2915 return !node->only_called_directly_or_aliased_p ();
2918 /* Return true when function cgraph_node and all its aliases are only called
2919 directly.
2920 i.e. it is not externally visible, address was not taken and
2921 it is not used in any other non-standard way. */
2923 bool
2924 cgraph_node::only_called_directly_p (void)
2926 gcc_assert (ultimate_alias_target () == this);
2927 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1,
2928 NULL, true);
2932 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2934 static bool
2935 collect_callers_of_node_1 (cgraph_node *node, void *data)
2937 vec<cgraph_edge *> *redirect_callers = (vec<cgraph_edge *> *)data;
2938 cgraph_edge *cs;
2939 enum availability avail;
2940 node->ultimate_alias_target (&avail);
2942 if (avail > AVAIL_INTERPOSABLE)
2943 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
2944 if (!cs->indirect_inlining_edge
2945 && !cs->caller->thunk.thunk_p)
2946 redirect_callers->safe_push (cs);
2947 return false;
2950 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2951 cgraph_node (i.e. are not overwritable). */
2953 vec<cgraph_edge *>
2954 cgraph_node::collect_callers (void)
2956 vec<cgraph_edge *> redirect_callers = vNULL;
2957 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1,
2958 &redirect_callers, false);
2959 return redirect_callers;
2962 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. */
2964 static bool
2965 clone_of_p (cgraph_node *node, cgraph_node *node2)
2967 bool skipped_thunk = false;
2968 node = node->ultimate_alias_target ();
2969 node2 = node2->ultimate_alias_target ();
2971 /* There are no virtual clones of thunks so check former_clone_of or if we
2972 might have skipped thunks because this adjustments are no longer
2973 necessary. */
2974 while (node->thunk.thunk_p)
2976 if (node2->former_clone_of == node->decl)
2977 return true;
2978 if (!node->thunk.this_adjusting)
2979 return false;
2980 node = node->callees->callee->ultimate_alias_target ();
2981 skipped_thunk = true;
2984 if (skipped_thunk)
2986 if (!node2->clone.args_to_skip
2987 || !bitmap_bit_p (node2->clone.args_to_skip, 0))
2988 return false;
2989 if (node2->former_clone_of == node->decl)
2990 return true;
2991 else if (!node2->clone_of)
2992 return false;
2995 while (node != node2 && node2)
2996 node2 = node2->clone_of;
2997 return node2 != NULL;
3000 /* Verify edge count and frequency. */
3002 bool
3003 cgraph_edge::verify_count ()
3005 bool error_found = false;
3006 if (!count.verify ())
3008 error ("caller edge count invalid");
3009 error_found = true;
3011 return error_found;
3014 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
3015 static void
3016 cgraph_debug_gimple_stmt (function *this_cfun, gimple *stmt)
3018 bool fndecl_was_null = false;
3019 /* debug_gimple_stmt needs correct cfun */
3020 if (cfun != this_cfun)
3021 set_cfun (this_cfun);
3022 /* ...and an actual current_function_decl */
3023 if (!current_function_decl)
3025 current_function_decl = this_cfun->decl;
3026 fndecl_was_null = true;
3028 debug_gimple_stmt (stmt);
3029 if (fndecl_was_null)
3030 current_function_decl = NULL;
3033 /* Verify that call graph edge corresponds to DECL from the associated
3034 statement. Return true if the verification should fail. */
3036 bool
3037 cgraph_edge::verify_corresponds_to_fndecl (tree decl)
3039 cgraph_node *node;
3041 if (!decl || callee->global.inlined_to)
3042 return false;
3043 if (symtab->state == LTO_STREAMING)
3044 return false;
3045 node = cgraph_node::get (decl);
3047 /* We do not know if a node from a different partition is an alias or what it
3048 aliases and therefore cannot do the former_clone_of check reliably. When
3049 body_removed is set, we have lost all information about what was alias or
3050 thunk of and also cannot proceed. */
3051 if (!node
3052 || node->body_removed
3053 || node->in_other_partition
3054 || callee->icf_merged
3055 || callee->in_other_partition)
3056 return false;
3058 node = node->ultimate_alias_target ();
3060 /* Optimizers can redirect unreachable calls or calls triggering undefined
3061 behavior to builtin_unreachable. */
3063 if (fndecl_built_in_p (callee->decl, BUILT_IN_UNREACHABLE))
3064 return false;
3066 if (callee->former_clone_of != node->decl
3067 && (node != callee->ultimate_alias_target ())
3068 && !clone_of_p (node, callee))
3069 return true;
3070 else
3071 return false;
3074 /* Verify cgraph nodes of given cgraph node. */
3075 DEBUG_FUNCTION void
3076 cgraph_node::verify_node (void)
3078 cgraph_edge *e;
3079 function *this_cfun = DECL_STRUCT_FUNCTION (decl);
3080 basic_block this_block;
3081 gimple_stmt_iterator gsi;
3082 bool error_found = false;
3084 if (seen_error ())
3085 return;
3087 timevar_push (TV_CGRAPH_VERIFY);
3088 error_found |= verify_base ();
3089 for (e = callees; e; e = e->next_callee)
3090 if (e->aux)
3092 error ("aux field set for edge %s->%s",
3093 identifier_to_locale (e->caller->name ()),
3094 identifier_to_locale (e->callee->name ()));
3095 error_found = true;
3097 if (!count.verify ())
3099 error ("cgraph count invalid");
3100 error_found = true;
3102 if (global.inlined_to && same_comdat_group)
3104 error ("inline clone in same comdat group list");
3105 error_found = true;
3107 if (!definition && !in_other_partition && local.local)
3109 error ("local symbols must be defined");
3110 error_found = true;
3112 if (global.inlined_to && externally_visible)
3114 error ("externally visible inline clone");
3115 error_found = true;
3117 if (global.inlined_to && address_taken)
3119 error ("inline clone with address taken");
3120 error_found = true;
3122 if (global.inlined_to && force_output)
3124 error ("inline clone is forced to output");
3125 error_found = true;
3127 for (e = indirect_calls; e; e = e->next_callee)
3129 if (e->aux)
3131 error ("aux field set for indirect edge from %s",
3132 identifier_to_locale (e->caller->name ()));
3133 error_found = true;
3135 if (!e->indirect_unknown_callee
3136 || !e->indirect_info)
3138 error ("An indirect edge from %s is not marked as indirect or has "
3139 "associated indirect_info, the corresponding statement is: ",
3140 identifier_to_locale (e->caller->name ()));
3141 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3142 error_found = true;
3145 bool check_comdat = comdat_local_p ();
3146 for (e = callers; e; e = e->next_caller)
3148 if (e->verify_count ())
3149 error_found = true;
3150 if (check_comdat
3151 && !in_same_comdat_group_p (e->caller))
3153 error ("comdat-local function called by %s outside its comdat",
3154 identifier_to_locale (e->caller->name ()));
3155 error_found = true;
3157 if (!e->inline_failed)
3159 if (global.inlined_to
3160 != (e->caller->global.inlined_to
3161 ? e->caller->global.inlined_to : e->caller))
3163 error ("inlined_to pointer is wrong");
3164 error_found = true;
3166 if (callers->next_caller)
3168 error ("multiple inline callers");
3169 error_found = true;
3172 else
3173 if (global.inlined_to)
3175 error ("inlined_to pointer set for noninline callers");
3176 error_found = true;
3179 for (e = callees; e; e = e->next_callee)
3181 if (e->verify_count ())
3182 error_found = true;
3183 if (gimple_has_body_p (e->caller->decl)
3184 && !e->caller->global.inlined_to
3185 && !e->speculative
3186 /* Optimized out calls are redirected to __builtin_unreachable. */
3187 && (e->count.nonzero_p ()
3188 || ! e->callee->decl
3189 || !fndecl_built_in_p (e->callee->decl, BUILT_IN_UNREACHABLE))
3190 && count
3191 == ENTRY_BLOCK_PTR_FOR_FN (DECL_STRUCT_FUNCTION (decl))->count
3192 && (!e->count.ipa_p ()
3193 && e->count.differs_from_p (gimple_bb (e->call_stmt)->count)))
3195 error ("caller edge count does not match BB count");
3196 fprintf (stderr, "edge count: ");
3197 e->count.dump (stderr);
3198 fprintf (stderr, "\n bb count: ");
3199 gimple_bb (e->call_stmt)->count.dump (stderr);
3200 fprintf (stderr, "\n");
3201 error_found = true;
3204 for (e = indirect_calls; e; e = e->next_callee)
3206 if (e->verify_count ())
3207 error_found = true;
3208 if (gimple_has_body_p (e->caller->decl)
3209 && !e->caller->global.inlined_to
3210 && !e->speculative
3211 && e->count.ipa_p ()
3212 && count
3213 == ENTRY_BLOCK_PTR_FOR_FN (DECL_STRUCT_FUNCTION (decl))->count
3214 && (!e->count.ipa_p ()
3215 && e->count.differs_from_p (gimple_bb (e->call_stmt)->count)))
3217 error ("indirect call count does not match BB count");
3218 fprintf (stderr, "edge count: ");
3219 e->count.dump (stderr);
3220 fprintf (stderr, "\n bb count: ");
3221 gimple_bb (e->call_stmt)->count.dump (stderr);
3222 fprintf (stderr, "\n");
3223 error_found = true;
3226 if (!callers && global.inlined_to)
3228 error ("inlined_to pointer is set but no predecessors found");
3229 error_found = true;
3231 if (global.inlined_to == this)
3233 error ("inlined_to pointer refers to itself");
3234 error_found = true;
3237 if (clone_of)
3239 cgraph_node *n;
3240 for (n = clone_of->clones; n; n = n->next_sibling_clone)
3241 if (n == this)
3242 break;
3243 if (!n)
3245 error ("cgraph_node has wrong clone_of");
3246 error_found = true;
3249 if (clones)
3251 cgraph_node *n;
3252 for (n = clones; n; n = n->next_sibling_clone)
3253 if (n->clone_of != this)
3254 break;
3255 if (n)
3257 error ("cgraph_node has wrong clone list");
3258 error_found = true;
3261 if ((prev_sibling_clone || next_sibling_clone) && !clone_of)
3263 error ("cgraph_node is in clone list but it is not clone");
3264 error_found = true;
3266 if (!prev_sibling_clone && clone_of && clone_of->clones != this)
3268 error ("cgraph_node has wrong prev_clone pointer");
3269 error_found = true;
3271 if (prev_sibling_clone && prev_sibling_clone->next_sibling_clone != this)
3273 error ("double linked list of clones corrupted");
3274 error_found = true;
3277 if (analyzed && alias)
3279 bool ref_found = false;
3280 int i;
3281 ipa_ref *ref = NULL;
3283 if (callees)
3285 error ("Alias has call edges");
3286 error_found = true;
3288 for (i = 0; iterate_reference (i, ref); i++)
3289 if (ref->use != IPA_REF_ALIAS)
3291 error ("Alias has non-alias reference");
3292 error_found = true;
3294 else if (ref_found)
3296 error ("Alias has more than one alias reference");
3297 error_found = true;
3299 else
3300 ref_found = true;
3301 if (!ref_found)
3303 error ("Analyzed alias has no reference");
3304 error_found = true;
3308 if (analyzed && thunk.thunk_p)
3310 if (!callees)
3312 error ("No edge out of thunk node");
3313 error_found = true;
3315 else if (callees->next_callee)
3317 error ("More than one edge out of thunk node");
3318 error_found = true;
3320 if (gimple_has_body_p (decl) && !global.inlined_to)
3322 error ("Thunk is not supposed to have body");
3323 error_found = true;
3326 else if (analyzed && gimple_has_body_p (decl)
3327 && !TREE_ASM_WRITTEN (decl)
3328 && (!DECL_EXTERNAL (decl) || global.inlined_to)
3329 && !flag_wpa)
3331 if (this_cfun->cfg)
3333 hash_set<gimple *> stmts;
3334 int i;
3335 ipa_ref *ref = NULL;
3337 /* Reach the trees by walking over the CFG, and note the
3338 enclosing basic-blocks in the call edges. */
3339 FOR_EACH_BB_FN (this_block, this_cfun)
3341 for (gsi = gsi_start_phis (this_block);
3342 !gsi_end_p (gsi); gsi_next (&gsi))
3343 stmts.add (gsi_stmt (gsi));
3344 for (gsi = gsi_start_bb (this_block);
3345 !gsi_end_p (gsi);
3346 gsi_next (&gsi))
3348 gimple *stmt = gsi_stmt (gsi);
3349 stmts.add (stmt);
3350 if (is_gimple_call (stmt))
3352 cgraph_edge *e = get_edge (stmt);
3353 tree decl = gimple_call_fndecl (stmt);
3354 if (e)
3356 if (e->aux)
3358 error ("shared call_stmt:");
3359 cgraph_debug_gimple_stmt (this_cfun, stmt);
3360 error_found = true;
3362 if (!e->indirect_unknown_callee)
3364 if (e->verify_corresponds_to_fndecl (decl))
3366 error ("edge points to wrong declaration:");
3367 debug_tree (e->callee->decl);
3368 fprintf (stderr," Instead of:");
3369 debug_tree (decl);
3370 error_found = true;
3373 else if (decl)
3375 error ("an indirect edge with unknown callee "
3376 "corresponding to a call_stmt with "
3377 "a known declaration:");
3378 error_found = true;
3379 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3381 e->aux = (void *)1;
3383 else if (decl)
3385 error ("missing callgraph edge for call stmt:");
3386 cgraph_debug_gimple_stmt (this_cfun, stmt);
3387 error_found = true;
3392 for (i = 0; iterate_reference (i, ref); i++)
3393 if (ref->stmt && !stmts.contains (ref->stmt))
3395 error ("reference to dead statement");
3396 cgraph_debug_gimple_stmt (this_cfun, ref->stmt);
3397 error_found = true;
3400 else
3401 /* No CFG available?! */
3402 gcc_unreachable ();
3404 for (e = callees; e; e = e->next_callee)
3406 if (!e->aux)
3408 error ("edge %s->%s has no corresponding call_stmt",
3409 identifier_to_locale (e->caller->name ()),
3410 identifier_to_locale (e->callee->name ()));
3411 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3412 error_found = true;
3414 e->aux = 0;
3416 for (e = indirect_calls; e; e = e->next_callee)
3418 if (!e->aux && !e->speculative)
3420 error ("an indirect edge from %s has no corresponding call_stmt",
3421 identifier_to_locale (e->caller->name ()));
3422 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3423 error_found = true;
3425 e->aux = 0;
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 /* Walk the alias chain to return the function cgraph_node is alias of.
3450 Walk through thunks, too.
3451 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3452 When REF is non-NULL, assume that reference happens in symbol REF
3453 when determining the availability. */
3455 cgraph_node *
3456 cgraph_node::function_symbol (enum availability *availability,
3457 struct symtab_node *ref)
3459 cgraph_node *node = ultimate_alias_target (availability, ref);
3461 while (node->thunk.thunk_p)
3463 ref = node;
3464 node = node->callees->callee;
3465 if (availability)
3467 enum availability a;
3468 a = node->get_availability (ref);
3469 if (a < *availability)
3470 *availability = a;
3472 node = node->ultimate_alias_target (availability, ref);
3474 return node;
3477 /* Walk the alias chain to return the function cgraph_node is alias of.
3478 Walk through non virtual thunks, too. Thus we return either a function
3479 or a virtual thunk node.
3480 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3481 When REF is non-NULL, assume that reference happens in symbol REF
3482 when determining the availability. */
3484 cgraph_node *
3485 cgraph_node::function_or_virtual_thunk_symbol
3486 (enum availability *availability,
3487 struct symtab_node *ref)
3489 cgraph_node *node = ultimate_alias_target (availability, ref);
3491 while (node->thunk.thunk_p && !node->thunk.virtual_offset_p)
3493 ref = node;
3494 node = node->callees->callee;
3495 if (availability)
3497 enum availability a;
3498 a = node->get_availability (ref);
3499 if (a < *availability)
3500 *availability = a;
3502 node = node->ultimate_alias_target (availability, ref);
3504 return node;
3507 /* When doing LTO, read cgraph_node's body from disk if it is not already
3508 present. */
3510 bool
3511 cgraph_node::get_untransformed_body (void)
3513 lto_file_decl_data *file_data;
3514 const char *data, *name;
3515 size_t len;
3516 tree decl = this->decl;
3518 /* Check if body is already there. Either we have gimple body or
3519 the function is thunk and in that case we set DECL_ARGUMENTS. */
3520 if (DECL_ARGUMENTS (decl) || gimple_has_body_p (decl))
3521 return false;
3523 gcc_assert (in_lto_p && !DECL_RESULT (decl));
3525 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3527 file_data = lto_file_data;
3528 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
3530 /* We may have renamed the declaration, e.g., a static function. */
3531 name = lto_get_decl_name_mapping (file_data, name);
3532 struct lto_in_decl_state *decl_state
3533 = lto_get_function_in_decl_state (file_data, decl);
3535 data = lto_get_section_data (file_data, LTO_section_function_body,
3536 name, &len, decl_state->compressed);
3537 if (!data)
3538 fatal_error (input_location, "%s: section %s is missing",
3539 file_data->file_name,
3540 name);
3542 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
3544 if (!quiet_flag)
3545 fprintf (stderr, " in:%s", IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
3546 lto_input_function_body (file_data, this, data);
3547 lto_stats.num_function_bodies++;
3548 lto_free_section_data (file_data, LTO_section_function_body, name,
3549 data, len, decl_state->compressed);
3550 lto_free_function_in_decl_state_for_node (this);
3551 /* Keep lto file data so ipa-inline-analysis knows about cross module
3552 inlining. */
3554 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
3556 return true;
3559 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3560 if it is not already present. When some IPA transformations are scheduled,
3561 apply them. */
3563 bool
3564 cgraph_node::get_body (void)
3566 bool updated;
3568 updated = get_untransformed_body ();
3570 /* Getting transformed body makes no sense for inline clones;
3571 we should never use this on real clones because they are materialized
3572 early.
3573 TODO: Materializing clones here will likely lead to smaller LTRANS
3574 footprint. */
3575 gcc_assert (!global.inlined_to && !clone_of);
3576 if (ipa_transforms_to_apply.exists ())
3578 opt_pass *saved_current_pass = current_pass;
3579 FILE *saved_dump_file = dump_file;
3580 const char *saved_dump_file_name = dump_file_name;
3581 dump_flags_t saved_dump_flags = dump_flags;
3582 dump_file_name = NULL;
3583 set_dump_file (NULL);
3585 push_cfun (DECL_STRUCT_FUNCTION (decl));
3586 execute_all_ipa_transforms ();
3587 cgraph_edge::rebuild_edges ();
3588 free_dominance_info (CDI_DOMINATORS);
3589 free_dominance_info (CDI_POST_DOMINATORS);
3590 pop_cfun ();
3591 updated = true;
3593 current_pass = saved_current_pass;
3594 set_dump_file (saved_dump_file);
3595 dump_file_name = saved_dump_file_name;
3596 dump_flags = saved_dump_flags;
3598 return updated;
3601 /* Return the DECL_STRUCT_FUNCTION of the function. */
3603 struct function *
3604 cgraph_node::get_fun (void)
3606 cgraph_node *node = this;
3607 struct function *fun = DECL_STRUCT_FUNCTION (node->decl);
3609 while (!fun && node->clone_of)
3611 node = node->clone_of;
3612 fun = DECL_STRUCT_FUNCTION (node->decl);
3615 return fun;
3618 /* Verify if the type of the argument matches that of the function
3619 declaration. If we cannot verify this or there is a mismatch,
3620 return false. */
3622 static bool
3623 gimple_check_call_args (gimple *stmt, tree fndecl, bool args_count_match)
3625 tree parms, p;
3626 unsigned int i, nargs;
3628 /* Calls to internal functions always match their signature. */
3629 if (gimple_call_internal_p (stmt))
3630 return true;
3632 nargs = gimple_call_num_args (stmt);
3634 /* Get argument types for verification. */
3635 if (fndecl)
3636 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
3637 else
3638 parms = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
3640 /* Verify if the type of the argument matches that of the function
3641 declaration. If we cannot verify this or there is a mismatch,
3642 return false. */
3643 if (fndecl && DECL_ARGUMENTS (fndecl))
3645 for (i = 0, p = DECL_ARGUMENTS (fndecl);
3646 i < nargs;
3647 i++, p = DECL_CHAIN (p))
3649 tree arg;
3650 /* We cannot distinguish a varargs function from the case
3651 of excess parameters, still deferring the inlining decision
3652 to the callee is possible. */
3653 if (!p)
3654 break;
3655 arg = gimple_call_arg (stmt, i);
3656 if (p == error_mark_node
3657 || DECL_ARG_TYPE (p) == error_mark_node
3658 || arg == error_mark_node
3659 || (!types_compatible_p (DECL_ARG_TYPE (p), TREE_TYPE (arg))
3660 && !fold_convertible_p (DECL_ARG_TYPE (p), arg)))
3661 return false;
3663 if (args_count_match && p)
3664 return false;
3666 else if (parms)
3668 for (i = 0, p = parms; i < nargs; i++, p = TREE_CHAIN (p))
3670 tree arg;
3671 /* If this is a varargs function defer inlining decision
3672 to callee. */
3673 if (!p)
3674 break;
3675 arg = gimple_call_arg (stmt, i);
3676 if (TREE_VALUE (p) == error_mark_node
3677 || arg == error_mark_node
3678 || TREE_CODE (TREE_VALUE (p)) == VOID_TYPE
3679 || (!types_compatible_p (TREE_VALUE (p), TREE_TYPE (arg))
3680 && !fold_convertible_p (TREE_VALUE (p), arg)))
3681 return false;
3684 else
3686 if (nargs != 0)
3687 return false;
3689 return true;
3692 /* Verify if the type of the argument and lhs of CALL_STMT matches
3693 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3694 true, the arg count needs to be the same.
3695 If we cannot verify this or there is a mismatch, return false. */
3697 bool
3698 gimple_check_call_matching_types (gimple *call_stmt, tree callee,
3699 bool args_count_match)
3701 tree lhs;
3703 if ((DECL_RESULT (callee)
3704 && !DECL_BY_REFERENCE (DECL_RESULT (callee))
3705 && (lhs = gimple_call_lhs (call_stmt)) != NULL_TREE
3706 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee)),
3707 TREE_TYPE (lhs))
3708 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee)), lhs))
3709 || !gimple_check_call_args (call_stmt, callee, args_count_match))
3710 return false;
3711 return true;
3714 /* Reset all state within cgraph.c so that we can rerun the compiler
3715 within the same process. For use by toplev::finalize. */
3717 void
3718 cgraph_c_finalize (void)
3720 symtab = NULL;
3722 x_cgraph_nodes_queue = NULL;
3724 cgraph_fnver_htab = NULL;
3725 version_info_node = NULL;
3728 /* A wroker for call_for_symbol_and_aliases. */
3730 bool
3731 cgraph_node::call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
3732 void *),
3733 void *data,
3734 bool include_overwritable)
3736 ipa_ref *ref;
3737 FOR_EACH_ALIAS (this, ref)
3739 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
3740 if (include_overwritable
3741 || alias->get_availability () > AVAIL_INTERPOSABLE)
3742 if (alias->call_for_symbol_and_aliases (callback, data,
3743 include_overwritable))
3744 return true;
3746 return false;
3749 /* Return true if NODE has thunk. */
3751 bool
3752 cgraph_node::has_thunk_p (cgraph_node *node, void *)
3754 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
3755 if (e->caller->thunk.thunk_p)
3756 return true;
3757 return false;
3760 /* Expected frequency of executions within the function. */
3762 sreal
3763 cgraph_edge::sreal_frequency ()
3765 return count.to_sreal_scale (caller->global.inlined_to
3766 ? caller->global.inlined_to->count
3767 : caller->count);
3770 #include "gt-cgraph.h"