* builtins.def (BUILT_IN_SETJMP): Revert latest change.
[official-gcc.git] / gcc / cgraph.c
blob3d0cefbd46bacc1c9cb7b1cad8ee5d09a3e7eaf0
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 inter-procedural
24 optimization. It represents a multi-graph where nodes are functions
25 (symbols within symbol table) and edges are call sites. */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "backend.h"
31 #include "target.h"
32 #include "rtl.h"
33 #include "tree.h"
34 #include "gimple.h"
35 #include "predict.h"
36 #include "alloc-pool.h"
37 #include "gimple-ssa.h"
38 #include "cgraph.h"
39 #include "lto-streamer.h"
40 #include "fold-const.h"
41 #include "varasm.h"
42 #include "calls.h"
43 #include "print-tree.h"
44 #include "langhooks.h"
45 #include "intl.h"
46 #include "tree-eh.h"
47 #include "gimple-iterator.h"
48 #include "tree-cfg.h"
49 #include "tree-ssa.h"
50 #include "value-prof.h"
51 #include "ipa-utils.h"
52 #include "symbol-summary.h"
53 #include "tree-vrp.h"
54 #include "ipa-prop.h"
55 #include "ipa-fnsummary.h"
56 #include "cfgloop.h"
57 #include "gimple-pretty-print.h"
58 #include "tree-dfa.h"
59 #include "profile.h"
60 #include "params.h"
61 #include "tree-chkp.h"
62 #include "context.h"
63 #include "gimplify.h"
64 #include "stringpool.h"
65 #include "attribs.h"
67 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
68 #include "tree-pass.h"
70 /* Queue of cgraph nodes scheduled to be lowered. */
71 symtab_node *x_cgraph_nodes_queue;
72 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
74 /* Symbol table global context. */
75 symbol_table *symtab;
77 /* List of hooks triggered on cgraph_edge events. */
78 struct cgraph_edge_hook_list {
79 cgraph_edge_hook hook;
80 void *data;
81 struct cgraph_edge_hook_list *next;
84 /* List of hooks triggered on cgraph_node events. */
85 struct cgraph_node_hook_list {
86 cgraph_node_hook hook;
87 void *data;
88 struct cgraph_node_hook_list *next;
91 /* List of hooks triggered on events involving two cgraph_edges. */
92 struct cgraph_2edge_hook_list {
93 cgraph_2edge_hook hook;
94 void *data;
95 struct cgraph_2edge_hook_list *next;
98 /* List of hooks triggered on events involving two cgraph_nodes. */
99 struct cgraph_2node_hook_list {
100 cgraph_2node_hook hook;
101 void *data;
102 struct cgraph_2node_hook_list *next;
105 /* Hash descriptor for cgraph_function_version_info. */
107 struct function_version_hasher : ggc_ptr_hash<cgraph_function_version_info>
109 static hashval_t hash (cgraph_function_version_info *);
110 static bool equal (cgraph_function_version_info *,
111 cgraph_function_version_info *);
114 /* Map a cgraph_node to cgraph_function_version_info using this htab.
115 The cgraph_function_version_info has a THIS_NODE field that is the
116 corresponding cgraph_node.. */
118 static GTY(()) hash_table<function_version_hasher> *cgraph_fnver_htab = NULL;
120 /* Hash function for cgraph_fnver_htab. */
121 hashval_t
122 function_version_hasher::hash (cgraph_function_version_info *ptr)
124 int uid = ptr->this_node->uid;
125 return (hashval_t)(uid);
128 /* eq function for cgraph_fnver_htab. */
129 bool
130 function_version_hasher::equal (cgraph_function_version_info *n1,
131 cgraph_function_version_info *n2)
133 return n1->this_node->uid == n2->this_node->uid;
136 /* Mark as GC root all allocated nodes. */
137 static GTY(()) struct cgraph_function_version_info *
138 version_info_node = NULL;
140 /* Return true if NODE's address can be compared. */
142 bool
143 symtab_node::address_can_be_compared_p ()
145 /* Address of virtual tables and functions is never compared. */
146 if (DECL_VIRTUAL_P (decl))
147 return false;
148 /* Address of C++ cdtors is never compared. */
149 if (is_a <cgraph_node *> (this)
150 && (DECL_CXX_CONSTRUCTOR_P (decl)
151 || DECL_CXX_DESTRUCTOR_P (decl)))
152 return false;
153 /* Constant pool symbols addresses are never compared.
154 flag_merge_constants permits us to assume the same on readonly vars. */
155 if (is_a <varpool_node *> (this)
156 && (DECL_IN_CONSTANT_POOL (decl)
157 || (flag_merge_constants >= 2
158 && TREE_READONLY (decl) && !TREE_THIS_VOLATILE (decl))))
159 return false;
160 return true;
163 /* Get the cgraph_function_version_info node corresponding to node. */
164 cgraph_function_version_info *
165 cgraph_node::function_version (void)
167 cgraph_function_version_info key;
168 key.this_node = this;
170 if (cgraph_fnver_htab == NULL)
171 return NULL;
173 return cgraph_fnver_htab->find (&key);
176 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
177 corresponding to cgraph_node NODE. */
178 cgraph_function_version_info *
179 cgraph_node::insert_new_function_version (void)
181 version_info_node = NULL;
182 version_info_node = ggc_cleared_alloc<cgraph_function_version_info> ();
183 version_info_node->this_node = this;
185 if (cgraph_fnver_htab == NULL)
186 cgraph_fnver_htab = hash_table<function_version_hasher>::create_ggc (2);
188 *cgraph_fnver_htab->find_slot (version_info_node, INSERT)
189 = version_info_node;
190 return version_info_node;
193 /* Remove the cgraph_function_version_info node given by DECL_V. */
194 static void
195 delete_function_version (cgraph_function_version_info *decl_v)
197 if (decl_v == NULL)
198 return;
200 if (decl_v->prev != NULL)
201 decl_v->prev->next = decl_v->next;
203 if (decl_v->next != NULL)
204 decl_v->next->prev = decl_v->prev;
206 if (cgraph_fnver_htab != NULL)
207 cgraph_fnver_htab->remove_elt (decl_v);
210 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
211 DECL is a duplicate declaration. */
212 void
213 cgraph_node::delete_function_version_by_decl (tree decl)
215 cgraph_node *decl_node = cgraph_node::get (decl);
217 if (decl_node == NULL)
218 return;
220 delete_function_version (decl_node->function_version ());
222 decl_node->remove ();
225 /* Record that DECL1 and DECL2 are semantically identical function
226 versions. */
227 void
228 cgraph_node::record_function_versions (tree decl1, tree decl2)
230 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
231 cgraph_node *decl2_node = cgraph_node::get_create (decl2);
232 cgraph_function_version_info *decl1_v = NULL;
233 cgraph_function_version_info *decl2_v = NULL;
234 cgraph_function_version_info *before;
235 cgraph_function_version_info *after;
237 gcc_assert (decl1_node != NULL && decl2_node != NULL);
238 decl1_v = decl1_node->function_version ();
239 decl2_v = decl2_node->function_version ();
241 if (decl1_v != NULL && decl2_v != NULL)
242 return;
244 if (decl1_v == NULL)
245 decl1_v = decl1_node->insert_new_function_version ();
247 if (decl2_v == NULL)
248 decl2_v = decl2_node->insert_new_function_version ();
250 /* Chain decl2_v and decl1_v. All semantically identical versions
251 will be chained together. */
253 before = decl1_v;
254 after = decl2_v;
256 while (before->next != NULL)
257 before = before->next;
259 while (after->prev != NULL)
260 after= after->prev;
262 before->next = after;
263 after->prev = before;
266 /* Initialize callgraph dump file. */
268 void
269 symbol_table::initialize (void)
271 if (!dump_file)
272 dump_file = dump_begin (TDI_cgraph, NULL);
274 if (!ipa_clones_dump_file)
275 ipa_clones_dump_file = dump_begin (TDI_clones, NULL);
278 /* Allocate new callgraph node and insert it into basic data structures. */
280 cgraph_node *
281 symbol_table::create_empty (void)
283 cgraph_node *node = allocate_cgraph_symbol ();
285 node->type = SYMTAB_FUNCTION;
286 node->frequency = NODE_FREQUENCY_NORMAL;
287 node->count_materialization_scale = REG_BR_PROB_BASE;
288 cgraph_count++;
290 return node;
293 /* Register HOOK to be called with DATA on each removed edge. */
294 cgraph_edge_hook_list *
295 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook, void *data)
297 cgraph_edge_hook_list *entry;
298 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
300 entry = (cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
301 entry->hook = hook;
302 entry->data = data;
303 entry->next = NULL;
304 while (*ptr)
305 ptr = &(*ptr)->next;
306 *ptr = entry;
307 return entry;
310 /* Remove ENTRY from the list of hooks called on removing edges. */
311 void
312 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list *entry)
314 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
316 while (*ptr != entry)
317 ptr = &(*ptr)->next;
318 *ptr = entry->next;
319 free (entry);
322 /* Call all edge removal hooks. */
323 void
324 symbol_table::call_edge_removal_hooks (cgraph_edge *e)
326 cgraph_edge_hook_list *entry = m_first_edge_removal_hook;
327 while (entry)
329 entry->hook (e, entry->data);
330 entry = entry->next;
334 /* Register HOOK to be called with DATA on each removed node. */
335 cgraph_node_hook_list *
336 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook, void *data)
338 cgraph_node_hook_list *entry;
339 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
341 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
342 entry->hook = hook;
343 entry->data = data;
344 entry->next = NULL;
345 while (*ptr)
346 ptr = &(*ptr)->next;
347 *ptr = entry;
348 return entry;
351 /* Remove ENTRY from the list of hooks called on removing nodes. */
352 void
353 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list *entry)
355 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
357 while (*ptr != entry)
358 ptr = &(*ptr)->next;
359 *ptr = entry->next;
360 free (entry);
363 /* Call all node removal hooks. */
364 void
365 symbol_table::call_cgraph_removal_hooks (cgraph_node *node)
367 cgraph_node_hook_list *entry = m_first_cgraph_removal_hook;
368 while (entry)
370 entry->hook (node, entry->data);
371 entry = entry->next;
375 /* Call all node removal hooks. */
376 void
377 symbol_table::call_cgraph_insertion_hooks (cgraph_node *node)
379 cgraph_node_hook_list *entry = m_first_cgraph_insertion_hook;
380 while (entry)
382 entry->hook (node, entry->data);
383 entry = entry->next;
388 /* Register HOOK to be called with DATA on each inserted node. */
389 cgraph_node_hook_list *
390 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook, void *data)
392 cgraph_node_hook_list *entry;
393 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
395 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
396 entry->hook = hook;
397 entry->data = data;
398 entry->next = NULL;
399 while (*ptr)
400 ptr = &(*ptr)->next;
401 *ptr = entry;
402 return entry;
405 /* Remove ENTRY from the list of hooks called on inserted nodes. */
406 void
407 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list *entry)
409 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
411 while (*ptr != entry)
412 ptr = &(*ptr)->next;
413 *ptr = entry->next;
414 free (entry);
417 /* Register HOOK to be called with DATA on each duplicated edge. */
418 cgraph_2edge_hook_list *
419 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
421 cgraph_2edge_hook_list *entry;
422 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
424 entry = (cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
425 entry->hook = hook;
426 entry->data = data;
427 entry->next = NULL;
428 while (*ptr)
429 ptr = &(*ptr)->next;
430 *ptr = entry;
431 return entry;
434 /* Remove ENTRY from the list of hooks called on duplicating edges. */
435 void
436 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list *entry)
438 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
440 while (*ptr != entry)
441 ptr = &(*ptr)->next;
442 *ptr = entry->next;
443 free (entry);
446 /* Call all edge duplication hooks. */
447 void
448 symbol_table::call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)
450 cgraph_2edge_hook_list *entry = m_first_edge_duplicated_hook;
451 while (entry)
453 entry->hook (cs1, cs2, entry->data);
454 entry = entry->next;
458 /* Register HOOK to be called with DATA on each duplicated node. */
459 cgraph_2node_hook_list *
460 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook, void *data)
462 cgraph_2node_hook_list *entry;
463 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
465 entry = (cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
466 entry->hook = hook;
467 entry->data = data;
468 entry->next = NULL;
469 while (*ptr)
470 ptr = &(*ptr)->next;
471 *ptr = entry;
472 return entry;
475 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
476 void
477 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry)
479 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
481 while (*ptr != entry)
482 ptr = &(*ptr)->next;
483 *ptr = entry->next;
484 free (entry);
487 /* Call all node duplication hooks. */
488 void
489 symbol_table::call_cgraph_duplication_hooks (cgraph_node *node,
490 cgraph_node *node2)
492 cgraph_2node_hook_list *entry = m_first_cgraph_duplicated_hook;
493 while (entry)
495 entry->hook (node, node2, entry->data);
496 entry = entry->next;
500 /* Return cgraph node assigned to DECL. Create new one when needed. */
502 cgraph_node *
503 cgraph_node::create (tree decl)
505 cgraph_node *node = symtab->create_empty ();
506 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
508 node->decl = decl;
510 node->count = profile_count::uninitialized ();
512 if ((flag_openacc || flag_openmp)
513 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl)))
515 node->offloadable = 1;
516 if (ENABLE_OFFLOADING)
517 g->have_offload = true;
520 node->register_symbol ();
522 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
524 node->origin = cgraph_node::get_create (DECL_CONTEXT (decl));
525 node->next_nested = node->origin->nested;
526 node->origin->nested = node;
528 return node;
531 /* Try to find a call graph node for declaration DECL and if it does not exist
532 or if it corresponds to an inline clone, create a new one. */
534 cgraph_node *
535 cgraph_node::get_create (tree decl)
537 cgraph_node *first_clone = cgraph_node::get (decl);
539 if (first_clone && !first_clone->global.inlined_to)
540 return first_clone;
542 cgraph_node *node = cgraph_node::create (decl);
543 if (first_clone)
545 first_clone->clone_of = node;
546 node->clones = first_clone;
547 symtab->symtab_prevail_in_asm_name_hash (node);
548 node->decl->decl_with_vis.symtab_node = node;
549 if (dump_file)
550 fprintf (dump_file, "Introduced new external node "
551 "(%s) and turned into root of the clone tree.\n",
552 node->dump_name ());
554 else if (dump_file)
555 fprintf (dump_file, "Introduced new external node "
556 "(%s).\n", node->dump_name ());
557 return node;
560 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
561 the function body is associated with (not necessarily cgraph_node (DECL). */
563 cgraph_node *
564 cgraph_node::create_alias (tree alias, tree target)
566 cgraph_node *alias_node;
568 gcc_assert (TREE_CODE (target) == FUNCTION_DECL
569 || TREE_CODE (target) == IDENTIFIER_NODE);
570 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
571 alias_node = cgraph_node::get_create (alias);
572 gcc_assert (!alias_node->definition);
573 alias_node->alias_target = target;
574 alias_node->definition = true;
575 alias_node->alias = true;
576 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias)) != NULL)
577 alias_node->transparent_alias = alias_node->weakref = true;
578 return alias_node;
581 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
582 and NULL otherwise.
583 Same body aliases are output whenever the body of DECL is output,
584 and cgraph_node::get (ALIAS) transparently returns
585 cgraph_node::get (DECL). */
587 cgraph_node *
588 cgraph_node::create_same_body_alias (tree alias, tree decl)
590 cgraph_node *n;
592 /* If aliases aren't supported by the assembler, fail. */
593 if (!TARGET_SUPPORTS_ALIASES)
594 return NULL;
596 /* Langhooks can create same body aliases of symbols not defined.
597 Those are useless. Drop them on the floor. */
598 if (symtab->global_info_ready)
599 return NULL;
601 n = cgraph_node::create_alias (alias, decl);
602 n->cpp_implicit_alias = true;
603 if (symtab->cpp_implicit_aliases_done)
604 n->resolve_alias (cgraph_node::get (decl));
605 return n;
608 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
609 aliases DECL with an adjustments made into the first parameter.
610 See comments in struct cgraph_thunk_info for detail on the parameters. */
612 cgraph_node *
613 cgraph_node::create_thunk (tree alias, tree, bool this_adjusting,
614 HOST_WIDE_INT fixed_offset,
615 HOST_WIDE_INT virtual_value,
616 tree virtual_offset,
617 tree real_alias)
619 cgraph_node *node;
621 node = cgraph_node::get (alias);
622 if (node)
623 node->reset ();
624 else
625 node = cgraph_node::create (alias);
627 /* Make sure that if VIRTUAL_OFFSET is in sync with VIRTUAL_VALUE. */
628 gcc_checking_assert (virtual_offset
629 ? wi::eq_p (virtual_offset, virtual_value)
630 : virtual_value == 0);
632 node->thunk.fixed_offset = fixed_offset;
633 node->thunk.virtual_value = virtual_value;
634 node->thunk.alias = real_alias;
635 node->thunk.this_adjusting = this_adjusting;
636 node->thunk.virtual_offset_p = virtual_offset != NULL;
637 node->thunk.thunk_p = true;
638 node->definition = true;
640 return node;
643 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
644 Return NULL if there's no such node. */
646 cgraph_node *
647 cgraph_node::get_for_asmname (tree asmname)
649 /* We do not want to look at inline clones. */
650 for (symtab_node *node = symtab_node::get_for_asmname (asmname);
651 node;
652 node = node->next_sharing_asm_name)
654 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
655 if (cn && !cn->global.inlined_to)
656 return cn;
658 return NULL;
661 /* Returns a hash value for X (which really is a cgraph_edge). */
663 hashval_t
664 cgraph_edge_hasher::hash (cgraph_edge *e)
666 /* This is a really poor hash function, but it is what htab_hash_pointer
667 uses. */
668 return (hashval_t) ((intptr_t)e->call_stmt >> 3);
671 /* Returns a hash value for X (which really is a cgraph_edge). */
673 hashval_t
674 cgraph_edge_hasher::hash (gimple *call_stmt)
676 /* This is a really poor hash function, but it is what htab_hash_pointer
677 uses. */
678 return (hashval_t) ((intptr_t)call_stmt >> 3);
681 /* Return nonzero if the call_stmt of cgraph_edge X is stmt *Y. */
683 inline bool
684 cgraph_edge_hasher::equal (cgraph_edge *x, gimple *y)
686 return x->call_stmt == y;
689 /* Add call graph edge E to call site hash of its caller. */
691 static inline void
692 cgraph_update_edge_in_call_site_hash (cgraph_edge *e)
694 gimple *call = e->call_stmt;
695 *e->caller->call_site_hash->find_slot_with_hash
696 (call, cgraph_edge_hasher::hash (call), INSERT) = e;
699 /* Add call graph edge E to call site hash of its caller. */
701 static inline void
702 cgraph_add_edge_to_call_site_hash (cgraph_edge *e)
704 /* There are two speculative edges for every statement (one direct,
705 one indirect); always hash the direct one. */
706 if (e->speculative && e->indirect_unknown_callee)
707 return;
708 cgraph_edge **slot = e->caller->call_site_hash->find_slot_with_hash
709 (e->call_stmt, cgraph_edge_hasher::hash (e->call_stmt), INSERT);
710 if (*slot)
712 gcc_assert (((cgraph_edge *)*slot)->speculative);
713 if (e->callee)
714 *slot = e;
715 return;
717 gcc_assert (!*slot || e->speculative);
718 *slot = e;
721 /* Return the callgraph edge representing the GIMPLE_CALL statement
722 CALL_STMT. */
724 cgraph_edge *
725 cgraph_node::get_edge (gimple *call_stmt)
727 cgraph_edge *e, *e2;
728 int n = 0;
730 if (call_site_hash)
731 return call_site_hash->find_with_hash
732 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
734 /* This loop may turn out to be performance problem. In such case adding
735 hashtables into call nodes with very many edges is probably best
736 solution. It is not good idea to add pointer into CALL_EXPR itself
737 because we want to make possible having multiple cgraph nodes representing
738 different clones of the same body before the body is actually cloned. */
739 for (e = callees; e; e = e->next_callee)
741 if (e->call_stmt == call_stmt)
742 break;
743 n++;
746 if (!e)
747 for (e = indirect_calls; e; e = e->next_callee)
749 if (e->call_stmt == call_stmt)
750 break;
751 n++;
754 if (n > 100)
756 call_site_hash = hash_table<cgraph_edge_hasher>::create_ggc (120);
757 for (e2 = callees; e2; e2 = e2->next_callee)
758 cgraph_add_edge_to_call_site_hash (e2);
759 for (e2 = indirect_calls; e2; e2 = e2->next_callee)
760 cgraph_add_edge_to_call_site_hash (e2);
763 return e;
767 /* Change field call_stmt of edge to NEW_STMT.
768 If UPDATE_SPECULATIVE and E is any component of speculative
769 edge, then update all components. */
771 void
772 cgraph_edge::set_call_stmt (gcall *new_stmt, bool update_speculative)
774 tree decl;
776 /* Speculative edges has three component, update all of them
777 when asked to. */
778 if (update_speculative && speculative)
780 cgraph_edge *direct, *indirect;
781 ipa_ref *ref;
783 speculative_call_info (direct, indirect, ref);
784 direct->set_call_stmt (new_stmt, false);
785 indirect->set_call_stmt (new_stmt, false);
786 ref->stmt = new_stmt;
787 return;
790 /* Only direct speculative edges go to call_site_hash. */
791 if (caller->call_site_hash
792 && (!speculative || !indirect_unknown_callee))
794 caller->call_site_hash->remove_elt_with_hash
795 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
798 cgraph_edge *e = this;
800 call_stmt = new_stmt;
801 if (indirect_unknown_callee
802 && (decl = gimple_call_fndecl (new_stmt)))
804 /* Constant propagation (and possibly also inlining?) can turn an
805 indirect call into a direct one. */
806 cgraph_node *new_callee = cgraph_node::get (decl);
808 gcc_checking_assert (new_callee);
809 e = make_direct (new_callee);
812 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
813 e->can_throw_external = stmt_can_throw_external (new_stmt);
814 pop_cfun ();
815 if (e->caller->call_site_hash)
816 cgraph_add_edge_to_call_site_hash (e);
819 /* Allocate a cgraph_edge structure and fill it with data according to the
820 parameters of which only CALLEE can be NULL (when creating an indirect call
821 edge). */
823 cgraph_edge *
824 symbol_table::create_edge (cgraph_node *caller, cgraph_node *callee,
825 gcall *call_stmt, profile_count count, int freq,
826 bool indir_unknown_callee)
828 cgraph_edge *edge;
830 /* LTO does not actually have access to the call_stmt since these
831 have not been loaded yet. */
832 if (call_stmt)
834 /* This is a rather expensive check possibly triggering
835 construction of call stmt hashtable. */
836 cgraph_edge *e;
837 gcc_checking_assert (!(e = caller->get_edge (call_stmt))
838 || e->speculative);
840 gcc_assert (is_gimple_call (call_stmt));
843 if (free_edges)
845 edge = free_edges;
846 free_edges = NEXT_FREE_EDGE (edge);
848 else
850 edge = ggc_alloc<cgraph_edge> ();
851 edge->uid = edges_max_uid++;
854 edges_count++;
856 edge->aux = NULL;
857 edge->caller = caller;
858 edge->callee = callee;
859 edge->prev_caller = NULL;
860 edge->next_caller = NULL;
861 edge->prev_callee = NULL;
862 edge->next_callee = NULL;
863 edge->lto_stmt_uid = 0;
865 edge->count = count;
866 edge->frequency = freq;
867 gcc_checking_assert (freq >= 0);
868 gcc_checking_assert (freq <= CGRAPH_FREQ_MAX);
870 edge->call_stmt = call_stmt;
871 push_cfun (DECL_STRUCT_FUNCTION (caller->decl));
872 edge->can_throw_external
873 = call_stmt ? stmt_can_throw_external (call_stmt) : false;
874 pop_cfun ();
875 if (call_stmt
876 && callee && callee->decl
877 && !gimple_check_call_matching_types (call_stmt, callee->decl,
878 false))
880 edge->inline_failed = CIF_MISMATCHED_ARGUMENTS;
881 edge->call_stmt_cannot_inline_p = true;
883 else
885 edge->inline_failed = CIF_FUNCTION_NOT_CONSIDERED;
886 edge->call_stmt_cannot_inline_p = false;
889 edge->indirect_info = NULL;
890 edge->indirect_inlining_edge = 0;
891 edge->speculative = false;
892 edge->indirect_unknown_callee = indir_unknown_callee;
893 if (opt_for_fn (edge->caller->decl, flag_devirtualize)
894 && call_stmt && DECL_STRUCT_FUNCTION (caller->decl))
895 edge->in_polymorphic_cdtor
896 = decl_maybe_in_construction_p (NULL, NULL, call_stmt,
897 caller->decl);
898 else
899 edge->in_polymorphic_cdtor = caller->thunk.thunk_p;
900 if (call_stmt && caller->call_site_hash)
901 cgraph_add_edge_to_call_site_hash (edge);
903 return edge;
906 /* Create edge from a given function to CALLEE in the cgraph. */
908 cgraph_edge *
909 cgraph_node::create_edge (cgraph_node *callee,
910 gcall *call_stmt, profile_count count, int freq)
912 cgraph_edge *edge = symtab->create_edge (this, callee, call_stmt, count,
913 freq, false);
915 initialize_inline_failed (edge);
917 edge->next_caller = callee->callers;
918 if (callee->callers)
919 callee->callers->prev_caller = edge;
920 edge->next_callee = callees;
921 if (callees)
922 callees->prev_callee = edge;
923 callees = edge;
924 callee->callers = edge;
926 return edge;
929 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
931 cgraph_indirect_call_info *
932 cgraph_allocate_init_indirect_info (void)
934 cgraph_indirect_call_info *ii;
936 ii = ggc_cleared_alloc<cgraph_indirect_call_info> ();
937 ii->param_index = -1;
938 return ii;
941 /* Create an indirect edge with a yet-undetermined callee where the call
942 statement destination is a formal parameter of the caller with index
943 PARAM_INDEX. */
945 cgraph_edge *
946 cgraph_node::create_indirect_edge (gcall *call_stmt, int ecf_flags,
947 profile_count count, int freq,
948 bool compute_indirect_info)
950 cgraph_edge *edge = symtab->create_edge (this, NULL, call_stmt,
951 count, freq, true);
952 tree target;
954 initialize_inline_failed (edge);
956 edge->indirect_info = cgraph_allocate_init_indirect_info ();
957 edge->indirect_info->ecf_flags = ecf_flags;
958 edge->indirect_info->vptr_changed = true;
960 /* Record polymorphic call info. */
961 if (compute_indirect_info
962 && call_stmt
963 && (target = gimple_call_fn (call_stmt))
964 && virtual_method_call_p (target))
966 ipa_polymorphic_call_context context (decl, target, call_stmt);
968 /* Only record types can have virtual calls. */
969 edge->indirect_info->polymorphic = true;
970 edge->indirect_info->param_index = -1;
971 edge->indirect_info->otr_token
972 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
973 edge->indirect_info->otr_type = obj_type_ref_class (target);
974 gcc_assert (TREE_CODE (edge->indirect_info->otr_type) == RECORD_TYPE);
975 edge->indirect_info->context = context;
978 edge->next_callee = indirect_calls;
979 if (indirect_calls)
980 indirect_calls->prev_callee = edge;
981 indirect_calls = edge;
983 return edge;
986 /* Remove the edge from the list of the callees of the caller. */
988 void
989 cgraph_edge::remove_caller (void)
991 if (prev_callee)
992 prev_callee->next_callee = next_callee;
993 if (next_callee)
994 next_callee->prev_callee = prev_callee;
995 if (!prev_callee)
997 if (indirect_unknown_callee)
998 caller->indirect_calls = next_callee;
999 else
1000 caller->callees = next_callee;
1002 if (caller->call_site_hash)
1003 caller->call_site_hash->remove_elt_with_hash
1004 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
1007 /* Put the edge onto the free list. */
1009 void
1010 symbol_table::free_edge (cgraph_edge *e)
1012 int uid = e->uid;
1014 if (e->indirect_info)
1015 ggc_free (e->indirect_info);
1017 /* Clear out the edge so we do not dangle pointers. */
1018 memset (e, 0, sizeof (*e));
1019 e->uid = uid;
1020 NEXT_FREE_EDGE (e) = free_edges;
1021 free_edges = e;
1022 edges_count--;
1025 /* Remove the edge in the cgraph. */
1027 void
1028 cgraph_edge::remove (void)
1030 /* Call all edge removal hooks. */
1031 symtab->call_edge_removal_hooks (this);
1033 if (!indirect_unknown_callee)
1034 /* Remove from callers list of the callee. */
1035 remove_callee ();
1037 /* Remove from callees list of the callers. */
1038 remove_caller ();
1040 /* Put the edge onto the free list. */
1041 symtab->free_edge (this);
1044 /* Turn edge into speculative call calling N2. Update
1045 the profile so the direct call is taken COUNT times
1046 with FREQUENCY.
1048 At clone materialization time, the indirect call E will
1049 be expanded as:
1051 if (call_dest == N2)
1052 n2 ();
1053 else
1054 call call_dest
1056 At this time the function just creates the direct call,
1057 the referencd representing the if conditional and attaches
1058 them all to the orginal indirect call statement.
1060 Return direct edge created. */
1062 cgraph_edge *
1063 cgraph_edge::make_speculative (cgraph_node *n2, profile_count direct_count,
1064 int direct_frequency)
1066 cgraph_node *n = caller;
1067 ipa_ref *ref = NULL;
1068 cgraph_edge *e2;
1070 if (dump_file)
1071 fprintf (dump_file, "Indirect call -> speculative call %s => %s\n",
1072 n->dump_name (), n2->dump_name ());
1073 speculative = true;
1074 e2 = n->create_edge (n2, call_stmt, direct_count, direct_frequency);
1075 initialize_inline_failed (e2);
1076 e2->speculative = true;
1077 if (TREE_NOTHROW (n2->decl))
1078 e2->can_throw_external = false;
1079 else
1080 e2->can_throw_external = can_throw_external;
1081 e2->lto_stmt_uid = lto_stmt_uid;
1082 e2->in_polymorphic_cdtor = in_polymorphic_cdtor;
1083 count -= e2->count;
1084 frequency -= e2->frequency;
1085 symtab->call_edge_duplication_hooks (this, e2);
1086 ref = n->create_reference (n2, IPA_REF_ADDR, call_stmt);
1087 ref->lto_stmt_uid = lto_stmt_uid;
1088 ref->speculative = speculative;
1089 n2->mark_address_taken ();
1090 return e2;
1093 /* Speculative call consist of three components:
1094 1) an indirect edge representing the original call
1095 2) an direct edge representing the new call
1096 3) ADDR_EXPR reference representing the speculative check.
1097 All three components are attached to single statement (the indirect
1098 call) and if one of them exists, all of them must exist.
1100 Given speculative call edge, return all three components.
1103 void
1104 cgraph_edge::speculative_call_info (cgraph_edge *&direct,
1105 cgraph_edge *&indirect,
1106 ipa_ref *&reference)
1108 ipa_ref *ref;
1109 int i;
1110 cgraph_edge *e2;
1111 cgraph_edge *e = this;
1113 if (!e->indirect_unknown_callee)
1114 for (e2 = e->caller->indirect_calls;
1115 e2->call_stmt != e->call_stmt || e2->lto_stmt_uid != e->lto_stmt_uid;
1116 e2 = e2->next_callee)
1118 else
1120 e2 = e;
1121 /* We can take advantage of the call stmt hash. */
1122 if (e2->call_stmt)
1124 e = e->caller->get_edge (e2->call_stmt);
1125 gcc_assert (e->speculative && !e->indirect_unknown_callee);
1127 else
1128 for (e = e->caller->callees;
1129 e2->call_stmt != e->call_stmt
1130 || e2->lto_stmt_uid != e->lto_stmt_uid;
1131 e = e->next_callee)
1134 gcc_assert (e->speculative && e2->speculative);
1135 direct = e;
1136 indirect = e2;
1138 reference = NULL;
1139 for (i = 0; e->caller->iterate_reference (i, ref); i++)
1140 if (ref->speculative
1141 && ((ref->stmt && ref->stmt == e->call_stmt)
1142 || (!ref->stmt && ref->lto_stmt_uid == e->lto_stmt_uid)))
1144 reference = ref;
1145 break;
1148 /* Speculative edge always consist of all three components - direct edge,
1149 indirect and reference. */
1151 gcc_assert (e && e2 && ref);
1154 /* Speculative call edge turned out to be direct call to CALLE_DECL.
1155 Remove the speculative call sequence and return edge representing the call.
1156 It is up to caller to redirect the call as appropriate. */
1158 cgraph_edge *
1159 cgraph_edge::resolve_speculation (tree callee_decl)
1161 cgraph_edge *edge = this;
1162 cgraph_edge *e2;
1163 ipa_ref *ref;
1165 gcc_assert (edge->speculative);
1166 edge->speculative_call_info (e2, edge, ref);
1167 if (!callee_decl
1168 || !ref->referred->semantically_equivalent_p
1169 (symtab_node::get (callee_decl)))
1171 if (dump_file)
1173 if (callee_decl)
1175 fprintf (dump_file, "Speculative indirect call %s => %s has "
1176 "turned out to have contradicting known target ",
1177 edge->caller->dump_name (),
1178 e2->callee->dump_name ());
1179 print_generic_expr (dump_file, callee_decl);
1180 fprintf (dump_file, "\n");
1182 else
1184 fprintf (dump_file, "Removing speculative call %s => %s\n",
1185 edge->caller->dump_name (),
1186 e2->callee->dump_name ());
1190 else
1192 cgraph_edge *tmp = edge;
1193 if (dump_file)
1194 fprintf (dump_file, "Speculative call turned into direct call.\n");
1195 edge = e2;
1196 e2 = tmp;
1197 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1198 in the functions inlined through it. */
1200 edge->count += e2->count;
1201 edge->frequency += e2->frequency;
1202 if (edge->frequency > CGRAPH_FREQ_MAX)
1203 edge->frequency = CGRAPH_FREQ_MAX;
1204 edge->speculative = false;
1205 e2->speculative = false;
1206 ref->remove_reference ();
1207 if (e2->indirect_unknown_callee || e2->inline_failed)
1208 e2->remove ();
1209 else
1210 e2->callee->remove_symbol_and_inline_clones ();
1211 if (edge->caller->call_site_hash)
1212 cgraph_update_edge_in_call_site_hash (edge);
1213 return edge;
1216 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1217 CALLEE. DELTA is an integer constant that is to be added to the this
1218 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1220 cgraph_edge *
1221 cgraph_edge::make_direct (cgraph_node *callee)
1223 cgraph_edge *edge = this;
1224 gcc_assert (indirect_unknown_callee);
1226 /* If we are redirecting speculative call, make it non-speculative. */
1227 if (indirect_unknown_callee && speculative)
1229 edge = edge->resolve_speculation (callee->decl);
1231 /* On successful speculation just return the pre existing direct edge. */
1232 if (!indirect_unknown_callee)
1233 return edge;
1236 indirect_unknown_callee = 0;
1237 ggc_free (indirect_info);
1238 indirect_info = NULL;
1240 /* Get the edge out of the indirect edge list. */
1241 if (prev_callee)
1242 prev_callee->next_callee = next_callee;
1243 if (next_callee)
1244 next_callee->prev_callee = prev_callee;
1245 if (!prev_callee)
1246 caller->indirect_calls = next_callee;
1248 /* Put it into the normal callee list */
1249 prev_callee = NULL;
1250 next_callee = caller->callees;
1251 if (caller->callees)
1252 caller->callees->prev_callee = edge;
1253 caller->callees = edge;
1255 /* Insert to callers list of the new callee. */
1256 edge->set_callee (callee);
1258 if (call_stmt
1259 && !gimple_check_call_matching_types (call_stmt, callee->decl, false))
1261 call_stmt_cannot_inline_p = true;
1262 inline_failed = CIF_MISMATCHED_ARGUMENTS;
1265 /* We need to re-determine the inlining status of the edge. */
1266 initialize_inline_failed (edge);
1267 return edge;
1270 /* If necessary, change the function declaration in the call statement
1271 associated with E so that it corresponds to the edge callee. */
1273 gimple *
1274 cgraph_edge::redirect_call_stmt_to_callee (void)
1276 cgraph_edge *e = this;
1278 tree decl = gimple_call_fndecl (e->call_stmt);
1279 gcall *new_stmt;
1280 gimple_stmt_iterator gsi;
1281 bool skip_bounds = false;
1283 if (e->speculative)
1285 cgraph_edge *e2;
1286 gcall *new_stmt;
1287 ipa_ref *ref;
1289 e->speculative_call_info (e, e2, ref);
1290 /* If there already is an direct call (i.e. as a result of inliner's
1291 substitution), forget about speculating. */
1292 if (decl)
1293 e = e->resolve_speculation (decl);
1294 /* If types do not match, speculation was likely wrong.
1295 The direct edge was possibly redirected to the clone with a different
1296 signature. We did not update the call statement yet, so compare it
1297 with the reference that still points to the proper type. */
1298 else if (!gimple_check_call_matching_types (e->call_stmt,
1299 ref->referred->decl,
1300 true))
1302 if (dump_file)
1303 fprintf (dump_file, "Not expanding speculative call of %s -> %s\n"
1304 "Type mismatch.\n",
1305 e->caller->dump_name (),
1306 e->callee->dump_name ());
1307 e = e->resolve_speculation ();
1308 /* We are producing the final function body and will throw away the
1309 callgraph edges really soon. Reset the counts/frequencies to
1310 keep verifier happy in the case of roundoff errors. */
1311 e->count = gimple_bb (e->call_stmt)->count;
1312 e->frequency = compute_call_stmt_bb_frequency
1313 (e->caller->decl, gimple_bb (e->call_stmt));
1315 /* Expand speculation into GIMPLE code. */
1316 else
1318 if (dump_file)
1320 fprintf (dump_file,
1321 "Expanding speculative call of %s -> %s count: ",
1322 e->caller->dump_name (),
1323 e->callee->dump_name ());
1324 e->count.dump (dump_file);
1325 fprintf (dump_file, "\n");
1327 gcc_assert (e2->speculative);
1328 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
1330 profile_probability prob = e->count.probability_in (e->count
1331 + e2->count);
1332 if (prob.initialized_p ())
1334 else if (e->frequency || e2->frequency)
1335 prob = profile_probability::probability_in_gcov_type
1336 (e->frequency, e->frequency + e2->frequency).guessed ();
1337 else
1338 prob = profile_probability::even ();
1339 new_stmt = gimple_ic (e->call_stmt,
1340 dyn_cast<cgraph_node *> (ref->referred),
1341 prob, e->count, e->count + e2->count);
1342 e->speculative = false;
1343 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt,
1344 false);
1346 /* Fix edges for BUILT_IN_CHKP_BNDRET calls attached to the
1347 processed call stmt. */
1348 if (gimple_call_with_bounds_p (new_stmt)
1349 && gimple_call_lhs (new_stmt)
1350 && chkp_retbnd_call_by_val (gimple_call_lhs (e2->call_stmt)))
1352 tree dresult = gimple_call_lhs (new_stmt);
1353 tree iresult = gimple_call_lhs (e2->call_stmt);
1354 gcall *dbndret = chkp_retbnd_call_by_val (dresult);
1355 gcall *ibndret = chkp_retbnd_call_by_val (iresult);
1356 struct cgraph_edge *iedge
1357 = e2->caller->cgraph_node::get_edge (ibndret);
1358 struct cgraph_edge *dedge;
1360 if (dbndret)
1362 dedge = iedge->caller->create_edge (iedge->callee,
1363 dbndret, e->count,
1364 e->frequency);
1365 dedge->frequency = compute_call_stmt_bb_frequency
1366 (dedge->caller->decl, gimple_bb (dedge->call_stmt));
1368 iedge->frequency = compute_call_stmt_bb_frequency
1369 (iedge->caller->decl, gimple_bb (iedge->call_stmt));
1372 e->frequency = compute_call_stmt_bb_frequency
1373 (e->caller->decl, gimple_bb (e->call_stmt));
1374 e2->frequency = compute_call_stmt_bb_frequency
1375 (e2->caller->decl, gimple_bb (e2->call_stmt));
1376 e2->speculative = false;
1377 ref->speculative = false;
1378 ref->stmt = NULL;
1379 /* Indirect edges are not both in the call site hash.
1380 get it updated. */
1381 if (e->caller->call_site_hash)
1382 cgraph_update_edge_in_call_site_hash (e2);
1383 pop_cfun ();
1384 /* Continue redirecting E to proper target. */
1388 /* We might propagate instrumented function pointer into
1389 not instrumented function and vice versa. In such a
1390 case we need to either fix function declaration or
1391 remove bounds from call statement. */
1392 if (flag_check_pointer_bounds && e->callee)
1393 skip_bounds = chkp_redirect_edge (e);
1395 if (e->indirect_unknown_callee
1396 || (decl == e->callee->decl
1397 && !skip_bounds))
1398 return e->call_stmt;
1400 if (flag_checking && decl)
1402 cgraph_node *node = cgraph_node::get (decl);
1403 gcc_assert (!node || !node->clone.combined_args_to_skip);
1406 if (symtab->dump_file)
1408 fprintf (symtab->dump_file, "updating call of %s -> %s: ",
1409 e->caller->dump_name (), e->callee->dump_name ());
1410 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1411 if (e->callee->clone.combined_args_to_skip)
1413 fprintf (symtab->dump_file, " combined args to skip: ");
1414 dump_bitmap (symtab->dump_file,
1415 e->callee->clone.combined_args_to_skip);
1419 if (e->callee->clone.combined_args_to_skip
1420 || skip_bounds)
1422 int lp_nr;
1424 new_stmt = e->call_stmt;
1425 if (e->callee->clone.combined_args_to_skip)
1426 new_stmt
1427 = gimple_call_copy_skip_args (new_stmt,
1428 e->callee->clone.combined_args_to_skip);
1429 if (skip_bounds)
1430 new_stmt = chkp_copy_call_skip_bounds (new_stmt);
1432 tree old_fntype = gimple_call_fntype (e->call_stmt);
1433 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1434 cgraph_node *origin = e->callee;
1435 while (origin->clone_of)
1436 origin = origin->clone_of;
1438 if ((origin->former_clone_of
1439 && old_fntype == TREE_TYPE (origin->former_clone_of))
1440 || old_fntype == TREE_TYPE (origin->decl))
1441 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1442 else
1444 bitmap skip = e->callee->clone.combined_args_to_skip;
1445 tree t = cgraph_build_function_type_skip_args (old_fntype, skip,
1446 false);
1447 gimple_call_set_fntype (new_stmt, t);
1450 if (gimple_vdef (new_stmt)
1451 && TREE_CODE (gimple_vdef (new_stmt)) == SSA_NAME)
1452 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
1454 gsi = gsi_for_stmt (e->call_stmt);
1456 /* For optimized away parameters, add on the caller side
1457 before the call
1458 DEBUG D#X => parm_Y(D)
1459 stmts and associate D#X with parm in decl_debug_args_lookup
1460 vector to say for debug info that if parameter parm had been passed,
1461 it would have value parm_Y(D). */
1462 if (e->callee->clone.combined_args_to_skip && MAY_HAVE_DEBUG_STMTS)
1464 vec<tree, va_gc> **debug_args
1465 = decl_debug_args_lookup (e->callee->decl);
1466 tree old_decl = gimple_call_fndecl (e->call_stmt);
1467 if (debug_args && old_decl)
1469 tree parm;
1470 unsigned i = 0, num;
1471 unsigned len = vec_safe_length (*debug_args);
1472 unsigned nargs = gimple_call_num_args (e->call_stmt);
1473 for (parm = DECL_ARGUMENTS (old_decl), num = 0;
1474 parm && num < nargs;
1475 parm = DECL_CHAIN (parm), num++)
1476 if (bitmap_bit_p (e->callee->clone.combined_args_to_skip, num)
1477 && is_gimple_reg (parm))
1479 unsigned last = i;
1481 while (i < len && (**debug_args)[i] != DECL_ORIGIN (parm))
1482 i += 2;
1483 if (i >= len)
1485 i = 0;
1486 while (i < last
1487 && (**debug_args)[i] != DECL_ORIGIN (parm))
1488 i += 2;
1489 if (i >= last)
1490 continue;
1492 tree ddecl = (**debug_args)[i + 1];
1493 tree arg = gimple_call_arg (e->call_stmt, num);
1494 if (!useless_type_conversion_p (TREE_TYPE (ddecl),
1495 TREE_TYPE (arg)))
1497 tree rhs1;
1498 if (!fold_convertible_p (TREE_TYPE (ddecl), arg))
1499 continue;
1500 if (TREE_CODE (arg) == SSA_NAME
1501 && gimple_assign_cast_p (SSA_NAME_DEF_STMT (arg))
1502 && (rhs1
1503 = gimple_assign_rhs1 (SSA_NAME_DEF_STMT (arg)))
1504 && useless_type_conversion_p (TREE_TYPE (ddecl),
1505 TREE_TYPE (rhs1)))
1506 arg = rhs1;
1507 else
1508 arg = fold_convert (TREE_TYPE (ddecl), arg);
1511 gimple *def_temp
1512 = gimple_build_debug_bind (ddecl, unshare_expr (arg),
1513 e->call_stmt);
1514 gsi_insert_before (&gsi, def_temp, GSI_SAME_STMT);
1519 gsi_replace (&gsi, new_stmt, false);
1520 /* We need to defer cleaning EH info on the new statement to
1521 fixup-cfg. We may not have dominator information at this point
1522 and thus would end up with unreachable blocks and have no way
1523 to communicate that we need to run CFG cleanup then. */
1524 lp_nr = lookup_stmt_eh_lp (e->call_stmt);
1525 if (lp_nr != 0)
1527 remove_stmt_from_eh_lp (e->call_stmt);
1528 add_stmt_to_eh_lp (new_stmt, lp_nr);
1531 else
1533 new_stmt = e->call_stmt;
1534 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1535 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1538 /* If changing the call to __cxa_pure_virtual or similar noreturn function,
1539 adjust gimple_call_fntype too. */
1540 if (gimple_call_noreturn_p (new_stmt)
1541 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (e->callee->decl)))
1542 && TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl))
1543 && (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl)))
1544 == void_type_node))
1545 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1547 /* If the call becomes noreturn, remove the LHS if possible. */
1548 tree lhs = gimple_call_lhs (new_stmt);
1549 if (lhs
1550 && gimple_call_noreturn_p (new_stmt)
1551 && (VOID_TYPE_P (TREE_TYPE (gimple_call_fntype (new_stmt)))
1552 || should_remove_lhs_p (lhs)))
1554 if (TREE_CODE (lhs) == SSA_NAME)
1556 tree var = create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e->caller->decl),
1557 TREE_TYPE (lhs), NULL);
1558 var = get_or_create_ssa_default_def
1559 (DECL_STRUCT_FUNCTION (e->caller->decl), var);
1560 gimple *set_stmt = gimple_build_assign (lhs, var);
1561 gsi = gsi_for_stmt (new_stmt);
1562 gsi_insert_before_without_update (&gsi, set_stmt, GSI_SAME_STMT);
1563 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), set_stmt);
1565 gimple_call_set_lhs (new_stmt, NULL_TREE);
1566 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1569 /* If new callee has no static chain, remove it. */
1570 if (gimple_call_chain (new_stmt) && !DECL_STATIC_CHAIN (e->callee->decl))
1572 gimple_call_set_chain (new_stmt, NULL);
1573 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1576 maybe_remove_unused_call_args (DECL_STRUCT_FUNCTION (e->caller->decl),
1577 new_stmt);
1579 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt, false);
1581 if (symtab->dump_file)
1583 fprintf (symtab->dump_file, " updated to:");
1584 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1586 return new_stmt;
1589 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1590 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1591 of OLD_STMT if it was previously call statement.
1592 If NEW_STMT is NULL, the call has been dropped without any
1593 replacement. */
1595 static void
1596 cgraph_update_edges_for_call_stmt_node (cgraph_node *node,
1597 gimple *old_stmt, tree old_call,
1598 gimple *new_stmt)
1600 tree new_call = (new_stmt && is_gimple_call (new_stmt))
1601 ? gimple_call_fndecl (new_stmt) : 0;
1603 /* We are seeing indirect calls, then there is nothing to update. */
1604 if (!new_call && !old_call)
1605 return;
1606 /* See if we turned indirect call into direct call or folded call to one builtin
1607 into different builtin. */
1608 if (old_call != new_call)
1610 cgraph_edge *e = node->get_edge (old_stmt);
1611 cgraph_edge *ne = NULL;
1612 profile_count count;
1613 int frequency;
1615 if (e)
1617 /* Keep calls marked as dead dead. */
1618 if (new_stmt && is_gimple_call (new_stmt) && e->callee
1619 && DECL_BUILT_IN_CLASS (e->callee->decl) == BUILT_IN_NORMAL
1620 && DECL_FUNCTION_CODE (e->callee->decl) == BUILT_IN_UNREACHABLE)
1622 node->get_edge (old_stmt)->set_call_stmt
1623 (as_a <gcall *> (new_stmt));
1624 return;
1626 /* See if the edge is already there and has the correct callee. It
1627 might be so because of indirect inlining has already updated
1628 it. We also might've cloned and redirected the edge. */
1629 if (new_call && e->callee)
1631 cgraph_node *callee = e->callee;
1632 while (callee)
1634 if (callee->decl == new_call
1635 || callee->former_clone_of == new_call)
1637 e->set_call_stmt (as_a <gcall *> (new_stmt));
1638 return;
1640 callee = callee->clone_of;
1644 /* Otherwise remove edge and create new one; we can't simply redirect
1645 since function has changed, so inline plan and other information
1646 attached to edge is invalid. */
1647 count = e->count;
1648 frequency = e->frequency;
1649 if (e->indirect_unknown_callee || e->inline_failed)
1650 e->remove ();
1651 else
1652 e->callee->remove_symbol_and_inline_clones ();
1654 else if (new_call)
1656 /* We are seeing new direct call; compute profile info based on BB. */
1657 basic_block bb = gimple_bb (new_stmt);
1658 count = bb->count;
1659 frequency = compute_call_stmt_bb_frequency (current_function_decl,
1660 bb);
1663 if (new_call)
1665 ne = node->create_edge (cgraph_node::get_create (new_call),
1666 as_a <gcall *> (new_stmt), count,
1667 frequency);
1668 gcc_assert (ne->inline_failed);
1671 /* We only updated the call stmt; update pointer in cgraph edge.. */
1672 else if (old_stmt != new_stmt)
1673 node->get_edge (old_stmt)->set_call_stmt (as_a <gcall *> (new_stmt));
1676 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1677 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1678 of OLD_STMT before it was updated (updating can happen inplace). */
1680 void
1681 cgraph_update_edges_for_call_stmt (gimple *old_stmt, tree old_decl,
1682 gimple *new_stmt)
1684 cgraph_node *orig = cgraph_node::get (cfun->decl);
1685 cgraph_node *node;
1687 gcc_checking_assert (orig);
1688 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1689 if (orig->clones)
1690 for (node = orig->clones; node != orig;)
1692 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1693 if (node->clones)
1694 node = node->clones;
1695 else if (node->next_sibling_clone)
1696 node = node->next_sibling_clone;
1697 else
1699 while (node != orig && !node->next_sibling_clone)
1700 node = node->clone_of;
1701 if (node != orig)
1702 node = node->next_sibling_clone;
1708 /* Remove all callees from the node. */
1710 void
1711 cgraph_node::remove_callees (void)
1713 cgraph_edge *e, *f;
1715 /* It is sufficient to remove the edges from the lists of callers of
1716 the callees. The callee list of the node can be zapped with one
1717 assignment. */
1718 for (e = callees; e; e = f)
1720 f = e->next_callee;
1721 symtab->call_edge_removal_hooks (e);
1722 if (!e->indirect_unknown_callee)
1723 e->remove_callee ();
1724 symtab->free_edge (e);
1726 for (e = indirect_calls; e; e = f)
1728 f = e->next_callee;
1729 symtab->call_edge_removal_hooks (e);
1730 if (!e->indirect_unknown_callee)
1731 e->remove_callee ();
1732 symtab->free_edge (e);
1734 indirect_calls = NULL;
1735 callees = NULL;
1736 if (call_site_hash)
1738 call_site_hash->empty ();
1739 call_site_hash = NULL;
1743 /* Remove all callers from the node. */
1745 void
1746 cgraph_node::remove_callers (void)
1748 cgraph_edge *e, *f;
1750 /* It is sufficient to remove the edges from the lists of callees of
1751 the callers. The caller list of the node can be zapped with one
1752 assignment. */
1753 for (e = callers; e; e = f)
1755 f = e->next_caller;
1756 symtab->call_edge_removal_hooks (e);
1757 e->remove_caller ();
1758 symtab->free_edge (e);
1760 callers = NULL;
1763 /* Helper function for cgraph_release_function_body and free_lang_data.
1764 It releases body from function DECL without having to inspect its
1765 possibly non-existent symtab node. */
1767 void
1768 release_function_body (tree decl)
1770 function *fn = DECL_STRUCT_FUNCTION (decl);
1771 if (fn)
1773 if (fn->cfg
1774 && loops_for_fn (fn))
1776 fn->curr_properties &= ~PROP_loops;
1777 loop_optimizer_finalize (fn);
1779 if (fn->gimple_df)
1781 delete_tree_ssa (fn);
1782 fn->eh = NULL;
1784 if (fn->cfg)
1786 gcc_assert (!dom_info_available_p (fn, CDI_DOMINATORS));
1787 gcc_assert (!dom_info_available_p (fn, CDI_POST_DOMINATORS));
1788 delete_tree_cfg_annotations (fn);
1789 clear_edges (fn);
1790 fn->cfg = NULL;
1792 if (fn->value_histograms)
1793 free_histograms (fn);
1794 gimple_set_body (decl, NULL);
1795 /* Struct function hangs a lot of data that would leak if we didn't
1796 removed all pointers to it. */
1797 ggc_free (fn);
1798 DECL_STRUCT_FUNCTION (decl) = NULL;
1800 DECL_SAVED_TREE (decl) = NULL;
1803 /* Release memory used to represent body of function.
1804 Use this only for functions that are released before being translated to
1805 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1806 are free'd in final.c via free_after_compilation().
1807 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1809 void
1810 cgraph_node::release_body (bool keep_arguments)
1812 ipa_transforms_to_apply.release ();
1813 if (!used_as_abstract_origin && symtab->state != PARSING)
1815 DECL_RESULT (decl) = NULL;
1817 if (!keep_arguments)
1818 DECL_ARGUMENTS (decl) = NULL;
1820 /* If the node is abstract and needed, then do not clear
1821 DECL_INITIAL of its associated function declaration because it's
1822 needed to emit debug info later. */
1823 if (!used_as_abstract_origin && DECL_INITIAL (decl))
1824 DECL_INITIAL (decl) = error_mark_node;
1825 release_function_body (decl);
1826 if (lto_file_data)
1828 lto_free_function_in_decl_state_for_node (this);
1829 lto_file_data = NULL;
1833 /* Remove function from symbol table. */
1835 void
1836 cgraph_node::remove (void)
1838 cgraph_node *n;
1839 int uid = this->uid;
1841 if (symtab->ipa_clones_dump_file && symtab->cloned_nodes.contains (this))
1842 fprintf (symtab->ipa_clones_dump_file,
1843 "Callgraph removal;%s;%d;%s;%d;%d\n", asm_name (), order,
1844 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl),
1845 DECL_SOURCE_COLUMN (decl));
1847 symtab->call_cgraph_removal_hooks (this);
1848 remove_callers ();
1849 remove_callees ();
1850 ipa_transforms_to_apply.release ();
1851 delete_function_version (function_version ());
1853 /* Incremental inlining access removed nodes stored in the postorder list.
1855 force_output = false;
1856 forced_by_abi = false;
1857 for (n = nested; n; n = n->next_nested)
1858 n->origin = NULL;
1859 nested = NULL;
1860 if (origin)
1862 cgraph_node **node2 = &origin->nested;
1864 while (*node2 != this)
1865 node2 = &(*node2)->next_nested;
1866 *node2 = next_nested;
1868 unregister ();
1869 if (prev_sibling_clone)
1870 prev_sibling_clone->next_sibling_clone = next_sibling_clone;
1871 else if (clone_of)
1872 clone_of->clones = next_sibling_clone;
1873 if (next_sibling_clone)
1874 next_sibling_clone->prev_sibling_clone = prev_sibling_clone;
1875 if (clones)
1877 cgraph_node *n, *next;
1879 if (clone_of)
1881 for (n = clones; n->next_sibling_clone; n = n->next_sibling_clone)
1882 n->clone_of = clone_of;
1883 n->clone_of = clone_of;
1884 n->next_sibling_clone = clone_of->clones;
1885 if (clone_of->clones)
1886 clone_of->clones->prev_sibling_clone = n;
1887 clone_of->clones = clones;
1889 else
1891 /* We are removing node with clones. This makes clones inconsistent,
1892 but assume they will be removed subsequently and just keep clone
1893 tree intact. This can happen in unreachable function removal since
1894 we remove unreachable functions in random order, not by bottom-up
1895 walk of clone trees. */
1896 for (n = clones; n; n = next)
1898 next = n->next_sibling_clone;
1899 n->next_sibling_clone = NULL;
1900 n->prev_sibling_clone = NULL;
1901 n->clone_of = NULL;
1906 /* While all the clones are removed after being proceeded, the function
1907 itself is kept in the cgraph even after it is compiled. Check whether
1908 we are done with this body and reclaim it proactively if this is the case.
1910 if (symtab->state != LTO_STREAMING)
1912 n = cgraph_node::get (decl);
1913 if (!n
1914 || (!n->clones && !n->clone_of && !n->global.inlined_to
1915 && ((symtab->global_info_ready || in_lto_p)
1916 && (TREE_ASM_WRITTEN (n->decl)
1917 || DECL_EXTERNAL (n->decl)
1918 || !n->analyzed
1919 || (!flag_wpa && n->in_other_partition)))))
1920 release_body ();
1922 else
1924 lto_free_function_in_decl_state_for_node (this);
1925 lto_file_data = NULL;
1928 decl = NULL;
1929 if (call_site_hash)
1931 call_site_hash->empty ();
1932 call_site_hash = NULL;
1935 if (instrumented_version)
1937 instrumented_version->instrumented_version = NULL;
1938 instrumented_version = NULL;
1941 symtab->release_symbol (this, uid);
1944 /* Likewise indicate that a node is having address taken. */
1946 void
1947 cgraph_node::mark_address_taken (void)
1949 /* Indirect inlining can figure out that all uses of the address are
1950 inlined. */
1951 if (global.inlined_to)
1953 gcc_assert (cfun->after_inlining);
1954 gcc_assert (callers->indirect_inlining_edge);
1955 return;
1957 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1958 IPA_REF_ADDR reference exists (and thus it should be set on node
1959 representing alias we take address of) and as a test whether address
1960 of the object was taken (and thus it should be set on node alias is
1961 referring to). We should remove the first use and the remove the
1962 following set. */
1963 address_taken = 1;
1964 cgraph_node *node = ultimate_alias_target ();
1965 node->address_taken = 1;
1968 /* Return local info for the compiled function. */
1970 cgraph_local_info *
1971 cgraph_node::local_info (tree decl)
1973 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1974 cgraph_node *node = get (decl);
1975 if (!node)
1976 return NULL;
1977 return &node->ultimate_alias_target ()->local;
1980 /* Return local info for the compiled function. */
1982 cgraph_rtl_info *
1983 cgraph_node::rtl_info (tree decl)
1985 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1986 cgraph_node *node = get (decl);
1987 if (!node)
1988 return NULL;
1989 enum availability avail;
1990 node = node->ultimate_alias_target (&avail);
1991 if (decl != current_function_decl
1992 && (avail < AVAIL_AVAILABLE
1993 || (node->decl != current_function_decl
1994 && !TREE_ASM_WRITTEN (node->decl))))
1995 return NULL;
1996 /* Allocate if it doesn't exist. */
1997 if (node->rtl == NULL)
1998 node->rtl = ggc_cleared_alloc<cgraph_rtl_info> ();
1999 return node->rtl;
2002 /* Return a string describing the failure REASON. */
2004 const char*
2005 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
2007 #undef DEFCIFCODE
2008 #define DEFCIFCODE(code, type, string) string,
2010 static const char *cif_string_table[CIF_N_REASONS] = {
2011 #include "cif-code.def"
2014 /* Signedness of an enum type is implementation defined, so cast it
2015 to unsigned before testing. */
2016 gcc_assert ((unsigned) reason < CIF_N_REASONS);
2017 return cif_string_table[reason];
2020 /* Return a type describing the failure REASON. */
2022 cgraph_inline_failed_type_t
2023 cgraph_inline_failed_type (cgraph_inline_failed_t reason)
2025 #undef DEFCIFCODE
2026 #define DEFCIFCODE(code, type, string) type,
2028 static cgraph_inline_failed_type_t cif_type_table[CIF_N_REASONS] = {
2029 #include "cif-code.def"
2032 /* Signedness of an enum type is implementation defined, so cast it
2033 to unsigned before testing. */
2034 gcc_assert ((unsigned) reason < CIF_N_REASONS);
2035 return cif_type_table[reason];
2038 /* Names used to print out the availability enum. */
2039 const char * const cgraph_availability_names[] =
2040 {"unset", "not_available", "overwritable", "available", "local"};
2042 /* Output flags of edge to a file F. */
2044 void
2045 cgraph_edge::dump_edge_flags (FILE *f)
2047 if (speculative)
2048 fprintf (f, "(speculative) ");
2049 if (!inline_failed)
2050 fprintf (f, "(inlined) ");
2051 if (call_stmt_cannot_inline_p)
2052 fprintf (f, "(call_stmt_cannot_inline_p) ");
2053 if (indirect_inlining_edge)
2054 fprintf (f, "(indirect_inlining) ");
2055 if (count.initialized_p ())
2057 fprintf (f, "(");
2058 count.dump (f);
2059 fprintf (f, ")");
2061 if (frequency)
2062 fprintf (f, "(%.2f per call) ", frequency / (double)CGRAPH_FREQ_BASE);
2063 if (can_throw_external)
2064 fprintf (f, "(can throw external) ");
2067 /* Dump call graph node to file F. */
2069 void
2070 cgraph_node::dump (FILE *f)
2072 cgraph_edge *edge;
2074 dump_base (f);
2076 if (global.inlined_to)
2077 fprintf (f, " Function %s is inline copy in %s\n",
2078 dump_name (),
2079 global.inlined_to->dump_name ());
2080 if (clone_of)
2081 fprintf (f, " Clone of %s\n", clone_of->dump_asm_name ());
2082 if (symtab->function_flags_ready)
2083 fprintf (f, " Availability: %s\n",
2084 cgraph_availability_names [get_availability ()]);
2086 if (profile_id)
2087 fprintf (f, " Profile id: %i\n",
2088 profile_id);
2089 fprintf (f, " First run: %i\n", tp_first_run);
2090 cgraph_function_version_info *vi = function_version ();
2091 if (vi != NULL)
2093 fprintf (f, " Version info: ");
2094 if (vi->prev != NULL)
2096 fprintf (f, "prev: ");
2097 fprintf (f, "%s ", vi->prev->this_node->dump_asm_name ());
2099 if (vi->next != NULL)
2101 fprintf (f, "next: ");
2102 fprintf (f, "%s ", vi->next->this_node->dump_asm_name ());
2104 if (vi->dispatcher_resolver != NULL_TREE)
2105 fprintf (f, "dispatcher: %s",
2106 lang_hooks.decl_printable_name (vi->dispatcher_resolver, 2));
2108 fprintf (f, "\n");
2110 fprintf (f, " Function flags:");
2111 if (count.initialized_p ())
2113 fprintf (f, " count: ");
2114 count.dump (f);
2116 if (origin)
2117 fprintf (f, " nested in: %s", origin->asm_name ());
2118 if (gimple_has_body_p (decl))
2119 fprintf (f, " body");
2120 if (process)
2121 fprintf (f, " process");
2122 if (local.local)
2123 fprintf (f, " local");
2124 if (local.redefined_extern_inline)
2125 fprintf (f, " redefined_extern_inline");
2126 if (only_called_at_startup)
2127 fprintf (f, " only_called_at_startup");
2128 if (only_called_at_exit)
2129 fprintf (f, " only_called_at_exit");
2130 if (tm_clone)
2131 fprintf (f, " tm_clone");
2132 if (calls_comdat_local)
2133 fprintf (f, " calls_comdat_local");
2134 if (icf_merged)
2135 fprintf (f, " icf_merged");
2136 if (merged_comdat)
2137 fprintf (f, " merged_comdat");
2138 if (split_part)
2139 fprintf (f, " split_part");
2140 if (indirect_call_target)
2141 fprintf (f, " indirect_call_target");
2142 if (nonfreeing_fn)
2143 fprintf (f, " nonfreeing_fn");
2144 if (DECL_STATIC_CONSTRUCTOR (decl))
2145 fprintf (f," static_constructor (priority:%i)", get_init_priority ());
2146 if (DECL_STATIC_DESTRUCTOR (decl))
2147 fprintf (f," static_destructor (priority:%i)", get_fini_priority ());
2148 if (frequency == NODE_FREQUENCY_HOT)
2149 fprintf (f, " hot");
2150 if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2151 fprintf (f, " unlikely_executed");
2152 if (frequency == NODE_FREQUENCY_EXECUTED_ONCE)
2153 fprintf (f, " executed_once");
2154 if (only_called_at_startup)
2155 fprintf (f, " only_called_at_startup");
2156 if (only_called_at_exit)
2157 fprintf (f, " only_called_at_exit");
2158 if (opt_for_fn (decl, optimize_size))
2159 fprintf (f, " optimize_size");
2160 if (parallelized_function)
2161 fprintf (f, " parallelized_function");
2163 fprintf (f, "\n");
2165 if (thunk.thunk_p)
2167 fprintf (f, " Thunk");
2168 if (thunk.alias)
2169 fprintf (f, " of %s (asm: %s)",
2170 lang_hooks.decl_printable_name (thunk.alias, 2),
2171 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2172 fprintf (f, " fixed offset %i virtual value %i has "
2173 "virtual offset %i)\n",
2174 (int)thunk.fixed_offset,
2175 (int)thunk.virtual_value,
2176 (int)thunk.virtual_offset_p);
2178 if (alias && thunk.alias
2179 && DECL_P (thunk.alias))
2181 fprintf (f, " Alias of %s",
2182 lang_hooks.decl_printable_name (thunk.alias, 2));
2183 if (DECL_ASSEMBLER_NAME_SET_P (thunk.alias))
2184 fprintf (f, " (asm: %s)",
2185 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2186 fprintf (f, "\n");
2189 fprintf (f, " Called by: ");
2191 profile_count sum = profile_count::zero ();
2192 for (edge = callers; edge; edge = edge->next_caller)
2194 fprintf (f, "%s ", edge->caller->dump_name ());
2195 edge->dump_edge_flags (f);
2196 if (edge->count.initialized_p ())
2197 sum += edge->count;
2200 fprintf (f, "\n Calls: ");
2201 for (edge = callees; edge; edge = edge->next_callee)
2203 fprintf (f, "%s ", edge->callee->dump_name ());
2204 edge->dump_edge_flags (f);
2206 fprintf (f, "\n");
2208 if (count.initialized_p ())
2210 bool ok = true;
2211 bool min = false;
2212 ipa_ref *ref;
2214 FOR_EACH_ALIAS (this, ref)
2215 if (dyn_cast <cgraph_node *> (ref->referring)->count.initialized_p ())
2216 sum += dyn_cast <cgraph_node *> (ref->referring)->count;
2218 if (global.inlined_to
2219 || (symtab->state < EXPANSION
2220 && ultimate_alias_target () == this && only_called_directly_p ()))
2221 ok = !count.differs_from_p (sum);
2222 else if (count > profile_count::from_gcov_type (100)
2223 && count < sum.apply_scale (99, 100))
2224 ok = false, min = true;
2225 if (!ok)
2227 fprintf (f, " Invalid sum of caller counts ");
2228 sum.dump (f);
2229 if (min)
2230 fprintf (f, ", should be at most ");
2231 else
2232 fprintf (f, ", should be ");
2233 count.dump (f);
2234 fprintf (f, "\n");
2238 for (edge = indirect_calls; edge; edge = edge->next_callee)
2240 if (edge->indirect_info->polymorphic)
2242 fprintf (f, " Polymorphic indirect call of type ");
2243 print_generic_expr (f, edge->indirect_info->otr_type, TDF_SLIM);
2244 fprintf (f, " token:%i", (int) edge->indirect_info->otr_token);
2246 else
2247 fprintf (f, " Indirect call");
2248 edge->dump_edge_flags (f);
2249 if (edge->indirect_info->param_index != -1)
2251 fprintf (f, " of param:%i", edge->indirect_info->param_index);
2252 if (edge->indirect_info->agg_contents)
2253 fprintf (f, " loaded from %s %s at offset %i",
2254 edge->indirect_info->member_ptr ? "member ptr" : "aggregate",
2255 edge->indirect_info->by_ref ? "passed by reference":"",
2256 (int)edge->indirect_info->offset);
2257 if (edge->indirect_info->vptr_changed)
2258 fprintf (f, " (vptr maybe changed)");
2260 fprintf (f, "\n");
2261 if (edge->indirect_info->polymorphic)
2262 edge->indirect_info->context.dump (f);
2265 if (instrumentation_clone)
2266 fprintf (f, " Is instrumented version.\n");
2267 else if (instrumented_version)
2268 fprintf (f, " Has instrumented version.\n");
2271 /* Dump call graph node NODE to stderr. */
2273 DEBUG_FUNCTION void
2274 cgraph_node::debug (void)
2276 dump (stderr);
2279 /* Dump the callgraph to file F. */
2281 void
2282 cgraph_node::dump_cgraph (FILE *f)
2284 cgraph_node *node;
2286 fprintf (f, "callgraph:\n\n");
2287 FOR_EACH_FUNCTION (node)
2288 node->dump (f);
2291 /* Return true when the DECL can possibly be inlined. */
2293 bool
2294 cgraph_function_possibly_inlined_p (tree decl)
2296 if (!symtab->global_info_ready)
2297 return !DECL_UNINLINABLE (decl);
2298 return DECL_POSSIBLY_INLINED (decl);
2301 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2302 void
2303 cgraph_node::unnest (void)
2305 cgraph_node **node2 = &origin->nested;
2306 gcc_assert (origin);
2308 while (*node2 != this)
2309 node2 = &(*node2)->next_nested;
2310 *node2 = next_nested;
2311 origin = NULL;
2314 /* Return function availability. See cgraph.h for description of individual
2315 return values. */
2316 enum availability
2317 cgraph_node::get_availability (symtab_node *ref)
2319 if (ref)
2321 cgraph_node *cref = dyn_cast <cgraph_node *> (ref);
2322 if (cref)
2323 ref = cref->global.inlined_to;
2325 enum availability avail;
2326 if (!analyzed)
2327 avail = AVAIL_NOT_AVAILABLE;
2328 else if (local.local)
2329 avail = AVAIL_LOCAL;
2330 else if (global.inlined_to)
2331 avail = AVAIL_AVAILABLE;
2332 else if (transparent_alias)
2333 ultimate_alias_target (&avail, ref);
2334 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl))
2335 || lookup_attribute ("noipa", DECL_ATTRIBUTES (decl)))
2336 avail = AVAIL_INTERPOSABLE;
2337 else if (!externally_visible)
2338 avail = AVAIL_AVAILABLE;
2339 /* If this is a reference from symbol itself and there are no aliases, we
2340 may be sure that the symbol was not interposed by something else because
2341 the symbol itself would be unreachable otherwise.
2343 Also comdat groups are always resolved in groups. */
2344 else if ((this == ref && !has_aliases_p ())
2345 || (ref && get_comdat_group ()
2346 && get_comdat_group () == ref->get_comdat_group ()))
2347 avail = AVAIL_AVAILABLE;
2348 /* Inline functions are safe to be analyzed even if their symbol can
2349 be overwritten at runtime. It is not meaningful to enforce any sane
2350 behavior on replacing inline function by different body. */
2351 else if (DECL_DECLARED_INLINE_P (decl))
2352 avail = AVAIL_AVAILABLE;
2354 /* If the function can be overwritten, return OVERWRITABLE. Take
2355 care at least of two notable extensions - the COMDAT functions
2356 used to share template instantiations in C++ (this is symmetric
2357 to code cp_cannot_inline_tree_fn and probably shall be shared and
2358 the inlinability hooks completely eliminated). */
2360 else if (decl_replaceable_p (decl) && !DECL_EXTERNAL (decl))
2361 avail = AVAIL_INTERPOSABLE;
2362 else avail = AVAIL_AVAILABLE;
2364 return avail;
2367 /* Worker for cgraph_node_can_be_local_p. */
2368 static bool
2369 cgraph_node_cannot_be_local_p_1 (cgraph_node *node, void *)
2371 return !(!node->force_output
2372 && ((DECL_COMDAT (node->decl)
2373 && !node->forced_by_abi
2374 && !node->used_from_object_file_p ()
2375 && !node->same_comdat_group)
2376 || !node->externally_visible));
2379 /* Return true if cgraph_node can be made local for API change.
2380 Extern inline functions and C++ COMDAT functions can be made local
2381 at the expense of possible code size growth if function is used in multiple
2382 compilation units. */
2383 bool
2384 cgraph_node::can_be_local_p (void)
2386 return (!address_taken
2387 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1,
2388 NULL, true));
2391 /* Call callback on cgraph_node, thunks and aliases associated to cgraph_node.
2392 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
2393 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
2394 skipped. */
2395 bool
2396 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback)
2397 (cgraph_node *, void *),
2398 void *data,
2399 bool include_overwritable,
2400 bool exclude_virtual_thunks)
2402 cgraph_edge *e;
2403 ipa_ref *ref;
2404 enum availability avail = AVAIL_AVAILABLE;
2406 if (include_overwritable
2407 || (avail = get_availability ()) > AVAIL_INTERPOSABLE)
2409 if (callback (this, data))
2410 return true;
2412 FOR_EACH_ALIAS (this, ref)
2414 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2415 if (include_overwritable
2416 || alias->get_availability () > AVAIL_INTERPOSABLE)
2417 if (alias->call_for_symbol_thunks_and_aliases (callback, data,
2418 include_overwritable,
2419 exclude_virtual_thunks))
2420 return true;
2422 if (avail <= AVAIL_INTERPOSABLE)
2423 return false;
2424 for (e = callers; e; e = e->next_caller)
2425 if (e->caller->thunk.thunk_p
2426 && (include_overwritable
2427 || e->caller->get_availability () > AVAIL_INTERPOSABLE)
2428 && !(exclude_virtual_thunks
2429 && e->caller->thunk.virtual_offset_p))
2430 if (e->caller->call_for_symbol_thunks_and_aliases (callback, data,
2431 include_overwritable,
2432 exclude_virtual_thunks))
2433 return true;
2435 return false;
2438 /* Worker to bring NODE local. */
2440 bool
2441 cgraph_node::make_local (cgraph_node *node, void *)
2443 gcc_checking_assert (node->can_be_local_p ());
2444 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2446 node->make_decl_local ();
2447 node->set_section (NULL);
2448 node->set_comdat_group (NULL);
2449 node->externally_visible = false;
2450 node->forced_by_abi = false;
2451 node->local.local = true;
2452 node->set_section (NULL);
2453 node->unique_name = ((node->resolution == LDPR_PREVAILING_DEF_IRONLY
2454 || node->resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
2455 && !flag_incremental_link);
2456 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2457 gcc_assert (node->get_availability () == AVAIL_LOCAL);
2459 return false;
2462 /* Bring cgraph node local. */
2464 void
2465 cgraph_node::make_local (void)
2467 call_for_symbol_thunks_and_aliases (cgraph_node::make_local, NULL, true);
2470 /* Worker to set nothrow flag. */
2472 static void
2473 set_nothrow_flag_1 (cgraph_node *node, bool nothrow, bool non_call,
2474 bool *changed)
2476 cgraph_edge *e;
2478 if (nothrow && !TREE_NOTHROW (node->decl))
2480 /* With non-call exceptions we can't say for sure if other function body
2481 was not possibly optimized to stil throw. */
2482 if (!non_call || node->binds_to_current_def_p ())
2484 TREE_NOTHROW (node->decl) = true;
2485 *changed = true;
2486 for (e = node->callers; e; e = e->next_caller)
2487 e->can_throw_external = false;
2490 else if (!nothrow && TREE_NOTHROW (node->decl))
2492 TREE_NOTHROW (node->decl) = false;
2493 *changed = true;
2495 ipa_ref *ref;
2496 FOR_EACH_ALIAS (node, ref)
2498 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2499 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2500 set_nothrow_flag_1 (alias, nothrow, non_call, changed);
2502 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2503 if (e->caller->thunk.thunk_p
2504 && (!nothrow || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2505 set_nothrow_flag_1 (e->caller, nothrow, non_call, changed);
2508 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2509 if any to NOTHROW. */
2511 bool
2512 cgraph_node::set_nothrow_flag (bool nothrow)
2514 bool changed = false;
2515 bool non_call = opt_for_fn (decl, flag_non_call_exceptions);
2517 if (!nothrow || get_availability () > AVAIL_INTERPOSABLE)
2518 set_nothrow_flag_1 (this, nothrow, non_call, &changed);
2519 else
2521 ipa_ref *ref;
2523 FOR_EACH_ALIAS (this, ref)
2525 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2526 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2527 set_nothrow_flag_1 (alias, nothrow, non_call, &changed);
2530 return changed;
2533 /* Worker to set_const_flag. */
2535 static void
2536 set_const_flag_1 (cgraph_node *node, bool set_const, bool looping,
2537 bool *changed)
2539 /* Static constructors and destructors without a side effect can be
2540 optimized out. */
2541 if (set_const && !looping)
2543 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2545 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2546 *changed = true;
2548 if (DECL_STATIC_DESTRUCTOR (node->decl))
2550 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2551 *changed = true;
2554 if (!set_const)
2556 if (TREE_READONLY (node->decl))
2558 TREE_READONLY (node->decl) = 0;
2559 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2560 *changed = true;
2563 else
2565 /* Consider function:
2567 bool a(int *p)
2569 return *p==*p;
2572 During early optimization we will turn this into:
2574 bool a(int *p)
2576 return true;
2579 Now if this function will be detected as CONST however when interposed
2580 it may end up being just pure. We always must assume the worst
2581 scenario here. */
2582 if (TREE_READONLY (node->decl))
2584 if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2586 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2587 *changed = true;
2590 else if (node->binds_to_current_def_p ())
2592 TREE_READONLY (node->decl) = true;
2593 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2594 DECL_PURE_P (node->decl) = false;
2595 *changed = true;
2597 else
2599 if (dump_file && (dump_flags & TDF_DETAILS))
2600 fprintf (dump_file, "Dropping state to PURE because function does "
2601 "not bind to current def.\n");
2602 if (!DECL_PURE_P (node->decl))
2604 DECL_PURE_P (node->decl) = true;
2605 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2606 *changed = true;
2608 else if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2610 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2611 *changed = true;
2616 ipa_ref *ref;
2617 FOR_EACH_ALIAS (node, ref)
2619 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2620 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2621 set_const_flag_1 (alias, set_const, looping, changed);
2623 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2624 if (e->caller->thunk.thunk_p
2625 && (!set_const || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2627 /* Virtual thunks access virtual offset in the vtable, so they can
2628 only be pure, never const. */
2629 if (set_const
2630 && (e->caller->thunk.virtual_offset_p
2631 || !node->binds_to_current_def_p (e->caller)))
2632 *changed |= e->caller->set_pure_flag (true, looping);
2633 else
2634 set_const_flag_1 (e->caller, set_const, looping, changed);
2638 /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST.
2639 If SET_CONST if false, clear the flag.
2641 When setting the flag be careful about possible interposition and
2642 do not set the flag for functions that can be interposet and set pure
2643 flag for functions that can bind to other definition.
2645 Return true if any change was done. */
2647 bool
2648 cgraph_node::set_const_flag (bool set_const, bool looping)
2650 bool changed = false;
2651 if (!set_const || get_availability () > AVAIL_INTERPOSABLE)
2652 set_const_flag_1 (this, set_const, looping, &changed);
2653 else
2655 ipa_ref *ref;
2657 FOR_EACH_ALIAS (this, ref)
2659 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2660 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2661 set_const_flag_1 (alias, set_const, looping, &changed);
2664 return changed;
2667 /* Info used by set_pure_flag_1. */
2669 struct set_pure_flag_info
2671 bool pure;
2672 bool looping;
2673 bool changed;
2676 /* Worker to set_pure_flag. */
2678 static bool
2679 set_pure_flag_1 (cgraph_node *node, void *data)
2681 struct set_pure_flag_info *info = (struct set_pure_flag_info *)data;
2682 /* Static constructors and destructors without a side effect can be
2683 optimized out. */
2684 if (info->pure && !info->looping)
2686 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2688 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2689 info->changed = true;
2691 if (DECL_STATIC_DESTRUCTOR (node->decl))
2693 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2694 info->changed = true;
2697 if (info->pure)
2699 if (!DECL_PURE_P (node->decl) && !TREE_READONLY (node->decl))
2701 DECL_PURE_P (node->decl) = true;
2702 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = info->looping;
2703 info->changed = true;
2705 else if (DECL_LOOPING_CONST_OR_PURE_P (node->decl)
2706 && !info->looping)
2708 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2709 info->changed = true;
2712 else
2714 if (DECL_PURE_P (node->decl))
2716 DECL_PURE_P (node->decl) = false;
2717 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2718 info->changed = true;
2721 return false;
2724 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2725 if any to PURE.
2727 When setting the flag, be careful about possible interposition.
2728 Return true if any change was done. */
2730 bool
2731 cgraph_node::set_pure_flag (bool pure, bool looping)
2733 struct set_pure_flag_info info = {pure, looping, false};
2734 if (!pure)
2735 looping = false;
2736 call_for_symbol_thunks_and_aliases (set_pure_flag_1, &info, !pure, true);
2737 return info.changed;
2740 /* Return true when cgraph_node can not return or throw and thus
2741 it is safe to ignore its side effects for IPA analysis. */
2743 bool
2744 cgraph_node::cannot_return_p (void)
2746 int flags = flags_from_decl_or_type (decl);
2747 if (!opt_for_fn (decl, flag_exceptions))
2748 return (flags & ECF_NORETURN) != 0;
2749 else
2750 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2751 == (ECF_NORETURN | ECF_NOTHROW));
2754 /* Return true when call of edge can not lead to return from caller
2755 and thus it is safe to ignore its side effects for IPA analysis
2756 when computing side effects of the caller.
2757 FIXME: We could actually mark all edges that have no reaching
2758 patch to the exit block or throw to get better results. */
2759 bool
2760 cgraph_edge::cannot_lead_to_return_p (void)
2762 if (caller->cannot_return_p ())
2763 return true;
2764 if (indirect_unknown_callee)
2766 int flags = indirect_info->ecf_flags;
2767 if (!opt_for_fn (caller->decl, flag_exceptions))
2768 return (flags & ECF_NORETURN) != 0;
2769 else
2770 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2771 == (ECF_NORETURN | ECF_NOTHROW));
2773 else
2774 return callee->cannot_return_p ();
2777 /* Return true if the call can be hot. */
2779 bool
2780 cgraph_edge::maybe_hot_p (void)
2782 if (!maybe_hot_count_p (NULL, count))
2783 return false;
2784 if (caller->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
2785 || (callee
2786 && callee->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED))
2787 return false;
2788 if (caller->frequency > NODE_FREQUENCY_UNLIKELY_EXECUTED
2789 && (callee
2790 && callee->frequency <= NODE_FREQUENCY_EXECUTED_ONCE))
2791 return false;
2792 if (opt_for_fn (caller->decl, optimize_size))
2793 return false;
2794 if (caller->frequency == NODE_FREQUENCY_HOT)
2795 return true;
2796 /* If profile is now known yet, be conservative.
2797 FIXME: this predicate is used by early inliner and can do better there. */
2798 if (symtab->state < IPA_SSA)
2799 return true;
2800 if (caller->frequency == NODE_FREQUENCY_EXECUTED_ONCE
2801 && frequency < CGRAPH_FREQ_BASE * 3 / 2)
2802 return false;
2803 if (opt_for_fn (caller->decl, flag_guess_branch_prob))
2805 if (PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION) == 0
2806 || frequency <= (CGRAPH_FREQ_BASE
2807 / PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION)))
2808 return false;
2810 return true;
2813 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2815 static bool
2816 nonremovable_p (cgraph_node *node, void *)
2818 return !node->can_remove_if_no_direct_calls_and_refs_p ();
2821 /* Return true if whole comdat group can be removed if there are no direct
2822 calls to THIS. */
2824 bool
2825 cgraph_node::can_remove_if_no_direct_calls_p (bool will_inline)
2827 struct ipa_ref *ref;
2829 /* For local symbols or non-comdat group it is the same as
2830 can_remove_if_no_direct_calls_p. */
2831 if (!externally_visible || !same_comdat_group)
2833 if (DECL_EXTERNAL (decl))
2834 return true;
2835 if (address_taken)
2836 return false;
2837 return !call_for_symbol_and_aliases (nonremovable_p, NULL, true);
2840 if (will_inline && address_taken)
2841 return false;
2843 /* Otheriwse check if we can remove the symbol itself and then verify
2844 that only uses of the comdat groups are direct call to THIS
2845 or its aliases. */
2846 if (!can_remove_if_no_direct_calls_and_refs_p ())
2847 return false;
2849 /* Check that all refs come from within the comdat group. */
2850 for (int i = 0; iterate_referring (i, ref); i++)
2851 if (ref->referring->get_comdat_group () != get_comdat_group ())
2852 return false;
2854 struct cgraph_node *target = ultimate_alias_target ();
2855 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2856 next != this; next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2858 if (!externally_visible)
2859 continue;
2860 if (!next->alias
2861 && !next->can_remove_if_no_direct_calls_and_refs_p ())
2862 return false;
2864 /* If we see different symbol than THIS, be sure to check calls. */
2865 if (next->ultimate_alias_target () != target)
2866 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2867 if (e->caller->get_comdat_group () != get_comdat_group ()
2868 || will_inline)
2869 return false;
2871 /* If function is not being inlined, we care only about
2872 references outside of the comdat group. */
2873 if (!will_inline)
2874 for (int i = 0; next->iterate_referring (i, ref); i++)
2875 if (ref->referring->get_comdat_group () != get_comdat_group ())
2876 return false;
2878 return true;
2881 /* Return true when function cgraph_node can be expected to be removed
2882 from program when direct calls in this compilation unit are removed.
2884 As a special case COMDAT functions are
2885 cgraph_can_remove_if_no_direct_calls_p while the are not
2886 cgraph_only_called_directly_p (it is possible they are called from other
2887 unit)
2889 This function behaves as cgraph_only_called_directly_p because eliminating
2890 all uses of COMDAT function does not make it necessarily disappear from
2891 the program unless we are compiling whole program or we do LTO. In this
2892 case we know we win since dynamic linking will not really discard the
2893 linkonce section. */
2895 bool
2896 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p
2897 (bool will_inline)
2899 gcc_assert (!global.inlined_to);
2900 if (DECL_EXTERNAL (decl))
2901 return true;
2903 if (!in_lto_p && !flag_whole_program)
2905 /* If the symbol is in comdat group, we need to verify that whole comdat
2906 group becomes unreachable. Technically we could skip references from
2907 within the group, too. */
2908 if (!only_called_directly_p ())
2909 return false;
2910 if (same_comdat_group && externally_visible)
2912 struct cgraph_node *target = ultimate_alias_target ();
2914 if (will_inline && address_taken)
2915 return true;
2916 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2917 next != this;
2918 next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2920 if (!externally_visible)
2921 continue;
2922 if (!next->alias
2923 && !next->only_called_directly_p ())
2924 return false;
2926 /* If we see different symbol than THIS,
2927 be sure to check calls. */
2928 if (next->ultimate_alias_target () != target)
2929 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2930 if (e->caller->get_comdat_group () != get_comdat_group ()
2931 || will_inline)
2932 return false;
2935 return true;
2937 else
2938 return can_remove_if_no_direct_calls_p (will_inline);
2942 /* Worker for cgraph_only_called_directly_p. */
2944 static bool
2945 cgraph_not_only_called_directly_p_1 (cgraph_node *node, void *)
2947 return !node->only_called_directly_or_aliased_p ();
2950 /* Return true when function cgraph_node and all its aliases are only called
2951 directly.
2952 i.e. it is not externally visible, address was not taken and
2953 it is not used in any other non-standard way. */
2955 bool
2956 cgraph_node::only_called_directly_p (void)
2958 gcc_assert (ultimate_alias_target () == this);
2959 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1,
2960 NULL, true);
2964 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2966 static bool
2967 collect_callers_of_node_1 (cgraph_node *node, void *data)
2969 vec<cgraph_edge *> *redirect_callers = (vec<cgraph_edge *> *)data;
2970 cgraph_edge *cs;
2971 enum availability avail;
2972 node->ultimate_alias_target (&avail);
2974 if (avail > AVAIL_INTERPOSABLE)
2975 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
2976 if (!cs->indirect_inlining_edge
2977 && !cs->caller->thunk.thunk_p)
2978 redirect_callers->safe_push (cs);
2979 return false;
2982 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2983 cgraph_node (i.e. are not overwritable). */
2985 vec<cgraph_edge *>
2986 cgraph_node::collect_callers (void)
2988 vec<cgraph_edge *> redirect_callers = vNULL;
2989 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1,
2990 &redirect_callers, false);
2991 return redirect_callers;
2994 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. */
2996 static bool
2997 clone_of_p (cgraph_node *node, cgraph_node *node2)
2999 bool skipped_thunk = false;
3000 node = node->ultimate_alias_target ();
3001 node2 = node2->ultimate_alias_target ();
3003 /* There are no virtual clones of thunks so check former_clone_of or if we
3004 might have skipped thunks because this adjustments are no longer
3005 necessary. */
3006 while (node->thunk.thunk_p)
3008 if (node2->former_clone_of == node->decl)
3009 return true;
3010 if (!node->thunk.this_adjusting)
3011 return false;
3012 node = node->callees->callee->ultimate_alias_target ();
3013 skipped_thunk = true;
3016 if (skipped_thunk)
3018 if (!node2->clone.args_to_skip
3019 || !bitmap_bit_p (node2->clone.args_to_skip, 0))
3020 return false;
3021 if (node2->former_clone_of == node->decl)
3022 return true;
3023 else if (!node2->clone_of)
3024 return false;
3027 while (node != node2 && node2)
3028 node2 = node2->clone_of;
3029 return node2 != NULL;
3032 /* Verify edge count and frequency. */
3034 bool
3035 cgraph_edge::verify_count_and_frequency ()
3037 bool error_found = false;
3038 if (count < 0)
3040 error ("caller edge count is negative");
3041 error_found = true;
3043 if (frequency < 0)
3045 error ("caller edge frequency is negative");
3046 error_found = true;
3048 if (frequency > CGRAPH_FREQ_MAX)
3050 error ("caller edge frequency is too large");
3051 error_found = true;
3053 return error_found;
3056 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
3057 static void
3058 cgraph_debug_gimple_stmt (function *this_cfun, gimple *stmt)
3060 bool fndecl_was_null = false;
3061 /* debug_gimple_stmt needs correct cfun */
3062 if (cfun != this_cfun)
3063 set_cfun (this_cfun);
3064 /* ...and an actual current_function_decl */
3065 if (!current_function_decl)
3067 current_function_decl = this_cfun->decl;
3068 fndecl_was_null = true;
3070 debug_gimple_stmt (stmt);
3071 if (fndecl_was_null)
3072 current_function_decl = NULL;
3075 /* Verify that call graph edge corresponds to DECL from the associated
3076 statement. Return true if the verification should fail. */
3078 bool
3079 cgraph_edge::verify_corresponds_to_fndecl (tree decl)
3081 cgraph_node *node;
3083 if (!decl || callee->global.inlined_to)
3084 return false;
3085 if (symtab->state == LTO_STREAMING)
3086 return false;
3087 node = cgraph_node::get (decl);
3089 /* We do not know if a node from a different partition is an alias or what it
3090 aliases and therefore cannot do the former_clone_of check reliably. When
3091 body_removed is set, we have lost all information about what was alias or
3092 thunk of and also cannot proceed. */
3093 if (!node
3094 || node->body_removed
3095 || node->in_other_partition
3096 || callee->icf_merged
3097 || callee->in_other_partition)
3098 return false;
3100 node = node->ultimate_alias_target ();
3102 /* Optimizers can redirect unreachable calls or calls triggering undefined
3103 behavior to builtin_unreachable. */
3104 if (DECL_BUILT_IN_CLASS (callee->decl) == BUILT_IN_NORMAL
3105 && DECL_FUNCTION_CODE (callee->decl) == BUILT_IN_UNREACHABLE)
3106 return false;
3108 if (callee->former_clone_of != node->decl
3109 && (node != callee->ultimate_alias_target ())
3110 && !clone_of_p (node, callee))
3111 return true;
3112 else
3113 return false;
3116 /* Verify cgraph nodes of given cgraph node. */
3117 DEBUG_FUNCTION void
3118 cgraph_node::verify_node (void)
3120 cgraph_edge *e;
3121 function *this_cfun = DECL_STRUCT_FUNCTION (decl);
3122 basic_block this_block;
3123 gimple_stmt_iterator gsi;
3124 bool error_found = false;
3126 if (seen_error ())
3127 return;
3129 timevar_push (TV_CGRAPH_VERIFY);
3130 error_found |= verify_base ();
3131 for (e = callees; e; e = e->next_callee)
3132 if (e->aux)
3134 error ("aux field set for edge %s->%s",
3135 identifier_to_locale (e->caller->name ()),
3136 identifier_to_locale (e->callee->name ()));
3137 error_found = true;
3139 if (count < 0)
3141 error ("execution count is negative");
3142 error_found = true;
3144 if (global.inlined_to && same_comdat_group)
3146 error ("inline clone in same comdat group list");
3147 error_found = true;
3149 if (!definition && !in_other_partition && local.local)
3151 error ("local symbols must be defined");
3152 error_found = true;
3154 if (global.inlined_to && externally_visible)
3156 error ("externally visible inline clone");
3157 error_found = true;
3159 if (global.inlined_to && address_taken)
3161 error ("inline clone with address taken");
3162 error_found = true;
3164 if (global.inlined_to && force_output)
3166 error ("inline clone is forced to output");
3167 error_found = true;
3169 for (e = indirect_calls; e; e = e->next_callee)
3171 if (e->aux)
3173 error ("aux field set for indirect edge from %s",
3174 identifier_to_locale (e->caller->name ()));
3175 error_found = true;
3177 if (!e->indirect_unknown_callee
3178 || !e->indirect_info)
3180 error ("An indirect edge from %s is not marked as indirect or has "
3181 "associated indirect_info, the corresponding statement is: ",
3182 identifier_to_locale (e->caller->name ()));
3183 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3184 error_found = true;
3187 bool check_comdat = comdat_local_p ();
3188 for (e = callers; e; e = e->next_caller)
3190 if (e->verify_count_and_frequency ())
3191 error_found = true;
3192 if (check_comdat
3193 && !in_same_comdat_group_p (e->caller))
3195 error ("comdat-local function called by %s outside its comdat",
3196 identifier_to_locale (e->caller->name ()));
3197 error_found = true;
3199 if (!e->inline_failed)
3201 if (global.inlined_to
3202 != (e->caller->global.inlined_to
3203 ? e->caller->global.inlined_to : e->caller))
3205 error ("inlined_to pointer is wrong");
3206 error_found = true;
3208 if (callers->next_caller)
3210 error ("multiple inline callers");
3211 error_found = true;
3214 else
3215 if (global.inlined_to)
3217 error ("inlined_to pointer set for noninline callers");
3218 error_found = true;
3221 for (e = callees; e; e = e->next_callee)
3223 if (e->verify_count_and_frequency ())
3224 error_found = true;
3225 if (gimple_has_body_p (e->caller->decl)
3226 && !e->caller->global.inlined_to
3227 && !e->speculative
3228 /* Optimized out calls are redirected to __builtin_unreachable. */
3229 && (e->frequency
3230 || ! e->callee->decl
3231 || DECL_BUILT_IN_CLASS (e->callee->decl) != BUILT_IN_NORMAL
3232 || DECL_FUNCTION_CODE (e->callee->decl) != BUILT_IN_UNREACHABLE)
3233 && (e->frequency
3234 != compute_call_stmt_bb_frequency (e->caller->decl,
3235 gimple_bb (e->call_stmt))))
3237 error ("caller edge frequency %i does not match BB frequency %i",
3238 e->frequency,
3239 compute_call_stmt_bb_frequency (e->caller->decl,
3240 gimple_bb (e->call_stmt)));
3241 error_found = true;
3244 for (e = indirect_calls; e; e = e->next_callee)
3246 if (e->verify_count_and_frequency ())
3247 error_found = true;
3248 if (gimple_has_body_p (e->caller->decl)
3249 && !e->caller->global.inlined_to
3250 && !e->speculative
3251 && (e->frequency
3252 != compute_call_stmt_bb_frequency (e->caller->decl,
3253 gimple_bb (e->call_stmt))))
3255 error ("indirect call frequency %i does not match BB frequency %i",
3256 e->frequency,
3257 compute_call_stmt_bb_frequency (e->caller->decl,
3258 gimple_bb (e->call_stmt)));
3259 error_found = true;
3262 if (!callers && global.inlined_to)
3264 error ("inlined_to pointer is set but no predecessors found");
3265 error_found = true;
3267 if (global.inlined_to == this)
3269 error ("inlined_to pointer refers to itself");
3270 error_found = true;
3273 if (clone_of)
3275 cgraph_node *n;
3276 for (n = clone_of->clones; n; n = n->next_sibling_clone)
3277 if (n == this)
3278 break;
3279 if (!n)
3281 error ("cgraph_node has wrong clone_of");
3282 error_found = true;
3285 if (clones)
3287 cgraph_node *n;
3288 for (n = clones; n; n = n->next_sibling_clone)
3289 if (n->clone_of != this)
3290 break;
3291 if (n)
3293 error ("cgraph_node has wrong clone list");
3294 error_found = true;
3297 if ((prev_sibling_clone || next_sibling_clone) && !clone_of)
3299 error ("cgraph_node is in clone list but it is not clone");
3300 error_found = true;
3302 if (!prev_sibling_clone && clone_of && clone_of->clones != this)
3304 error ("cgraph_node has wrong prev_clone pointer");
3305 error_found = true;
3307 if (prev_sibling_clone && prev_sibling_clone->next_sibling_clone != this)
3309 error ("double linked list of clones corrupted");
3310 error_found = true;
3313 if (analyzed && alias)
3315 bool ref_found = false;
3316 int i;
3317 ipa_ref *ref = NULL;
3319 if (callees)
3321 error ("Alias has call edges");
3322 error_found = true;
3324 for (i = 0; iterate_reference (i, ref); i++)
3325 if (ref->use == IPA_REF_CHKP)
3327 else if (ref->use != IPA_REF_ALIAS)
3329 error ("Alias has non-alias reference");
3330 error_found = true;
3332 else if (ref_found)
3334 error ("Alias has more than one alias reference");
3335 error_found = true;
3337 else
3338 ref_found = true;
3339 if (!ref_found)
3341 error ("Analyzed alias has no reference");
3342 error_found = true;
3346 /* Check instrumented version reference. */
3347 if (instrumented_version
3348 && instrumented_version->instrumented_version != this)
3350 error ("Instrumentation clone does not reference original node");
3351 error_found = true;
3354 /* Cannot have orig_decl for not instrumented nodes. */
3355 if (!instrumentation_clone && orig_decl)
3357 error ("Not instrumented node has non-NULL original declaration");
3358 error_found = true;
3361 /* If original not instrumented node still exists then we may check
3362 original declaration is set properly. */
3363 if (instrumented_version
3364 && orig_decl
3365 && orig_decl != instrumented_version->decl)
3367 error ("Instrumented node has wrong original declaration");
3368 error_found = true;
3371 /* Check all nodes have chkp reference to their instrumented versions. */
3372 if (analyzed
3373 && instrumented_version
3374 && !instrumentation_clone)
3376 bool ref_found = false;
3377 int i;
3378 struct ipa_ref *ref;
3380 for (i = 0; iterate_reference (i, ref); i++)
3381 if (ref->use == IPA_REF_CHKP)
3383 if (ref_found)
3385 error ("Node has more than one chkp reference");
3386 error_found = true;
3388 if (ref->referred != instrumented_version)
3390 error ("Wrong node is referenced with chkp reference");
3391 error_found = true;
3393 ref_found = true;
3396 if (!ref_found)
3398 error ("Analyzed node has no reference to instrumented version");
3399 error_found = true;
3403 if (instrumentation_clone
3404 && DECL_BUILT_IN_CLASS (decl) == NOT_BUILT_IN)
3406 tree name = DECL_ASSEMBLER_NAME (decl);
3407 tree orig_name = DECL_ASSEMBLER_NAME (orig_decl);
3409 if (!IDENTIFIER_TRANSPARENT_ALIAS (name)
3410 || TREE_CHAIN (name) != orig_name)
3412 error ("Alias chain for instrumented node is broken");
3413 error_found = true;
3417 if (analyzed && thunk.thunk_p)
3419 if (!callees)
3421 error ("No edge out of thunk node");
3422 error_found = true;
3424 else if (callees->next_callee)
3426 error ("More than one edge out of thunk node");
3427 error_found = true;
3429 if (gimple_has_body_p (decl) && !global.inlined_to)
3431 error ("Thunk is not supposed to have body");
3432 error_found = true;
3434 if (thunk.add_pointer_bounds_args
3435 && !instrumented_version->semantically_equivalent_p (callees->callee))
3437 error ("Instrumentation thunk has wrong edge callee");
3438 error_found = true;
3441 else if (analyzed && gimple_has_body_p (decl)
3442 && !TREE_ASM_WRITTEN (decl)
3443 && (!DECL_EXTERNAL (decl) || global.inlined_to)
3444 && !flag_wpa)
3446 if (this_cfun->cfg)
3448 hash_set<gimple *> stmts;
3449 int i;
3450 ipa_ref *ref = NULL;
3452 /* Reach the trees by walking over the CFG, and note the
3453 enclosing basic-blocks in the call edges. */
3454 FOR_EACH_BB_FN (this_block, this_cfun)
3456 for (gsi = gsi_start_phis (this_block);
3457 !gsi_end_p (gsi); gsi_next (&gsi))
3458 stmts.add (gsi_stmt (gsi));
3459 for (gsi = gsi_start_bb (this_block);
3460 !gsi_end_p (gsi);
3461 gsi_next (&gsi))
3463 gimple *stmt = gsi_stmt (gsi);
3464 stmts.add (stmt);
3465 if (is_gimple_call (stmt))
3467 cgraph_edge *e = get_edge (stmt);
3468 tree decl = gimple_call_fndecl (stmt);
3469 if (e)
3471 if (e->aux)
3473 error ("shared call_stmt:");
3474 cgraph_debug_gimple_stmt (this_cfun, stmt);
3475 error_found = true;
3477 if (!e->indirect_unknown_callee)
3479 if (e->verify_corresponds_to_fndecl (decl))
3481 error ("edge points to wrong declaration:");
3482 debug_tree (e->callee->decl);
3483 fprintf (stderr," Instead of:");
3484 debug_tree (decl);
3485 error_found = true;
3488 else if (decl)
3490 error ("an indirect edge with unknown callee "
3491 "corresponding to a call_stmt with "
3492 "a known declaration:");
3493 error_found = true;
3494 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3496 e->aux = (void *)1;
3498 else if (decl)
3500 error ("missing callgraph edge for call stmt:");
3501 cgraph_debug_gimple_stmt (this_cfun, stmt);
3502 error_found = true;
3507 for (i = 0; iterate_reference (i, ref); i++)
3508 if (ref->stmt && !stmts.contains (ref->stmt))
3510 error ("reference to dead statement");
3511 cgraph_debug_gimple_stmt (this_cfun, ref->stmt);
3512 error_found = true;
3515 else
3516 /* No CFG available?! */
3517 gcc_unreachable ();
3519 for (e = callees; e; e = e->next_callee)
3521 if (!e->aux)
3523 error ("edge %s->%s has no corresponding call_stmt",
3524 identifier_to_locale (e->caller->name ()),
3525 identifier_to_locale (e->callee->name ()));
3526 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3527 error_found = true;
3529 e->aux = 0;
3531 for (e = indirect_calls; e; e = e->next_callee)
3533 if (!e->aux && !e->speculative)
3535 error ("an indirect edge from %s has no corresponding call_stmt",
3536 identifier_to_locale (e->caller->name ()));
3537 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3538 error_found = true;
3540 e->aux = 0;
3543 if (error_found)
3545 dump (stderr);
3546 internal_error ("verify_cgraph_node failed");
3548 timevar_pop (TV_CGRAPH_VERIFY);
3551 /* Verify whole cgraph structure. */
3552 DEBUG_FUNCTION void
3553 cgraph_node::verify_cgraph_nodes (void)
3555 cgraph_node *node;
3557 if (seen_error ())
3558 return;
3560 FOR_EACH_FUNCTION (node)
3561 node->verify ();
3564 /* Walk the alias chain to return the function cgraph_node is alias of.
3565 Walk through thunks, too.
3566 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3567 When REF is non-NULL, assume that reference happens in symbol REF
3568 when determining the availability. */
3570 cgraph_node *
3571 cgraph_node::function_symbol (enum availability *availability,
3572 struct symtab_node *ref)
3574 cgraph_node *node = ultimate_alias_target (availability, ref);
3576 while (node->thunk.thunk_p)
3578 ref = node;
3579 node = node->callees->callee;
3580 if (availability)
3582 enum availability a;
3583 a = node->get_availability (ref);
3584 if (a < *availability)
3585 *availability = a;
3587 node = node->ultimate_alias_target (availability, ref);
3589 return node;
3592 /* Walk the alias chain to return the function cgraph_node is alias of.
3593 Walk through non virtual thunks, too. Thus we return either a function
3594 or a virtual thunk node.
3595 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3596 When REF is non-NULL, assume that reference happens in symbol REF
3597 when determining the availability. */
3599 cgraph_node *
3600 cgraph_node::function_or_virtual_thunk_symbol
3601 (enum availability *availability,
3602 struct symtab_node *ref)
3604 cgraph_node *node = ultimate_alias_target (availability, ref);
3606 while (node->thunk.thunk_p && !node->thunk.virtual_offset_p)
3608 ref = node;
3609 node = node->callees->callee;
3610 if (availability)
3612 enum availability a;
3613 a = node->get_availability (ref);
3614 if (a < *availability)
3615 *availability = a;
3617 node = node->ultimate_alias_target (availability, ref);
3619 return node;
3622 /* When doing LTO, read cgraph_node's body from disk if it is not already
3623 present. */
3625 bool
3626 cgraph_node::get_untransformed_body (void)
3628 lto_file_decl_data *file_data;
3629 const char *data, *name;
3630 size_t len;
3631 tree decl = this->decl;
3633 /* Check if body is already there. Either we have gimple body or
3634 the function is thunk and in that case we set DECL_ARGUMENTS. */
3635 if (DECL_ARGUMENTS (decl) || gimple_has_body_p (decl))
3636 return false;
3638 gcc_assert (in_lto_p && !DECL_RESULT (decl));
3640 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3642 file_data = lto_file_data;
3643 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
3645 /* We may have renamed the declaration, e.g., a static function. */
3646 name = lto_get_decl_name_mapping (file_data, name);
3647 struct lto_in_decl_state *decl_state
3648 = lto_get_function_in_decl_state (file_data, decl);
3650 data = lto_get_section_data (file_data, LTO_section_function_body,
3651 name, &len, decl_state->compressed);
3652 if (!data)
3653 fatal_error (input_location, "%s: section %s is missing",
3654 file_data->file_name,
3655 name);
3657 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
3659 lto_input_function_body (file_data, this, data);
3660 lto_stats.num_function_bodies++;
3661 lto_free_section_data (file_data, LTO_section_function_body, name,
3662 data, len, decl_state->compressed);
3663 lto_free_function_in_decl_state_for_node (this);
3664 /* Keep lto file data so ipa-inline-analysis knows about cross module
3665 inlining. */
3667 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
3669 return true;
3672 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3673 if it is not already present. When some IPA transformations are scheduled,
3674 apply them. */
3676 bool
3677 cgraph_node::get_body (void)
3679 bool updated;
3681 updated = get_untransformed_body ();
3683 /* Getting transformed body makes no sense for inline clones;
3684 we should never use this on real clones because they are materialized
3685 early.
3686 TODO: Materializing clones here will likely lead to smaller LTRANS
3687 footprint. */
3688 gcc_assert (!global.inlined_to && !clone_of);
3689 if (ipa_transforms_to_apply.exists ())
3691 opt_pass *saved_current_pass = current_pass;
3692 FILE *saved_dump_file = dump_file;
3693 const char *saved_dump_file_name = dump_file_name;
3694 dump_flags_t saved_dump_flags = dump_flags;
3695 dump_file_name = NULL;
3696 dump_file = NULL;
3698 push_cfun (DECL_STRUCT_FUNCTION (decl));
3699 execute_all_ipa_transforms ();
3700 cgraph_edge::rebuild_edges ();
3701 free_dominance_info (CDI_DOMINATORS);
3702 free_dominance_info (CDI_POST_DOMINATORS);
3703 pop_cfun ();
3704 updated = true;
3706 current_pass = saved_current_pass;
3707 dump_file = saved_dump_file;
3708 dump_file_name = saved_dump_file_name;
3709 dump_flags = saved_dump_flags;
3711 return updated;
3714 /* Return the DECL_STRUCT_FUNCTION of the function. */
3716 struct function *
3717 cgraph_node::get_fun (void)
3719 cgraph_node *node = this;
3720 struct function *fun = DECL_STRUCT_FUNCTION (node->decl);
3722 while (!fun && node->clone_of)
3724 node = node->clone_of;
3725 fun = DECL_STRUCT_FUNCTION (node->decl);
3728 return fun;
3731 /* Verify if the type of the argument matches that of the function
3732 declaration. If we cannot verify this or there is a mismatch,
3733 return false. */
3735 static bool
3736 gimple_check_call_args (gimple *stmt, tree fndecl, bool args_count_match)
3738 tree parms, p;
3739 unsigned int i, nargs;
3741 /* Calls to internal functions always match their signature. */
3742 if (gimple_call_internal_p (stmt))
3743 return true;
3745 nargs = gimple_call_num_args (stmt);
3747 /* Get argument types for verification. */
3748 if (fndecl)
3749 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
3750 else
3751 parms = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
3753 /* Verify if the type of the argument matches that of the function
3754 declaration. If we cannot verify this or there is a mismatch,
3755 return false. */
3756 if (fndecl && DECL_ARGUMENTS (fndecl))
3758 for (i = 0, p = DECL_ARGUMENTS (fndecl);
3759 i < nargs;
3760 i++, p = DECL_CHAIN (p))
3762 tree arg;
3763 /* We cannot distinguish a varargs function from the case
3764 of excess parameters, still deferring the inlining decision
3765 to the callee is possible. */
3766 if (!p)
3767 break;
3768 arg = gimple_call_arg (stmt, i);
3769 if (p == error_mark_node
3770 || DECL_ARG_TYPE (p) == error_mark_node
3771 || arg == error_mark_node
3772 || (!types_compatible_p (DECL_ARG_TYPE (p), TREE_TYPE (arg))
3773 && !fold_convertible_p (DECL_ARG_TYPE (p), arg)))
3774 return false;
3776 if (args_count_match && p)
3777 return false;
3779 else if (parms)
3781 for (i = 0, p = parms; i < nargs; i++, p = TREE_CHAIN (p))
3783 tree arg;
3784 /* If this is a varargs function defer inlining decision
3785 to callee. */
3786 if (!p)
3787 break;
3788 arg = gimple_call_arg (stmt, i);
3789 if (TREE_VALUE (p) == error_mark_node
3790 || arg == error_mark_node
3791 || TREE_CODE (TREE_VALUE (p)) == VOID_TYPE
3792 || (!types_compatible_p (TREE_VALUE (p), TREE_TYPE (arg))
3793 && !fold_convertible_p (TREE_VALUE (p), arg)))
3794 return false;
3797 else
3799 if (nargs != 0)
3800 return false;
3802 return true;
3805 /* Verify if the type of the argument and lhs of CALL_STMT matches
3806 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3807 true, the arg count needs to be the same.
3808 If we cannot verify this or there is a mismatch, return false. */
3810 bool
3811 gimple_check_call_matching_types (gimple *call_stmt, tree callee,
3812 bool args_count_match)
3814 tree lhs;
3816 if ((DECL_RESULT (callee)
3817 && !DECL_BY_REFERENCE (DECL_RESULT (callee))
3818 && (lhs = gimple_call_lhs (call_stmt)) != NULL_TREE
3819 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee)),
3820 TREE_TYPE (lhs))
3821 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee)), lhs))
3822 || !gimple_check_call_args (call_stmt, callee, args_count_match))
3823 return false;
3824 return true;
3827 /* Reset all state within cgraph.c so that we can rerun the compiler
3828 within the same process. For use by toplev::finalize. */
3830 void
3831 cgraph_c_finalize (void)
3833 symtab = NULL;
3835 x_cgraph_nodes_queue = NULL;
3837 cgraph_fnver_htab = NULL;
3838 version_info_node = NULL;
3841 /* A wroker for call_for_symbol_and_aliases. */
3843 bool
3844 cgraph_node::call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
3845 void *),
3846 void *data,
3847 bool include_overwritable)
3849 ipa_ref *ref;
3850 FOR_EACH_ALIAS (this, ref)
3852 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
3853 if (include_overwritable
3854 || alias->get_availability () > AVAIL_INTERPOSABLE)
3855 if (alias->call_for_symbol_and_aliases (callback, data,
3856 include_overwritable))
3857 return true;
3859 return false;
3862 /* Return true if NODE has thunk. */
3864 bool
3865 cgraph_node::has_thunk_p (cgraph_node *node, void *)
3867 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
3868 if (e->caller->thunk.thunk_p)
3869 return true;
3870 return false;
3873 #include "gt-cgraph.h"