* function.c (dump_stack_clash_frame_info): New function.
[official-gcc.git] / gcc / cgraph.c
blob8bffdec8fb785e8e9abee7fa4e746c7803cde7ff
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 and cgraph_node for DECL. This
194 DECL is a duplicate declaration. */
195 void
196 cgraph_node::delete_function_version (tree decl)
198 cgraph_node *decl_node = cgraph_node::get (decl);
199 cgraph_function_version_info *decl_v = NULL;
201 if (decl_node == NULL)
202 return;
204 decl_v = decl_node->function_version ();
206 if (decl_v == NULL)
207 return;
209 if (decl_v->prev != NULL)
210 decl_v->prev->next = decl_v->next;
212 if (decl_v->next != NULL)
213 decl_v->next->prev = decl_v->prev;
215 if (cgraph_fnver_htab != NULL)
216 cgraph_fnver_htab->remove_elt (decl_v);
218 decl_node->remove ();
221 /* Record that DECL1 and DECL2 are semantically identical function
222 versions. */
223 void
224 cgraph_node::record_function_versions (tree decl1, tree decl2)
226 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
227 cgraph_node *decl2_node = cgraph_node::get_create (decl2);
228 cgraph_function_version_info *decl1_v = NULL;
229 cgraph_function_version_info *decl2_v = NULL;
230 cgraph_function_version_info *before;
231 cgraph_function_version_info *after;
233 gcc_assert (decl1_node != NULL && decl2_node != NULL);
234 decl1_v = decl1_node->function_version ();
235 decl2_v = decl2_node->function_version ();
237 if (decl1_v != NULL && decl2_v != NULL)
238 return;
240 if (decl1_v == NULL)
241 decl1_v = decl1_node->insert_new_function_version ();
243 if (decl2_v == NULL)
244 decl2_v = decl2_node->insert_new_function_version ();
246 /* Chain decl2_v and decl1_v. All semantically identical versions
247 will be chained together. */
249 before = decl1_v;
250 after = decl2_v;
252 while (before->next != NULL)
253 before = before->next;
255 while (after->prev != NULL)
256 after= after->prev;
258 before->next = after;
259 after->prev = before;
262 /* Initialize callgraph dump file. */
264 void
265 symbol_table::initialize (void)
267 if (!dump_file)
268 dump_file = dump_begin (TDI_cgraph, NULL);
270 if (!ipa_clones_dump_file)
271 ipa_clones_dump_file = dump_begin (TDI_clones, NULL);
274 /* Allocate new callgraph node and insert it into basic data structures. */
276 cgraph_node *
277 symbol_table::create_empty (void)
279 cgraph_node *node = allocate_cgraph_symbol ();
281 node->type = SYMTAB_FUNCTION;
282 node->frequency = NODE_FREQUENCY_NORMAL;
283 node->count_materialization_scale = REG_BR_PROB_BASE;
284 cgraph_count++;
286 return node;
289 /* Register HOOK to be called with DATA on each removed edge. */
290 cgraph_edge_hook_list *
291 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook, void *data)
293 cgraph_edge_hook_list *entry;
294 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
296 entry = (cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
297 entry->hook = hook;
298 entry->data = data;
299 entry->next = NULL;
300 while (*ptr)
301 ptr = &(*ptr)->next;
302 *ptr = entry;
303 return entry;
306 /* Remove ENTRY from the list of hooks called on removing edges. */
307 void
308 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list *entry)
310 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
312 while (*ptr != entry)
313 ptr = &(*ptr)->next;
314 *ptr = entry->next;
315 free (entry);
318 /* Call all edge removal hooks. */
319 void
320 symbol_table::call_edge_removal_hooks (cgraph_edge *e)
322 cgraph_edge_hook_list *entry = m_first_edge_removal_hook;
323 while (entry)
325 entry->hook (e, entry->data);
326 entry = entry->next;
330 /* Register HOOK to be called with DATA on each removed node. */
331 cgraph_node_hook_list *
332 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook, void *data)
334 cgraph_node_hook_list *entry;
335 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
337 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
338 entry->hook = hook;
339 entry->data = data;
340 entry->next = NULL;
341 while (*ptr)
342 ptr = &(*ptr)->next;
343 *ptr = entry;
344 return entry;
347 /* Remove ENTRY from the list of hooks called on removing nodes. */
348 void
349 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list *entry)
351 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
353 while (*ptr != entry)
354 ptr = &(*ptr)->next;
355 *ptr = entry->next;
356 free (entry);
359 /* Call all node removal hooks. */
360 void
361 symbol_table::call_cgraph_removal_hooks (cgraph_node *node)
363 cgraph_node_hook_list *entry = m_first_cgraph_removal_hook;
364 while (entry)
366 entry->hook (node, entry->data);
367 entry = entry->next;
371 /* Call all node removal hooks. */
372 void
373 symbol_table::call_cgraph_insertion_hooks (cgraph_node *node)
375 cgraph_node_hook_list *entry = m_first_cgraph_insertion_hook;
376 while (entry)
378 entry->hook (node, entry->data);
379 entry = entry->next;
384 /* Register HOOK to be called with DATA on each inserted node. */
385 cgraph_node_hook_list *
386 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook, void *data)
388 cgraph_node_hook_list *entry;
389 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
391 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
392 entry->hook = hook;
393 entry->data = data;
394 entry->next = NULL;
395 while (*ptr)
396 ptr = &(*ptr)->next;
397 *ptr = entry;
398 return entry;
401 /* Remove ENTRY from the list of hooks called on inserted nodes. */
402 void
403 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list *entry)
405 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
407 while (*ptr != entry)
408 ptr = &(*ptr)->next;
409 *ptr = entry->next;
410 free (entry);
413 /* Register HOOK to be called with DATA on each duplicated edge. */
414 cgraph_2edge_hook_list *
415 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
417 cgraph_2edge_hook_list *entry;
418 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
420 entry = (cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
421 entry->hook = hook;
422 entry->data = data;
423 entry->next = NULL;
424 while (*ptr)
425 ptr = &(*ptr)->next;
426 *ptr = entry;
427 return entry;
430 /* Remove ENTRY from the list of hooks called on duplicating edges. */
431 void
432 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list *entry)
434 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
436 while (*ptr != entry)
437 ptr = &(*ptr)->next;
438 *ptr = entry->next;
439 free (entry);
442 /* Call all edge duplication hooks. */
443 void
444 symbol_table::call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)
446 cgraph_2edge_hook_list *entry = m_first_edge_duplicated_hook;
447 while (entry)
449 entry->hook (cs1, cs2, entry->data);
450 entry = entry->next;
454 /* Register HOOK to be called with DATA on each duplicated node. */
455 cgraph_2node_hook_list *
456 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook, void *data)
458 cgraph_2node_hook_list *entry;
459 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
461 entry = (cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
462 entry->hook = hook;
463 entry->data = data;
464 entry->next = NULL;
465 while (*ptr)
466 ptr = &(*ptr)->next;
467 *ptr = entry;
468 return entry;
471 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
472 void
473 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry)
475 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
477 while (*ptr != entry)
478 ptr = &(*ptr)->next;
479 *ptr = entry->next;
480 free (entry);
483 /* Call all node duplication hooks. */
484 void
485 symbol_table::call_cgraph_duplication_hooks (cgraph_node *node,
486 cgraph_node *node2)
488 cgraph_2node_hook_list *entry = m_first_cgraph_duplicated_hook;
489 while (entry)
491 entry->hook (node, node2, entry->data);
492 entry = entry->next;
496 /* Return cgraph node assigned to DECL. Create new one when needed. */
498 cgraph_node *
499 cgraph_node::create (tree decl)
501 cgraph_node *node = symtab->create_empty ();
502 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
504 node->decl = decl;
506 node->count = profile_count::uninitialized ();
508 if ((flag_openacc || flag_openmp)
509 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl)))
511 node->offloadable = 1;
512 if (ENABLE_OFFLOADING)
513 g->have_offload = true;
516 node->register_symbol ();
518 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
520 node->origin = cgraph_node::get_create (DECL_CONTEXT (decl));
521 node->next_nested = node->origin->nested;
522 node->origin->nested = node;
524 return node;
527 /* Try to find a call graph node for declaration DECL and if it does not exist
528 or if it corresponds to an inline clone, create a new one. */
530 cgraph_node *
531 cgraph_node::get_create (tree decl)
533 cgraph_node *first_clone = cgraph_node::get (decl);
535 if (first_clone && !first_clone->global.inlined_to)
536 return first_clone;
538 cgraph_node *node = cgraph_node::create (decl);
539 if (first_clone)
541 first_clone->clone_of = node;
542 node->clones = first_clone;
543 symtab->symtab_prevail_in_asm_name_hash (node);
544 node->decl->decl_with_vis.symtab_node = node;
545 if (dump_file)
546 fprintf (dump_file, "Introduced new external node "
547 "(%s) and turned into root of the clone tree.\n",
548 node->dump_name ());
550 else if (dump_file)
551 fprintf (dump_file, "Introduced new external node "
552 "(%s).\n", node->dump_name ());
553 return node;
556 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
557 the function body is associated with (not necessarily cgraph_node (DECL). */
559 cgraph_node *
560 cgraph_node::create_alias (tree alias, tree target)
562 cgraph_node *alias_node;
564 gcc_assert (TREE_CODE (target) == FUNCTION_DECL
565 || TREE_CODE (target) == IDENTIFIER_NODE);
566 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
567 alias_node = cgraph_node::get_create (alias);
568 gcc_assert (!alias_node->definition);
569 alias_node->alias_target = target;
570 alias_node->definition = true;
571 alias_node->alias = true;
572 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias)) != NULL)
573 alias_node->transparent_alias = alias_node->weakref = true;
574 return alias_node;
577 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
578 and NULL otherwise.
579 Same body aliases are output whenever the body of DECL is output,
580 and cgraph_node::get (ALIAS) transparently returns
581 cgraph_node::get (DECL). */
583 cgraph_node *
584 cgraph_node::create_same_body_alias (tree alias, tree decl)
586 cgraph_node *n;
588 /* If aliases aren't supported by the assembler, fail. */
589 if (!TARGET_SUPPORTS_ALIASES)
590 return NULL;
592 /* Langhooks can create same body aliases of symbols not defined.
593 Those are useless. Drop them on the floor. */
594 if (symtab->global_info_ready)
595 return NULL;
597 n = cgraph_node::create_alias (alias, decl);
598 n->cpp_implicit_alias = true;
599 if (symtab->cpp_implicit_aliases_done)
600 n->resolve_alias (cgraph_node::get (decl));
601 return n;
604 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
605 aliases DECL with an adjustments made into the first parameter.
606 See comments in struct cgraph_thunk_info for detail on the parameters. */
608 cgraph_node *
609 cgraph_node::create_thunk (tree alias, tree, bool this_adjusting,
610 HOST_WIDE_INT fixed_offset,
611 HOST_WIDE_INT virtual_value,
612 tree virtual_offset,
613 tree real_alias)
615 cgraph_node *node;
617 node = cgraph_node::get (alias);
618 if (node)
619 node->reset ();
620 else
621 node = cgraph_node::create (alias);
623 /* Make sure that if VIRTUAL_OFFSET is in sync with VIRTUAL_VALUE. */
624 gcc_checking_assert (virtual_offset
625 ? wi::eq_p (virtual_offset, virtual_value)
626 : virtual_value == 0);
628 node->thunk.fixed_offset = fixed_offset;
629 node->thunk.virtual_value = virtual_value;
630 node->thunk.alias = real_alias;
631 node->thunk.this_adjusting = this_adjusting;
632 node->thunk.virtual_offset_p = virtual_offset != NULL;
633 node->thunk.thunk_p = true;
634 node->definition = true;
636 return node;
639 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
640 Return NULL if there's no such node. */
642 cgraph_node *
643 cgraph_node::get_for_asmname (tree asmname)
645 /* We do not want to look at inline clones. */
646 for (symtab_node *node = symtab_node::get_for_asmname (asmname);
647 node;
648 node = node->next_sharing_asm_name)
650 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
651 if (cn && !cn->global.inlined_to)
652 return cn;
654 return NULL;
657 /* Returns a hash value for X (which really is a cgraph_edge). */
659 hashval_t
660 cgraph_edge_hasher::hash (cgraph_edge *e)
662 /* This is a really poor hash function, but it is what htab_hash_pointer
663 uses. */
664 return (hashval_t) ((intptr_t)e->call_stmt >> 3);
667 /* Returns a hash value for X (which really is a cgraph_edge). */
669 hashval_t
670 cgraph_edge_hasher::hash (gimple *call_stmt)
672 /* This is a really poor hash function, but it is what htab_hash_pointer
673 uses. */
674 return (hashval_t) ((intptr_t)call_stmt >> 3);
677 /* Return nonzero if the call_stmt of cgraph_edge X is stmt *Y. */
679 inline bool
680 cgraph_edge_hasher::equal (cgraph_edge *x, gimple *y)
682 return x->call_stmt == y;
685 /* Add call graph edge E to call site hash of its caller. */
687 static inline void
688 cgraph_update_edge_in_call_site_hash (cgraph_edge *e)
690 gimple *call = e->call_stmt;
691 *e->caller->call_site_hash->find_slot_with_hash
692 (call, cgraph_edge_hasher::hash (call), INSERT) = e;
695 /* Add call graph edge E to call site hash of its caller. */
697 static inline void
698 cgraph_add_edge_to_call_site_hash (cgraph_edge *e)
700 /* There are two speculative edges for every statement (one direct,
701 one indirect); always hash the direct one. */
702 if (e->speculative && e->indirect_unknown_callee)
703 return;
704 cgraph_edge **slot = e->caller->call_site_hash->find_slot_with_hash
705 (e->call_stmt, cgraph_edge_hasher::hash (e->call_stmt), INSERT);
706 if (*slot)
708 gcc_assert (((cgraph_edge *)*slot)->speculative);
709 if (e->callee)
710 *slot = e;
711 return;
713 gcc_assert (!*slot || e->speculative);
714 *slot = e;
717 /* Return the callgraph edge representing the GIMPLE_CALL statement
718 CALL_STMT. */
720 cgraph_edge *
721 cgraph_node::get_edge (gimple *call_stmt)
723 cgraph_edge *e, *e2;
724 int n = 0;
726 if (call_site_hash)
727 return call_site_hash->find_with_hash
728 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
730 /* This loop may turn out to be performance problem. In such case adding
731 hashtables into call nodes with very many edges is probably best
732 solution. It is not good idea to add pointer into CALL_EXPR itself
733 because we want to make possible having multiple cgraph nodes representing
734 different clones of the same body before the body is actually cloned. */
735 for (e = callees; e; e = e->next_callee)
737 if (e->call_stmt == call_stmt)
738 break;
739 n++;
742 if (!e)
743 for (e = indirect_calls; e; e = e->next_callee)
745 if (e->call_stmt == call_stmt)
746 break;
747 n++;
750 if (n > 100)
752 call_site_hash = hash_table<cgraph_edge_hasher>::create_ggc (120);
753 for (e2 = callees; e2; e2 = e2->next_callee)
754 cgraph_add_edge_to_call_site_hash (e2);
755 for (e2 = indirect_calls; e2; e2 = e2->next_callee)
756 cgraph_add_edge_to_call_site_hash (e2);
759 return e;
763 /* Change field call_stmt of edge to NEW_STMT.
764 If UPDATE_SPECULATIVE and E is any component of speculative
765 edge, then update all components. */
767 void
768 cgraph_edge::set_call_stmt (gcall *new_stmt, bool update_speculative)
770 tree decl;
772 /* Speculative edges has three component, update all of them
773 when asked to. */
774 if (update_speculative && speculative)
776 cgraph_edge *direct, *indirect;
777 ipa_ref *ref;
779 speculative_call_info (direct, indirect, ref);
780 direct->set_call_stmt (new_stmt, false);
781 indirect->set_call_stmt (new_stmt, false);
782 ref->stmt = new_stmt;
783 return;
786 /* Only direct speculative edges go to call_site_hash. */
787 if (caller->call_site_hash
788 && (!speculative || !indirect_unknown_callee))
790 caller->call_site_hash->remove_elt_with_hash
791 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
794 cgraph_edge *e = this;
796 call_stmt = new_stmt;
797 if (indirect_unknown_callee
798 && (decl = gimple_call_fndecl (new_stmt)))
800 /* Constant propagation (and possibly also inlining?) can turn an
801 indirect call into a direct one. */
802 cgraph_node *new_callee = cgraph_node::get (decl);
804 gcc_checking_assert (new_callee);
805 e = make_direct (new_callee);
808 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
809 e->can_throw_external = stmt_can_throw_external (new_stmt);
810 pop_cfun ();
811 if (e->caller->call_site_hash)
812 cgraph_add_edge_to_call_site_hash (e);
815 /* Allocate a cgraph_edge structure and fill it with data according to the
816 parameters of which only CALLEE can be NULL (when creating an indirect call
817 edge). */
819 cgraph_edge *
820 symbol_table::create_edge (cgraph_node *caller, cgraph_node *callee,
821 gcall *call_stmt, profile_count count, int freq,
822 bool indir_unknown_callee)
824 cgraph_edge *edge;
826 /* LTO does not actually have access to the call_stmt since these
827 have not been loaded yet. */
828 if (call_stmt)
830 /* This is a rather expensive check possibly triggering
831 construction of call stmt hashtable. */
832 cgraph_edge *e;
833 gcc_checking_assert (!(e = caller->get_edge (call_stmt))
834 || e->speculative);
836 gcc_assert (is_gimple_call (call_stmt));
839 if (free_edges)
841 edge = free_edges;
842 free_edges = NEXT_FREE_EDGE (edge);
844 else
846 edge = ggc_alloc<cgraph_edge> ();
847 edge->uid = edges_max_uid++;
850 edges_count++;
852 edge->aux = NULL;
853 edge->caller = caller;
854 edge->callee = callee;
855 edge->prev_caller = NULL;
856 edge->next_caller = NULL;
857 edge->prev_callee = NULL;
858 edge->next_callee = NULL;
859 edge->lto_stmt_uid = 0;
861 edge->count = count;
862 edge->frequency = freq;
863 gcc_checking_assert (freq >= 0);
864 gcc_checking_assert (freq <= CGRAPH_FREQ_MAX);
866 edge->call_stmt = call_stmt;
867 push_cfun (DECL_STRUCT_FUNCTION (caller->decl));
868 edge->can_throw_external
869 = call_stmt ? stmt_can_throw_external (call_stmt) : false;
870 pop_cfun ();
871 if (call_stmt
872 && callee && callee->decl
873 && !gimple_check_call_matching_types (call_stmt, callee->decl,
874 false))
876 edge->inline_failed = CIF_MISMATCHED_ARGUMENTS;
877 edge->call_stmt_cannot_inline_p = true;
879 else
881 edge->inline_failed = CIF_FUNCTION_NOT_CONSIDERED;
882 edge->call_stmt_cannot_inline_p = false;
885 edge->indirect_info = NULL;
886 edge->indirect_inlining_edge = 0;
887 edge->speculative = false;
888 edge->indirect_unknown_callee = indir_unknown_callee;
889 if (opt_for_fn (edge->caller->decl, flag_devirtualize)
890 && call_stmt && DECL_STRUCT_FUNCTION (caller->decl))
891 edge->in_polymorphic_cdtor
892 = decl_maybe_in_construction_p (NULL, NULL, call_stmt,
893 caller->decl);
894 else
895 edge->in_polymorphic_cdtor = caller->thunk.thunk_p;
896 if (call_stmt && caller->call_site_hash)
897 cgraph_add_edge_to_call_site_hash (edge);
899 return edge;
902 /* Create edge from a given function to CALLEE in the cgraph. */
904 cgraph_edge *
905 cgraph_node::create_edge (cgraph_node *callee,
906 gcall *call_stmt, profile_count count, int freq)
908 cgraph_edge *edge = symtab->create_edge (this, callee, call_stmt, count,
909 freq, false);
911 initialize_inline_failed (edge);
913 edge->next_caller = callee->callers;
914 if (callee->callers)
915 callee->callers->prev_caller = edge;
916 edge->next_callee = callees;
917 if (callees)
918 callees->prev_callee = edge;
919 callees = edge;
920 callee->callers = edge;
922 return edge;
925 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
927 cgraph_indirect_call_info *
928 cgraph_allocate_init_indirect_info (void)
930 cgraph_indirect_call_info *ii;
932 ii = ggc_cleared_alloc<cgraph_indirect_call_info> ();
933 ii->param_index = -1;
934 return ii;
937 /* Create an indirect edge with a yet-undetermined callee where the call
938 statement destination is a formal parameter of the caller with index
939 PARAM_INDEX. */
941 cgraph_edge *
942 cgraph_node::create_indirect_edge (gcall *call_stmt, int ecf_flags,
943 profile_count count, int freq,
944 bool compute_indirect_info)
946 cgraph_edge *edge = symtab->create_edge (this, NULL, call_stmt,
947 count, freq, true);
948 tree target;
950 initialize_inline_failed (edge);
952 edge->indirect_info = cgraph_allocate_init_indirect_info ();
953 edge->indirect_info->ecf_flags = ecf_flags;
954 edge->indirect_info->vptr_changed = true;
956 /* Record polymorphic call info. */
957 if (compute_indirect_info
958 && call_stmt
959 && (target = gimple_call_fn (call_stmt))
960 && virtual_method_call_p (target))
962 ipa_polymorphic_call_context context (decl, target, call_stmt);
964 /* Only record types can have virtual calls. */
965 edge->indirect_info->polymorphic = true;
966 edge->indirect_info->param_index = -1;
967 edge->indirect_info->otr_token
968 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
969 edge->indirect_info->otr_type = obj_type_ref_class (target);
970 gcc_assert (TREE_CODE (edge->indirect_info->otr_type) == RECORD_TYPE);
971 edge->indirect_info->context = context;
974 edge->next_callee = indirect_calls;
975 if (indirect_calls)
976 indirect_calls->prev_callee = edge;
977 indirect_calls = edge;
979 return edge;
982 /* Remove the edge from the list of the callees of the caller. */
984 void
985 cgraph_edge::remove_caller (void)
987 if (prev_callee)
988 prev_callee->next_callee = next_callee;
989 if (next_callee)
990 next_callee->prev_callee = prev_callee;
991 if (!prev_callee)
993 if (indirect_unknown_callee)
994 caller->indirect_calls = next_callee;
995 else
996 caller->callees = next_callee;
998 if (caller->call_site_hash)
999 caller->call_site_hash->remove_elt_with_hash
1000 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
1003 /* Put the edge onto the free list. */
1005 void
1006 symbol_table::free_edge (cgraph_edge *e)
1008 int uid = e->uid;
1010 if (e->indirect_info)
1011 ggc_free (e->indirect_info);
1013 /* Clear out the edge so we do not dangle pointers. */
1014 memset (e, 0, sizeof (*e));
1015 e->uid = uid;
1016 NEXT_FREE_EDGE (e) = free_edges;
1017 free_edges = e;
1018 edges_count--;
1021 /* Remove the edge in the cgraph. */
1023 void
1024 cgraph_edge::remove (void)
1026 /* Call all edge removal hooks. */
1027 symtab->call_edge_removal_hooks (this);
1029 if (!indirect_unknown_callee)
1030 /* Remove from callers list of the callee. */
1031 remove_callee ();
1033 /* Remove from callees list of the callers. */
1034 remove_caller ();
1036 /* Put the edge onto the free list. */
1037 symtab->free_edge (this);
1040 /* Turn edge into speculative call calling N2. Update
1041 the profile so the direct call is taken COUNT times
1042 with FREQUENCY.
1044 At clone materialization time, the indirect call E will
1045 be expanded as:
1047 if (call_dest == N2)
1048 n2 ();
1049 else
1050 call call_dest
1052 At this time the function just creates the direct call,
1053 the referencd representing the if conditional and attaches
1054 them all to the orginal indirect call statement.
1056 Return direct edge created. */
1058 cgraph_edge *
1059 cgraph_edge::make_speculative (cgraph_node *n2, profile_count direct_count,
1060 int direct_frequency)
1062 cgraph_node *n = caller;
1063 ipa_ref *ref = NULL;
1064 cgraph_edge *e2;
1066 if (dump_file)
1067 fprintf (dump_file, "Indirect call -> speculative call %s => %s\n",
1068 n->dump_name (), n2->dump_name ());
1069 speculative = true;
1070 e2 = n->create_edge (n2, call_stmt, direct_count, direct_frequency);
1071 initialize_inline_failed (e2);
1072 e2->speculative = true;
1073 if (TREE_NOTHROW (n2->decl))
1074 e2->can_throw_external = false;
1075 else
1076 e2->can_throw_external = can_throw_external;
1077 e2->lto_stmt_uid = lto_stmt_uid;
1078 e2->in_polymorphic_cdtor = in_polymorphic_cdtor;
1079 count -= e2->count;
1080 frequency -= e2->frequency;
1081 symtab->call_edge_duplication_hooks (this, e2);
1082 ref = n->create_reference (n2, IPA_REF_ADDR, call_stmt);
1083 ref->lto_stmt_uid = lto_stmt_uid;
1084 ref->speculative = speculative;
1085 n2->mark_address_taken ();
1086 return e2;
1089 /* Speculative call consist of three components:
1090 1) an indirect edge representing the original call
1091 2) an direct edge representing the new call
1092 3) ADDR_EXPR reference representing the speculative check.
1093 All three components are attached to single statement (the indirect
1094 call) and if one of them exists, all of them must exist.
1096 Given speculative call edge, return all three components.
1099 void
1100 cgraph_edge::speculative_call_info (cgraph_edge *&direct,
1101 cgraph_edge *&indirect,
1102 ipa_ref *&reference)
1104 ipa_ref *ref;
1105 int i;
1106 cgraph_edge *e2;
1107 cgraph_edge *e = this;
1109 if (!e->indirect_unknown_callee)
1110 for (e2 = e->caller->indirect_calls;
1111 e2->call_stmt != e->call_stmt || e2->lto_stmt_uid != e->lto_stmt_uid;
1112 e2 = e2->next_callee)
1114 else
1116 e2 = e;
1117 /* We can take advantage of the call stmt hash. */
1118 if (e2->call_stmt)
1120 e = e->caller->get_edge (e2->call_stmt);
1121 gcc_assert (e->speculative && !e->indirect_unknown_callee);
1123 else
1124 for (e = e->caller->callees;
1125 e2->call_stmt != e->call_stmt
1126 || e2->lto_stmt_uid != e->lto_stmt_uid;
1127 e = e->next_callee)
1130 gcc_assert (e->speculative && e2->speculative);
1131 direct = e;
1132 indirect = e2;
1134 reference = NULL;
1135 for (i = 0; e->caller->iterate_reference (i, ref); i++)
1136 if (ref->speculative
1137 && ((ref->stmt && ref->stmt == e->call_stmt)
1138 || (!ref->stmt && ref->lto_stmt_uid == e->lto_stmt_uid)))
1140 reference = ref;
1141 break;
1144 /* Speculative edge always consist of all three components - direct edge,
1145 indirect and reference. */
1147 gcc_assert (e && e2 && ref);
1150 /* Speculative call edge turned out to be direct call to CALLE_DECL.
1151 Remove the speculative call sequence and return edge representing the call.
1152 It is up to caller to redirect the call as appropriate. */
1154 cgraph_edge *
1155 cgraph_edge::resolve_speculation (tree callee_decl)
1157 cgraph_edge *edge = this;
1158 cgraph_edge *e2;
1159 ipa_ref *ref;
1161 gcc_assert (edge->speculative);
1162 edge->speculative_call_info (e2, edge, ref);
1163 if (!callee_decl
1164 || !ref->referred->semantically_equivalent_p
1165 (symtab_node::get (callee_decl)))
1167 if (dump_file)
1169 if (callee_decl)
1171 fprintf (dump_file, "Speculative indirect call %s => %s has "
1172 "turned out to have contradicting known target ",
1173 edge->caller->dump_name (),
1174 e2->callee->dump_name ());
1175 print_generic_expr (dump_file, callee_decl);
1176 fprintf (dump_file, "\n");
1178 else
1180 fprintf (dump_file, "Removing speculative call %s => %s\n",
1181 edge->caller->dump_name (),
1182 e2->callee->dump_name ());
1186 else
1188 cgraph_edge *tmp = edge;
1189 if (dump_file)
1190 fprintf (dump_file, "Speculative call turned into direct call.\n");
1191 edge = e2;
1192 e2 = tmp;
1193 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1194 in the functions inlined through it. */
1196 edge->count += e2->count;
1197 edge->frequency += e2->frequency;
1198 if (edge->frequency > CGRAPH_FREQ_MAX)
1199 edge->frequency = CGRAPH_FREQ_MAX;
1200 edge->speculative = false;
1201 e2->speculative = false;
1202 ref->remove_reference ();
1203 if (e2->indirect_unknown_callee || e2->inline_failed)
1204 e2->remove ();
1205 else
1206 e2->callee->remove_symbol_and_inline_clones ();
1207 if (edge->caller->call_site_hash)
1208 cgraph_update_edge_in_call_site_hash (edge);
1209 return edge;
1212 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1213 CALLEE. DELTA is an integer constant that is to be added to the this
1214 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1216 cgraph_edge *
1217 cgraph_edge::make_direct (cgraph_node *callee)
1219 cgraph_edge *edge = this;
1220 gcc_assert (indirect_unknown_callee);
1222 /* If we are redirecting speculative call, make it non-speculative. */
1223 if (indirect_unknown_callee && speculative)
1225 edge = edge->resolve_speculation (callee->decl);
1227 /* On successful speculation just return the pre existing direct edge. */
1228 if (!indirect_unknown_callee)
1229 return edge;
1232 indirect_unknown_callee = 0;
1233 ggc_free (indirect_info);
1234 indirect_info = NULL;
1236 /* Get the edge out of the indirect edge list. */
1237 if (prev_callee)
1238 prev_callee->next_callee = next_callee;
1239 if (next_callee)
1240 next_callee->prev_callee = prev_callee;
1241 if (!prev_callee)
1242 caller->indirect_calls = next_callee;
1244 /* Put it into the normal callee list */
1245 prev_callee = NULL;
1246 next_callee = caller->callees;
1247 if (caller->callees)
1248 caller->callees->prev_callee = edge;
1249 caller->callees = edge;
1251 /* Insert to callers list of the new callee. */
1252 edge->set_callee (callee);
1254 if (call_stmt
1255 && !gimple_check_call_matching_types (call_stmt, callee->decl, false))
1257 call_stmt_cannot_inline_p = true;
1258 inline_failed = CIF_MISMATCHED_ARGUMENTS;
1261 /* We need to re-determine the inlining status of the edge. */
1262 initialize_inline_failed (edge);
1263 return edge;
1266 /* If necessary, change the function declaration in the call statement
1267 associated with E so that it corresponds to the edge callee. */
1269 gimple *
1270 cgraph_edge::redirect_call_stmt_to_callee (void)
1272 cgraph_edge *e = this;
1274 tree decl = gimple_call_fndecl (e->call_stmt);
1275 gcall *new_stmt;
1276 gimple_stmt_iterator gsi;
1277 bool skip_bounds = false;
1279 if (e->speculative)
1281 cgraph_edge *e2;
1282 gcall *new_stmt;
1283 ipa_ref *ref;
1285 e->speculative_call_info (e, e2, ref);
1286 /* If there already is an direct call (i.e. as a result of inliner's
1287 substitution), forget about speculating. */
1288 if (decl)
1289 e = e->resolve_speculation (decl);
1290 /* If types do not match, speculation was likely wrong.
1291 The direct edge was possibly redirected to the clone with a different
1292 signature. We did not update the call statement yet, so compare it
1293 with the reference that still points to the proper type. */
1294 else if (!gimple_check_call_matching_types (e->call_stmt,
1295 ref->referred->decl,
1296 true))
1298 if (dump_file)
1299 fprintf (dump_file, "Not expanding speculative call of %s -> %s\n"
1300 "Type mismatch.\n",
1301 e->caller->dump_name (),
1302 e->callee->dump_name ());
1303 e = e->resolve_speculation ();
1304 /* We are producing the final function body and will throw away the
1305 callgraph edges really soon. Reset the counts/frequencies to
1306 keep verifier happy in the case of roundoff errors. */
1307 e->count = gimple_bb (e->call_stmt)->count;
1308 e->frequency = compute_call_stmt_bb_frequency
1309 (e->caller->decl, gimple_bb (e->call_stmt));
1311 /* Expand speculation into GIMPLE code. */
1312 else
1314 if (dump_file)
1316 fprintf (dump_file,
1317 "Expanding speculative call of %s -> %s count: ",
1318 e->caller->dump_name (),
1319 e->callee->dump_name ());
1320 e->count.dump (dump_file);
1321 fprintf (dump_file, "\n");
1323 gcc_assert (e2->speculative);
1324 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
1326 profile_probability prob = e->count.probability_in (e->count
1327 + e2->count);
1328 if (prob.initialized_p ())
1330 else if (e->frequency || e2->frequency)
1331 prob = profile_probability::probability_in_gcov_type
1332 (e->frequency, e->frequency + e2->frequency).guessed ();
1333 else
1334 prob = profile_probability::even ();
1335 new_stmt = gimple_ic (e->call_stmt,
1336 dyn_cast<cgraph_node *> (ref->referred),
1337 prob, e->count, e->count + e2->count);
1338 e->speculative = false;
1339 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt,
1340 false);
1342 /* Fix edges for BUILT_IN_CHKP_BNDRET calls attached to the
1343 processed call stmt. */
1344 if (gimple_call_with_bounds_p (new_stmt)
1345 && gimple_call_lhs (new_stmt)
1346 && chkp_retbnd_call_by_val (gimple_call_lhs (e2->call_stmt)))
1348 tree dresult = gimple_call_lhs (new_stmt);
1349 tree iresult = gimple_call_lhs (e2->call_stmt);
1350 gcall *dbndret = chkp_retbnd_call_by_val (dresult);
1351 gcall *ibndret = chkp_retbnd_call_by_val (iresult);
1352 struct cgraph_edge *iedge
1353 = e2->caller->cgraph_node::get_edge (ibndret);
1354 struct cgraph_edge *dedge;
1356 if (dbndret)
1358 dedge = iedge->caller->create_edge (iedge->callee,
1359 dbndret, e->count,
1360 e->frequency);
1361 dedge->frequency = compute_call_stmt_bb_frequency
1362 (dedge->caller->decl, gimple_bb (dedge->call_stmt));
1364 iedge->frequency = compute_call_stmt_bb_frequency
1365 (iedge->caller->decl, gimple_bb (iedge->call_stmt));
1368 e->frequency = compute_call_stmt_bb_frequency
1369 (e->caller->decl, gimple_bb (e->call_stmt));
1370 e2->frequency = compute_call_stmt_bb_frequency
1371 (e2->caller->decl, gimple_bb (e2->call_stmt));
1372 e2->speculative = false;
1373 ref->speculative = false;
1374 ref->stmt = NULL;
1375 /* Indirect edges are not both in the call site hash.
1376 get it updated. */
1377 if (e->caller->call_site_hash)
1378 cgraph_update_edge_in_call_site_hash (e2);
1379 pop_cfun ();
1380 /* Continue redirecting E to proper target. */
1384 /* We might propagate instrumented function pointer into
1385 not instrumented function and vice versa. In such a
1386 case we need to either fix function declaration or
1387 remove bounds from call statement. */
1388 if (flag_check_pointer_bounds && e->callee)
1389 skip_bounds = chkp_redirect_edge (e);
1391 if (e->indirect_unknown_callee
1392 || (decl == e->callee->decl
1393 && !skip_bounds))
1394 return e->call_stmt;
1396 if (flag_checking && decl)
1398 cgraph_node *node = cgraph_node::get (decl);
1399 gcc_assert (!node || !node->clone.combined_args_to_skip);
1402 if (symtab->dump_file)
1404 fprintf (symtab->dump_file, "updating call of %s -> %s: ",
1405 e->caller->dump_name (), e->callee->dump_name ());
1406 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1407 if (e->callee->clone.combined_args_to_skip)
1409 fprintf (symtab->dump_file, " combined args to skip: ");
1410 dump_bitmap (symtab->dump_file,
1411 e->callee->clone.combined_args_to_skip);
1415 if (e->callee->clone.combined_args_to_skip
1416 || skip_bounds)
1418 int lp_nr;
1420 new_stmt = e->call_stmt;
1421 if (e->callee->clone.combined_args_to_skip)
1422 new_stmt
1423 = gimple_call_copy_skip_args (new_stmt,
1424 e->callee->clone.combined_args_to_skip);
1425 if (skip_bounds)
1426 new_stmt = chkp_copy_call_skip_bounds (new_stmt);
1428 tree old_fntype = gimple_call_fntype (e->call_stmt);
1429 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1430 cgraph_node *origin = e->callee;
1431 while (origin->clone_of)
1432 origin = origin->clone_of;
1434 if ((origin->former_clone_of
1435 && old_fntype == TREE_TYPE (origin->former_clone_of))
1436 || old_fntype == TREE_TYPE (origin->decl))
1437 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1438 else
1440 bitmap skip = e->callee->clone.combined_args_to_skip;
1441 tree t = cgraph_build_function_type_skip_args (old_fntype, skip,
1442 false);
1443 gimple_call_set_fntype (new_stmt, t);
1446 if (gimple_vdef (new_stmt)
1447 && TREE_CODE (gimple_vdef (new_stmt)) == SSA_NAME)
1448 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
1450 gsi = gsi_for_stmt (e->call_stmt);
1452 /* For optimized away parameters, add on the caller side
1453 before the call
1454 DEBUG D#X => parm_Y(D)
1455 stmts and associate D#X with parm in decl_debug_args_lookup
1456 vector to say for debug info that if parameter parm had been passed,
1457 it would have value parm_Y(D). */
1458 if (e->callee->clone.combined_args_to_skip && MAY_HAVE_DEBUG_STMTS)
1460 vec<tree, va_gc> **debug_args
1461 = decl_debug_args_lookup (e->callee->decl);
1462 tree old_decl = gimple_call_fndecl (e->call_stmt);
1463 if (debug_args && old_decl)
1465 tree parm;
1466 unsigned i = 0, num;
1467 unsigned len = vec_safe_length (*debug_args);
1468 unsigned nargs = gimple_call_num_args (e->call_stmt);
1469 for (parm = DECL_ARGUMENTS (old_decl), num = 0;
1470 parm && num < nargs;
1471 parm = DECL_CHAIN (parm), num++)
1472 if (bitmap_bit_p (e->callee->clone.combined_args_to_skip, num)
1473 && is_gimple_reg (parm))
1475 unsigned last = i;
1477 while (i < len && (**debug_args)[i] != DECL_ORIGIN (parm))
1478 i += 2;
1479 if (i >= len)
1481 i = 0;
1482 while (i < last
1483 && (**debug_args)[i] != DECL_ORIGIN (parm))
1484 i += 2;
1485 if (i >= last)
1486 continue;
1488 tree ddecl = (**debug_args)[i + 1];
1489 tree arg = gimple_call_arg (e->call_stmt, num);
1490 if (!useless_type_conversion_p (TREE_TYPE (ddecl),
1491 TREE_TYPE (arg)))
1493 tree rhs1;
1494 if (!fold_convertible_p (TREE_TYPE (ddecl), arg))
1495 continue;
1496 if (TREE_CODE (arg) == SSA_NAME
1497 && gimple_assign_cast_p (SSA_NAME_DEF_STMT (arg))
1498 && (rhs1
1499 = gimple_assign_rhs1 (SSA_NAME_DEF_STMT (arg)))
1500 && useless_type_conversion_p (TREE_TYPE (ddecl),
1501 TREE_TYPE (rhs1)))
1502 arg = rhs1;
1503 else
1504 arg = fold_convert (TREE_TYPE (ddecl), arg);
1507 gimple *def_temp
1508 = gimple_build_debug_bind (ddecl, unshare_expr (arg),
1509 e->call_stmt);
1510 gsi_insert_before (&gsi, def_temp, GSI_SAME_STMT);
1515 gsi_replace (&gsi, new_stmt, false);
1516 /* We need to defer cleaning EH info on the new statement to
1517 fixup-cfg. We may not have dominator information at this point
1518 and thus would end up with unreachable blocks and have no way
1519 to communicate that we need to run CFG cleanup then. */
1520 lp_nr = lookup_stmt_eh_lp (e->call_stmt);
1521 if (lp_nr != 0)
1523 remove_stmt_from_eh_lp (e->call_stmt);
1524 add_stmt_to_eh_lp (new_stmt, lp_nr);
1527 else
1529 new_stmt = e->call_stmt;
1530 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1531 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1534 /* If changing the call to __cxa_pure_virtual or similar noreturn function,
1535 adjust gimple_call_fntype too. */
1536 if (gimple_call_noreturn_p (new_stmt)
1537 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (e->callee->decl)))
1538 && TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl))
1539 && (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl)))
1540 == void_type_node))
1541 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1543 /* If the call becomes noreturn, remove the LHS if possible. */
1544 tree lhs = gimple_call_lhs (new_stmt);
1545 if (lhs
1546 && gimple_call_noreturn_p (new_stmt)
1547 && (VOID_TYPE_P (TREE_TYPE (gimple_call_fntype (new_stmt)))
1548 || should_remove_lhs_p (lhs)))
1550 if (TREE_CODE (lhs) == SSA_NAME)
1552 tree var = create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e->caller->decl),
1553 TREE_TYPE (lhs), NULL);
1554 var = get_or_create_ssa_default_def
1555 (DECL_STRUCT_FUNCTION (e->caller->decl), var);
1556 gimple *set_stmt = gimple_build_assign (lhs, var);
1557 gsi = gsi_for_stmt (new_stmt);
1558 gsi_insert_before_without_update (&gsi, set_stmt, GSI_SAME_STMT);
1559 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), set_stmt);
1561 gimple_call_set_lhs (new_stmt, NULL_TREE);
1562 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1565 /* If new callee has no static chain, remove it. */
1566 if (gimple_call_chain (new_stmt) && !DECL_STATIC_CHAIN (e->callee->decl))
1568 gimple_call_set_chain (new_stmt, NULL);
1569 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1572 maybe_remove_unused_call_args (DECL_STRUCT_FUNCTION (e->caller->decl),
1573 new_stmt);
1575 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt, false);
1577 if (symtab->dump_file)
1579 fprintf (symtab->dump_file, " updated to:");
1580 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1582 return new_stmt;
1585 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1586 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1587 of OLD_STMT if it was previously call statement.
1588 If NEW_STMT is NULL, the call has been dropped without any
1589 replacement. */
1591 static void
1592 cgraph_update_edges_for_call_stmt_node (cgraph_node *node,
1593 gimple *old_stmt, tree old_call,
1594 gimple *new_stmt)
1596 tree new_call = (new_stmt && is_gimple_call (new_stmt))
1597 ? gimple_call_fndecl (new_stmt) : 0;
1599 /* We are seeing indirect calls, then there is nothing to update. */
1600 if (!new_call && !old_call)
1601 return;
1602 /* See if we turned indirect call into direct call or folded call to one builtin
1603 into different builtin. */
1604 if (old_call != new_call)
1606 cgraph_edge *e = node->get_edge (old_stmt);
1607 cgraph_edge *ne = NULL;
1608 profile_count count;
1609 int frequency;
1611 if (e)
1613 /* Keep calls marked as dead dead. */
1614 if (new_stmt && is_gimple_call (new_stmt) && e->callee
1615 && DECL_BUILT_IN_CLASS (e->callee->decl) == BUILT_IN_NORMAL
1616 && DECL_FUNCTION_CODE (e->callee->decl) == BUILT_IN_UNREACHABLE)
1618 node->get_edge (old_stmt)->set_call_stmt
1619 (as_a <gcall *> (new_stmt));
1620 return;
1622 /* See if the edge is already there and has the correct callee. It
1623 might be so because of indirect inlining has already updated
1624 it. We also might've cloned and redirected the edge. */
1625 if (new_call && e->callee)
1627 cgraph_node *callee = e->callee;
1628 while (callee)
1630 if (callee->decl == new_call
1631 || callee->former_clone_of == new_call)
1633 e->set_call_stmt (as_a <gcall *> (new_stmt));
1634 return;
1636 callee = callee->clone_of;
1640 /* Otherwise remove edge and create new one; we can't simply redirect
1641 since function has changed, so inline plan and other information
1642 attached to edge is invalid. */
1643 count = e->count;
1644 frequency = e->frequency;
1645 if (e->indirect_unknown_callee || e->inline_failed)
1646 e->remove ();
1647 else
1648 e->callee->remove_symbol_and_inline_clones ();
1650 else if (new_call)
1652 /* We are seeing new direct call; compute profile info based on BB. */
1653 basic_block bb = gimple_bb (new_stmt);
1654 count = bb->count;
1655 frequency = compute_call_stmt_bb_frequency (current_function_decl,
1656 bb);
1659 if (new_call)
1661 ne = node->create_edge (cgraph_node::get_create (new_call),
1662 as_a <gcall *> (new_stmt), count,
1663 frequency);
1664 gcc_assert (ne->inline_failed);
1667 /* We only updated the call stmt; update pointer in cgraph edge.. */
1668 else if (old_stmt != new_stmt)
1669 node->get_edge (old_stmt)->set_call_stmt (as_a <gcall *> (new_stmt));
1672 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1673 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1674 of OLD_STMT before it was updated (updating can happen inplace). */
1676 void
1677 cgraph_update_edges_for_call_stmt (gimple *old_stmt, tree old_decl,
1678 gimple *new_stmt)
1680 cgraph_node *orig = cgraph_node::get (cfun->decl);
1681 cgraph_node *node;
1683 gcc_checking_assert (orig);
1684 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1685 if (orig->clones)
1686 for (node = orig->clones; node != orig;)
1688 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1689 if (node->clones)
1690 node = node->clones;
1691 else if (node->next_sibling_clone)
1692 node = node->next_sibling_clone;
1693 else
1695 while (node != orig && !node->next_sibling_clone)
1696 node = node->clone_of;
1697 if (node != orig)
1698 node = node->next_sibling_clone;
1704 /* Remove all callees from the node. */
1706 void
1707 cgraph_node::remove_callees (void)
1709 cgraph_edge *e, *f;
1711 /* It is sufficient to remove the edges from the lists of callers of
1712 the callees. The callee list of the node can be zapped with one
1713 assignment. */
1714 for (e = callees; e; e = f)
1716 f = e->next_callee;
1717 symtab->call_edge_removal_hooks (e);
1718 if (!e->indirect_unknown_callee)
1719 e->remove_callee ();
1720 symtab->free_edge (e);
1722 for (e = indirect_calls; e; e = f)
1724 f = e->next_callee;
1725 symtab->call_edge_removal_hooks (e);
1726 if (!e->indirect_unknown_callee)
1727 e->remove_callee ();
1728 symtab->free_edge (e);
1730 indirect_calls = NULL;
1731 callees = NULL;
1732 if (call_site_hash)
1734 call_site_hash->empty ();
1735 call_site_hash = NULL;
1739 /* Remove all callers from the node. */
1741 void
1742 cgraph_node::remove_callers (void)
1744 cgraph_edge *e, *f;
1746 /* It is sufficient to remove the edges from the lists of callees of
1747 the callers. The caller list of the node can be zapped with one
1748 assignment. */
1749 for (e = callers; e; e = f)
1751 f = e->next_caller;
1752 symtab->call_edge_removal_hooks (e);
1753 e->remove_caller ();
1754 symtab->free_edge (e);
1756 callers = NULL;
1759 /* Helper function for cgraph_release_function_body and free_lang_data.
1760 It releases body from function DECL without having to inspect its
1761 possibly non-existent symtab node. */
1763 void
1764 release_function_body (tree decl)
1766 function *fn = DECL_STRUCT_FUNCTION (decl);
1767 if (fn)
1769 if (fn->cfg
1770 && loops_for_fn (fn))
1772 fn->curr_properties &= ~PROP_loops;
1773 loop_optimizer_finalize (fn);
1775 if (fn->gimple_df)
1777 delete_tree_ssa (fn);
1778 fn->eh = NULL;
1780 if (fn->cfg)
1782 gcc_assert (!dom_info_available_p (fn, CDI_DOMINATORS));
1783 gcc_assert (!dom_info_available_p (fn, CDI_POST_DOMINATORS));
1784 delete_tree_cfg_annotations (fn);
1785 clear_edges (fn);
1786 fn->cfg = NULL;
1788 if (fn->value_histograms)
1789 free_histograms (fn);
1790 gimple_set_body (decl, NULL);
1791 /* Struct function hangs a lot of data that would leak if we didn't
1792 removed all pointers to it. */
1793 ggc_free (fn);
1794 DECL_STRUCT_FUNCTION (decl) = NULL;
1796 DECL_SAVED_TREE (decl) = NULL;
1799 /* Release memory used to represent body of function.
1800 Use this only for functions that are released before being translated to
1801 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1802 are free'd in final.c via free_after_compilation().
1803 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1805 void
1806 cgraph_node::release_body (bool keep_arguments)
1808 ipa_transforms_to_apply.release ();
1809 if (!used_as_abstract_origin && symtab->state != PARSING)
1811 DECL_RESULT (decl) = NULL;
1813 if (!keep_arguments)
1814 DECL_ARGUMENTS (decl) = NULL;
1816 /* If the node is abstract and needed, then do not clear
1817 DECL_INITIAL of its associated function declaration because it's
1818 needed to emit debug info later. */
1819 if (!used_as_abstract_origin && DECL_INITIAL (decl))
1820 DECL_INITIAL (decl) = error_mark_node;
1821 release_function_body (decl);
1822 if (lto_file_data)
1824 lto_free_function_in_decl_state_for_node (this);
1825 lto_file_data = NULL;
1829 /* Remove function from symbol table. */
1831 void
1832 cgraph_node::remove (void)
1834 cgraph_node *n;
1835 int uid = this->uid;
1837 if (symtab->ipa_clones_dump_file && symtab->cloned_nodes.contains (this))
1838 fprintf (symtab->ipa_clones_dump_file,
1839 "Callgraph removal;%s;%d;%s;%d;%d\n", asm_name (), order,
1840 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl),
1841 DECL_SOURCE_COLUMN (decl));
1843 symtab->call_cgraph_removal_hooks (this);
1844 remove_callers ();
1845 remove_callees ();
1846 ipa_transforms_to_apply.release ();
1848 /* Incremental inlining access removed nodes stored in the postorder list.
1850 force_output = false;
1851 forced_by_abi = false;
1852 for (n = nested; n; n = n->next_nested)
1853 n->origin = NULL;
1854 nested = NULL;
1855 if (origin)
1857 cgraph_node **node2 = &origin->nested;
1859 while (*node2 != this)
1860 node2 = &(*node2)->next_nested;
1861 *node2 = next_nested;
1863 unregister ();
1864 if (prev_sibling_clone)
1865 prev_sibling_clone->next_sibling_clone = next_sibling_clone;
1866 else if (clone_of)
1867 clone_of->clones = next_sibling_clone;
1868 if (next_sibling_clone)
1869 next_sibling_clone->prev_sibling_clone = prev_sibling_clone;
1870 if (clones)
1872 cgraph_node *n, *next;
1874 if (clone_of)
1876 for (n = clones; n->next_sibling_clone; n = n->next_sibling_clone)
1877 n->clone_of = clone_of;
1878 n->clone_of = clone_of;
1879 n->next_sibling_clone = clone_of->clones;
1880 if (clone_of->clones)
1881 clone_of->clones->prev_sibling_clone = n;
1882 clone_of->clones = clones;
1884 else
1886 /* We are removing node with clones. This makes clones inconsistent,
1887 but assume they will be removed subsequently and just keep clone
1888 tree intact. This can happen in unreachable function removal since
1889 we remove unreachable functions in random order, not by bottom-up
1890 walk of clone trees. */
1891 for (n = clones; n; n = next)
1893 next = n->next_sibling_clone;
1894 n->next_sibling_clone = NULL;
1895 n->prev_sibling_clone = NULL;
1896 n->clone_of = NULL;
1901 /* While all the clones are removed after being proceeded, the function
1902 itself is kept in the cgraph even after it is compiled. Check whether
1903 we are done with this body and reclaim it proactively if this is the case.
1905 if (symtab->state != LTO_STREAMING)
1907 n = cgraph_node::get (decl);
1908 if (!n
1909 || (!n->clones && !n->clone_of && !n->global.inlined_to
1910 && ((symtab->global_info_ready || in_lto_p)
1911 && (TREE_ASM_WRITTEN (n->decl)
1912 || DECL_EXTERNAL (n->decl)
1913 || !n->analyzed
1914 || (!flag_wpa && n->in_other_partition)))))
1915 release_body ();
1917 else
1919 lto_free_function_in_decl_state_for_node (this);
1920 lto_file_data = NULL;
1923 decl = NULL;
1924 if (call_site_hash)
1926 call_site_hash->empty ();
1927 call_site_hash = NULL;
1930 if (instrumented_version)
1932 instrumented_version->instrumented_version = NULL;
1933 instrumented_version = NULL;
1936 symtab->release_symbol (this, uid);
1939 /* Likewise indicate that a node is having address taken. */
1941 void
1942 cgraph_node::mark_address_taken (void)
1944 /* Indirect inlining can figure out that all uses of the address are
1945 inlined. */
1946 if (global.inlined_to)
1948 gcc_assert (cfun->after_inlining);
1949 gcc_assert (callers->indirect_inlining_edge);
1950 return;
1952 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1953 IPA_REF_ADDR reference exists (and thus it should be set on node
1954 representing alias we take address of) and as a test whether address
1955 of the object was taken (and thus it should be set on node alias is
1956 referring to). We should remove the first use and the remove the
1957 following set. */
1958 address_taken = 1;
1959 cgraph_node *node = ultimate_alias_target ();
1960 node->address_taken = 1;
1963 /* Return local info for the compiled function. */
1965 cgraph_local_info *
1966 cgraph_node::local_info (tree decl)
1968 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1969 cgraph_node *node = get (decl);
1970 if (!node)
1971 return NULL;
1972 return &node->ultimate_alias_target ()->local;
1975 /* Return local info for the compiled function. */
1977 cgraph_rtl_info *
1978 cgraph_node::rtl_info (tree decl)
1980 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1981 cgraph_node *node = get (decl);
1982 if (!node)
1983 return NULL;
1984 enum availability avail;
1985 node = node->ultimate_alias_target (&avail);
1986 if (decl != current_function_decl
1987 && (avail < AVAIL_AVAILABLE
1988 || (node->decl != current_function_decl
1989 && !TREE_ASM_WRITTEN (node->decl))))
1990 return NULL;
1991 /* Allocate if it doesn't exist. */
1992 if (node->rtl == NULL)
1993 node->rtl = ggc_cleared_alloc<cgraph_rtl_info> ();
1994 return node->rtl;
1997 /* Return a string describing the failure REASON. */
1999 const char*
2000 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
2002 #undef DEFCIFCODE
2003 #define DEFCIFCODE(code, type, string) string,
2005 static const char *cif_string_table[CIF_N_REASONS] = {
2006 #include "cif-code.def"
2009 /* Signedness of an enum type is implementation defined, so cast it
2010 to unsigned before testing. */
2011 gcc_assert ((unsigned) reason < CIF_N_REASONS);
2012 return cif_string_table[reason];
2015 /* Return a type describing the failure REASON. */
2017 cgraph_inline_failed_type_t
2018 cgraph_inline_failed_type (cgraph_inline_failed_t reason)
2020 #undef DEFCIFCODE
2021 #define DEFCIFCODE(code, type, string) type,
2023 static cgraph_inline_failed_type_t cif_type_table[CIF_N_REASONS] = {
2024 #include "cif-code.def"
2027 /* Signedness of an enum type is implementation defined, so cast it
2028 to unsigned before testing. */
2029 gcc_assert ((unsigned) reason < CIF_N_REASONS);
2030 return cif_type_table[reason];
2033 /* Names used to print out the availability enum. */
2034 const char * const cgraph_availability_names[] =
2035 {"unset", "not_available", "overwritable", "available", "local"};
2037 /* Output flags of edge to a file F. */
2039 void
2040 cgraph_edge::dump_edge_flags (FILE *f)
2042 if (speculative)
2043 fprintf (f, "(speculative) ");
2044 if (!inline_failed)
2045 fprintf (f, "(inlined) ");
2046 if (call_stmt_cannot_inline_p)
2047 fprintf (f, "(call_stmt_cannot_inline_p) ");
2048 if (indirect_inlining_edge)
2049 fprintf (f, "(indirect_inlining) ");
2050 if (count.initialized_p ())
2052 fprintf (f, "(");
2053 count.dump (f);
2054 fprintf (f, ")");
2056 if (frequency)
2057 fprintf (f, "(%.2f per call) ", frequency / (double)CGRAPH_FREQ_BASE);
2058 if (can_throw_external)
2059 fprintf (f, "(can throw external) ");
2062 /* Dump call graph node to file F. */
2064 void
2065 cgraph_node::dump (FILE *f)
2067 cgraph_edge *edge;
2069 dump_base (f);
2071 if (global.inlined_to)
2072 fprintf (f, " Function %s is inline copy in %s\n",
2073 dump_name (),
2074 global.inlined_to->dump_name ());
2075 if (clone_of)
2076 fprintf (f, " Clone of %s\n", clone_of->dump_asm_name ());
2077 if (symtab->function_flags_ready)
2078 fprintf (f, " Availability: %s\n",
2079 cgraph_availability_names [get_availability ()]);
2081 if (profile_id)
2082 fprintf (f, " Profile id: %i\n",
2083 profile_id);
2084 fprintf (f, " First run: %i\n", tp_first_run);
2085 cgraph_function_version_info *vi = function_version ();
2086 if (vi != NULL)
2088 fprintf (f, " Version info: ");
2089 if (vi->prev != NULL)
2091 fprintf (f, "prev: ");
2092 fprintf (f, "%s ", vi->prev->this_node->dump_asm_name ());
2094 if (vi->next != NULL)
2096 fprintf (f, "next: ");
2097 fprintf (f, "%s ", vi->next->this_node->dump_asm_name ());
2099 if (vi->dispatcher_resolver != NULL_TREE)
2100 fprintf (f, "dispatcher: %s",
2101 lang_hooks.decl_printable_name (vi->dispatcher_resolver, 2));
2103 fprintf (f, "\n");
2105 fprintf (f, " Function flags:");
2106 if (count.initialized_p ())
2108 fprintf (f, " count: ");
2109 count.dump (f);
2111 if (origin)
2112 fprintf (f, " nested in: %s", origin->asm_name ());
2113 if (gimple_has_body_p (decl))
2114 fprintf (f, " body");
2115 if (process)
2116 fprintf (f, " process");
2117 if (local.local)
2118 fprintf (f, " local");
2119 if (local.redefined_extern_inline)
2120 fprintf (f, " redefined_extern_inline");
2121 if (only_called_at_startup)
2122 fprintf (f, " only_called_at_startup");
2123 if (only_called_at_exit)
2124 fprintf (f, " only_called_at_exit");
2125 if (tm_clone)
2126 fprintf (f, " tm_clone");
2127 if (calls_comdat_local)
2128 fprintf (f, " calls_comdat_local");
2129 if (icf_merged)
2130 fprintf (f, " icf_merged");
2131 if (merged_comdat)
2132 fprintf (f, " merged_comdat");
2133 if (split_part)
2134 fprintf (f, " split_part");
2135 if (indirect_call_target)
2136 fprintf (f, " indirect_call_target");
2137 if (nonfreeing_fn)
2138 fprintf (f, " nonfreeing_fn");
2139 if (DECL_STATIC_CONSTRUCTOR (decl))
2140 fprintf (f," static_constructor (priority:%i)", get_init_priority ());
2141 if (DECL_STATIC_DESTRUCTOR (decl))
2142 fprintf (f," static_destructor (priority:%i)", get_fini_priority ());
2143 if (frequency == NODE_FREQUENCY_HOT)
2144 fprintf (f, " hot");
2145 if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2146 fprintf (f, " unlikely_executed");
2147 if (frequency == NODE_FREQUENCY_EXECUTED_ONCE)
2148 fprintf (f, " executed_once");
2149 if (only_called_at_startup)
2150 fprintf (f, " only_called_at_startup");
2151 if (only_called_at_exit)
2152 fprintf (f, " only_called_at_exit");
2153 if (opt_for_fn (decl, optimize_size))
2154 fprintf (f, " optimize_size");
2155 if (parallelized_function)
2156 fprintf (f, " parallelized_function");
2158 fprintf (f, "\n");
2160 if (thunk.thunk_p)
2162 fprintf (f, " Thunk");
2163 if (thunk.alias)
2164 fprintf (f, " of %s (asm: %s)",
2165 lang_hooks.decl_printable_name (thunk.alias, 2),
2166 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2167 fprintf (f, " fixed offset %i virtual value %i has "
2168 "virtual offset %i)\n",
2169 (int)thunk.fixed_offset,
2170 (int)thunk.virtual_value,
2171 (int)thunk.virtual_offset_p);
2173 if (alias && thunk.alias
2174 && DECL_P (thunk.alias))
2176 fprintf (f, " Alias of %s",
2177 lang_hooks.decl_printable_name (thunk.alias, 2));
2178 if (DECL_ASSEMBLER_NAME_SET_P (thunk.alias))
2179 fprintf (f, " (asm: %s)",
2180 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2181 fprintf (f, "\n");
2184 fprintf (f, " Called by: ");
2186 profile_count sum = profile_count::zero ();
2187 for (edge = callers; edge; edge = edge->next_caller)
2189 fprintf (f, "%s ", edge->caller->dump_name ());
2190 edge->dump_edge_flags (f);
2191 if (edge->count.initialized_p ())
2192 sum += edge->count;
2195 fprintf (f, "\n Calls: ");
2196 for (edge = callees; edge; edge = edge->next_callee)
2198 fprintf (f, "%s ", edge->callee->dump_name ());
2199 edge->dump_edge_flags (f);
2201 fprintf (f, "\n");
2203 if (count.initialized_p ())
2205 bool ok = true;
2206 bool min = false;
2207 ipa_ref *ref;
2209 FOR_EACH_ALIAS (this, ref)
2210 if (dyn_cast <cgraph_node *> (ref->referring)->count.initialized_p ())
2211 sum += dyn_cast <cgraph_node *> (ref->referring)->count;
2213 if (global.inlined_to
2214 || (symtab->state < EXPANSION
2215 && ultimate_alias_target () == this && only_called_directly_p ()))
2216 ok = !count.differs_from_p (sum);
2217 else if (count > profile_count::from_gcov_type (100)
2218 && count < sum.apply_scale (99, 100))
2219 ok = false, min = true;
2220 if (!ok)
2222 fprintf (f, " Invalid sum of caller counts ");
2223 sum.dump (f);
2224 if (min)
2225 fprintf (f, ", should be at most ");
2226 else
2227 fprintf (f, ", should be ");
2228 count.dump (f);
2229 fprintf (f, "\n");
2233 for (edge = indirect_calls; edge; edge = edge->next_callee)
2235 if (edge->indirect_info->polymorphic)
2237 fprintf (f, " Polymorphic indirect call of type ");
2238 print_generic_expr (f, edge->indirect_info->otr_type, TDF_SLIM);
2239 fprintf (f, " token:%i", (int) edge->indirect_info->otr_token);
2241 else
2242 fprintf (f, " Indirect call");
2243 edge->dump_edge_flags (f);
2244 if (edge->indirect_info->param_index != -1)
2246 fprintf (f, " of param:%i", edge->indirect_info->param_index);
2247 if (edge->indirect_info->agg_contents)
2248 fprintf (f, " loaded from %s %s at offset %i",
2249 edge->indirect_info->member_ptr ? "member ptr" : "aggregate",
2250 edge->indirect_info->by_ref ? "passed by reference":"",
2251 (int)edge->indirect_info->offset);
2252 if (edge->indirect_info->vptr_changed)
2253 fprintf (f, " (vptr maybe changed)");
2255 fprintf (f, "\n");
2256 if (edge->indirect_info->polymorphic)
2257 edge->indirect_info->context.dump (f);
2260 if (instrumentation_clone)
2261 fprintf (f, " Is instrumented version.\n");
2262 else if (instrumented_version)
2263 fprintf (f, " Has instrumented version.\n");
2266 /* Dump call graph node NODE to stderr. */
2268 DEBUG_FUNCTION void
2269 cgraph_node::debug (void)
2271 dump (stderr);
2274 /* Dump the callgraph to file F. */
2276 void
2277 cgraph_node::dump_cgraph (FILE *f)
2279 cgraph_node *node;
2281 fprintf (f, "callgraph:\n\n");
2282 FOR_EACH_FUNCTION (node)
2283 node->dump (f);
2286 /* Return true when the DECL can possibly be inlined. */
2288 bool
2289 cgraph_function_possibly_inlined_p (tree decl)
2291 if (!symtab->global_info_ready)
2292 return !DECL_UNINLINABLE (decl);
2293 return DECL_POSSIBLY_INLINED (decl);
2296 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2297 void
2298 cgraph_node::unnest (void)
2300 cgraph_node **node2 = &origin->nested;
2301 gcc_assert (origin);
2303 while (*node2 != this)
2304 node2 = &(*node2)->next_nested;
2305 *node2 = next_nested;
2306 origin = NULL;
2309 /* Return function availability. See cgraph.h for description of individual
2310 return values. */
2311 enum availability
2312 cgraph_node::get_availability (symtab_node *ref)
2314 if (ref)
2316 cgraph_node *cref = dyn_cast <cgraph_node *> (ref);
2317 if (cref)
2318 ref = cref->global.inlined_to;
2320 enum availability avail;
2321 if (!analyzed)
2322 avail = AVAIL_NOT_AVAILABLE;
2323 else if (local.local)
2324 avail = AVAIL_LOCAL;
2325 else if (global.inlined_to)
2326 avail = AVAIL_AVAILABLE;
2327 else if (transparent_alias)
2328 ultimate_alias_target (&avail, ref);
2329 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl))
2330 || lookup_attribute ("noipa", DECL_ATTRIBUTES (decl)))
2331 avail = AVAIL_INTERPOSABLE;
2332 else if (!externally_visible)
2333 avail = AVAIL_AVAILABLE;
2334 /* If this is a reference from symbol itself and there are no aliases, we
2335 may be sure that the symbol was not interposed by something else because
2336 the symbol itself would be unreachable otherwise.
2338 Also comdat groups are always resolved in groups. */
2339 else if ((this == ref && !has_aliases_p ())
2340 || (ref && get_comdat_group ()
2341 && get_comdat_group () == ref->get_comdat_group ()))
2342 avail = AVAIL_AVAILABLE;
2343 /* Inline functions are safe to be analyzed even if their symbol can
2344 be overwritten at runtime. It is not meaningful to enforce any sane
2345 behavior on replacing inline function by different body. */
2346 else if (DECL_DECLARED_INLINE_P (decl))
2347 avail = AVAIL_AVAILABLE;
2349 /* If the function can be overwritten, return OVERWRITABLE. Take
2350 care at least of two notable extensions - the COMDAT functions
2351 used to share template instantiations in C++ (this is symmetric
2352 to code cp_cannot_inline_tree_fn and probably shall be shared and
2353 the inlinability hooks completely eliminated). */
2355 else if (decl_replaceable_p (decl) && !DECL_EXTERNAL (decl))
2356 avail = AVAIL_INTERPOSABLE;
2357 else avail = AVAIL_AVAILABLE;
2359 return avail;
2362 /* Worker for cgraph_node_can_be_local_p. */
2363 static bool
2364 cgraph_node_cannot_be_local_p_1 (cgraph_node *node, void *)
2366 return !(!node->force_output
2367 && ((DECL_COMDAT (node->decl)
2368 && !node->forced_by_abi
2369 && !node->used_from_object_file_p ()
2370 && !node->same_comdat_group)
2371 || !node->externally_visible));
2374 /* Return true if cgraph_node can be made local for API change.
2375 Extern inline functions and C++ COMDAT functions can be made local
2376 at the expense of possible code size growth if function is used in multiple
2377 compilation units. */
2378 bool
2379 cgraph_node::can_be_local_p (void)
2381 return (!address_taken
2382 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1,
2383 NULL, true));
2386 /* Call callback on cgraph_node, thunks and aliases associated to cgraph_node.
2387 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
2388 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
2389 skipped. */
2390 bool
2391 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback)
2392 (cgraph_node *, void *),
2393 void *data,
2394 bool include_overwritable,
2395 bool exclude_virtual_thunks)
2397 cgraph_edge *e;
2398 ipa_ref *ref;
2399 enum availability avail = AVAIL_AVAILABLE;
2401 if (include_overwritable
2402 || (avail = get_availability ()) > AVAIL_INTERPOSABLE)
2404 if (callback (this, data))
2405 return true;
2407 FOR_EACH_ALIAS (this, ref)
2409 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2410 if (include_overwritable
2411 || alias->get_availability () > AVAIL_INTERPOSABLE)
2412 if (alias->call_for_symbol_thunks_and_aliases (callback, data,
2413 include_overwritable,
2414 exclude_virtual_thunks))
2415 return true;
2417 if (avail <= AVAIL_INTERPOSABLE)
2418 return false;
2419 for (e = callers; e; e = e->next_caller)
2420 if (e->caller->thunk.thunk_p
2421 && (include_overwritable
2422 || e->caller->get_availability () > AVAIL_INTERPOSABLE)
2423 && !(exclude_virtual_thunks
2424 && e->caller->thunk.virtual_offset_p))
2425 if (e->caller->call_for_symbol_thunks_and_aliases (callback, data,
2426 include_overwritable,
2427 exclude_virtual_thunks))
2428 return true;
2430 return false;
2433 /* Worker to bring NODE local. */
2435 bool
2436 cgraph_node::make_local (cgraph_node *node, void *)
2438 gcc_checking_assert (node->can_be_local_p ());
2439 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2441 node->make_decl_local ();
2442 node->set_section (NULL);
2443 node->set_comdat_group (NULL);
2444 node->externally_visible = false;
2445 node->forced_by_abi = false;
2446 node->local.local = true;
2447 node->set_section (NULL);
2448 node->unique_name = ((node->resolution == LDPR_PREVAILING_DEF_IRONLY
2449 || node->resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
2450 && !flag_incremental_link);
2451 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2452 gcc_assert (node->get_availability () == AVAIL_LOCAL);
2454 return false;
2457 /* Bring cgraph node local. */
2459 void
2460 cgraph_node::make_local (void)
2462 call_for_symbol_thunks_and_aliases (cgraph_node::make_local, NULL, true);
2465 /* Worker to set nothrow flag. */
2467 static void
2468 set_nothrow_flag_1 (cgraph_node *node, bool nothrow, bool non_call,
2469 bool *changed)
2471 cgraph_edge *e;
2473 if (nothrow && !TREE_NOTHROW (node->decl))
2475 /* With non-call exceptions we can't say for sure if other function body
2476 was not possibly optimized to stil throw. */
2477 if (!non_call || node->binds_to_current_def_p ())
2479 TREE_NOTHROW (node->decl) = true;
2480 *changed = true;
2481 for (e = node->callers; e; e = e->next_caller)
2482 e->can_throw_external = false;
2485 else if (!nothrow && TREE_NOTHROW (node->decl))
2487 TREE_NOTHROW (node->decl) = false;
2488 *changed = true;
2490 ipa_ref *ref;
2491 FOR_EACH_ALIAS (node, ref)
2493 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2494 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2495 set_nothrow_flag_1 (alias, nothrow, non_call, changed);
2497 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2498 if (e->caller->thunk.thunk_p
2499 && (!nothrow || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2500 set_nothrow_flag_1 (e->caller, nothrow, non_call, changed);
2503 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2504 if any to NOTHROW. */
2506 bool
2507 cgraph_node::set_nothrow_flag (bool nothrow)
2509 bool changed = false;
2510 bool non_call = opt_for_fn (decl, flag_non_call_exceptions);
2512 if (!nothrow || get_availability () > AVAIL_INTERPOSABLE)
2513 set_nothrow_flag_1 (this, nothrow, non_call, &changed);
2514 else
2516 ipa_ref *ref;
2518 FOR_EACH_ALIAS (this, ref)
2520 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2521 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2522 set_nothrow_flag_1 (alias, nothrow, non_call, &changed);
2525 return changed;
2528 /* Worker to set_const_flag. */
2530 static void
2531 set_const_flag_1 (cgraph_node *node, bool set_const, bool looping,
2532 bool *changed)
2534 /* Static constructors and destructors without a side effect can be
2535 optimized out. */
2536 if (set_const && !looping)
2538 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2540 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2541 *changed = true;
2543 if (DECL_STATIC_DESTRUCTOR (node->decl))
2545 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2546 *changed = true;
2549 if (!set_const)
2551 if (TREE_READONLY (node->decl))
2553 TREE_READONLY (node->decl) = 0;
2554 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2555 *changed = true;
2558 else
2560 /* Consider function:
2562 bool a(int *p)
2564 return *p==*p;
2567 During early optimization we will turn this into:
2569 bool a(int *p)
2571 return true;
2574 Now if this function will be detected as CONST however when interposed
2575 it may end up being just pure. We always must assume the worst
2576 scenario here. */
2577 if (TREE_READONLY (node->decl))
2579 if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2581 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2582 *changed = true;
2585 else if (node->binds_to_current_def_p ())
2587 TREE_READONLY (node->decl) = true;
2588 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2589 DECL_PURE_P (node->decl) = false;
2590 *changed = true;
2592 else
2594 if (dump_file && (dump_flags & TDF_DETAILS))
2595 fprintf (dump_file, "Dropping state to PURE because function does "
2596 "not bind to current def.\n");
2597 if (!DECL_PURE_P (node->decl))
2599 DECL_PURE_P (node->decl) = true;
2600 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2601 *changed = true;
2603 else if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2605 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2606 *changed = true;
2611 ipa_ref *ref;
2612 FOR_EACH_ALIAS (node, ref)
2614 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2615 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2616 set_const_flag_1 (alias, set_const, looping, changed);
2618 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2619 if (e->caller->thunk.thunk_p
2620 && (!set_const || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2622 /* Virtual thunks access virtual offset in the vtable, so they can
2623 only be pure, never const. */
2624 if (set_const
2625 && (e->caller->thunk.virtual_offset_p
2626 || !node->binds_to_current_def_p (e->caller)))
2627 *changed |= e->caller->set_pure_flag (true, looping);
2628 else
2629 set_const_flag_1 (e->caller, set_const, looping, changed);
2633 /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST.
2634 If SET_CONST if false, clear the flag.
2636 When setting the flag be careful about possible interposition and
2637 do not set the flag for functions that can be interposet and set pure
2638 flag for functions that can bind to other definition.
2640 Return true if any change was done. */
2642 bool
2643 cgraph_node::set_const_flag (bool set_const, bool looping)
2645 bool changed = false;
2646 if (!set_const || get_availability () > AVAIL_INTERPOSABLE)
2647 set_const_flag_1 (this, set_const, looping, &changed);
2648 else
2650 ipa_ref *ref;
2652 FOR_EACH_ALIAS (this, ref)
2654 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2655 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2656 set_const_flag_1 (alias, set_const, looping, &changed);
2659 return changed;
2662 /* Info used by set_pure_flag_1. */
2664 struct set_pure_flag_info
2666 bool pure;
2667 bool looping;
2668 bool changed;
2671 /* Worker to set_pure_flag. */
2673 static bool
2674 set_pure_flag_1 (cgraph_node *node, void *data)
2676 struct set_pure_flag_info *info = (struct set_pure_flag_info *)data;
2677 /* Static constructors and destructors without a side effect can be
2678 optimized out. */
2679 if (info->pure && !info->looping)
2681 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2683 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2684 info->changed = true;
2686 if (DECL_STATIC_DESTRUCTOR (node->decl))
2688 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2689 info->changed = true;
2692 if (info->pure)
2694 if (!DECL_PURE_P (node->decl) && !TREE_READONLY (node->decl))
2696 DECL_PURE_P (node->decl) = true;
2697 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = info->looping;
2698 info->changed = true;
2700 else if (DECL_LOOPING_CONST_OR_PURE_P (node->decl)
2701 && !info->looping)
2703 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2704 info->changed = true;
2707 else
2709 if (DECL_PURE_P (node->decl))
2711 DECL_PURE_P (node->decl) = false;
2712 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2713 info->changed = true;
2716 return false;
2719 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2720 if any to PURE.
2722 When setting the flag, be careful about possible interposition.
2723 Return true if any change was done. */
2725 bool
2726 cgraph_node::set_pure_flag (bool pure, bool looping)
2728 struct set_pure_flag_info info = {pure, looping, false};
2729 if (!pure)
2730 looping = false;
2731 call_for_symbol_thunks_and_aliases (set_pure_flag_1, &info, !pure, true);
2732 return info.changed;
2735 /* Return true when cgraph_node can not return or throw and thus
2736 it is safe to ignore its side effects for IPA analysis. */
2738 bool
2739 cgraph_node::cannot_return_p (void)
2741 int flags = flags_from_decl_or_type (decl);
2742 if (!opt_for_fn (decl, flag_exceptions))
2743 return (flags & ECF_NORETURN) != 0;
2744 else
2745 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2746 == (ECF_NORETURN | ECF_NOTHROW));
2749 /* Return true when call of edge can not lead to return from caller
2750 and thus it is safe to ignore its side effects for IPA analysis
2751 when computing side effects of the caller.
2752 FIXME: We could actually mark all edges that have no reaching
2753 patch to the exit block or throw to get better results. */
2754 bool
2755 cgraph_edge::cannot_lead_to_return_p (void)
2757 if (caller->cannot_return_p ())
2758 return true;
2759 if (indirect_unknown_callee)
2761 int flags = indirect_info->ecf_flags;
2762 if (!opt_for_fn (caller->decl, flag_exceptions))
2763 return (flags & ECF_NORETURN) != 0;
2764 else
2765 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2766 == (ECF_NORETURN | ECF_NOTHROW));
2768 else
2769 return callee->cannot_return_p ();
2772 /* Return true if the call can be hot. */
2774 bool
2775 cgraph_edge::maybe_hot_p (void)
2777 if (!maybe_hot_count_p (NULL, count))
2778 return false;
2779 if (caller->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
2780 || (callee
2781 && callee->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED))
2782 return false;
2783 if (caller->frequency > NODE_FREQUENCY_UNLIKELY_EXECUTED
2784 && (callee
2785 && callee->frequency <= NODE_FREQUENCY_EXECUTED_ONCE))
2786 return false;
2787 if (opt_for_fn (caller->decl, optimize_size))
2788 return false;
2789 if (caller->frequency == NODE_FREQUENCY_HOT)
2790 return true;
2791 /* If profile is now known yet, be conservative.
2792 FIXME: this predicate is used by early inliner and can do better there. */
2793 if (symtab->state < IPA_SSA)
2794 return true;
2795 if (caller->frequency == NODE_FREQUENCY_EXECUTED_ONCE
2796 && frequency < CGRAPH_FREQ_BASE * 3 / 2)
2797 return false;
2798 if (opt_for_fn (caller->decl, flag_guess_branch_prob))
2800 if (PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION) == 0
2801 || frequency <= (CGRAPH_FREQ_BASE
2802 / PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION)))
2803 return false;
2805 return true;
2808 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2810 static bool
2811 nonremovable_p (cgraph_node *node, void *)
2813 return !node->can_remove_if_no_direct_calls_and_refs_p ();
2816 /* Return true if whole comdat group can be removed if there are no direct
2817 calls to THIS. */
2819 bool
2820 cgraph_node::can_remove_if_no_direct_calls_p (bool will_inline)
2822 struct ipa_ref *ref;
2824 /* For local symbols or non-comdat group it is the same as
2825 can_remove_if_no_direct_calls_p. */
2826 if (!externally_visible || !same_comdat_group)
2828 if (DECL_EXTERNAL (decl))
2829 return true;
2830 if (address_taken)
2831 return false;
2832 return !call_for_symbol_and_aliases (nonremovable_p, NULL, true);
2835 if (will_inline && address_taken)
2836 return false;
2838 /* Otheriwse check if we can remove the symbol itself and then verify
2839 that only uses of the comdat groups are direct call to THIS
2840 or its aliases. */
2841 if (!can_remove_if_no_direct_calls_and_refs_p ())
2842 return false;
2844 /* Check that all refs come from within the comdat group. */
2845 for (int i = 0; iterate_referring (i, ref); i++)
2846 if (ref->referring->get_comdat_group () != get_comdat_group ())
2847 return false;
2849 struct cgraph_node *target = ultimate_alias_target ();
2850 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2851 next != this; next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2853 if (!externally_visible)
2854 continue;
2855 if (!next->alias
2856 && !next->can_remove_if_no_direct_calls_and_refs_p ())
2857 return false;
2859 /* If we see different symbol than THIS, be sure to check calls. */
2860 if (next->ultimate_alias_target () != target)
2861 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2862 if (e->caller->get_comdat_group () != get_comdat_group ()
2863 || will_inline)
2864 return false;
2866 /* If function is not being inlined, we care only about
2867 references outside of the comdat group. */
2868 if (!will_inline)
2869 for (int i = 0; next->iterate_referring (i, ref); i++)
2870 if (ref->referring->get_comdat_group () != get_comdat_group ())
2871 return false;
2873 return true;
2876 /* Return true when function cgraph_node can be expected to be removed
2877 from program when direct calls in this compilation unit are removed.
2879 As a special case COMDAT functions are
2880 cgraph_can_remove_if_no_direct_calls_p while the are not
2881 cgraph_only_called_directly_p (it is possible they are called from other
2882 unit)
2884 This function behaves as cgraph_only_called_directly_p because eliminating
2885 all uses of COMDAT function does not make it necessarily disappear from
2886 the program unless we are compiling whole program or we do LTO. In this
2887 case we know we win since dynamic linking will not really discard the
2888 linkonce section. */
2890 bool
2891 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p
2892 (bool will_inline)
2894 gcc_assert (!global.inlined_to);
2895 if (DECL_EXTERNAL (decl))
2896 return true;
2898 if (!in_lto_p && !flag_whole_program)
2900 /* If the symbol is in comdat group, we need to verify that whole comdat
2901 group becomes unreachable. Technically we could skip references from
2902 within the group, too. */
2903 if (!only_called_directly_p ())
2904 return false;
2905 if (same_comdat_group && externally_visible)
2907 struct cgraph_node *target = ultimate_alias_target ();
2909 if (will_inline && address_taken)
2910 return true;
2911 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2912 next != this;
2913 next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2915 if (!externally_visible)
2916 continue;
2917 if (!next->alias
2918 && !next->only_called_directly_p ())
2919 return false;
2921 /* If we see different symbol than THIS,
2922 be sure to check calls. */
2923 if (next->ultimate_alias_target () != target)
2924 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2925 if (e->caller->get_comdat_group () != get_comdat_group ()
2926 || will_inline)
2927 return false;
2930 return true;
2932 else
2933 return can_remove_if_no_direct_calls_p (will_inline);
2937 /* Worker for cgraph_only_called_directly_p. */
2939 static bool
2940 cgraph_not_only_called_directly_p_1 (cgraph_node *node, void *)
2942 return !node->only_called_directly_or_aliased_p ();
2945 /* Return true when function cgraph_node and all its aliases are only called
2946 directly.
2947 i.e. it is not externally visible, address was not taken and
2948 it is not used in any other non-standard way. */
2950 bool
2951 cgraph_node::only_called_directly_p (void)
2953 gcc_assert (ultimate_alias_target () == this);
2954 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1,
2955 NULL, true);
2959 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2961 static bool
2962 collect_callers_of_node_1 (cgraph_node *node, void *data)
2964 vec<cgraph_edge *> *redirect_callers = (vec<cgraph_edge *> *)data;
2965 cgraph_edge *cs;
2966 enum availability avail;
2967 node->ultimate_alias_target (&avail);
2969 if (avail > AVAIL_INTERPOSABLE)
2970 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
2971 if (!cs->indirect_inlining_edge
2972 && !cs->caller->thunk.thunk_p)
2973 redirect_callers->safe_push (cs);
2974 return false;
2977 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2978 cgraph_node (i.e. are not overwritable). */
2980 vec<cgraph_edge *>
2981 cgraph_node::collect_callers (void)
2983 vec<cgraph_edge *> redirect_callers = vNULL;
2984 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1,
2985 &redirect_callers, false);
2986 return redirect_callers;
2989 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. */
2991 static bool
2992 clone_of_p (cgraph_node *node, cgraph_node *node2)
2994 bool skipped_thunk = false;
2995 node = node->ultimate_alias_target ();
2996 node2 = node2->ultimate_alias_target ();
2998 /* There are no virtual clones of thunks so check former_clone_of or if we
2999 might have skipped thunks because this adjustments are no longer
3000 necessary. */
3001 while (node->thunk.thunk_p)
3003 if (node2->former_clone_of == node->decl)
3004 return true;
3005 if (!node->thunk.this_adjusting)
3006 return false;
3007 node = node->callees->callee->ultimate_alias_target ();
3008 skipped_thunk = true;
3011 if (skipped_thunk)
3013 if (!node2->clone.args_to_skip
3014 || !bitmap_bit_p (node2->clone.args_to_skip, 0))
3015 return false;
3016 if (node2->former_clone_of == node->decl)
3017 return true;
3018 else if (!node2->clone_of)
3019 return false;
3022 while (node != node2 && node2)
3023 node2 = node2->clone_of;
3024 return node2 != NULL;
3027 /* Verify edge count and frequency. */
3029 bool
3030 cgraph_edge::verify_count_and_frequency ()
3032 bool error_found = false;
3033 if (count < 0)
3035 error ("caller edge count is negative");
3036 error_found = true;
3038 if (frequency < 0)
3040 error ("caller edge frequency is negative");
3041 error_found = true;
3043 if (frequency > CGRAPH_FREQ_MAX)
3045 error ("caller edge frequency is too large");
3046 error_found = true;
3048 return error_found;
3051 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
3052 static void
3053 cgraph_debug_gimple_stmt (function *this_cfun, gimple *stmt)
3055 bool fndecl_was_null = false;
3056 /* debug_gimple_stmt needs correct cfun */
3057 if (cfun != this_cfun)
3058 set_cfun (this_cfun);
3059 /* ...and an actual current_function_decl */
3060 if (!current_function_decl)
3062 current_function_decl = this_cfun->decl;
3063 fndecl_was_null = true;
3065 debug_gimple_stmt (stmt);
3066 if (fndecl_was_null)
3067 current_function_decl = NULL;
3070 /* Verify that call graph edge corresponds to DECL from the associated
3071 statement. Return true if the verification should fail. */
3073 bool
3074 cgraph_edge::verify_corresponds_to_fndecl (tree decl)
3076 cgraph_node *node;
3078 if (!decl || callee->global.inlined_to)
3079 return false;
3080 if (symtab->state == LTO_STREAMING)
3081 return false;
3082 node = cgraph_node::get (decl);
3084 /* We do not know if a node from a different partition is an alias or what it
3085 aliases and therefore cannot do the former_clone_of check reliably. When
3086 body_removed is set, we have lost all information about what was alias or
3087 thunk of and also cannot proceed. */
3088 if (!node
3089 || node->body_removed
3090 || node->in_other_partition
3091 || callee->icf_merged
3092 || callee->in_other_partition)
3093 return false;
3095 node = node->ultimate_alias_target ();
3097 /* Optimizers can redirect unreachable calls or calls triggering undefined
3098 behavior to builtin_unreachable. */
3099 if (DECL_BUILT_IN_CLASS (callee->decl) == BUILT_IN_NORMAL
3100 && DECL_FUNCTION_CODE (callee->decl) == BUILT_IN_UNREACHABLE)
3101 return false;
3103 if (callee->former_clone_of != node->decl
3104 && (node != callee->ultimate_alias_target ())
3105 && !clone_of_p (node, callee))
3106 return true;
3107 else
3108 return false;
3111 /* Verify cgraph nodes of given cgraph node. */
3112 DEBUG_FUNCTION void
3113 cgraph_node::verify_node (void)
3115 cgraph_edge *e;
3116 function *this_cfun = DECL_STRUCT_FUNCTION (decl);
3117 basic_block this_block;
3118 gimple_stmt_iterator gsi;
3119 bool error_found = false;
3121 if (seen_error ())
3122 return;
3124 timevar_push (TV_CGRAPH_VERIFY);
3125 error_found |= verify_base ();
3126 for (e = callees; e; e = e->next_callee)
3127 if (e->aux)
3129 error ("aux field set for edge %s->%s",
3130 identifier_to_locale (e->caller->name ()),
3131 identifier_to_locale (e->callee->name ()));
3132 error_found = true;
3134 if (count < 0)
3136 error ("execution count is negative");
3137 error_found = true;
3139 if (global.inlined_to && same_comdat_group)
3141 error ("inline clone in same comdat group list");
3142 error_found = true;
3144 if (!definition && !in_other_partition && local.local)
3146 error ("local symbols must be defined");
3147 error_found = true;
3149 if (global.inlined_to && externally_visible)
3151 error ("externally visible inline clone");
3152 error_found = true;
3154 if (global.inlined_to && address_taken)
3156 error ("inline clone with address taken");
3157 error_found = true;
3159 if (global.inlined_to && force_output)
3161 error ("inline clone is forced to output");
3162 error_found = true;
3164 for (e = indirect_calls; e; e = e->next_callee)
3166 if (e->aux)
3168 error ("aux field set for indirect edge from %s",
3169 identifier_to_locale (e->caller->name ()));
3170 error_found = true;
3172 if (!e->indirect_unknown_callee
3173 || !e->indirect_info)
3175 error ("An indirect edge from %s is not marked as indirect or has "
3176 "associated indirect_info, the corresponding statement is: ",
3177 identifier_to_locale (e->caller->name ()));
3178 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3179 error_found = true;
3182 bool check_comdat = comdat_local_p ();
3183 for (e = callers; e; e = e->next_caller)
3185 if (e->verify_count_and_frequency ())
3186 error_found = true;
3187 if (check_comdat
3188 && !in_same_comdat_group_p (e->caller))
3190 error ("comdat-local function called by %s outside its comdat",
3191 identifier_to_locale (e->caller->name ()));
3192 error_found = true;
3194 if (!e->inline_failed)
3196 if (global.inlined_to
3197 != (e->caller->global.inlined_to
3198 ? e->caller->global.inlined_to : e->caller))
3200 error ("inlined_to pointer is wrong");
3201 error_found = true;
3203 if (callers->next_caller)
3205 error ("multiple inline callers");
3206 error_found = true;
3209 else
3210 if (global.inlined_to)
3212 error ("inlined_to pointer set for noninline callers");
3213 error_found = true;
3216 for (e = callees; e; e = e->next_callee)
3218 if (e->verify_count_and_frequency ())
3219 error_found = true;
3220 if (gimple_has_body_p (e->caller->decl)
3221 && !e->caller->global.inlined_to
3222 && !e->speculative
3223 /* Optimized out calls are redirected to __builtin_unreachable. */
3224 && (e->frequency
3225 || ! e->callee->decl
3226 || DECL_BUILT_IN_CLASS (e->callee->decl) != BUILT_IN_NORMAL
3227 || DECL_FUNCTION_CODE (e->callee->decl) != BUILT_IN_UNREACHABLE)
3228 && (e->frequency
3229 != compute_call_stmt_bb_frequency (e->caller->decl,
3230 gimple_bb (e->call_stmt))))
3232 error ("caller edge frequency %i does not match BB frequency %i",
3233 e->frequency,
3234 compute_call_stmt_bb_frequency (e->caller->decl,
3235 gimple_bb (e->call_stmt)));
3236 error_found = true;
3239 for (e = indirect_calls; e; e = e->next_callee)
3241 if (e->verify_count_and_frequency ())
3242 error_found = true;
3243 if (gimple_has_body_p (e->caller->decl)
3244 && !e->caller->global.inlined_to
3245 && !e->speculative
3246 && (e->frequency
3247 != compute_call_stmt_bb_frequency (e->caller->decl,
3248 gimple_bb (e->call_stmt))))
3250 error ("indirect call frequency %i does not match BB frequency %i",
3251 e->frequency,
3252 compute_call_stmt_bb_frequency (e->caller->decl,
3253 gimple_bb (e->call_stmt)));
3254 error_found = true;
3257 if (!callers && global.inlined_to)
3259 error ("inlined_to pointer is set but no predecessors found");
3260 error_found = true;
3262 if (global.inlined_to == this)
3264 error ("inlined_to pointer refers to itself");
3265 error_found = true;
3268 if (clone_of)
3270 cgraph_node *n;
3271 for (n = clone_of->clones; n; n = n->next_sibling_clone)
3272 if (n == this)
3273 break;
3274 if (!n)
3276 error ("cgraph_node has wrong clone_of");
3277 error_found = true;
3280 if (clones)
3282 cgraph_node *n;
3283 for (n = clones; n; n = n->next_sibling_clone)
3284 if (n->clone_of != this)
3285 break;
3286 if (n)
3288 error ("cgraph_node has wrong clone list");
3289 error_found = true;
3292 if ((prev_sibling_clone || next_sibling_clone) && !clone_of)
3294 error ("cgraph_node is in clone list but it is not clone");
3295 error_found = true;
3297 if (!prev_sibling_clone && clone_of && clone_of->clones != this)
3299 error ("cgraph_node has wrong prev_clone pointer");
3300 error_found = true;
3302 if (prev_sibling_clone && prev_sibling_clone->next_sibling_clone != this)
3304 error ("double linked list of clones corrupted");
3305 error_found = true;
3308 if (analyzed && alias)
3310 bool ref_found = false;
3311 int i;
3312 ipa_ref *ref = NULL;
3314 if (callees)
3316 error ("Alias has call edges");
3317 error_found = true;
3319 for (i = 0; iterate_reference (i, ref); i++)
3320 if (ref->use == IPA_REF_CHKP)
3322 else if (ref->use != IPA_REF_ALIAS)
3324 error ("Alias has non-alias reference");
3325 error_found = true;
3327 else if (ref_found)
3329 error ("Alias has more than one alias reference");
3330 error_found = true;
3332 else
3333 ref_found = true;
3334 if (!ref_found)
3336 error ("Analyzed alias has no reference");
3337 error_found = true;
3341 /* Check instrumented version reference. */
3342 if (instrumented_version
3343 && instrumented_version->instrumented_version != this)
3345 error ("Instrumentation clone does not reference original node");
3346 error_found = true;
3349 /* Cannot have orig_decl for not instrumented nodes. */
3350 if (!instrumentation_clone && orig_decl)
3352 error ("Not instrumented node has non-NULL original declaration");
3353 error_found = true;
3356 /* If original not instrumented node still exists then we may check
3357 original declaration is set properly. */
3358 if (instrumented_version
3359 && orig_decl
3360 && orig_decl != instrumented_version->decl)
3362 error ("Instrumented node has wrong original declaration");
3363 error_found = true;
3366 /* Check all nodes have chkp reference to their instrumented versions. */
3367 if (analyzed
3368 && instrumented_version
3369 && !instrumentation_clone)
3371 bool ref_found = false;
3372 int i;
3373 struct ipa_ref *ref;
3375 for (i = 0; iterate_reference (i, ref); i++)
3376 if (ref->use == IPA_REF_CHKP)
3378 if (ref_found)
3380 error ("Node has more than one chkp reference");
3381 error_found = true;
3383 if (ref->referred != instrumented_version)
3385 error ("Wrong node is referenced with chkp reference");
3386 error_found = true;
3388 ref_found = true;
3391 if (!ref_found)
3393 error ("Analyzed node has no reference to instrumented version");
3394 error_found = true;
3398 if (instrumentation_clone
3399 && DECL_BUILT_IN_CLASS (decl) == NOT_BUILT_IN)
3401 tree name = DECL_ASSEMBLER_NAME (decl);
3402 tree orig_name = DECL_ASSEMBLER_NAME (orig_decl);
3404 if (!IDENTIFIER_TRANSPARENT_ALIAS (name)
3405 || TREE_CHAIN (name) != orig_name)
3407 error ("Alias chain for instrumented node is broken");
3408 error_found = true;
3412 if (analyzed && thunk.thunk_p)
3414 if (!callees)
3416 error ("No edge out of thunk node");
3417 error_found = true;
3419 else if (callees->next_callee)
3421 error ("More than one edge out of thunk node");
3422 error_found = true;
3424 if (gimple_has_body_p (decl) && !global.inlined_to)
3426 error ("Thunk is not supposed to have body");
3427 error_found = true;
3429 if (thunk.add_pointer_bounds_args
3430 && !instrumented_version->semantically_equivalent_p (callees->callee))
3432 error ("Instrumentation thunk has wrong edge callee");
3433 error_found = true;
3436 else if (analyzed && gimple_has_body_p (decl)
3437 && !TREE_ASM_WRITTEN (decl)
3438 && (!DECL_EXTERNAL (decl) || global.inlined_to)
3439 && !flag_wpa)
3441 if (this_cfun->cfg)
3443 hash_set<gimple *> stmts;
3444 int i;
3445 ipa_ref *ref = NULL;
3447 /* Reach the trees by walking over the CFG, and note the
3448 enclosing basic-blocks in the call edges. */
3449 FOR_EACH_BB_FN (this_block, this_cfun)
3451 for (gsi = gsi_start_phis (this_block);
3452 !gsi_end_p (gsi); gsi_next (&gsi))
3453 stmts.add (gsi_stmt (gsi));
3454 for (gsi = gsi_start_bb (this_block);
3455 !gsi_end_p (gsi);
3456 gsi_next (&gsi))
3458 gimple *stmt = gsi_stmt (gsi);
3459 stmts.add (stmt);
3460 if (is_gimple_call (stmt))
3462 cgraph_edge *e = get_edge (stmt);
3463 tree decl = gimple_call_fndecl (stmt);
3464 if (e)
3466 if (e->aux)
3468 error ("shared call_stmt:");
3469 cgraph_debug_gimple_stmt (this_cfun, stmt);
3470 error_found = true;
3472 if (!e->indirect_unknown_callee)
3474 if (e->verify_corresponds_to_fndecl (decl))
3476 error ("edge points to wrong declaration:");
3477 debug_tree (e->callee->decl);
3478 fprintf (stderr," Instead of:");
3479 debug_tree (decl);
3480 error_found = true;
3483 else if (decl)
3485 error ("an indirect edge with unknown callee "
3486 "corresponding to a call_stmt with "
3487 "a known declaration:");
3488 error_found = true;
3489 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3491 e->aux = (void *)1;
3493 else if (decl)
3495 error ("missing callgraph edge for call stmt:");
3496 cgraph_debug_gimple_stmt (this_cfun, stmt);
3497 error_found = true;
3502 for (i = 0; iterate_reference (i, ref); i++)
3503 if (ref->stmt && !stmts.contains (ref->stmt))
3505 error ("reference to dead statement");
3506 cgraph_debug_gimple_stmt (this_cfun, ref->stmt);
3507 error_found = true;
3510 else
3511 /* No CFG available?! */
3512 gcc_unreachable ();
3514 for (e = callees; e; e = e->next_callee)
3516 if (!e->aux)
3518 error ("edge %s->%s has no corresponding call_stmt",
3519 identifier_to_locale (e->caller->name ()),
3520 identifier_to_locale (e->callee->name ()));
3521 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3522 error_found = true;
3524 e->aux = 0;
3526 for (e = indirect_calls; e; e = e->next_callee)
3528 if (!e->aux && !e->speculative)
3530 error ("an indirect edge from %s has no corresponding call_stmt",
3531 identifier_to_locale (e->caller->name ()));
3532 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3533 error_found = true;
3535 e->aux = 0;
3538 if (error_found)
3540 dump (stderr);
3541 internal_error ("verify_cgraph_node failed");
3543 timevar_pop (TV_CGRAPH_VERIFY);
3546 /* Verify whole cgraph structure. */
3547 DEBUG_FUNCTION void
3548 cgraph_node::verify_cgraph_nodes (void)
3550 cgraph_node *node;
3552 if (seen_error ())
3553 return;
3555 FOR_EACH_FUNCTION (node)
3556 node->verify ();
3559 /* Walk the alias chain to return the function cgraph_node is alias of.
3560 Walk through thunks, too.
3561 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3562 When REF is non-NULL, assume that reference happens in symbol REF
3563 when determining the availability. */
3565 cgraph_node *
3566 cgraph_node::function_symbol (enum availability *availability,
3567 struct symtab_node *ref)
3569 cgraph_node *node = ultimate_alias_target (availability, ref);
3571 while (node->thunk.thunk_p)
3573 ref = node;
3574 node = node->callees->callee;
3575 if (availability)
3577 enum availability a;
3578 a = node->get_availability (ref);
3579 if (a < *availability)
3580 *availability = a;
3582 node = node->ultimate_alias_target (availability, ref);
3584 return node;
3587 /* Walk the alias chain to return the function cgraph_node is alias of.
3588 Walk through non virtual thunks, too. Thus we return either a function
3589 or a virtual thunk node.
3590 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3591 When REF is non-NULL, assume that reference happens in symbol REF
3592 when determining the availability. */
3594 cgraph_node *
3595 cgraph_node::function_or_virtual_thunk_symbol
3596 (enum availability *availability,
3597 struct symtab_node *ref)
3599 cgraph_node *node = ultimate_alias_target (availability, ref);
3601 while (node->thunk.thunk_p && !node->thunk.virtual_offset_p)
3603 ref = node;
3604 node = node->callees->callee;
3605 if (availability)
3607 enum availability a;
3608 a = node->get_availability (ref);
3609 if (a < *availability)
3610 *availability = a;
3612 node = node->ultimate_alias_target (availability, ref);
3614 return node;
3617 /* When doing LTO, read cgraph_node's body from disk if it is not already
3618 present. */
3620 bool
3621 cgraph_node::get_untransformed_body (void)
3623 lto_file_decl_data *file_data;
3624 const char *data, *name;
3625 size_t len;
3626 tree decl = this->decl;
3628 /* Check if body is already there. Either we have gimple body or
3629 the function is thunk and in that case we set DECL_ARGUMENTS. */
3630 if (DECL_ARGUMENTS (decl) || gimple_has_body_p (decl))
3631 return false;
3633 gcc_assert (in_lto_p && !DECL_RESULT (decl));
3635 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3637 file_data = lto_file_data;
3638 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
3640 /* We may have renamed the declaration, e.g., a static function. */
3641 name = lto_get_decl_name_mapping (file_data, name);
3642 struct lto_in_decl_state *decl_state
3643 = lto_get_function_in_decl_state (file_data, decl);
3645 data = lto_get_section_data (file_data, LTO_section_function_body,
3646 name, &len, decl_state->compressed);
3647 if (!data)
3648 fatal_error (input_location, "%s: section %s is missing",
3649 file_data->file_name,
3650 name);
3652 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
3654 lto_input_function_body (file_data, this, data);
3655 lto_stats.num_function_bodies++;
3656 lto_free_section_data (file_data, LTO_section_function_body, name,
3657 data, len, decl_state->compressed);
3658 lto_free_function_in_decl_state_for_node (this);
3659 /* Keep lto file data so ipa-inline-analysis knows about cross module
3660 inlining. */
3662 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
3664 return true;
3667 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3668 if it is not already present. When some IPA transformations are scheduled,
3669 apply them. */
3671 bool
3672 cgraph_node::get_body (void)
3674 bool updated;
3676 updated = get_untransformed_body ();
3678 /* Getting transformed body makes no sense for inline clones;
3679 we should never use this on real clones because they are materialized
3680 early.
3681 TODO: Materializing clones here will likely lead to smaller LTRANS
3682 footprint. */
3683 gcc_assert (!global.inlined_to && !clone_of);
3684 if (ipa_transforms_to_apply.exists ())
3686 opt_pass *saved_current_pass = current_pass;
3687 FILE *saved_dump_file = dump_file;
3688 const char *saved_dump_file_name = dump_file_name;
3689 dump_flags_t saved_dump_flags = dump_flags;
3690 dump_file_name = NULL;
3691 dump_file = NULL;
3693 push_cfun (DECL_STRUCT_FUNCTION (decl));
3694 execute_all_ipa_transforms ();
3695 cgraph_edge::rebuild_edges ();
3696 free_dominance_info (CDI_DOMINATORS);
3697 free_dominance_info (CDI_POST_DOMINATORS);
3698 pop_cfun ();
3699 updated = true;
3701 current_pass = saved_current_pass;
3702 dump_file = saved_dump_file;
3703 dump_file_name = saved_dump_file_name;
3704 dump_flags = saved_dump_flags;
3706 return updated;
3709 /* Return the DECL_STRUCT_FUNCTION of the function. */
3711 struct function *
3712 cgraph_node::get_fun (void)
3714 cgraph_node *node = this;
3715 struct function *fun = DECL_STRUCT_FUNCTION (node->decl);
3717 while (!fun && node->clone_of)
3719 node = node->clone_of;
3720 fun = DECL_STRUCT_FUNCTION (node->decl);
3723 return fun;
3726 /* Verify if the type of the argument matches that of the function
3727 declaration. If we cannot verify this or there is a mismatch,
3728 return false. */
3730 static bool
3731 gimple_check_call_args (gimple *stmt, tree fndecl, bool args_count_match)
3733 tree parms, p;
3734 unsigned int i, nargs;
3736 /* Calls to internal functions always match their signature. */
3737 if (gimple_call_internal_p (stmt))
3738 return true;
3740 nargs = gimple_call_num_args (stmt);
3742 /* Get argument types for verification. */
3743 if (fndecl)
3744 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
3745 else
3746 parms = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
3748 /* Verify if the type of the argument matches that of the function
3749 declaration. If we cannot verify this or there is a mismatch,
3750 return false. */
3751 if (fndecl && DECL_ARGUMENTS (fndecl))
3753 for (i = 0, p = DECL_ARGUMENTS (fndecl);
3754 i < nargs;
3755 i++, p = DECL_CHAIN (p))
3757 tree arg;
3758 /* We cannot distinguish a varargs function from the case
3759 of excess parameters, still deferring the inlining decision
3760 to the callee is possible. */
3761 if (!p)
3762 break;
3763 arg = gimple_call_arg (stmt, i);
3764 if (p == error_mark_node
3765 || DECL_ARG_TYPE (p) == error_mark_node
3766 || arg == error_mark_node
3767 || (!types_compatible_p (DECL_ARG_TYPE (p), TREE_TYPE (arg))
3768 && !fold_convertible_p (DECL_ARG_TYPE (p), arg)))
3769 return false;
3771 if (args_count_match && p)
3772 return false;
3774 else if (parms)
3776 for (i = 0, p = parms; i < nargs; i++, p = TREE_CHAIN (p))
3778 tree arg;
3779 /* If this is a varargs function defer inlining decision
3780 to callee. */
3781 if (!p)
3782 break;
3783 arg = gimple_call_arg (stmt, i);
3784 if (TREE_VALUE (p) == error_mark_node
3785 || arg == error_mark_node
3786 || TREE_CODE (TREE_VALUE (p)) == VOID_TYPE
3787 || (!types_compatible_p (TREE_VALUE (p), TREE_TYPE (arg))
3788 && !fold_convertible_p (TREE_VALUE (p), arg)))
3789 return false;
3792 else
3794 if (nargs != 0)
3795 return false;
3797 return true;
3800 /* Verify if the type of the argument and lhs of CALL_STMT matches
3801 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3802 true, the arg count needs to be the same.
3803 If we cannot verify this or there is a mismatch, return false. */
3805 bool
3806 gimple_check_call_matching_types (gimple *call_stmt, tree callee,
3807 bool args_count_match)
3809 tree lhs;
3811 if ((DECL_RESULT (callee)
3812 && !DECL_BY_REFERENCE (DECL_RESULT (callee))
3813 && (lhs = gimple_call_lhs (call_stmt)) != NULL_TREE
3814 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee)),
3815 TREE_TYPE (lhs))
3816 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee)), lhs))
3817 || !gimple_check_call_args (call_stmt, callee, args_count_match))
3818 return false;
3819 return true;
3822 /* Reset all state within cgraph.c so that we can rerun the compiler
3823 within the same process. For use by toplev::finalize. */
3825 void
3826 cgraph_c_finalize (void)
3828 symtab = NULL;
3830 x_cgraph_nodes_queue = NULL;
3832 cgraph_fnver_htab = NULL;
3833 version_info_node = NULL;
3836 /* A wroker for call_for_symbol_and_aliases. */
3838 bool
3839 cgraph_node::call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
3840 void *),
3841 void *data,
3842 bool include_overwritable)
3844 ipa_ref *ref;
3845 FOR_EACH_ALIAS (this, ref)
3847 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
3848 if (include_overwritable
3849 || alias->get_availability () > AVAIL_INTERPOSABLE)
3850 if (alias->call_for_symbol_and_aliases (callback, data,
3851 include_overwritable))
3852 return true;
3854 return false;
3857 /* Return true if NODE has thunk. */
3859 bool
3860 cgraph_node::has_thunk_p (cgraph_node *node, void *)
3862 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
3863 if (e->caller->thunk.thunk_p)
3864 return true;
3865 return false;
3868 #include "gt-cgraph.h"