libgo: add misc/cgo files
[official-gcc.git] / gcc / cgraph.c
blob81aed5c357ca0cac88f52fbcaa0bb3a4180d88d3
1 /* Callgraph handling code.
2 Copyright (C) 2003-2017 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 intra-procedural optimization.
24 It represents a multi-graph where nodes are functions and edges are call sites. */
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "backend.h"
30 #include "target.h"
31 #include "rtl.h"
32 #include "tree.h"
33 #include "gimple.h"
34 #include "predict.h"
35 #include "alloc-pool.h"
36 #include "gimple-ssa.h"
37 #include "cgraph.h"
38 #include "lto-streamer.h"
39 #include "fold-const.h"
40 #include "varasm.h"
41 #include "calls.h"
42 #include "print-tree.h"
43 #include "langhooks.h"
44 #include "intl.h"
45 #include "tree-eh.h"
46 #include "gimple-iterator.h"
47 #include "tree-cfg.h"
48 #include "tree-ssa.h"
49 #include "value-prof.h"
50 #include "ipa-utils.h"
51 #include "symbol-summary.h"
52 #include "tree-vrp.h"
53 #include "ipa-prop.h"
54 #include "ipa-fnsummary.h"
55 #include "cfgloop.h"
56 #include "gimple-pretty-print.h"
57 #include "tree-dfa.h"
58 #include "profile.h"
59 #include "params.h"
60 #include "tree-chkp.h"
61 #include "context.h"
62 #include "gimplify.h"
64 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
65 #include "tree-pass.h"
67 /* Queue of cgraph nodes scheduled to be lowered. */
68 symtab_node *x_cgraph_nodes_queue;
69 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
71 /* Symbol table global context. */
72 symbol_table *symtab;
74 /* List of hooks triggered on cgraph_edge events. */
75 struct cgraph_edge_hook_list {
76 cgraph_edge_hook hook;
77 void *data;
78 struct cgraph_edge_hook_list *next;
81 /* List of hooks triggered on cgraph_node events. */
82 struct cgraph_node_hook_list {
83 cgraph_node_hook hook;
84 void *data;
85 struct cgraph_node_hook_list *next;
88 /* List of hooks triggered on events involving two cgraph_edges. */
89 struct cgraph_2edge_hook_list {
90 cgraph_2edge_hook hook;
91 void *data;
92 struct cgraph_2edge_hook_list *next;
95 /* List of hooks triggered on events involving two cgraph_nodes. */
96 struct cgraph_2node_hook_list {
97 cgraph_2node_hook hook;
98 void *data;
99 struct cgraph_2node_hook_list *next;
102 /* Hash descriptor for cgraph_function_version_info. */
104 struct function_version_hasher : ggc_ptr_hash<cgraph_function_version_info>
106 static hashval_t hash (cgraph_function_version_info *);
107 static bool equal (cgraph_function_version_info *,
108 cgraph_function_version_info *);
111 /* Map a cgraph_node to cgraph_function_version_info using this htab.
112 The cgraph_function_version_info has a THIS_NODE field that is the
113 corresponding cgraph_node.. */
115 static GTY(()) hash_table<function_version_hasher> *cgraph_fnver_htab = NULL;
117 /* Hash function for cgraph_fnver_htab. */
118 hashval_t
119 function_version_hasher::hash (cgraph_function_version_info *ptr)
121 int uid = ptr->this_node->uid;
122 return (hashval_t)(uid);
125 /* eq function for cgraph_fnver_htab. */
126 bool
127 function_version_hasher::equal (cgraph_function_version_info *n1,
128 cgraph_function_version_info *n2)
130 return n1->this_node->uid == n2->this_node->uid;
133 /* Mark as GC root all allocated nodes. */
134 static GTY(()) struct cgraph_function_version_info *
135 version_info_node = NULL;
137 /* Return true if NODE's address can be compared. */
139 bool
140 symtab_node::address_can_be_compared_p ()
142 /* Address of virtual tables and functions is never compared. */
143 if (DECL_VIRTUAL_P (decl))
144 return false;
145 /* Address of C++ cdtors is never compared. */
146 if (is_a <cgraph_node *> (this)
147 && (DECL_CXX_CONSTRUCTOR_P (decl)
148 || DECL_CXX_DESTRUCTOR_P (decl)))
149 return false;
150 /* Constant pool symbols addresses are never compared.
151 flag_merge_constants permits us to assume the same on readonly vars. */
152 if (is_a <varpool_node *> (this)
153 && (DECL_IN_CONSTANT_POOL (decl)
154 || (flag_merge_constants >= 2
155 && TREE_READONLY (decl) && !TREE_THIS_VOLATILE (decl))))
156 return false;
157 return true;
160 /* Get the cgraph_function_version_info node corresponding to node. */
161 cgraph_function_version_info *
162 cgraph_node::function_version (void)
164 cgraph_function_version_info key;
165 key.this_node = this;
167 if (cgraph_fnver_htab == NULL)
168 return NULL;
170 return cgraph_fnver_htab->find (&key);
173 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
174 corresponding to cgraph_node NODE. */
175 cgraph_function_version_info *
176 cgraph_node::insert_new_function_version (void)
178 version_info_node = NULL;
179 version_info_node = ggc_cleared_alloc<cgraph_function_version_info> ();
180 version_info_node->this_node = this;
182 if (cgraph_fnver_htab == NULL)
183 cgraph_fnver_htab = hash_table<function_version_hasher>::create_ggc (2);
185 *cgraph_fnver_htab->find_slot (version_info_node, INSERT)
186 = version_info_node;
187 return version_info_node;
190 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
191 DECL is a duplicate declaration. */
192 void
193 cgraph_node::delete_function_version (tree decl)
195 cgraph_node *decl_node = cgraph_node::get (decl);
196 cgraph_function_version_info *decl_v = NULL;
198 if (decl_node == NULL)
199 return;
201 decl_v = decl_node->function_version ();
203 if (decl_v == NULL)
204 return;
206 if (decl_v->prev != NULL)
207 decl_v->prev->next = decl_v->next;
209 if (decl_v->next != NULL)
210 decl_v->next->prev = decl_v->prev;
212 if (cgraph_fnver_htab != NULL)
213 cgraph_fnver_htab->remove_elt (decl_v);
215 decl_node->remove ();
218 /* Record that DECL1 and DECL2 are semantically identical function
219 versions. */
220 void
221 cgraph_node::record_function_versions (tree decl1, tree decl2)
223 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
224 cgraph_node *decl2_node = cgraph_node::get_create (decl2);
225 cgraph_function_version_info *decl1_v = NULL;
226 cgraph_function_version_info *decl2_v = NULL;
227 cgraph_function_version_info *before;
228 cgraph_function_version_info *after;
230 gcc_assert (decl1_node != NULL && decl2_node != NULL);
231 decl1_v = decl1_node->function_version ();
232 decl2_v = decl2_node->function_version ();
234 if (decl1_v != NULL && decl2_v != NULL)
235 return;
237 if (decl1_v == NULL)
238 decl1_v = decl1_node->insert_new_function_version ();
240 if (decl2_v == NULL)
241 decl2_v = decl2_node->insert_new_function_version ();
243 /* Chain decl2_v and decl1_v. All semantically identical versions
244 will be chained together. */
246 before = decl1_v;
247 after = decl2_v;
249 while (before->next != NULL)
250 before = before->next;
252 while (after->prev != NULL)
253 after= after->prev;
255 before->next = after;
256 after->prev = before;
259 /* Initialize callgraph dump file. */
261 void
262 symbol_table::initialize (void)
264 if (!dump_file)
265 dump_file = dump_begin (TDI_cgraph, NULL);
267 if (!ipa_clones_dump_file)
268 ipa_clones_dump_file = dump_begin (TDI_clones, NULL);
271 /* Allocate new callgraph node and insert it into basic data structures. */
273 cgraph_node *
274 symbol_table::create_empty (void)
276 cgraph_node *node = allocate_cgraph_symbol ();
278 node->type = SYMTAB_FUNCTION;
279 node->frequency = NODE_FREQUENCY_NORMAL;
280 node->count_materialization_scale = REG_BR_PROB_BASE;
281 cgraph_count++;
283 return node;
286 /* Register HOOK to be called with DATA on each removed edge. */
287 cgraph_edge_hook_list *
288 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook, void *data)
290 cgraph_edge_hook_list *entry;
291 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
293 entry = (cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
294 entry->hook = hook;
295 entry->data = data;
296 entry->next = NULL;
297 while (*ptr)
298 ptr = &(*ptr)->next;
299 *ptr = entry;
300 return entry;
303 /* Remove ENTRY from the list of hooks called on removing edges. */
304 void
305 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list *entry)
307 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
309 while (*ptr != entry)
310 ptr = &(*ptr)->next;
311 *ptr = entry->next;
312 free (entry);
315 /* Call all edge removal hooks. */
316 void
317 symbol_table::call_edge_removal_hooks (cgraph_edge *e)
319 cgraph_edge_hook_list *entry = m_first_edge_removal_hook;
320 while (entry)
322 entry->hook (e, entry->data);
323 entry = entry->next;
327 /* Register HOOK to be called with DATA on each removed node. */
328 cgraph_node_hook_list *
329 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook, void *data)
331 cgraph_node_hook_list *entry;
332 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
334 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
335 entry->hook = hook;
336 entry->data = data;
337 entry->next = NULL;
338 while (*ptr)
339 ptr = &(*ptr)->next;
340 *ptr = entry;
341 return entry;
344 /* Remove ENTRY from the list of hooks called on removing nodes. */
345 void
346 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list *entry)
348 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
350 while (*ptr != entry)
351 ptr = &(*ptr)->next;
352 *ptr = entry->next;
353 free (entry);
356 /* Call all node removal hooks. */
357 void
358 symbol_table::call_cgraph_removal_hooks (cgraph_node *node)
360 cgraph_node_hook_list *entry = m_first_cgraph_removal_hook;
361 while (entry)
363 entry->hook (node, entry->data);
364 entry = entry->next;
368 /* Call all node removal hooks. */
369 void
370 symbol_table::call_cgraph_insertion_hooks (cgraph_node *node)
372 cgraph_node_hook_list *entry = m_first_cgraph_insertion_hook;
373 while (entry)
375 entry->hook (node, entry->data);
376 entry = entry->next;
381 /* Register HOOK to be called with DATA on each inserted node. */
382 cgraph_node_hook_list *
383 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook, void *data)
385 cgraph_node_hook_list *entry;
386 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
388 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
389 entry->hook = hook;
390 entry->data = data;
391 entry->next = NULL;
392 while (*ptr)
393 ptr = &(*ptr)->next;
394 *ptr = entry;
395 return entry;
398 /* Remove ENTRY from the list of hooks called on inserted nodes. */
399 void
400 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list *entry)
402 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
404 while (*ptr != entry)
405 ptr = &(*ptr)->next;
406 *ptr = entry->next;
407 free (entry);
410 /* Register HOOK to be called with DATA on each duplicated edge. */
411 cgraph_2edge_hook_list *
412 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
414 cgraph_2edge_hook_list *entry;
415 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
417 entry = (cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
418 entry->hook = hook;
419 entry->data = data;
420 entry->next = NULL;
421 while (*ptr)
422 ptr = &(*ptr)->next;
423 *ptr = entry;
424 return entry;
427 /* Remove ENTRY from the list of hooks called on duplicating edges. */
428 void
429 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list *entry)
431 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
433 while (*ptr != entry)
434 ptr = &(*ptr)->next;
435 *ptr = entry->next;
436 free (entry);
439 /* Call all edge duplication hooks. */
440 void
441 symbol_table::call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)
443 cgraph_2edge_hook_list *entry = m_first_edge_duplicated_hook;
444 while (entry)
446 entry->hook (cs1, cs2, entry->data);
447 entry = entry->next;
451 /* Register HOOK to be called with DATA on each duplicated node. */
452 cgraph_2node_hook_list *
453 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook, void *data)
455 cgraph_2node_hook_list *entry;
456 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
458 entry = (cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
459 entry->hook = hook;
460 entry->data = data;
461 entry->next = NULL;
462 while (*ptr)
463 ptr = &(*ptr)->next;
464 *ptr = entry;
465 return entry;
468 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
469 void
470 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry)
472 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
474 while (*ptr != entry)
475 ptr = &(*ptr)->next;
476 *ptr = entry->next;
477 free (entry);
480 /* Call all node duplication hooks. */
481 void
482 symbol_table::call_cgraph_duplication_hooks (cgraph_node *node,
483 cgraph_node *node2)
485 cgraph_2node_hook_list *entry = m_first_cgraph_duplicated_hook;
486 while (entry)
488 entry->hook (node, node2, entry->data);
489 entry = entry->next;
493 /* Return cgraph node assigned to DECL. Create new one when needed. */
495 cgraph_node *
496 cgraph_node::create (tree decl)
498 cgraph_node *node = symtab->create_empty ();
499 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
501 node->decl = decl;
503 node->count = profile_count::uninitialized ();
505 if ((flag_openacc || flag_openmp)
506 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl)))
508 node->offloadable = 1;
509 if (ENABLE_OFFLOADING)
510 g->have_offload = true;
513 node->register_symbol ();
515 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
517 node->origin = cgraph_node::get_create (DECL_CONTEXT (decl));
518 node->next_nested = node->origin->nested;
519 node->origin->nested = node;
521 return node;
524 /* Try to find a call graph node for declaration DECL and if it does not exist
525 or if it corresponds to an inline clone, create a new one. */
527 cgraph_node *
528 cgraph_node::get_create (tree decl)
530 cgraph_node *first_clone = cgraph_node::get (decl);
532 if (first_clone && !first_clone->global.inlined_to)
533 return first_clone;
535 cgraph_node *node = cgraph_node::create (decl);
536 if (first_clone)
538 first_clone->clone_of = node;
539 node->clones = first_clone;
540 symtab->symtab_prevail_in_asm_name_hash (node);
541 node->decl->decl_with_vis.symtab_node = node;
542 if (dump_file)
543 fprintf (dump_file, "Introduced new external node "
544 "(%s) and turned into root of the clone tree.\n",
545 node->dump_name ());
547 else if (dump_file)
548 fprintf (dump_file, "Introduced new external node "
549 "(%s).\n", node->dump_name ());
550 return node;
553 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
554 the function body is associated with (not necessarily cgraph_node (DECL). */
556 cgraph_node *
557 cgraph_node::create_alias (tree alias, tree target)
559 cgraph_node *alias_node;
561 gcc_assert (TREE_CODE (target) == FUNCTION_DECL
562 || TREE_CODE (target) == IDENTIFIER_NODE);
563 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
564 alias_node = cgraph_node::get_create (alias);
565 gcc_assert (!alias_node->definition);
566 alias_node->alias_target = target;
567 alias_node->definition = true;
568 alias_node->alias = true;
569 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias)) != NULL)
570 alias_node->transparent_alias = alias_node->weakref = true;
571 return alias_node;
574 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
575 and NULL otherwise.
576 Same body aliases are output whenever the body of DECL is output,
577 and cgraph_node::get (ALIAS) transparently returns
578 cgraph_node::get (DECL). */
580 cgraph_node *
581 cgraph_node::create_same_body_alias (tree alias, tree decl)
583 cgraph_node *n;
584 #ifndef ASM_OUTPUT_DEF
585 /* If aliases aren't supported by the assembler, fail. */
586 return NULL;
587 #endif
588 /* Langhooks can create same body aliases of symbols not defined.
589 Those are useless. Drop them on the floor. */
590 if (symtab->global_info_ready)
591 return NULL;
593 n = cgraph_node::create_alias (alias, decl);
594 n->cpp_implicit_alias = true;
595 if (symtab->cpp_implicit_aliases_done)
596 n->resolve_alias (cgraph_node::get (decl));
597 return n;
600 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
601 aliases DECL with an adjustments made into the first parameter.
602 See comments in thunk_adjust for detail on the parameters. */
604 cgraph_node *
605 cgraph_node::create_thunk (tree alias, tree, bool this_adjusting,
606 HOST_WIDE_INT fixed_offset,
607 HOST_WIDE_INT virtual_value,
608 tree virtual_offset,
609 tree real_alias)
611 cgraph_node *node;
613 node = cgraph_node::get (alias);
614 if (node)
615 node->reset ();
616 else
617 node = cgraph_node::create (alias);
618 gcc_checking_assert (!virtual_offset
619 || wi::eq_p (virtual_offset, virtual_value));
620 node->thunk.fixed_offset = fixed_offset;
621 node->thunk.this_adjusting = this_adjusting;
622 node->thunk.virtual_value = virtual_value;
623 node->thunk.virtual_offset_p = virtual_offset != NULL;
624 node->thunk.alias = real_alias;
625 node->thunk.thunk_p = true;
626 node->definition = true;
628 return node;
631 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
632 Return NULL if there's no such node. */
634 cgraph_node *
635 cgraph_node::get_for_asmname (tree asmname)
637 /* We do not want to look at inline clones. */
638 for (symtab_node *node = symtab_node::get_for_asmname (asmname);
639 node;
640 node = node->next_sharing_asm_name)
642 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
643 if (cn && !cn->global.inlined_to)
644 return cn;
646 return NULL;
649 /* Returns a hash value for X (which really is a cgraph_edge). */
651 hashval_t
652 cgraph_edge_hasher::hash (cgraph_edge *e)
654 /* This is a really poor hash function, but it is what htab_hash_pointer
655 uses. */
656 return (hashval_t) ((intptr_t)e->call_stmt >> 3);
659 /* Returns a hash value for X (which really is a cgraph_edge). */
661 hashval_t
662 cgraph_edge_hasher::hash (gimple *call_stmt)
664 /* This is a really poor hash function, but it is what htab_hash_pointer
665 uses. */
666 return (hashval_t) ((intptr_t)call_stmt >> 3);
669 /* Return nonzero if the call_stmt of cgraph_edge X is stmt *Y. */
671 inline bool
672 cgraph_edge_hasher::equal (cgraph_edge *x, gimple *y)
674 return x->call_stmt == y;
677 /* Add call graph edge E to call site hash of its caller. */
679 static inline void
680 cgraph_update_edge_in_call_site_hash (cgraph_edge *e)
682 gimple *call = e->call_stmt;
683 *e->caller->call_site_hash->find_slot_with_hash
684 (call, cgraph_edge_hasher::hash (call), INSERT) = e;
687 /* Add call graph edge E to call site hash of its caller. */
689 static inline void
690 cgraph_add_edge_to_call_site_hash (cgraph_edge *e)
692 /* There are two speculative edges for every statement (one direct,
693 one indirect); always hash the direct one. */
694 if (e->speculative && e->indirect_unknown_callee)
695 return;
696 cgraph_edge **slot = e->caller->call_site_hash->find_slot_with_hash
697 (e->call_stmt, cgraph_edge_hasher::hash (e->call_stmt), INSERT);
698 if (*slot)
700 gcc_assert (((cgraph_edge *)*slot)->speculative);
701 if (e->callee)
702 *slot = e;
703 return;
705 gcc_assert (!*slot || e->speculative);
706 *slot = e;
709 /* Return the callgraph edge representing the GIMPLE_CALL statement
710 CALL_STMT. */
712 cgraph_edge *
713 cgraph_node::get_edge (gimple *call_stmt)
715 cgraph_edge *e, *e2;
716 int n = 0;
718 if (call_site_hash)
719 return call_site_hash->find_with_hash
720 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
722 /* This loop may turn out to be performance problem. In such case adding
723 hashtables into call nodes with very many edges is probably best
724 solution. It is not good idea to add pointer into CALL_EXPR itself
725 because we want to make possible having multiple cgraph nodes representing
726 different clones of the same body before the body is actually cloned. */
727 for (e = callees; e; e = e->next_callee)
729 if (e->call_stmt == call_stmt)
730 break;
731 n++;
734 if (!e)
735 for (e = indirect_calls; e; e = e->next_callee)
737 if (e->call_stmt == call_stmt)
738 break;
739 n++;
742 if (n > 100)
744 call_site_hash = hash_table<cgraph_edge_hasher>::create_ggc (120);
745 for (e2 = callees; e2; e2 = e2->next_callee)
746 cgraph_add_edge_to_call_site_hash (e2);
747 for (e2 = indirect_calls; e2; e2 = e2->next_callee)
748 cgraph_add_edge_to_call_site_hash (e2);
751 return e;
755 /* Change field call_stmt of edge to NEW_STMT.
756 If UPDATE_SPECULATIVE and E is any component of speculative
757 edge, then update all components. */
759 void
760 cgraph_edge::set_call_stmt (gcall *new_stmt, bool update_speculative)
762 tree decl;
764 /* Speculative edges has three component, update all of them
765 when asked to. */
766 if (update_speculative && speculative)
768 cgraph_edge *direct, *indirect;
769 ipa_ref *ref;
771 speculative_call_info (direct, indirect, ref);
772 direct->set_call_stmt (new_stmt, false);
773 indirect->set_call_stmt (new_stmt, false);
774 ref->stmt = new_stmt;
775 return;
778 /* Only direct speculative edges go to call_site_hash. */
779 if (caller->call_site_hash
780 && (!speculative || !indirect_unknown_callee))
782 caller->call_site_hash->remove_elt_with_hash
783 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
786 cgraph_edge *e = this;
788 call_stmt = new_stmt;
789 if (indirect_unknown_callee
790 && (decl = gimple_call_fndecl (new_stmt)))
792 /* Constant propagation (and possibly also inlining?) can turn an
793 indirect call into a direct one. */
794 cgraph_node *new_callee = cgraph_node::get (decl);
796 gcc_checking_assert (new_callee);
797 e = make_direct (new_callee);
800 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
801 e->can_throw_external = stmt_can_throw_external (new_stmt);
802 pop_cfun ();
803 if (e->caller->call_site_hash)
804 cgraph_add_edge_to_call_site_hash (e);
807 /* Allocate a cgraph_edge structure and fill it with data according to the
808 parameters of which only CALLEE can be NULL (when creating an indirect call
809 edge). */
811 cgraph_edge *
812 symbol_table::create_edge (cgraph_node *caller, cgraph_node *callee,
813 gcall *call_stmt, profile_count count, int freq,
814 bool indir_unknown_callee)
816 cgraph_edge *edge;
818 /* LTO does not actually have access to the call_stmt since these
819 have not been loaded yet. */
820 if (call_stmt)
822 /* This is a rather expensive check possibly triggering
823 construction of call stmt hashtable. */
824 cgraph_edge *e;
825 gcc_checking_assert (!(e = caller->get_edge (call_stmt))
826 || e->speculative);
828 gcc_assert (is_gimple_call (call_stmt));
831 if (free_edges)
833 edge = free_edges;
834 free_edges = NEXT_FREE_EDGE (edge);
836 else
838 edge = ggc_alloc<cgraph_edge> ();
839 edge->uid = edges_max_uid++;
842 edges_count++;
844 edge->aux = NULL;
845 edge->caller = caller;
846 edge->callee = callee;
847 edge->prev_caller = NULL;
848 edge->next_caller = NULL;
849 edge->prev_callee = NULL;
850 edge->next_callee = NULL;
851 edge->lto_stmt_uid = 0;
853 edge->count = count;
854 edge->frequency = freq;
855 gcc_checking_assert (freq >= 0);
856 gcc_checking_assert (freq <= CGRAPH_FREQ_MAX);
858 edge->call_stmt = call_stmt;
859 push_cfun (DECL_STRUCT_FUNCTION (caller->decl));
860 edge->can_throw_external
861 = call_stmt ? stmt_can_throw_external (call_stmt) : false;
862 pop_cfun ();
863 if (call_stmt
864 && callee && callee->decl
865 && !gimple_check_call_matching_types (call_stmt, callee->decl,
866 false))
868 edge->inline_failed = CIF_MISMATCHED_ARGUMENTS;
869 edge->call_stmt_cannot_inline_p = true;
871 else
873 edge->inline_failed = CIF_FUNCTION_NOT_CONSIDERED;
874 edge->call_stmt_cannot_inline_p = false;
877 edge->indirect_info = NULL;
878 edge->indirect_inlining_edge = 0;
879 edge->speculative = false;
880 edge->indirect_unknown_callee = indir_unknown_callee;
881 if (opt_for_fn (edge->caller->decl, flag_devirtualize)
882 && call_stmt && DECL_STRUCT_FUNCTION (caller->decl))
883 edge->in_polymorphic_cdtor
884 = decl_maybe_in_construction_p (NULL, NULL, call_stmt,
885 caller->decl);
886 else
887 edge->in_polymorphic_cdtor = caller->thunk.thunk_p;
888 if (call_stmt && caller->call_site_hash)
889 cgraph_add_edge_to_call_site_hash (edge);
891 return edge;
894 /* Create edge from a given function to CALLEE in the cgraph. */
896 cgraph_edge *
897 cgraph_node::create_edge (cgraph_node *callee,
898 gcall *call_stmt, profile_count count, int freq)
900 cgraph_edge *edge = symtab->create_edge (this, callee, call_stmt, count,
901 freq, false);
903 initialize_inline_failed (edge);
905 edge->next_caller = callee->callers;
906 if (callee->callers)
907 callee->callers->prev_caller = edge;
908 edge->next_callee = callees;
909 if (callees)
910 callees->prev_callee = edge;
911 callees = edge;
912 callee->callers = edge;
914 return edge;
917 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
919 cgraph_indirect_call_info *
920 cgraph_allocate_init_indirect_info (void)
922 cgraph_indirect_call_info *ii;
924 ii = ggc_cleared_alloc<cgraph_indirect_call_info> ();
925 ii->param_index = -1;
926 return ii;
929 /* Create an indirect edge with a yet-undetermined callee where the call
930 statement destination is a formal parameter of the caller with index
931 PARAM_INDEX. */
933 cgraph_edge *
934 cgraph_node::create_indirect_edge (gcall *call_stmt, int ecf_flags,
935 profile_count count, int freq,
936 bool compute_indirect_info)
938 cgraph_edge *edge = symtab->create_edge (this, NULL, call_stmt,
939 count, freq, true);
940 tree target;
942 initialize_inline_failed (edge);
944 edge->indirect_info = cgraph_allocate_init_indirect_info ();
945 edge->indirect_info->ecf_flags = ecf_flags;
946 edge->indirect_info->vptr_changed = true;
948 /* Record polymorphic call info. */
949 if (compute_indirect_info
950 && call_stmt
951 && (target = gimple_call_fn (call_stmt))
952 && virtual_method_call_p (target))
954 ipa_polymorphic_call_context context (decl, target, call_stmt);
956 /* Only record types can have virtual calls. */
957 edge->indirect_info->polymorphic = true;
958 edge->indirect_info->param_index = -1;
959 edge->indirect_info->otr_token
960 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
961 edge->indirect_info->otr_type = obj_type_ref_class (target);
962 gcc_assert (TREE_CODE (edge->indirect_info->otr_type) == RECORD_TYPE);
963 edge->indirect_info->context = context;
966 edge->next_callee = indirect_calls;
967 if (indirect_calls)
968 indirect_calls->prev_callee = edge;
969 indirect_calls = edge;
971 return edge;
974 /* Remove the edge from the list of the callees of the caller. */
976 void
977 cgraph_edge::remove_caller (void)
979 if (prev_callee)
980 prev_callee->next_callee = next_callee;
981 if (next_callee)
982 next_callee->prev_callee = prev_callee;
983 if (!prev_callee)
985 if (indirect_unknown_callee)
986 caller->indirect_calls = next_callee;
987 else
988 caller->callees = next_callee;
990 if (caller->call_site_hash)
991 caller->call_site_hash->remove_elt_with_hash
992 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
995 /* Put the edge onto the free list. */
997 void
998 symbol_table::free_edge (cgraph_edge *e)
1000 int uid = e->uid;
1002 if (e->indirect_info)
1003 ggc_free (e->indirect_info);
1005 /* Clear out the edge so we do not dangle pointers. */
1006 memset (e, 0, sizeof (*e));
1007 e->uid = uid;
1008 NEXT_FREE_EDGE (e) = free_edges;
1009 free_edges = e;
1010 edges_count--;
1013 /* Remove the edge in the cgraph. */
1015 void
1016 cgraph_edge::remove (void)
1018 /* Call all edge removal hooks. */
1019 symtab->call_edge_removal_hooks (this);
1021 if (!indirect_unknown_callee)
1022 /* Remove from callers list of the callee. */
1023 remove_callee ();
1025 /* Remove from callees list of the callers. */
1026 remove_caller ();
1028 /* Put the edge onto the free list. */
1029 symtab->free_edge (this);
1032 /* Turn edge into speculative call calling N2. Update
1033 the profile so the direct call is taken COUNT times
1034 with FREQUENCY.
1036 At clone materialization time, the indirect call E will
1037 be expanded as:
1039 if (call_dest == N2)
1040 n2 ();
1041 else
1042 call call_dest
1044 At this time the function just creates the direct call,
1045 the referencd representing the if conditional and attaches
1046 them all to the orginal indirect call statement.
1048 Return direct edge created. */
1050 cgraph_edge *
1051 cgraph_edge::make_speculative (cgraph_node *n2, profile_count direct_count,
1052 int direct_frequency)
1054 cgraph_node *n = caller;
1055 ipa_ref *ref = NULL;
1056 cgraph_edge *e2;
1058 if (dump_file)
1059 fprintf (dump_file, "Indirect call -> speculative call %s => %s\n",
1060 n->dump_name (), n2->dump_name ());
1061 speculative = true;
1062 e2 = n->create_edge (n2, call_stmt, direct_count, direct_frequency);
1063 initialize_inline_failed (e2);
1064 e2->speculative = true;
1065 if (TREE_NOTHROW (n2->decl))
1066 e2->can_throw_external = false;
1067 else
1068 e2->can_throw_external = can_throw_external;
1069 e2->lto_stmt_uid = lto_stmt_uid;
1070 e2->in_polymorphic_cdtor = in_polymorphic_cdtor;
1071 count -= e2->count;
1072 frequency -= e2->frequency;
1073 symtab->call_edge_duplication_hooks (this, e2);
1074 ref = n->create_reference (n2, IPA_REF_ADDR, call_stmt);
1075 ref->lto_stmt_uid = lto_stmt_uid;
1076 ref->speculative = speculative;
1077 n2->mark_address_taken ();
1078 return e2;
1081 /* Speculative call consist of three components:
1082 1) an indirect edge representing the original call
1083 2) an direct edge representing the new call
1084 3) ADDR_EXPR reference representing the speculative check.
1085 All three components are attached to single statement (the indirect
1086 call) and if one of them exists, all of them must exist.
1088 Given speculative call edge, return all three components.
1091 void
1092 cgraph_edge::speculative_call_info (cgraph_edge *&direct,
1093 cgraph_edge *&indirect,
1094 ipa_ref *&reference)
1096 ipa_ref *ref;
1097 int i;
1098 cgraph_edge *e2;
1099 cgraph_edge *e = this;
1101 if (!e->indirect_unknown_callee)
1102 for (e2 = e->caller->indirect_calls;
1103 e2->call_stmt != e->call_stmt || e2->lto_stmt_uid != e->lto_stmt_uid;
1104 e2 = e2->next_callee)
1106 else
1108 e2 = e;
1109 /* We can take advantage of the call stmt hash. */
1110 if (e2->call_stmt)
1112 e = e->caller->get_edge (e2->call_stmt);
1113 gcc_assert (e->speculative && !e->indirect_unknown_callee);
1115 else
1116 for (e = e->caller->callees;
1117 e2->call_stmt != e->call_stmt
1118 || e2->lto_stmt_uid != e->lto_stmt_uid;
1119 e = e->next_callee)
1122 gcc_assert (e->speculative && e2->speculative);
1123 direct = e;
1124 indirect = e2;
1126 reference = NULL;
1127 for (i = 0; e->caller->iterate_reference (i, ref); i++)
1128 if (ref->speculative
1129 && ((ref->stmt && ref->stmt == e->call_stmt)
1130 || (!ref->stmt && ref->lto_stmt_uid == e->lto_stmt_uid)))
1132 reference = ref;
1133 break;
1136 /* Speculative edge always consist of all three components - direct edge,
1137 indirect and reference. */
1139 gcc_assert (e && e2 && ref);
1142 /* Speculative call edge turned out to be direct call to CALLE_DECL.
1143 Remove the speculative call sequence and return edge representing the call.
1144 It is up to caller to redirect the call as appropriate. */
1146 cgraph_edge *
1147 cgraph_edge::resolve_speculation (tree callee_decl)
1149 cgraph_edge *edge = this;
1150 cgraph_edge *e2;
1151 ipa_ref *ref;
1153 gcc_assert (edge->speculative);
1154 edge->speculative_call_info (e2, edge, ref);
1155 if (!callee_decl
1156 || !ref->referred->semantically_equivalent_p
1157 (symtab_node::get (callee_decl)))
1159 if (dump_file)
1161 if (callee_decl)
1163 fprintf (dump_file, "Speculative indirect call %s => %s has "
1164 "turned out to have contradicting known target ",
1165 edge->caller->dump_name (),
1166 e2->callee->dump_name ());
1167 print_generic_expr (dump_file, callee_decl);
1168 fprintf (dump_file, "\n");
1170 else
1172 fprintf (dump_file, "Removing speculative call %s => %s\n",
1173 edge->caller->dump_name (),
1174 e2->callee->dump_name ());
1178 else
1180 cgraph_edge *tmp = edge;
1181 if (dump_file)
1182 fprintf (dump_file, "Speculative call turned into direct call.\n");
1183 edge = e2;
1184 e2 = tmp;
1185 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1186 in the functions inlined through it. */
1188 edge->count += e2->count;
1189 edge->frequency += e2->frequency;
1190 if (edge->frequency > CGRAPH_FREQ_MAX)
1191 edge->frequency = CGRAPH_FREQ_MAX;
1192 edge->speculative = false;
1193 e2->speculative = false;
1194 ref->remove_reference ();
1195 if (e2->indirect_unknown_callee || e2->inline_failed)
1196 e2->remove ();
1197 else
1198 e2->callee->remove_symbol_and_inline_clones ();
1199 if (edge->caller->call_site_hash)
1200 cgraph_update_edge_in_call_site_hash (edge);
1201 return edge;
1204 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1205 CALLEE. DELTA is an integer constant that is to be added to the this
1206 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1208 cgraph_edge *
1209 cgraph_edge::make_direct (cgraph_node *callee)
1211 cgraph_edge *edge = this;
1212 gcc_assert (indirect_unknown_callee);
1214 /* If we are redirecting speculative call, make it non-speculative. */
1215 if (indirect_unknown_callee && speculative)
1217 edge = edge->resolve_speculation (callee->decl);
1219 /* On successful speculation just return the pre existing direct edge. */
1220 if (!indirect_unknown_callee)
1221 return edge;
1224 indirect_unknown_callee = 0;
1225 ggc_free (indirect_info);
1226 indirect_info = NULL;
1228 /* Get the edge out of the indirect edge list. */
1229 if (prev_callee)
1230 prev_callee->next_callee = next_callee;
1231 if (next_callee)
1232 next_callee->prev_callee = prev_callee;
1233 if (!prev_callee)
1234 caller->indirect_calls = next_callee;
1236 /* Put it into the normal callee list */
1237 prev_callee = NULL;
1238 next_callee = caller->callees;
1239 if (caller->callees)
1240 caller->callees->prev_callee = edge;
1241 caller->callees = edge;
1243 /* Insert to callers list of the new callee. */
1244 edge->set_callee (callee);
1246 if (call_stmt
1247 && !gimple_check_call_matching_types (call_stmt, callee->decl, false))
1249 call_stmt_cannot_inline_p = true;
1250 inline_failed = CIF_MISMATCHED_ARGUMENTS;
1253 /* We need to re-determine the inlining status of the edge. */
1254 initialize_inline_failed (edge);
1255 return edge;
1258 /* If necessary, change the function declaration in the call statement
1259 associated with E so that it corresponds to the edge callee. */
1261 gimple *
1262 cgraph_edge::redirect_call_stmt_to_callee (void)
1264 cgraph_edge *e = this;
1266 tree decl = gimple_call_fndecl (e->call_stmt);
1267 gcall *new_stmt;
1268 gimple_stmt_iterator gsi;
1269 bool skip_bounds = false;
1271 if (e->speculative)
1273 cgraph_edge *e2;
1274 gcall *new_stmt;
1275 ipa_ref *ref;
1277 e->speculative_call_info (e, e2, ref);
1278 /* If there already is an direct call (i.e. as a result of inliner's
1279 substitution), forget about speculating. */
1280 if (decl)
1281 e = e->resolve_speculation (decl);
1282 /* If types do not match, speculation was likely wrong.
1283 The direct edge was possibly redirected to the clone with a different
1284 signature. We did not update the call statement yet, so compare it
1285 with the reference that still points to the proper type. */
1286 else if (!gimple_check_call_matching_types (e->call_stmt,
1287 ref->referred->decl,
1288 true))
1290 if (dump_file)
1291 fprintf (dump_file, "Not expanding speculative call of %s -> %s\n"
1292 "Type mismatch.\n",
1293 e->caller->dump_name (),
1294 e->callee->dump_name ());
1295 e = e->resolve_speculation ();
1296 /* We are producing the final function body and will throw away the
1297 callgraph edges really soon. Reset the counts/frequencies to
1298 keep verifier happy in the case of roundoff errors. */
1299 e->count = gimple_bb (e->call_stmt)->count;
1300 e->frequency = compute_call_stmt_bb_frequency
1301 (e->caller->decl, gimple_bb (e->call_stmt));
1303 /* Expand speculation into GIMPLE code. */
1304 else
1306 if (dump_file)
1308 fprintf (dump_file,
1309 "Expanding speculative call of %s -> %s count: ",
1310 e->caller->dump_name (),
1311 e->callee->dump_name ());
1312 e->count.dump (dump_file);
1313 fprintf (dump_file, "\n");
1315 gcc_assert (e2->speculative);
1316 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
1317 new_stmt = gimple_ic (e->call_stmt,
1318 dyn_cast<cgraph_node *> (ref->referred),
1319 e->count > profile_count::zero ()
1320 || e2->count > profile_count::zero ()
1321 ? e->count.probability_in (e->count + e2->count)
1322 : e->frequency || e2->frequency
1323 ? RDIV (e->frequency * REG_BR_PROB_BASE,
1324 e->frequency + e2->frequency)
1325 : REG_BR_PROB_BASE / 2,
1326 e->count, e->count + e2->count);
1327 e->speculative = false;
1328 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt,
1329 false);
1331 /* Fix edges for BUILT_IN_CHKP_BNDRET calls attached to the
1332 processed call stmt. */
1333 if (gimple_call_with_bounds_p (new_stmt)
1334 && gimple_call_lhs (new_stmt)
1335 && chkp_retbnd_call_by_val (gimple_call_lhs (e2->call_stmt)))
1337 tree dresult = gimple_call_lhs (new_stmt);
1338 tree iresult = gimple_call_lhs (e2->call_stmt);
1339 gcall *dbndret = chkp_retbnd_call_by_val (dresult);
1340 gcall *ibndret = chkp_retbnd_call_by_val (iresult);
1341 struct cgraph_edge *iedge
1342 = e2->caller->cgraph_node::get_edge (ibndret);
1343 struct cgraph_edge *dedge;
1345 if (dbndret)
1347 dedge = iedge->caller->create_edge (iedge->callee,
1348 dbndret, e->count,
1349 e->frequency);
1350 dedge->frequency = compute_call_stmt_bb_frequency
1351 (dedge->caller->decl, gimple_bb (dedge->call_stmt));
1353 iedge->frequency = compute_call_stmt_bb_frequency
1354 (iedge->caller->decl, gimple_bb (iedge->call_stmt));
1357 e->frequency = compute_call_stmt_bb_frequency
1358 (e->caller->decl, gimple_bb (e->call_stmt));
1359 e2->frequency = compute_call_stmt_bb_frequency
1360 (e2->caller->decl, gimple_bb (e2->call_stmt));
1361 e2->speculative = false;
1362 ref->speculative = false;
1363 ref->stmt = NULL;
1364 /* Indirect edges are not both in the call site hash.
1365 get it updated. */
1366 if (e->caller->call_site_hash)
1367 cgraph_update_edge_in_call_site_hash (e2);
1368 pop_cfun ();
1369 /* Continue redirecting E to proper target. */
1373 /* We might propagate instrumented function pointer into
1374 not instrumented function and vice versa. In such a
1375 case we need to either fix function declaration or
1376 remove bounds from call statement. */
1377 if (flag_check_pointer_bounds && e->callee)
1378 skip_bounds = chkp_redirect_edge (e);
1380 if (e->indirect_unknown_callee
1381 || (decl == e->callee->decl
1382 && !skip_bounds))
1383 return e->call_stmt;
1385 if (flag_checking && decl)
1387 cgraph_node *node = cgraph_node::get (decl);
1388 gcc_assert (!node || !node->clone.combined_args_to_skip);
1391 if (symtab->dump_file)
1393 fprintf (symtab->dump_file, "updating call of %s -> %s: ",
1394 e->caller->dump_name (), e->callee->dump_name ());
1395 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1396 if (e->callee->clone.combined_args_to_skip)
1398 fprintf (symtab->dump_file, " combined args to skip: ");
1399 dump_bitmap (symtab->dump_file,
1400 e->callee->clone.combined_args_to_skip);
1404 if (e->callee->clone.combined_args_to_skip
1405 || skip_bounds)
1407 int lp_nr;
1409 new_stmt = e->call_stmt;
1410 if (e->callee->clone.combined_args_to_skip)
1411 new_stmt
1412 = gimple_call_copy_skip_args (new_stmt,
1413 e->callee->clone.combined_args_to_skip);
1414 if (skip_bounds)
1415 new_stmt = chkp_copy_call_skip_bounds (new_stmt);
1417 tree old_fntype = gimple_call_fntype (e->call_stmt);
1418 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1419 cgraph_node *origin = e->callee;
1420 while (origin->clone_of)
1421 origin = origin->clone_of;
1423 if ((origin->former_clone_of
1424 && old_fntype == TREE_TYPE (origin->former_clone_of))
1425 || old_fntype == TREE_TYPE (origin->decl))
1426 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1427 else
1429 bitmap skip = e->callee->clone.combined_args_to_skip;
1430 tree t = cgraph_build_function_type_skip_args (old_fntype, skip,
1431 false);
1432 gimple_call_set_fntype (new_stmt, t);
1435 if (gimple_vdef (new_stmt)
1436 && TREE_CODE (gimple_vdef (new_stmt)) == SSA_NAME)
1437 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
1439 gsi = gsi_for_stmt (e->call_stmt);
1441 /* For optimized away parameters, add on the caller side
1442 before the call
1443 DEBUG D#X => parm_Y(D)
1444 stmts and associate D#X with parm in decl_debug_args_lookup
1445 vector to say for debug info that if parameter parm had been passed,
1446 it would have value parm_Y(D). */
1447 if (e->callee->clone.combined_args_to_skip && MAY_HAVE_DEBUG_STMTS)
1449 vec<tree, va_gc> **debug_args
1450 = decl_debug_args_lookup (e->callee->decl);
1451 tree old_decl = gimple_call_fndecl (e->call_stmt);
1452 if (debug_args && old_decl)
1454 tree parm;
1455 unsigned i = 0, num;
1456 unsigned len = vec_safe_length (*debug_args);
1457 unsigned nargs = gimple_call_num_args (e->call_stmt);
1458 for (parm = DECL_ARGUMENTS (old_decl), num = 0;
1459 parm && num < nargs;
1460 parm = DECL_CHAIN (parm), num++)
1461 if (bitmap_bit_p (e->callee->clone.combined_args_to_skip, num)
1462 && is_gimple_reg (parm))
1464 unsigned last = i;
1466 while (i < len && (**debug_args)[i] != DECL_ORIGIN (parm))
1467 i += 2;
1468 if (i >= len)
1470 i = 0;
1471 while (i < last
1472 && (**debug_args)[i] != DECL_ORIGIN (parm))
1473 i += 2;
1474 if (i >= last)
1475 continue;
1477 tree ddecl = (**debug_args)[i + 1];
1478 tree arg = gimple_call_arg (e->call_stmt, num);
1479 if (!useless_type_conversion_p (TREE_TYPE (ddecl),
1480 TREE_TYPE (arg)))
1482 tree rhs1;
1483 if (!fold_convertible_p (TREE_TYPE (ddecl), arg))
1484 continue;
1485 if (TREE_CODE (arg) == SSA_NAME
1486 && gimple_assign_cast_p (SSA_NAME_DEF_STMT (arg))
1487 && (rhs1
1488 = gimple_assign_rhs1 (SSA_NAME_DEF_STMT (arg)))
1489 && useless_type_conversion_p (TREE_TYPE (ddecl),
1490 TREE_TYPE (rhs1)))
1491 arg = rhs1;
1492 else
1493 arg = fold_convert (TREE_TYPE (ddecl), arg);
1496 gimple *def_temp
1497 = gimple_build_debug_bind (ddecl, unshare_expr (arg),
1498 e->call_stmt);
1499 gsi_insert_before (&gsi, def_temp, GSI_SAME_STMT);
1504 gsi_replace (&gsi, new_stmt, false);
1505 /* We need to defer cleaning EH info on the new statement to
1506 fixup-cfg. We may not have dominator information at this point
1507 and thus would end up with unreachable blocks and have no way
1508 to communicate that we need to run CFG cleanup then. */
1509 lp_nr = lookup_stmt_eh_lp (e->call_stmt);
1510 if (lp_nr != 0)
1512 remove_stmt_from_eh_lp (e->call_stmt);
1513 add_stmt_to_eh_lp (new_stmt, lp_nr);
1516 else
1518 new_stmt = e->call_stmt;
1519 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1520 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1523 /* If changing the call to __cxa_pure_virtual or similar noreturn function,
1524 adjust gimple_call_fntype too. */
1525 if (gimple_call_noreturn_p (new_stmt)
1526 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (e->callee->decl)))
1527 && TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl))
1528 && (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl)))
1529 == void_type_node))
1530 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1532 /* If the call becomes noreturn, remove the LHS if possible. */
1533 tree lhs = gimple_call_lhs (new_stmt);
1534 if (lhs
1535 && gimple_call_noreturn_p (new_stmt)
1536 && (VOID_TYPE_P (TREE_TYPE (gimple_call_fntype (new_stmt)))
1537 || should_remove_lhs_p (lhs)))
1539 if (TREE_CODE (lhs) == SSA_NAME)
1541 tree var = create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e->caller->decl),
1542 TREE_TYPE (lhs), NULL);
1543 var = get_or_create_ssa_default_def
1544 (DECL_STRUCT_FUNCTION (e->caller->decl), var);
1545 gimple *set_stmt = gimple_build_assign (lhs, var);
1546 gsi = gsi_for_stmt (new_stmt);
1547 gsi_insert_before_without_update (&gsi, set_stmt, GSI_SAME_STMT);
1548 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), set_stmt);
1550 gimple_call_set_lhs (new_stmt, NULL_TREE);
1551 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1554 /* If new callee has no static chain, remove it. */
1555 if (gimple_call_chain (new_stmt) && !DECL_STATIC_CHAIN (e->callee->decl))
1557 gimple_call_set_chain (new_stmt, NULL);
1558 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1561 maybe_remove_unused_call_args (DECL_STRUCT_FUNCTION (e->caller->decl),
1562 new_stmt);
1564 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt, false);
1566 if (symtab->dump_file)
1568 fprintf (symtab->dump_file, " updated to:");
1569 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1571 return new_stmt;
1574 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1575 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1576 of OLD_STMT if it was previously call statement.
1577 If NEW_STMT is NULL, the call has been dropped without any
1578 replacement. */
1580 static void
1581 cgraph_update_edges_for_call_stmt_node (cgraph_node *node,
1582 gimple *old_stmt, tree old_call,
1583 gimple *new_stmt)
1585 tree new_call = (new_stmt && is_gimple_call (new_stmt))
1586 ? gimple_call_fndecl (new_stmt) : 0;
1588 /* We are seeing indirect calls, then there is nothing to update. */
1589 if (!new_call && !old_call)
1590 return;
1591 /* See if we turned indirect call into direct call or folded call to one builtin
1592 into different builtin. */
1593 if (old_call != new_call)
1595 cgraph_edge *e = node->get_edge (old_stmt);
1596 cgraph_edge *ne = NULL;
1597 profile_count count;
1598 int frequency;
1600 if (e)
1602 /* Keep calls marked as dead dead. */
1603 if (new_stmt && is_gimple_call (new_stmt) && e->callee
1604 && DECL_BUILT_IN_CLASS (e->callee->decl) == BUILT_IN_NORMAL
1605 && DECL_FUNCTION_CODE (e->callee->decl) == BUILT_IN_UNREACHABLE)
1607 node->get_edge (old_stmt)->set_call_stmt
1608 (as_a <gcall *> (new_stmt));
1609 return;
1611 /* See if the edge is already there and has the correct callee. It
1612 might be so because of indirect inlining has already updated
1613 it. We also might've cloned and redirected the edge. */
1614 if (new_call && e->callee)
1616 cgraph_node *callee = e->callee;
1617 while (callee)
1619 if (callee->decl == new_call
1620 || callee->former_clone_of == new_call)
1622 e->set_call_stmt (as_a <gcall *> (new_stmt));
1623 return;
1625 callee = callee->clone_of;
1629 /* Otherwise remove edge and create new one; we can't simply redirect
1630 since function has changed, so inline plan and other information
1631 attached to edge is invalid. */
1632 count = e->count;
1633 frequency = e->frequency;
1634 if (e->indirect_unknown_callee || e->inline_failed)
1635 e->remove ();
1636 else
1637 e->callee->remove_symbol_and_inline_clones ();
1639 else if (new_call)
1641 /* We are seeing new direct call; compute profile info based on BB. */
1642 basic_block bb = gimple_bb (new_stmt);
1643 count = bb->count;
1644 frequency = compute_call_stmt_bb_frequency (current_function_decl,
1645 bb);
1648 if (new_call)
1650 ne = node->create_edge (cgraph_node::get_create (new_call),
1651 as_a <gcall *> (new_stmt), count,
1652 frequency);
1653 gcc_assert (ne->inline_failed);
1656 /* We only updated the call stmt; update pointer in cgraph edge.. */
1657 else if (old_stmt != new_stmt)
1658 node->get_edge (old_stmt)->set_call_stmt (as_a <gcall *> (new_stmt));
1661 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1662 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1663 of OLD_STMT before it was updated (updating can happen inplace). */
1665 void
1666 cgraph_update_edges_for_call_stmt (gimple *old_stmt, tree old_decl,
1667 gimple *new_stmt)
1669 cgraph_node *orig = cgraph_node::get (cfun->decl);
1670 cgraph_node *node;
1672 gcc_checking_assert (orig);
1673 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1674 if (orig->clones)
1675 for (node = orig->clones; node != orig;)
1677 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1678 if (node->clones)
1679 node = node->clones;
1680 else if (node->next_sibling_clone)
1681 node = node->next_sibling_clone;
1682 else
1684 while (node != orig && !node->next_sibling_clone)
1685 node = node->clone_of;
1686 if (node != orig)
1687 node = node->next_sibling_clone;
1693 /* Remove all callees from the node. */
1695 void
1696 cgraph_node::remove_callees (void)
1698 cgraph_edge *e, *f;
1700 /* It is sufficient to remove the edges from the lists of callers of
1701 the callees. The callee list of the node can be zapped with one
1702 assignment. */
1703 for (e = callees; e; e = f)
1705 f = e->next_callee;
1706 symtab->call_edge_removal_hooks (e);
1707 if (!e->indirect_unknown_callee)
1708 e->remove_callee ();
1709 symtab->free_edge (e);
1711 for (e = indirect_calls; e; e = f)
1713 f = e->next_callee;
1714 symtab->call_edge_removal_hooks (e);
1715 if (!e->indirect_unknown_callee)
1716 e->remove_callee ();
1717 symtab->free_edge (e);
1719 indirect_calls = NULL;
1720 callees = NULL;
1721 if (call_site_hash)
1723 call_site_hash->empty ();
1724 call_site_hash = NULL;
1728 /* Remove all callers from the node. */
1730 void
1731 cgraph_node::remove_callers (void)
1733 cgraph_edge *e, *f;
1735 /* It is sufficient to remove the edges from the lists of callees of
1736 the callers. The caller list of the node can be zapped with one
1737 assignment. */
1738 for (e = callers; e; e = f)
1740 f = e->next_caller;
1741 symtab->call_edge_removal_hooks (e);
1742 e->remove_caller ();
1743 symtab->free_edge (e);
1745 callers = NULL;
1748 /* Helper function for cgraph_release_function_body and free_lang_data.
1749 It releases body from function DECL without having to inspect its
1750 possibly non-existent symtab node. */
1752 void
1753 release_function_body (tree decl)
1755 function *fn = DECL_STRUCT_FUNCTION (decl);
1756 if (fn)
1758 if (fn->cfg
1759 && loops_for_fn (fn))
1761 fn->curr_properties &= ~PROP_loops;
1762 loop_optimizer_finalize (fn);
1764 if (fn->gimple_df)
1766 delete_tree_ssa (fn);
1767 fn->eh = NULL;
1769 if (fn->cfg)
1771 gcc_assert (!dom_info_available_p (fn, CDI_DOMINATORS));
1772 gcc_assert (!dom_info_available_p (fn, CDI_POST_DOMINATORS));
1773 delete_tree_cfg_annotations (fn);
1774 clear_edges (fn);
1775 fn->cfg = NULL;
1777 if (fn->value_histograms)
1778 free_histograms (fn);
1779 gimple_set_body (decl, NULL);
1780 /* Struct function hangs a lot of data that would leak if we didn't
1781 removed all pointers to it. */
1782 ggc_free (fn);
1783 DECL_STRUCT_FUNCTION (decl) = NULL;
1785 DECL_SAVED_TREE (decl) = NULL;
1788 /* Release memory used to represent body of function.
1789 Use this only for functions that are released before being translated to
1790 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1791 are free'd in final.c via free_after_compilation().
1792 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1794 void
1795 cgraph_node::release_body (bool keep_arguments)
1797 ipa_transforms_to_apply.release ();
1798 if (!used_as_abstract_origin && symtab->state != PARSING)
1800 DECL_RESULT (decl) = NULL;
1802 if (!keep_arguments)
1803 DECL_ARGUMENTS (decl) = NULL;
1805 /* If the node is abstract and needed, then do not clear
1806 DECL_INITIAL of its associated function declaration because it's
1807 needed to emit debug info later. */
1808 if (!used_as_abstract_origin && DECL_INITIAL (decl))
1809 DECL_INITIAL (decl) = error_mark_node;
1810 release_function_body (decl);
1811 if (lto_file_data)
1813 lto_free_function_in_decl_state_for_node (this);
1814 lto_file_data = NULL;
1818 /* Remove function from symbol table. */
1820 void
1821 cgraph_node::remove (void)
1823 cgraph_node *n;
1824 int uid = this->uid;
1826 if (symtab->ipa_clones_dump_file && symtab->cloned_nodes.contains (this))
1827 fprintf (symtab->ipa_clones_dump_file,
1828 "Callgraph removal;%s;%d;%s;%d;%d\n", asm_name (), order,
1829 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl),
1830 DECL_SOURCE_COLUMN (decl));
1832 symtab->call_cgraph_removal_hooks (this);
1833 remove_callers ();
1834 remove_callees ();
1835 ipa_transforms_to_apply.release ();
1837 /* Incremental inlining access removed nodes stored in the postorder list.
1839 force_output = false;
1840 forced_by_abi = false;
1841 for (n = nested; n; n = n->next_nested)
1842 n->origin = NULL;
1843 nested = NULL;
1844 if (origin)
1846 cgraph_node **node2 = &origin->nested;
1848 while (*node2 != this)
1849 node2 = &(*node2)->next_nested;
1850 *node2 = next_nested;
1852 unregister ();
1853 if (prev_sibling_clone)
1854 prev_sibling_clone->next_sibling_clone = next_sibling_clone;
1855 else if (clone_of)
1856 clone_of->clones = next_sibling_clone;
1857 if (next_sibling_clone)
1858 next_sibling_clone->prev_sibling_clone = prev_sibling_clone;
1859 if (clones)
1861 cgraph_node *n, *next;
1863 if (clone_of)
1865 for (n = clones; n->next_sibling_clone; n = n->next_sibling_clone)
1866 n->clone_of = clone_of;
1867 n->clone_of = clone_of;
1868 n->next_sibling_clone = clone_of->clones;
1869 if (clone_of->clones)
1870 clone_of->clones->prev_sibling_clone = n;
1871 clone_of->clones = clones;
1873 else
1875 /* We are removing node with clones. This makes clones inconsistent,
1876 but assume they will be removed subsequently and just keep clone
1877 tree intact. This can happen in unreachable function removal since
1878 we remove unreachable functions in random order, not by bottom-up
1879 walk of clone trees. */
1880 for (n = clones; n; n = next)
1882 next = n->next_sibling_clone;
1883 n->next_sibling_clone = NULL;
1884 n->prev_sibling_clone = NULL;
1885 n->clone_of = NULL;
1890 /* While all the clones are removed after being proceeded, the function
1891 itself is kept in the cgraph even after it is compiled. Check whether
1892 we are done with this body and reclaim it proactively if this is the case.
1894 if (symtab->state != LTO_STREAMING)
1896 n = cgraph_node::get (decl);
1897 if (!n
1898 || (!n->clones && !n->clone_of && !n->global.inlined_to
1899 && ((symtab->global_info_ready || in_lto_p)
1900 && (TREE_ASM_WRITTEN (n->decl)
1901 || DECL_EXTERNAL (n->decl)
1902 || !n->analyzed
1903 || (!flag_wpa && n->in_other_partition)))))
1904 release_body ();
1906 else
1908 lto_free_function_in_decl_state_for_node (this);
1909 lto_file_data = NULL;
1912 decl = NULL;
1913 if (call_site_hash)
1915 call_site_hash->empty ();
1916 call_site_hash = NULL;
1919 if (instrumented_version)
1921 instrumented_version->instrumented_version = NULL;
1922 instrumented_version = NULL;
1925 symtab->release_symbol (this, uid);
1928 /* Likewise indicate that a node is having address taken. */
1930 void
1931 cgraph_node::mark_address_taken (void)
1933 /* Indirect inlining can figure out that all uses of the address are
1934 inlined. */
1935 if (global.inlined_to)
1937 gcc_assert (cfun->after_inlining);
1938 gcc_assert (callers->indirect_inlining_edge);
1939 return;
1941 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1942 IPA_REF_ADDR reference exists (and thus it should be set on node
1943 representing alias we take address of) and as a test whether address
1944 of the object was taken (and thus it should be set on node alias is
1945 referring to). We should remove the first use and the remove the
1946 following set. */
1947 address_taken = 1;
1948 cgraph_node *node = ultimate_alias_target ();
1949 node->address_taken = 1;
1952 /* Return local info for the compiled function. */
1954 cgraph_local_info *
1955 cgraph_node::local_info (tree decl)
1957 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1958 cgraph_node *node = get (decl);
1959 if (!node)
1960 return NULL;
1961 return &node->ultimate_alias_target ()->local;
1964 /* Return local info for the compiled function. */
1966 cgraph_rtl_info *
1967 cgraph_node::rtl_info (tree decl)
1969 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1970 cgraph_node *node = get (decl);
1971 if (!node)
1972 return NULL;
1973 enum availability avail;
1974 node = node->ultimate_alias_target (&avail);
1975 if (decl != current_function_decl
1976 && (avail < AVAIL_AVAILABLE
1977 || (node->decl != current_function_decl
1978 && !TREE_ASM_WRITTEN (node->decl))))
1979 return NULL;
1980 /* Allocate if it doesn't exist. */
1981 if (node->rtl == NULL)
1982 node->rtl = ggc_cleared_alloc<cgraph_rtl_info> ();
1983 return node->rtl;
1986 /* Return a string describing the failure REASON. */
1988 const char*
1989 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1991 #undef DEFCIFCODE
1992 #define DEFCIFCODE(code, type, string) string,
1994 static const char *cif_string_table[CIF_N_REASONS] = {
1995 #include "cif-code.def"
1998 /* Signedness of an enum type is implementation defined, so cast it
1999 to unsigned before testing. */
2000 gcc_assert ((unsigned) reason < CIF_N_REASONS);
2001 return cif_string_table[reason];
2004 /* Return a type describing the failure REASON. */
2006 cgraph_inline_failed_type_t
2007 cgraph_inline_failed_type (cgraph_inline_failed_t reason)
2009 #undef DEFCIFCODE
2010 #define DEFCIFCODE(code, type, string) type,
2012 static cgraph_inline_failed_type_t cif_type_table[CIF_N_REASONS] = {
2013 #include "cif-code.def"
2016 /* Signedness of an enum type is implementation defined, so cast it
2017 to unsigned before testing. */
2018 gcc_assert ((unsigned) reason < CIF_N_REASONS);
2019 return cif_type_table[reason];
2022 /* Names used to print out the availability enum. */
2023 const char * const cgraph_availability_names[] =
2024 {"unset", "not_available", "overwritable", "available", "local"};
2026 /* Output flags of edge to a file F. */
2028 void
2029 cgraph_edge::dump_edge_flags (FILE *f)
2031 if (speculative)
2032 fprintf (f, "(speculative) ");
2033 if (!inline_failed)
2034 fprintf (f, "(inlined) ");
2035 if (call_stmt_cannot_inline_p)
2036 fprintf (f, "(call_stmt_cannot_inline_p) ");
2037 if (indirect_inlining_edge)
2038 fprintf (f, "(indirect_inlining) ");
2039 if (count.initialized_p ())
2041 fprintf (f, "(");
2042 count.dump (f);
2043 fprintf (f, ")");
2045 if (frequency)
2046 fprintf (f, "(%.2f per call) ", frequency / (double)CGRAPH_FREQ_BASE);
2047 if (can_throw_external)
2048 fprintf (f, "(can throw external) ");
2051 /* Dump call graph node to file F. */
2053 void
2054 cgraph_node::dump (FILE *f)
2056 cgraph_edge *edge;
2058 dump_base (f);
2060 if (global.inlined_to)
2061 fprintf (f, " Function %s is inline copy in %s\n",
2062 dump_name (),
2063 global.inlined_to->dump_name ());
2064 if (clone_of)
2065 fprintf (f, " Clone of %s\n", clone_of->dump_asm_name ());
2066 if (symtab->function_flags_ready)
2067 fprintf (f, " Availability: %s\n",
2068 cgraph_availability_names [get_availability ()]);
2070 if (profile_id)
2071 fprintf (f, " Profile id: %i\n",
2072 profile_id);
2073 fprintf (f, " First run: %i\n", tp_first_run);
2074 cgraph_function_version_info *vi = function_version ();
2075 if (vi != NULL)
2077 fprintf (f, " Version info: ");
2078 if (vi->prev != NULL)
2080 fprintf (f, "prev: ");
2081 fprintf (f, "%s ", vi->prev->this_node->dump_asm_name ());
2083 if (vi->next != NULL)
2085 fprintf (f, "next: ");
2086 fprintf (f, "%s ", vi->next->this_node->dump_asm_name ());
2088 if (vi->dispatcher_resolver != NULL_TREE)
2089 fprintf (f, "dispatcher: %s",
2090 lang_hooks.decl_printable_name (vi->dispatcher_resolver, 2));
2092 fprintf (f, "\n");
2094 fprintf (f, " Function flags:");
2095 if (count.initialized_p ())
2097 fprintf (f, " count: ");
2098 count.dump (f);
2100 if (origin)
2101 fprintf (f, " nested in: %s", origin->asm_name ());
2102 if (gimple_has_body_p (decl))
2103 fprintf (f, " body");
2104 if (process)
2105 fprintf (f, " process");
2106 if (local.local)
2107 fprintf (f, " local");
2108 if (local.redefined_extern_inline)
2109 fprintf (f, " redefined_extern_inline");
2110 if (only_called_at_startup)
2111 fprintf (f, " only_called_at_startup");
2112 if (only_called_at_exit)
2113 fprintf (f, " only_called_at_exit");
2114 if (tm_clone)
2115 fprintf (f, " tm_clone");
2116 if (calls_comdat_local)
2117 fprintf (f, " calls_comdat_local");
2118 if (icf_merged)
2119 fprintf (f, " icf_merged");
2120 if (merged_comdat)
2121 fprintf (f, " merged_comdat");
2122 if (split_part)
2123 fprintf (f, " split_part");
2124 if (indirect_call_target)
2125 fprintf (f, " indirect_call_target");
2126 if (nonfreeing_fn)
2127 fprintf (f, " nonfreeing_fn");
2128 if (DECL_STATIC_CONSTRUCTOR (decl))
2129 fprintf (f," static_constructor (priority:%i)", get_init_priority ());
2130 if (DECL_STATIC_DESTRUCTOR (decl))
2131 fprintf (f," static_destructor (priority:%i)", get_fini_priority ());
2132 if (frequency == NODE_FREQUENCY_HOT)
2133 fprintf (f, " hot");
2134 if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2135 fprintf (f, " unlikely_executed");
2136 if (frequency == NODE_FREQUENCY_EXECUTED_ONCE)
2137 fprintf (f, " executed_once");
2138 if (only_called_at_startup)
2139 fprintf (f, " only_called_at_startup");
2140 if (only_called_at_exit)
2141 fprintf (f, " only_called_at_exit");
2142 if (opt_for_fn (decl, optimize_size))
2143 fprintf (f, " optimize_size");
2144 if (parallelized_function)
2145 fprintf (f, " parallelized_function");
2147 fprintf (f, "\n");
2149 if (thunk.thunk_p)
2151 fprintf (f, " Thunk");
2152 if (thunk.alias)
2153 fprintf (f, " of %s (asm: %s)",
2154 lang_hooks.decl_printable_name (thunk.alias, 2),
2155 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2156 fprintf (f, " fixed offset %i virtual value %i has "
2157 "virtual offset %i)\n",
2158 (int)thunk.fixed_offset,
2159 (int)thunk.virtual_value,
2160 (int)thunk.virtual_offset_p);
2162 if (alias && thunk.alias
2163 && DECL_P (thunk.alias))
2165 fprintf (f, " Alias of %s",
2166 lang_hooks.decl_printable_name (thunk.alias, 2));
2167 if (DECL_ASSEMBLER_NAME_SET_P (thunk.alias))
2168 fprintf (f, " (asm: %s)",
2169 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2170 fprintf (f, "\n");
2173 fprintf (f, " Called by: ");
2175 profile_count sum = profile_count::zero ();
2176 for (edge = callers; edge; edge = edge->next_caller)
2178 fprintf (f, "%s ", edge->caller->dump_name ());
2179 edge->dump_edge_flags (f);
2180 if (edge->count.initialized_p ())
2181 sum += edge->count;
2184 fprintf (f, "\n Calls: ");
2185 for (edge = callees; edge; edge = edge->next_callee)
2187 fprintf (f, "%s ", edge->callee->dump_name ());
2188 edge->dump_edge_flags (f);
2190 fprintf (f, "\n");
2192 if (count.initialized_p ())
2194 bool ok = true;
2195 bool min = false;
2196 ipa_ref *ref;
2198 FOR_EACH_ALIAS (this, ref)
2199 if (dyn_cast <cgraph_node *> (ref->referring)->count.initialized_p ())
2200 sum += dyn_cast <cgraph_node *> (ref->referring)->count;
2202 if (global.inlined_to
2203 || (symtab->state < EXPANSION
2204 && ultimate_alias_target () == this && only_called_directly_p ()))
2205 ok = !count.differs_from_p (sum);
2206 else if (count > profile_count::from_gcov_type (100)
2207 && count < sum.apply_scale (99, 100))
2208 ok = false, min = true;
2209 if (!ok)
2211 fprintf (f, " Invalid sum of caller counts ");
2212 sum.dump (f);
2213 if (min)
2214 fprintf (f, ", should be at most ");
2215 else
2216 fprintf (f, ", should be ");
2217 count.dump (f);
2218 fprintf (f, "\n");
2222 for (edge = indirect_calls; edge; edge = edge->next_callee)
2224 if (edge->indirect_info->polymorphic)
2226 fprintf (f, " Polymorphic indirect call of type ");
2227 print_generic_expr (f, edge->indirect_info->otr_type, TDF_SLIM);
2228 fprintf (f, " token:%i", (int) edge->indirect_info->otr_token);
2230 else
2231 fprintf (f, " Indirect call");
2232 edge->dump_edge_flags (f);
2233 if (edge->indirect_info->param_index != -1)
2235 fprintf (f, " of param:%i", edge->indirect_info->param_index);
2236 if (edge->indirect_info->agg_contents)
2237 fprintf (f, " loaded from %s %s at offset %i",
2238 edge->indirect_info->member_ptr ? "member ptr" : "aggregate",
2239 edge->indirect_info->by_ref ? "passed by reference":"",
2240 (int)edge->indirect_info->offset);
2241 if (edge->indirect_info->vptr_changed)
2242 fprintf (f, " (vptr maybe changed)");
2244 fprintf (f, "\n");
2245 if (edge->indirect_info->polymorphic)
2246 edge->indirect_info->context.dump (f);
2249 if (instrumentation_clone)
2250 fprintf (f, " Is instrumented version.\n");
2251 else if (instrumented_version)
2252 fprintf (f, " Has instrumented version.\n");
2255 /* Dump call graph node NODE to stderr. */
2257 DEBUG_FUNCTION void
2258 cgraph_node::debug (void)
2260 dump (stderr);
2263 /* Dump the callgraph to file F. */
2265 void
2266 cgraph_node::dump_cgraph (FILE *f)
2268 cgraph_node *node;
2270 fprintf (f, "callgraph:\n\n");
2271 FOR_EACH_FUNCTION (node)
2272 node->dump (f);
2275 /* Return true when the DECL can possibly be inlined. */
2277 bool
2278 cgraph_function_possibly_inlined_p (tree decl)
2280 if (!symtab->global_info_ready)
2281 return !DECL_UNINLINABLE (decl);
2282 return DECL_POSSIBLY_INLINED (decl);
2285 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2286 void
2287 cgraph_node::unnest (void)
2289 cgraph_node **node2 = &origin->nested;
2290 gcc_assert (origin);
2292 while (*node2 != this)
2293 node2 = &(*node2)->next_nested;
2294 *node2 = next_nested;
2295 origin = NULL;
2298 /* Return function availability. See cgraph.h for description of individual
2299 return values. */
2300 enum availability
2301 cgraph_node::get_availability (symtab_node *ref)
2303 if (ref)
2305 cgraph_node *cref = dyn_cast <cgraph_node *> (ref);
2306 if (cref)
2307 ref = cref->global.inlined_to;
2309 enum availability avail;
2310 if (!analyzed)
2311 avail = AVAIL_NOT_AVAILABLE;
2312 else if (local.local)
2313 avail = AVAIL_LOCAL;
2314 else if (global.inlined_to)
2315 avail = AVAIL_AVAILABLE;
2316 else if (transparent_alias)
2317 ultimate_alias_target (&avail, ref);
2318 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
2319 avail = AVAIL_INTERPOSABLE;
2320 else if (!externally_visible)
2321 avail = AVAIL_AVAILABLE;
2322 /* If this is a reference from symbol itself and there are no aliases, we
2323 may be sure that the symbol was not interposed by something else because
2324 the symbol itself would be unreachable otherwise.
2326 Also comdat groups are always resolved in groups. */
2327 else if ((this == ref && !has_aliases_p ())
2328 || (ref && get_comdat_group ()
2329 && get_comdat_group () == ref->get_comdat_group ()))
2330 avail = AVAIL_AVAILABLE;
2331 /* Inline functions are safe to be analyzed even if their symbol can
2332 be overwritten at runtime. It is not meaningful to enforce any sane
2333 behavior on replacing inline function by different body. */
2334 else if (DECL_DECLARED_INLINE_P (decl))
2335 avail = AVAIL_AVAILABLE;
2337 /* If the function can be overwritten, return OVERWRITABLE. Take
2338 care at least of two notable extensions - the COMDAT functions
2339 used to share template instantiations in C++ (this is symmetric
2340 to code cp_cannot_inline_tree_fn and probably shall be shared and
2341 the inlinability hooks completely eliminated). */
2343 else if (decl_replaceable_p (decl) && !DECL_EXTERNAL (decl))
2344 avail = AVAIL_INTERPOSABLE;
2345 else avail = AVAIL_AVAILABLE;
2347 return avail;
2350 /* Worker for cgraph_node_can_be_local_p. */
2351 static bool
2352 cgraph_node_cannot_be_local_p_1 (cgraph_node *node, void *)
2354 return !(!node->force_output
2355 && ((DECL_COMDAT (node->decl)
2356 && !node->forced_by_abi
2357 && !node->used_from_object_file_p ()
2358 && !node->same_comdat_group)
2359 || !node->externally_visible));
2362 /* Return true if cgraph_node can be made local for API change.
2363 Extern inline functions and C++ COMDAT functions can be made local
2364 at the expense of possible code size growth if function is used in multiple
2365 compilation units. */
2366 bool
2367 cgraph_node::can_be_local_p (void)
2369 return (!address_taken
2370 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1,
2371 NULL, true));
2374 /* Call callback on cgraph_node, thunks and aliases associated to cgraph_node.
2375 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
2376 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
2377 skipped. */
2378 bool
2379 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback)
2380 (cgraph_node *, void *),
2381 void *data,
2382 bool include_overwritable,
2383 bool exclude_virtual_thunks)
2385 cgraph_edge *e;
2386 ipa_ref *ref;
2387 enum availability avail = AVAIL_AVAILABLE;
2389 if (include_overwritable
2390 || (avail = get_availability ()) > AVAIL_INTERPOSABLE)
2392 if (callback (this, data))
2393 return true;
2395 FOR_EACH_ALIAS (this, ref)
2397 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2398 if (include_overwritable
2399 || alias->get_availability () > AVAIL_INTERPOSABLE)
2400 if (alias->call_for_symbol_thunks_and_aliases (callback, data,
2401 include_overwritable,
2402 exclude_virtual_thunks))
2403 return true;
2405 if (avail <= AVAIL_INTERPOSABLE)
2406 return false;
2407 for (e = callers; e; e = e->next_caller)
2408 if (e->caller->thunk.thunk_p
2409 && (include_overwritable
2410 || e->caller->get_availability () > AVAIL_INTERPOSABLE)
2411 && !(exclude_virtual_thunks
2412 && e->caller->thunk.virtual_offset_p))
2413 if (e->caller->call_for_symbol_thunks_and_aliases (callback, data,
2414 include_overwritable,
2415 exclude_virtual_thunks))
2416 return true;
2418 return false;
2421 /* Worker to bring NODE local. */
2423 bool
2424 cgraph_node::make_local (cgraph_node *node, void *)
2426 gcc_checking_assert (node->can_be_local_p ());
2427 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2429 node->make_decl_local ();
2430 node->set_section (NULL);
2431 node->set_comdat_group (NULL);
2432 node->externally_visible = false;
2433 node->forced_by_abi = false;
2434 node->local.local = true;
2435 node->set_section (NULL);
2436 node->unique_name = ((node->resolution == LDPR_PREVAILING_DEF_IRONLY
2437 || node->resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
2438 && !flag_incremental_link);
2439 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2440 gcc_assert (node->get_availability () == AVAIL_LOCAL);
2442 return false;
2445 /* Bring cgraph node local. */
2447 void
2448 cgraph_node::make_local (void)
2450 call_for_symbol_thunks_and_aliases (cgraph_node::make_local, NULL, true);
2453 /* Worker to set nothrow flag. */
2455 static void
2456 set_nothrow_flag_1 (cgraph_node *node, bool nothrow, bool non_call,
2457 bool *changed)
2459 cgraph_edge *e;
2461 if (nothrow && !TREE_NOTHROW (node->decl))
2463 /* With non-call exceptions we can't say for sure if other function body
2464 was not possibly optimized to stil throw. */
2465 if (!non_call || node->binds_to_current_def_p ())
2467 TREE_NOTHROW (node->decl) = true;
2468 *changed = true;
2469 for (e = node->callers; e; e = e->next_caller)
2470 e->can_throw_external = false;
2473 else if (!nothrow && TREE_NOTHROW (node->decl))
2475 TREE_NOTHROW (node->decl) = false;
2476 *changed = true;
2478 ipa_ref *ref;
2479 FOR_EACH_ALIAS (node, ref)
2481 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2482 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2483 set_nothrow_flag_1 (alias, nothrow, non_call, changed);
2485 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2486 if (e->caller->thunk.thunk_p
2487 && (!nothrow || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2488 set_nothrow_flag_1 (e->caller, nothrow, non_call, changed);
2491 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2492 if any to NOTHROW. */
2494 bool
2495 cgraph_node::set_nothrow_flag (bool nothrow)
2497 bool changed = false;
2498 bool non_call = opt_for_fn (decl, flag_non_call_exceptions);
2500 if (!nothrow || get_availability () > AVAIL_INTERPOSABLE)
2501 set_nothrow_flag_1 (this, nothrow, non_call, &changed);
2502 else
2504 ipa_ref *ref;
2506 FOR_EACH_ALIAS (this, ref)
2508 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2509 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2510 set_nothrow_flag_1 (alias, nothrow, non_call, &changed);
2513 return changed;
2516 /* Worker to set_const_flag. */
2518 static void
2519 set_const_flag_1 (cgraph_node *node, bool set_const, bool looping,
2520 bool *changed)
2522 /* Static constructors and destructors without a side effect can be
2523 optimized out. */
2524 if (set_const && !looping)
2526 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2528 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2529 *changed = true;
2531 if (DECL_STATIC_DESTRUCTOR (node->decl))
2533 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2534 *changed = true;
2537 if (!set_const)
2539 if (TREE_READONLY (node->decl))
2541 TREE_READONLY (node->decl) = 0;
2542 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2543 *changed = true;
2546 else
2548 /* Consider function:
2550 bool a(int *p)
2552 return *p==*p;
2555 During early optimization we will turn this into:
2557 bool a(int *p)
2559 return true;
2562 Now if this function will be detected as CONST however when interposed
2563 it may end up being just pure. We always must assume the worst
2564 scenario here. */
2565 if (TREE_READONLY (node->decl))
2567 if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2569 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2570 *changed = true;
2573 else if (node->binds_to_current_def_p ())
2575 TREE_READONLY (node->decl) = true;
2576 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2577 DECL_PURE_P (node->decl) = false;
2578 *changed = true;
2580 else
2582 if (dump_file && (dump_flags & TDF_DETAILS))
2583 fprintf (dump_file, "Dropping state to PURE because function does "
2584 "not bind to current def.\n");
2585 if (!DECL_PURE_P (node->decl))
2587 DECL_PURE_P (node->decl) = true;
2588 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2589 *changed = true;
2591 else if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2593 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2594 *changed = true;
2599 ipa_ref *ref;
2600 FOR_EACH_ALIAS (node, ref)
2602 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2603 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2604 set_const_flag_1 (alias, set_const, looping, changed);
2606 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2607 if (e->caller->thunk.thunk_p
2608 && (!set_const || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2610 /* Virtual thunks access virtual offset in the vtable, so they can
2611 only be pure, never const. */
2612 if (set_const
2613 && (e->caller->thunk.virtual_offset_p
2614 || !node->binds_to_current_def_p (e->caller)))
2615 *changed |= e->caller->set_pure_flag (true, looping);
2616 else
2617 set_const_flag_1 (e->caller, set_const, looping, changed);
2621 /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST.
2622 If SET_CONST if false, clear the flag.
2624 When setting the flag be careful about possible interposition and
2625 do not set the flag for functions that can be interposet and set pure
2626 flag for functions that can bind to other definition.
2628 Return true if any change was done. */
2630 bool
2631 cgraph_node::set_const_flag (bool set_const, bool looping)
2633 bool changed = false;
2634 if (!set_const || get_availability () > AVAIL_INTERPOSABLE)
2635 set_const_flag_1 (this, set_const, looping, &changed);
2636 else
2638 ipa_ref *ref;
2640 FOR_EACH_ALIAS (this, ref)
2642 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2643 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2644 set_const_flag_1 (alias, set_const, looping, &changed);
2647 return changed;
2650 /* Info used by set_pure_flag_1. */
2652 struct set_pure_flag_info
2654 bool pure;
2655 bool looping;
2656 bool changed;
2659 /* Worker to set_pure_flag. */
2661 static bool
2662 set_pure_flag_1 (cgraph_node *node, void *data)
2664 struct set_pure_flag_info *info = (struct set_pure_flag_info *)data;
2665 /* Static constructors and destructors without a side effect can be
2666 optimized out. */
2667 if (info->pure && !info->looping)
2669 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2671 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2672 info->changed = true;
2674 if (DECL_STATIC_DESTRUCTOR (node->decl))
2676 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2677 info->changed = true;
2680 if (info->pure)
2682 if (!DECL_PURE_P (node->decl) && !TREE_READONLY (node->decl))
2684 DECL_PURE_P (node->decl) = true;
2685 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = info->looping;
2686 info->changed = true;
2688 else if (DECL_LOOPING_CONST_OR_PURE_P (node->decl)
2689 && !info->looping)
2691 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2692 info->changed = true;
2695 else
2697 if (DECL_PURE_P (node->decl))
2699 DECL_PURE_P (node->decl) = false;
2700 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2701 info->changed = true;
2704 return false;
2707 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2708 if any to PURE.
2710 When setting the flag, be careful about possible interposition.
2711 Return true if any change was done. */
2713 bool
2714 cgraph_node::set_pure_flag (bool pure, bool looping)
2716 struct set_pure_flag_info info = {pure, looping, false};
2717 if (!pure)
2718 looping = false;
2719 call_for_symbol_thunks_and_aliases (set_pure_flag_1, &info, !pure, true);
2720 return info.changed;
2723 /* Return true when cgraph_node can not return or throw and thus
2724 it is safe to ignore its side effects for IPA analysis. */
2726 bool
2727 cgraph_node::cannot_return_p (void)
2729 int flags = flags_from_decl_or_type (decl);
2730 if (!opt_for_fn (decl, flag_exceptions))
2731 return (flags & ECF_NORETURN) != 0;
2732 else
2733 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2734 == (ECF_NORETURN | ECF_NOTHROW));
2737 /* Return true when call of edge can not lead to return from caller
2738 and thus it is safe to ignore its side effects for IPA analysis
2739 when computing side effects of the caller.
2740 FIXME: We could actually mark all edges that have no reaching
2741 patch to the exit block or throw to get better results. */
2742 bool
2743 cgraph_edge::cannot_lead_to_return_p (void)
2745 if (caller->cannot_return_p ())
2746 return true;
2747 if (indirect_unknown_callee)
2749 int flags = indirect_info->ecf_flags;
2750 if (!opt_for_fn (caller->decl, flag_exceptions))
2751 return (flags & ECF_NORETURN) != 0;
2752 else
2753 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2754 == (ECF_NORETURN | ECF_NOTHROW));
2756 else
2757 return callee->cannot_return_p ();
2760 /* Return true if the call can be hot. */
2762 bool
2763 cgraph_edge::maybe_hot_p (void)
2765 if (!maybe_hot_count_p (NULL, count))
2766 return false;
2767 if (caller->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
2768 || (callee
2769 && callee->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED))
2770 return false;
2771 if (caller->frequency > NODE_FREQUENCY_UNLIKELY_EXECUTED
2772 && (callee
2773 && callee->frequency <= NODE_FREQUENCY_EXECUTED_ONCE))
2774 return false;
2775 if (opt_for_fn (caller->decl, optimize_size))
2776 return false;
2777 if (caller->frequency == NODE_FREQUENCY_HOT)
2778 return true;
2779 /* If profile is now known yet, be conservative.
2780 FIXME: this predicate is used by early inliner and can do better there. */
2781 if (symtab->state < IPA_SSA)
2782 return true;
2783 if (caller->frequency == NODE_FREQUENCY_EXECUTED_ONCE
2784 && frequency < CGRAPH_FREQ_BASE * 3 / 2)
2785 return false;
2786 if (opt_for_fn (caller->decl, flag_guess_branch_prob))
2788 if (PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION) == 0
2789 || frequency <= (CGRAPH_FREQ_BASE
2790 / PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION)))
2791 return false;
2793 return true;
2796 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2798 static bool
2799 nonremovable_p (cgraph_node *node, void *)
2801 return !node->can_remove_if_no_direct_calls_and_refs_p ();
2804 /* Return true if whole comdat group can be removed if there are no direct
2805 calls to THIS. */
2807 bool
2808 cgraph_node::can_remove_if_no_direct_calls_p (bool will_inline)
2810 struct ipa_ref *ref;
2812 /* For local symbols or non-comdat group it is the same as
2813 can_remove_if_no_direct_calls_p. */
2814 if (!externally_visible || !same_comdat_group)
2816 if (DECL_EXTERNAL (decl))
2817 return true;
2818 if (address_taken)
2819 return false;
2820 return !call_for_symbol_and_aliases (nonremovable_p, NULL, true);
2823 if (will_inline && address_taken)
2824 return false;
2826 /* Otheriwse check if we can remove the symbol itself and then verify
2827 that only uses of the comdat groups are direct call to THIS
2828 or its aliases. */
2829 if (!can_remove_if_no_direct_calls_and_refs_p ())
2830 return false;
2832 /* Check that all refs come from within the comdat group. */
2833 for (int i = 0; iterate_referring (i, ref); i++)
2834 if (ref->referring->get_comdat_group () != get_comdat_group ())
2835 return false;
2837 struct cgraph_node *target = ultimate_alias_target ();
2838 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2839 next != this; next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2841 if (!externally_visible)
2842 continue;
2843 if (!next->alias
2844 && !next->can_remove_if_no_direct_calls_and_refs_p ())
2845 return false;
2847 /* If we see different symbol than THIS, be sure to check calls. */
2848 if (next->ultimate_alias_target () != target)
2849 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2850 if (e->caller->get_comdat_group () != get_comdat_group ()
2851 || will_inline)
2852 return false;
2854 /* If function is not being inlined, we care only about
2855 references outside of the comdat group. */
2856 if (!will_inline)
2857 for (int i = 0; next->iterate_referring (i, ref); i++)
2858 if (ref->referring->get_comdat_group () != get_comdat_group ())
2859 return false;
2861 return true;
2864 /* Return true when function cgraph_node can be expected to be removed
2865 from program when direct calls in this compilation unit are removed.
2867 As a special case COMDAT functions are
2868 cgraph_can_remove_if_no_direct_calls_p while the are not
2869 cgraph_only_called_directly_p (it is possible they are called from other
2870 unit)
2872 This function behaves as cgraph_only_called_directly_p because eliminating
2873 all uses of COMDAT function does not make it necessarily disappear from
2874 the program unless we are compiling whole program or we do LTO. In this
2875 case we know we win since dynamic linking will not really discard the
2876 linkonce section. */
2878 bool
2879 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p
2880 (bool will_inline)
2882 gcc_assert (!global.inlined_to);
2883 if (DECL_EXTERNAL (decl))
2884 return true;
2886 if (!in_lto_p && !flag_whole_program)
2888 /* If the symbol is in comdat group, we need to verify that whole comdat
2889 group becomes unreachable. Technically we could skip references from
2890 within the group, too. */
2891 if (!only_called_directly_p ())
2892 return false;
2893 if (same_comdat_group && externally_visible)
2895 struct cgraph_node *target = ultimate_alias_target ();
2897 if (will_inline && address_taken)
2898 return true;
2899 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2900 next != this;
2901 next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2903 if (!externally_visible)
2904 continue;
2905 if (!next->alias
2906 && !next->only_called_directly_p ())
2907 return false;
2909 /* If we see different symbol than THIS,
2910 be sure to check calls. */
2911 if (next->ultimate_alias_target () != target)
2912 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2913 if (e->caller->get_comdat_group () != get_comdat_group ()
2914 || will_inline)
2915 return false;
2918 return true;
2920 else
2921 return can_remove_if_no_direct_calls_p (will_inline);
2925 /* Worker for cgraph_only_called_directly_p. */
2927 static bool
2928 cgraph_not_only_called_directly_p_1 (cgraph_node *node, void *)
2930 return !node->only_called_directly_or_aliased_p ();
2933 /* Return true when function cgraph_node and all its aliases are only called
2934 directly.
2935 i.e. it is not externally visible, address was not taken and
2936 it is not used in any other non-standard way. */
2938 bool
2939 cgraph_node::only_called_directly_p (void)
2941 gcc_assert (ultimate_alias_target () == this);
2942 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1,
2943 NULL, true);
2947 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2949 static bool
2950 collect_callers_of_node_1 (cgraph_node *node, void *data)
2952 vec<cgraph_edge *> *redirect_callers = (vec<cgraph_edge *> *)data;
2953 cgraph_edge *cs;
2954 enum availability avail;
2955 node->ultimate_alias_target (&avail);
2957 if (avail > AVAIL_INTERPOSABLE)
2958 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
2959 if (!cs->indirect_inlining_edge
2960 && !cs->caller->thunk.thunk_p)
2961 redirect_callers->safe_push (cs);
2962 return false;
2965 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2966 cgraph_node (i.e. are not overwritable). */
2968 vec<cgraph_edge *>
2969 cgraph_node::collect_callers (void)
2971 vec<cgraph_edge *> redirect_callers = vNULL;
2972 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1,
2973 &redirect_callers, false);
2974 return redirect_callers;
2977 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. */
2979 static bool
2980 clone_of_p (cgraph_node *node, cgraph_node *node2)
2982 bool skipped_thunk = false;
2983 node = node->ultimate_alias_target ();
2984 node2 = node2->ultimate_alias_target ();
2986 /* There are no virtual clones of thunks so check former_clone_of or if we
2987 might have skipped thunks because this adjustments are no longer
2988 necessary. */
2989 while (node->thunk.thunk_p)
2991 if (node2->former_clone_of == node->decl)
2992 return true;
2993 if (!node->thunk.this_adjusting)
2994 return false;
2995 node = node->callees->callee->ultimate_alias_target ();
2996 skipped_thunk = true;
2999 if (skipped_thunk)
3001 if (!node2->clone.args_to_skip
3002 || !bitmap_bit_p (node2->clone.args_to_skip, 0))
3003 return false;
3004 if (node2->former_clone_of == node->decl)
3005 return true;
3006 else if (!node2->clone_of)
3007 return false;
3010 while (node != node2 && node2)
3011 node2 = node2->clone_of;
3012 return node2 != NULL;
3015 /* Verify edge count and frequency. */
3017 bool
3018 cgraph_edge::verify_count_and_frequency ()
3020 bool error_found = false;
3021 if (count < 0)
3023 error ("caller edge count is negative");
3024 error_found = true;
3026 if (frequency < 0)
3028 error ("caller edge frequency is negative");
3029 error_found = true;
3031 if (frequency > CGRAPH_FREQ_MAX)
3033 error ("caller edge frequency is too large");
3034 error_found = true;
3036 return error_found;
3039 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
3040 static void
3041 cgraph_debug_gimple_stmt (function *this_cfun, gimple *stmt)
3043 bool fndecl_was_null = false;
3044 /* debug_gimple_stmt needs correct cfun */
3045 if (cfun != this_cfun)
3046 set_cfun (this_cfun);
3047 /* ...and an actual current_function_decl */
3048 if (!current_function_decl)
3050 current_function_decl = this_cfun->decl;
3051 fndecl_was_null = true;
3053 debug_gimple_stmt (stmt);
3054 if (fndecl_was_null)
3055 current_function_decl = NULL;
3058 /* Verify that call graph edge corresponds to DECL from the associated
3059 statement. Return true if the verification should fail. */
3061 bool
3062 cgraph_edge::verify_corresponds_to_fndecl (tree decl)
3064 cgraph_node *node;
3066 if (!decl || callee->global.inlined_to)
3067 return false;
3068 if (symtab->state == LTO_STREAMING)
3069 return false;
3070 node = cgraph_node::get (decl);
3072 /* We do not know if a node from a different partition is an alias or what it
3073 aliases and therefore cannot do the former_clone_of check reliably. When
3074 body_removed is set, we have lost all information about what was alias or
3075 thunk of and also cannot proceed. */
3076 if (!node
3077 || node->body_removed
3078 || node->in_other_partition
3079 || callee->icf_merged
3080 || callee->in_other_partition)
3081 return false;
3083 node = node->ultimate_alias_target ();
3085 /* Optimizers can redirect unreachable calls or calls triggering undefined
3086 behavior to builtin_unreachable. */
3087 if (DECL_BUILT_IN_CLASS (callee->decl) == BUILT_IN_NORMAL
3088 && DECL_FUNCTION_CODE (callee->decl) == BUILT_IN_UNREACHABLE)
3089 return false;
3091 if (callee->former_clone_of != node->decl
3092 && (node != callee->ultimate_alias_target ())
3093 && !clone_of_p (node, callee))
3094 return true;
3095 else
3096 return false;
3099 /* Verify cgraph nodes of given cgraph node. */
3100 DEBUG_FUNCTION void
3101 cgraph_node::verify_node (void)
3103 cgraph_edge *e;
3104 function *this_cfun = DECL_STRUCT_FUNCTION (decl);
3105 basic_block this_block;
3106 gimple_stmt_iterator gsi;
3107 bool error_found = false;
3109 if (seen_error ())
3110 return;
3112 timevar_push (TV_CGRAPH_VERIFY);
3113 error_found |= verify_base ();
3114 for (e = callees; e; e = e->next_callee)
3115 if (e->aux)
3117 error ("aux field set for edge %s->%s",
3118 identifier_to_locale (e->caller->name ()),
3119 identifier_to_locale (e->callee->name ()));
3120 error_found = true;
3122 if (count < 0)
3124 error ("execution count is negative");
3125 error_found = true;
3127 if (global.inlined_to && same_comdat_group)
3129 error ("inline clone in same comdat group list");
3130 error_found = true;
3132 if (!definition && !in_other_partition && local.local)
3134 error ("local symbols must be defined");
3135 error_found = true;
3137 if (global.inlined_to && externally_visible)
3139 error ("externally visible inline clone");
3140 error_found = true;
3142 if (global.inlined_to && address_taken)
3144 error ("inline clone with address taken");
3145 error_found = true;
3147 if (global.inlined_to && force_output)
3149 error ("inline clone is forced to output");
3150 error_found = true;
3152 for (e = indirect_calls; e; e = e->next_callee)
3154 if (e->aux)
3156 error ("aux field set for indirect edge from %s",
3157 identifier_to_locale (e->caller->name ()));
3158 error_found = true;
3160 if (!e->indirect_unknown_callee
3161 || !e->indirect_info)
3163 error ("An indirect edge from %s is not marked as indirect or has "
3164 "associated indirect_info, the corresponding statement is: ",
3165 identifier_to_locale (e->caller->name ()));
3166 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3167 error_found = true;
3170 bool check_comdat = comdat_local_p ();
3171 for (e = callers; e; e = e->next_caller)
3173 if (e->verify_count_and_frequency ())
3174 error_found = true;
3175 if (check_comdat
3176 && !in_same_comdat_group_p (e->caller))
3178 error ("comdat-local function called by %s outside its comdat",
3179 identifier_to_locale (e->caller->name ()));
3180 error_found = true;
3182 if (!e->inline_failed)
3184 if (global.inlined_to
3185 != (e->caller->global.inlined_to
3186 ? e->caller->global.inlined_to : e->caller))
3188 error ("inlined_to pointer is wrong");
3189 error_found = true;
3191 if (callers->next_caller)
3193 error ("multiple inline callers");
3194 error_found = true;
3197 else
3198 if (global.inlined_to)
3200 error ("inlined_to pointer set for noninline callers");
3201 error_found = true;
3204 for (e = callees; e; e = e->next_callee)
3206 if (e->verify_count_and_frequency ())
3207 error_found = true;
3208 if (gimple_has_body_p (e->caller->decl)
3209 && !e->caller->global.inlined_to
3210 && !e->speculative
3211 /* Optimized out calls are redirected to __builtin_unreachable. */
3212 && (e->frequency
3213 || ! e->callee->decl
3214 || DECL_BUILT_IN_CLASS (e->callee->decl) != BUILT_IN_NORMAL
3215 || DECL_FUNCTION_CODE (e->callee->decl) != BUILT_IN_UNREACHABLE)
3216 && (e->frequency
3217 != compute_call_stmt_bb_frequency (e->caller->decl,
3218 gimple_bb (e->call_stmt))))
3220 error ("caller edge frequency %i does not match BB frequency %i",
3221 e->frequency,
3222 compute_call_stmt_bb_frequency (e->caller->decl,
3223 gimple_bb (e->call_stmt)));
3224 error_found = true;
3227 for (e = indirect_calls; e; e = e->next_callee)
3229 if (e->verify_count_and_frequency ())
3230 error_found = true;
3231 if (gimple_has_body_p (e->caller->decl)
3232 && !e->caller->global.inlined_to
3233 && !e->speculative
3234 && (e->frequency
3235 != compute_call_stmt_bb_frequency (e->caller->decl,
3236 gimple_bb (e->call_stmt))))
3238 error ("indirect call frequency %i does not match BB frequency %i",
3239 e->frequency,
3240 compute_call_stmt_bb_frequency (e->caller->decl,
3241 gimple_bb (e->call_stmt)));
3242 error_found = true;
3245 if (!callers && global.inlined_to)
3247 error ("inlined_to pointer is set but no predecessors found");
3248 error_found = true;
3250 if (global.inlined_to == this)
3252 error ("inlined_to pointer refers to itself");
3253 error_found = true;
3256 if (clone_of)
3258 cgraph_node *n;
3259 for (n = clone_of->clones; n; n = n->next_sibling_clone)
3260 if (n == this)
3261 break;
3262 if (!n)
3264 error ("cgraph_node has wrong clone_of");
3265 error_found = true;
3268 if (clones)
3270 cgraph_node *n;
3271 for (n = clones; n; n = n->next_sibling_clone)
3272 if (n->clone_of != this)
3273 break;
3274 if (n)
3276 error ("cgraph_node has wrong clone list");
3277 error_found = true;
3280 if ((prev_sibling_clone || next_sibling_clone) && !clone_of)
3282 error ("cgraph_node is in clone list but it is not clone");
3283 error_found = true;
3285 if (!prev_sibling_clone && clone_of && clone_of->clones != this)
3287 error ("cgraph_node has wrong prev_clone pointer");
3288 error_found = true;
3290 if (prev_sibling_clone && prev_sibling_clone->next_sibling_clone != this)
3292 error ("double linked list of clones corrupted");
3293 error_found = true;
3296 if (analyzed && alias)
3298 bool ref_found = false;
3299 int i;
3300 ipa_ref *ref = NULL;
3302 if (callees)
3304 error ("Alias has call edges");
3305 error_found = true;
3307 for (i = 0; iterate_reference (i, ref); i++)
3308 if (ref->use == IPA_REF_CHKP)
3310 else if (ref->use != IPA_REF_ALIAS)
3312 error ("Alias has non-alias reference");
3313 error_found = true;
3315 else if (ref_found)
3317 error ("Alias has more than one alias reference");
3318 error_found = true;
3320 else
3321 ref_found = true;
3322 if (!ref_found)
3324 error ("Analyzed alias has no reference");
3325 error_found = true;
3329 /* Check instrumented version reference. */
3330 if (instrumented_version
3331 && instrumented_version->instrumented_version != this)
3333 error ("Instrumentation clone does not reference original node");
3334 error_found = true;
3337 /* Cannot have orig_decl for not instrumented nodes. */
3338 if (!instrumentation_clone && orig_decl)
3340 error ("Not instrumented node has non-NULL original declaration");
3341 error_found = true;
3344 /* If original not instrumented node still exists then we may check
3345 original declaration is set properly. */
3346 if (instrumented_version
3347 && orig_decl
3348 && orig_decl != instrumented_version->decl)
3350 error ("Instrumented node has wrong original declaration");
3351 error_found = true;
3354 /* Check all nodes have chkp reference to their instrumented versions. */
3355 if (analyzed
3356 && instrumented_version
3357 && !instrumentation_clone)
3359 bool ref_found = false;
3360 int i;
3361 struct ipa_ref *ref;
3363 for (i = 0; iterate_reference (i, ref); i++)
3364 if (ref->use == IPA_REF_CHKP)
3366 if (ref_found)
3368 error ("Node has more than one chkp reference");
3369 error_found = true;
3371 if (ref->referred != instrumented_version)
3373 error ("Wrong node is referenced with chkp reference");
3374 error_found = true;
3376 ref_found = true;
3379 if (!ref_found)
3381 error ("Analyzed node has no reference to instrumented version");
3382 error_found = true;
3386 if (instrumentation_clone
3387 && DECL_BUILT_IN_CLASS (decl) == NOT_BUILT_IN)
3389 tree name = DECL_ASSEMBLER_NAME (decl);
3390 tree orig_name = DECL_ASSEMBLER_NAME (orig_decl);
3392 if (!IDENTIFIER_TRANSPARENT_ALIAS (name)
3393 || TREE_CHAIN (name) != orig_name)
3395 error ("Alias chain for instrumented node is broken");
3396 error_found = true;
3400 if (analyzed && thunk.thunk_p)
3402 if (!callees)
3404 error ("No edge out of thunk node");
3405 error_found = true;
3407 else if (callees->next_callee)
3409 error ("More than one edge out of thunk node");
3410 error_found = true;
3412 if (gimple_has_body_p (decl) && !global.inlined_to)
3414 error ("Thunk is not supposed to have body");
3415 error_found = true;
3417 if (thunk.add_pointer_bounds_args
3418 && !instrumented_version->semantically_equivalent_p (callees->callee))
3420 error ("Instrumentation thunk has wrong edge callee");
3421 error_found = true;
3424 else if (analyzed && gimple_has_body_p (decl)
3425 && !TREE_ASM_WRITTEN (decl)
3426 && (!DECL_EXTERNAL (decl) || global.inlined_to)
3427 && !flag_wpa)
3429 if (this_cfun->cfg)
3431 hash_set<gimple *> stmts;
3432 int i;
3433 ipa_ref *ref = NULL;
3435 /* Reach the trees by walking over the CFG, and note the
3436 enclosing basic-blocks in the call edges. */
3437 FOR_EACH_BB_FN (this_block, this_cfun)
3439 for (gsi = gsi_start_phis (this_block);
3440 !gsi_end_p (gsi); gsi_next (&gsi))
3441 stmts.add (gsi_stmt (gsi));
3442 for (gsi = gsi_start_bb (this_block);
3443 !gsi_end_p (gsi);
3444 gsi_next (&gsi))
3446 gimple *stmt = gsi_stmt (gsi);
3447 stmts.add (stmt);
3448 if (is_gimple_call (stmt))
3450 cgraph_edge *e = get_edge (stmt);
3451 tree decl = gimple_call_fndecl (stmt);
3452 if (e)
3454 if (e->aux)
3456 error ("shared call_stmt:");
3457 cgraph_debug_gimple_stmt (this_cfun, stmt);
3458 error_found = true;
3460 if (!e->indirect_unknown_callee)
3462 if (e->verify_corresponds_to_fndecl (decl))
3464 error ("edge points to wrong declaration:");
3465 debug_tree (e->callee->decl);
3466 fprintf (stderr," Instead of:");
3467 debug_tree (decl);
3468 error_found = true;
3471 else if (decl)
3473 error ("an indirect edge with unknown callee "
3474 "corresponding to a call_stmt with "
3475 "a known declaration:");
3476 error_found = true;
3477 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3479 e->aux = (void *)1;
3481 else if (decl)
3483 error ("missing callgraph edge for call stmt:");
3484 cgraph_debug_gimple_stmt (this_cfun, stmt);
3485 error_found = true;
3490 for (i = 0; iterate_reference (i, ref); i++)
3491 if (ref->stmt && !stmts.contains (ref->stmt))
3493 error ("reference to dead statement");
3494 cgraph_debug_gimple_stmt (this_cfun, ref->stmt);
3495 error_found = true;
3498 else
3499 /* No CFG available?! */
3500 gcc_unreachable ();
3502 for (e = callees; e; e = e->next_callee)
3504 if (!e->aux)
3506 error ("edge %s->%s has no corresponding call_stmt",
3507 identifier_to_locale (e->caller->name ()),
3508 identifier_to_locale (e->callee->name ()));
3509 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3510 error_found = true;
3512 e->aux = 0;
3514 for (e = indirect_calls; e; e = e->next_callee)
3516 if (!e->aux && !e->speculative)
3518 error ("an indirect edge from %s has no corresponding call_stmt",
3519 identifier_to_locale (e->caller->name ()));
3520 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3521 error_found = true;
3523 e->aux = 0;
3526 if (error_found)
3528 dump (stderr);
3529 internal_error ("verify_cgraph_node failed");
3531 timevar_pop (TV_CGRAPH_VERIFY);
3534 /* Verify whole cgraph structure. */
3535 DEBUG_FUNCTION void
3536 cgraph_node::verify_cgraph_nodes (void)
3538 cgraph_node *node;
3540 if (seen_error ())
3541 return;
3543 FOR_EACH_FUNCTION (node)
3544 node->verify ();
3547 /* Walk the alias chain to return the function cgraph_node is alias of.
3548 Walk through thunks, too.
3549 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3550 When REF is non-NULL, assume that reference happens in symbol REF
3551 when determining the availability. */
3553 cgraph_node *
3554 cgraph_node::function_symbol (enum availability *availability,
3555 struct symtab_node *ref)
3557 cgraph_node *node = ultimate_alias_target (availability, ref);
3559 while (node->thunk.thunk_p)
3561 ref = node;
3562 node = node->callees->callee;
3563 if (availability)
3565 enum availability a;
3566 a = node->get_availability (ref);
3567 if (a < *availability)
3568 *availability = a;
3570 node = node->ultimate_alias_target (availability, ref);
3572 return node;
3575 /* Walk the alias chain to return the function cgraph_node is alias of.
3576 Walk through non virtual thunks, too. Thus we return either a function
3577 or a virtual thunk node.
3578 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3579 When REF is non-NULL, assume that reference happens in symbol REF
3580 when determining the availability. */
3582 cgraph_node *
3583 cgraph_node::function_or_virtual_thunk_symbol
3584 (enum availability *availability,
3585 struct symtab_node *ref)
3587 cgraph_node *node = ultimate_alias_target (availability, ref);
3589 while (node->thunk.thunk_p && !node->thunk.virtual_offset_p)
3591 ref = node;
3592 node = node->callees->callee;
3593 if (availability)
3595 enum availability a;
3596 a = node->get_availability (ref);
3597 if (a < *availability)
3598 *availability = a;
3600 node = node->ultimate_alias_target (availability, ref);
3602 return node;
3605 /* When doing LTO, read cgraph_node's body from disk if it is not already
3606 present. */
3608 bool
3609 cgraph_node::get_untransformed_body (void)
3611 lto_file_decl_data *file_data;
3612 const char *data, *name;
3613 size_t len;
3614 tree decl = this->decl;
3616 /* Check if body is already there. Either we have gimple body or
3617 the function is thunk and in that case we set DECL_ARGUMENTS. */
3618 if (DECL_ARGUMENTS (decl) || gimple_has_body_p (decl))
3619 return false;
3621 gcc_assert (in_lto_p && !DECL_RESULT (decl));
3623 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3625 file_data = lto_file_data;
3626 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
3628 /* We may have renamed the declaration, e.g., a static function. */
3629 name = lto_get_decl_name_mapping (file_data, name);
3630 struct lto_in_decl_state *decl_state
3631 = lto_get_function_in_decl_state (file_data, decl);
3633 data = lto_get_section_data (file_data, LTO_section_function_body,
3634 name, &len, decl_state->compressed);
3635 if (!data)
3636 fatal_error (input_location, "%s: section %s is missing",
3637 file_data->file_name,
3638 name);
3640 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
3642 lto_input_function_body (file_data, this, data);
3643 lto_stats.num_function_bodies++;
3644 lto_free_section_data (file_data, LTO_section_function_body, name,
3645 data, len, decl_state->compressed);
3646 lto_free_function_in_decl_state_for_node (this);
3647 /* Keep lto file data so ipa-inline-analysis knows about cross module
3648 inlining. */
3650 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
3652 return true;
3655 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3656 if it is not already present. When some IPA transformations are scheduled,
3657 apply them. */
3659 bool
3660 cgraph_node::get_body (void)
3662 bool updated;
3664 updated = get_untransformed_body ();
3666 /* Getting transformed body makes no sense for inline clones;
3667 we should never use this on real clones because they are materialized
3668 early.
3669 TODO: Materializing clones here will likely lead to smaller LTRANS
3670 footprint. */
3671 gcc_assert (!global.inlined_to && !clone_of);
3672 if (ipa_transforms_to_apply.exists ())
3674 opt_pass *saved_current_pass = current_pass;
3675 FILE *saved_dump_file = dump_file;
3676 const char *saved_dump_file_name = dump_file_name;
3677 dump_flags_t saved_dump_flags = dump_flags;
3678 dump_file_name = NULL;
3679 dump_file = NULL;
3681 push_cfun (DECL_STRUCT_FUNCTION (decl));
3682 execute_all_ipa_transforms ();
3683 cgraph_edge::rebuild_edges ();
3684 free_dominance_info (CDI_DOMINATORS);
3685 free_dominance_info (CDI_POST_DOMINATORS);
3686 pop_cfun ();
3687 updated = true;
3689 current_pass = saved_current_pass;
3690 dump_file = saved_dump_file;
3691 dump_file_name = saved_dump_file_name;
3692 dump_flags = saved_dump_flags;
3694 return updated;
3697 /* Return the DECL_STRUCT_FUNCTION of the function. */
3699 struct function *
3700 cgraph_node::get_fun (void)
3702 cgraph_node *node = this;
3703 struct function *fun = DECL_STRUCT_FUNCTION (node->decl);
3705 while (!fun && node->clone_of)
3707 node = node->clone_of;
3708 fun = DECL_STRUCT_FUNCTION (node->decl);
3711 return fun;
3714 /* Verify if the type of the argument matches that of the function
3715 declaration. If we cannot verify this or there is a mismatch,
3716 return false. */
3718 static bool
3719 gimple_check_call_args (gimple *stmt, tree fndecl, bool args_count_match)
3721 tree parms, p;
3722 unsigned int i, nargs;
3724 /* Calls to internal functions always match their signature. */
3725 if (gimple_call_internal_p (stmt))
3726 return true;
3728 nargs = gimple_call_num_args (stmt);
3730 /* Get argument types for verification. */
3731 if (fndecl)
3732 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
3733 else
3734 parms = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
3736 /* Verify if the type of the argument matches that of the function
3737 declaration. If we cannot verify this or there is a mismatch,
3738 return false. */
3739 if (fndecl && DECL_ARGUMENTS (fndecl))
3741 for (i = 0, p = DECL_ARGUMENTS (fndecl);
3742 i < nargs;
3743 i++, p = DECL_CHAIN (p))
3745 tree arg;
3746 /* We cannot distinguish a varargs function from the case
3747 of excess parameters, still deferring the inlining decision
3748 to the callee is possible. */
3749 if (!p)
3750 break;
3751 arg = gimple_call_arg (stmt, i);
3752 if (p == error_mark_node
3753 || DECL_ARG_TYPE (p) == error_mark_node
3754 || arg == error_mark_node
3755 || (!types_compatible_p (DECL_ARG_TYPE (p), TREE_TYPE (arg))
3756 && !fold_convertible_p (DECL_ARG_TYPE (p), arg)))
3757 return false;
3759 if (args_count_match && p)
3760 return false;
3762 else if (parms)
3764 for (i = 0, p = parms; i < nargs; i++, p = TREE_CHAIN (p))
3766 tree arg;
3767 /* If this is a varargs function defer inlining decision
3768 to callee. */
3769 if (!p)
3770 break;
3771 arg = gimple_call_arg (stmt, i);
3772 if (TREE_VALUE (p) == error_mark_node
3773 || arg == error_mark_node
3774 || TREE_CODE (TREE_VALUE (p)) == VOID_TYPE
3775 || (!types_compatible_p (TREE_VALUE (p), TREE_TYPE (arg))
3776 && !fold_convertible_p (TREE_VALUE (p), arg)))
3777 return false;
3780 else
3782 if (nargs != 0)
3783 return false;
3785 return true;
3788 /* Verify if the type of the argument and lhs of CALL_STMT matches
3789 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3790 true, the arg count needs to be the same.
3791 If we cannot verify this or there is a mismatch, return false. */
3793 bool
3794 gimple_check_call_matching_types (gimple *call_stmt, tree callee,
3795 bool args_count_match)
3797 tree lhs;
3799 if ((DECL_RESULT (callee)
3800 && !DECL_BY_REFERENCE (DECL_RESULT (callee))
3801 && (lhs = gimple_call_lhs (call_stmt)) != NULL_TREE
3802 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee)),
3803 TREE_TYPE (lhs))
3804 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee)), lhs))
3805 || !gimple_check_call_args (call_stmt, callee, args_count_match))
3806 return false;
3807 return true;
3810 /* Reset all state within cgraph.c so that we can rerun the compiler
3811 within the same process. For use by toplev::finalize. */
3813 void
3814 cgraph_c_finalize (void)
3816 symtab = NULL;
3818 x_cgraph_nodes_queue = NULL;
3820 cgraph_fnver_htab = NULL;
3821 version_info_node = NULL;
3824 /* A wroker for call_for_symbol_and_aliases. */
3826 bool
3827 cgraph_node::call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
3828 void *),
3829 void *data,
3830 bool include_overwritable)
3832 ipa_ref *ref;
3833 FOR_EACH_ALIAS (this, ref)
3835 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
3836 if (include_overwritable
3837 || alias->get_availability () > AVAIL_INTERPOSABLE)
3838 if (alias->call_for_symbol_and_aliases (callback, data,
3839 include_overwritable))
3840 return true;
3842 return false;
3845 /* Return true if NODE has thunk. */
3847 bool
3848 cgraph_node::has_thunk_p (cgraph_node *node, void *)
3850 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
3851 if (e->caller->thunk.thunk_p)
3852 return true;
3853 return false;
3856 #include "gt-cgraph.h"