PR tree-optimization/66718
[official-gcc.git] / gcc / cgraph.c
blobd13bcd3a645b6fbb9615ad6db3dc47282f61818f
1 /* Callgraph handling code.
2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This file contains basic routines manipulating call graph
23 The call-graph is a data structure designed for intra-procedural optimization.
24 It represents a multi-graph where nodes are functions and edges are call sites. */
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "backend.h"
30 #include "tree.h"
31 #include "gimple.h"
32 #include "rtl.h"
33 #include "alias.h"
34 #include "fold-const.h"
35 #include "varasm.h"
36 #include "calls.h"
37 #include "print-tree.h"
38 #include "tree-inline.h"
39 #include "langhooks.h"
40 #include "toplev.h"
41 #include "flags.h"
42 #include "debug.h"
43 #include "target.h"
44 #include "cgraph.h"
45 #include "intl.h"
46 #include "internal-fn.h"
47 #include "tree-eh.h"
48 #include "gimple-iterator.h"
49 #include "timevar.h"
50 #include "dumpfile.h"
51 #include "gimple-ssa.h"
52 #include "tree-cfg.h"
53 #include "tree-ssa.h"
54 #include "value-prof.h"
55 #include "except.h"
56 #include "diagnostic-core.h"
57 #include "ipa-utils.h"
58 #include "lto-streamer.h"
59 #include "alloc-pool.h"
60 #include "symbol-summary.h"
61 #include "ipa-prop.h"
62 #include "ipa-inline.h"
63 #include "cfgloop.h"
64 #include "gimple-pretty-print.h"
65 #include "insn-config.h"
66 #include "expmed.h"
67 #include "dojump.h"
68 #include "explow.h"
69 #include "emit-rtl.h"
70 #include "stmt.h"
71 #include "expr.h"
72 #include "tree-dfa.h"
73 #include "profile.h"
74 #include "params.h"
75 #include "tree-chkp.h"
76 #include "context.h"
78 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
79 #include "tree-pass.h"
81 /* Queue of cgraph nodes scheduled to be lowered. */
82 symtab_node *x_cgraph_nodes_queue;
83 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
85 /* Symbol table global context. */
86 symbol_table *symtab;
88 /* List of hooks triggered on cgraph_edge events. */
89 struct cgraph_edge_hook_list {
90 cgraph_edge_hook hook;
91 void *data;
92 struct cgraph_edge_hook_list *next;
95 /* List of hooks triggered on cgraph_node events. */
96 struct cgraph_node_hook_list {
97 cgraph_node_hook hook;
98 void *data;
99 struct cgraph_node_hook_list *next;
102 /* List of hooks triggered on events involving two cgraph_edges. */
103 struct cgraph_2edge_hook_list {
104 cgraph_2edge_hook hook;
105 void *data;
106 struct cgraph_2edge_hook_list *next;
109 /* List of hooks triggered on events involving two cgraph_nodes. */
110 struct cgraph_2node_hook_list {
111 cgraph_2node_hook hook;
112 void *data;
113 struct cgraph_2node_hook_list *next;
116 /* Hash descriptor for cgraph_function_version_info. */
118 struct function_version_hasher : ggc_ptr_hash<cgraph_function_version_info>
120 static hashval_t hash (cgraph_function_version_info *);
121 static bool equal (cgraph_function_version_info *,
122 cgraph_function_version_info *);
125 /* Map a cgraph_node to cgraph_function_version_info using this htab.
126 The cgraph_function_version_info has a THIS_NODE field that is the
127 corresponding cgraph_node.. */
129 static GTY(()) hash_table<function_version_hasher> *cgraph_fnver_htab = NULL;
131 /* Hash function for cgraph_fnver_htab. */
132 hashval_t
133 function_version_hasher::hash (cgraph_function_version_info *ptr)
135 int uid = ptr->this_node->uid;
136 return (hashval_t)(uid);
139 /* eq function for cgraph_fnver_htab. */
140 bool
141 function_version_hasher::equal (cgraph_function_version_info *n1,
142 cgraph_function_version_info *n2)
144 return n1->this_node->uid == n2->this_node->uid;
147 /* Mark as GC root all allocated nodes. */
148 static GTY(()) struct cgraph_function_version_info *
149 version_info_node = NULL;
151 /* Return true if NODE's address can be compared. */
153 bool
154 symtab_node::address_can_be_compared_p ()
156 /* Address of virtual tables and functions is never compared. */
157 if (DECL_VIRTUAL_P (decl))
158 return false;
159 /* Address of C++ cdtors is never compared. */
160 if (is_a <cgraph_node *> (this)
161 && (DECL_CXX_CONSTRUCTOR_P (decl)
162 || DECL_CXX_DESTRUCTOR_P (decl)))
163 return false;
164 /* Constant pool symbols addresses are never compared.
165 flag_merge_constants permits us to assume the same on readonly vars. */
166 if (is_a <varpool_node *> (this)
167 && (DECL_IN_CONSTANT_POOL (decl)
168 || (flag_merge_constants >= 2
169 && TREE_READONLY (decl) && !TREE_THIS_VOLATILE (decl))))
170 return false;
171 return true;
174 /* Get the cgraph_function_version_info node corresponding to node. */
175 cgraph_function_version_info *
176 cgraph_node::function_version (void)
178 cgraph_function_version_info key;
179 key.this_node = this;
181 if (cgraph_fnver_htab == NULL)
182 return NULL;
184 return cgraph_fnver_htab->find (&key);
187 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
188 corresponding to cgraph_node NODE. */
189 cgraph_function_version_info *
190 cgraph_node::insert_new_function_version (void)
192 version_info_node = NULL;
193 version_info_node = ggc_cleared_alloc<cgraph_function_version_info> ();
194 version_info_node->this_node = this;
196 if (cgraph_fnver_htab == NULL)
197 cgraph_fnver_htab = hash_table<function_version_hasher>::create_ggc (2);
199 *cgraph_fnver_htab->find_slot (version_info_node, INSERT)
200 = version_info_node;
201 return version_info_node;
204 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
205 DECL is a duplicate declaration. */
206 void
207 cgraph_node::delete_function_version (tree decl)
209 cgraph_node *decl_node = cgraph_node::get (decl);
210 cgraph_function_version_info *decl_v = NULL;
212 if (decl_node == NULL)
213 return;
215 decl_v = decl_node->function_version ();
217 if (decl_v == NULL)
218 return;
220 if (decl_v->prev != NULL)
221 decl_v->prev->next = decl_v->next;
223 if (decl_v->next != NULL)
224 decl_v->next->prev = decl_v->prev;
226 if (cgraph_fnver_htab != NULL)
227 cgraph_fnver_htab->remove_elt (decl_v);
229 decl_node->remove ();
232 /* Record that DECL1 and DECL2 are semantically identical function
233 versions. */
234 void
235 cgraph_node::record_function_versions (tree decl1, tree decl2)
237 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
238 cgraph_node *decl2_node = cgraph_node::get_create (decl2);
239 cgraph_function_version_info *decl1_v = NULL;
240 cgraph_function_version_info *decl2_v = NULL;
241 cgraph_function_version_info *before;
242 cgraph_function_version_info *after;
244 gcc_assert (decl1_node != NULL && decl2_node != NULL);
245 decl1_v = decl1_node->function_version ();
246 decl2_v = decl2_node->function_version ();
248 if (decl1_v != NULL && decl2_v != NULL)
249 return;
251 if (decl1_v == NULL)
252 decl1_v = decl1_node->insert_new_function_version ();
254 if (decl2_v == NULL)
255 decl2_v = decl2_node->insert_new_function_version ();
257 /* Chain decl2_v and decl1_v. All semantically identical versions
258 will be chained together. */
260 before = decl1_v;
261 after = decl2_v;
263 while (before->next != NULL)
264 before = before->next;
266 while (after->prev != NULL)
267 after= after->prev;
269 before->next = after;
270 after->prev = before;
273 /* Initialize callgraph dump file. */
275 void
276 symbol_table::initialize (void)
278 if (!dump_file)
279 dump_file = dump_begin (TDI_cgraph, NULL);
282 /* Allocate new callgraph node and insert it into basic data structures. */
284 cgraph_node *
285 symbol_table::create_empty (void)
287 cgraph_node *node = allocate_cgraph_symbol ();
289 node->type = SYMTAB_FUNCTION;
290 node->frequency = NODE_FREQUENCY_NORMAL;
291 node->count_materialization_scale = REG_BR_PROB_BASE;
292 cgraph_count++;
294 return node;
297 /* Register HOOK to be called with DATA on each removed edge. */
298 cgraph_edge_hook_list *
299 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook, void *data)
301 cgraph_edge_hook_list *entry;
302 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
304 entry = (cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
305 entry->hook = hook;
306 entry->data = data;
307 entry->next = NULL;
308 while (*ptr)
309 ptr = &(*ptr)->next;
310 *ptr = entry;
311 return entry;
314 /* Remove ENTRY from the list of hooks called on removing edges. */
315 void
316 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list *entry)
318 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
320 while (*ptr != entry)
321 ptr = &(*ptr)->next;
322 *ptr = entry->next;
323 free (entry);
326 /* Call all edge removal hooks. */
327 void
328 symbol_table::call_edge_removal_hooks (cgraph_edge *e)
330 cgraph_edge_hook_list *entry = m_first_edge_removal_hook;
331 while (entry)
333 entry->hook (e, entry->data);
334 entry = entry->next;
338 /* Register HOOK to be called with DATA on each removed node. */
339 cgraph_node_hook_list *
340 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook, void *data)
342 cgraph_node_hook_list *entry;
343 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
345 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
346 entry->hook = hook;
347 entry->data = data;
348 entry->next = NULL;
349 while (*ptr)
350 ptr = &(*ptr)->next;
351 *ptr = entry;
352 return entry;
355 /* Remove ENTRY from the list of hooks called on removing nodes. */
356 void
357 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list *entry)
359 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
361 while (*ptr != entry)
362 ptr = &(*ptr)->next;
363 *ptr = entry->next;
364 free (entry);
367 /* Call all node removal hooks. */
368 void
369 symbol_table::call_cgraph_removal_hooks (cgraph_node *node)
371 cgraph_node_hook_list *entry = m_first_cgraph_removal_hook;
372 while (entry)
374 entry->hook (node, entry->data);
375 entry = entry->next;
379 /* Call all node removal hooks. */
380 void
381 symbol_table::call_cgraph_insertion_hooks (cgraph_node *node)
383 cgraph_node_hook_list *entry = m_first_cgraph_insertion_hook;
384 while (entry)
386 entry->hook (node, entry->data);
387 entry = entry->next;
392 /* Register HOOK to be called with DATA on each inserted node. */
393 cgraph_node_hook_list *
394 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook, void *data)
396 cgraph_node_hook_list *entry;
397 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
399 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
400 entry->hook = hook;
401 entry->data = data;
402 entry->next = NULL;
403 while (*ptr)
404 ptr = &(*ptr)->next;
405 *ptr = entry;
406 return entry;
409 /* Remove ENTRY from the list of hooks called on inserted nodes. */
410 void
411 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list *entry)
413 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
415 while (*ptr != entry)
416 ptr = &(*ptr)->next;
417 *ptr = entry->next;
418 free (entry);
421 /* Register HOOK to be called with DATA on each duplicated edge. */
422 cgraph_2edge_hook_list *
423 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
425 cgraph_2edge_hook_list *entry;
426 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
428 entry = (cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
429 entry->hook = hook;
430 entry->data = data;
431 entry->next = NULL;
432 while (*ptr)
433 ptr = &(*ptr)->next;
434 *ptr = entry;
435 return entry;
438 /* Remove ENTRY from the list of hooks called on duplicating edges. */
439 void
440 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list *entry)
442 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
444 while (*ptr != entry)
445 ptr = &(*ptr)->next;
446 *ptr = entry->next;
447 free (entry);
450 /* Call all edge duplication hooks. */
451 void
452 symbol_table::call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)
454 cgraph_2edge_hook_list *entry = m_first_edge_duplicated_hook;
455 while (entry)
457 entry->hook (cs1, cs2, entry->data);
458 entry = entry->next;
462 /* Register HOOK to be called with DATA on each duplicated node. */
463 cgraph_2node_hook_list *
464 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook, void *data)
466 cgraph_2node_hook_list *entry;
467 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
469 entry = (cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
470 entry->hook = hook;
471 entry->data = data;
472 entry->next = NULL;
473 while (*ptr)
474 ptr = &(*ptr)->next;
475 *ptr = entry;
476 return entry;
479 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
480 void
481 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry)
483 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
485 while (*ptr != entry)
486 ptr = &(*ptr)->next;
487 *ptr = entry->next;
488 free (entry);
491 /* Call all node duplication hooks. */
492 void
493 symbol_table::call_cgraph_duplication_hooks (cgraph_node *node,
494 cgraph_node *node2)
496 cgraph_2node_hook_list *entry = m_first_cgraph_duplicated_hook;
497 while (entry)
499 entry->hook (node, node2, entry->data);
500 entry = entry->next;
504 /* Return cgraph node assigned to DECL. Create new one when needed. */
506 cgraph_node *
507 cgraph_node::create (tree decl)
509 cgraph_node *node = symtab->create_empty ();
510 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
512 node->decl = decl;
514 if ((flag_openacc || flag_openmp)
515 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl)))
517 node->offloadable = 1;
518 #ifdef ENABLE_OFFLOADING
519 g->have_offload = true;
520 #endif
523 node->register_symbol ();
525 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
527 node->origin = cgraph_node::get_create (DECL_CONTEXT (decl));
528 node->next_nested = node->origin->nested;
529 node->origin->nested = node;
531 return node;
534 /* Try to find a call graph node for declaration DECL and if it does not exist
535 or if it corresponds to an inline clone, create a new one. */
537 cgraph_node *
538 cgraph_node::get_create (tree decl)
540 cgraph_node *first_clone = cgraph_node::get (decl);
542 if (first_clone && !first_clone->global.inlined_to)
543 return first_clone;
545 cgraph_node *node = cgraph_node::create (decl);
546 if (first_clone)
548 first_clone->clone_of = node;
549 node->clones = first_clone;
550 symtab->symtab_prevail_in_asm_name_hash (node);
551 node->decl->decl_with_vis.symtab_node = node;
552 if (dump_file)
553 fprintf (dump_file, "Introduced new external node "
554 "(%s/%i) and turned into root of the clone tree.\n",
555 node->name (), node->order);
557 else if (dump_file)
558 fprintf (dump_file, "Introduced new external node "
559 "(%s/%i).\n", node->name (), node->order);
560 return node;
563 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
564 the function body is associated with (not necessarily cgraph_node (DECL). */
566 cgraph_node *
567 cgraph_node::create_alias (tree alias, tree target)
569 cgraph_node *alias_node;
571 gcc_assert (TREE_CODE (target) == FUNCTION_DECL
572 || TREE_CODE (target) == IDENTIFIER_NODE);
573 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
574 alias_node = cgraph_node::get_create (alias);
575 gcc_assert (!alias_node->definition);
576 alias_node->alias_target = target;
577 alias_node->definition = true;
578 alias_node->alias = true;
579 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias)) != NULL)
580 alias_node->weakref = true;
581 return alias_node;
584 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
585 and NULL otherwise.
586 Same body aliases are output whenever the body of DECL is output,
587 and cgraph_node::get (ALIAS) transparently returns
588 cgraph_node::get (DECL). */
590 cgraph_node *
591 cgraph_node::create_same_body_alias (tree alias, tree decl)
593 cgraph_node *n;
594 #ifndef ASM_OUTPUT_DEF
595 /* If aliases aren't supported by the assembler, fail. */
596 return NULL;
597 #endif
598 /* Langhooks can create same body aliases of symbols not defined.
599 Those are useless. Drop them on the floor. */
600 if (symtab->global_info_ready)
601 return NULL;
603 n = cgraph_node::create_alias (alias, decl);
604 n->cpp_implicit_alias = true;
605 if (symtab->cpp_implicit_aliases_done)
606 n->resolve_alias (cgraph_node::get (decl));
607 return n;
610 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
611 aliases DECL with an adjustments made into the first parameter.
612 See comments in thunk_adjust for detail on the parameters. */
614 cgraph_node *
615 cgraph_node::create_thunk (tree alias, tree, bool this_adjusting,
616 HOST_WIDE_INT fixed_offset,
617 HOST_WIDE_INT virtual_value,
618 tree virtual_offset,
619 tree real_alias)
621 cgraph_node *node;
623 node = cgraph_node::get (alias);
624 if (node)
625 node->reset ();
626 else
627 node = cgraph_node::create (alias);
628 gcc_checking_assert (!virtual_offset
629 || wi::eq_p (virtual_offset, virtual_value));
630 node->thunk.fixed_offset = fixed_offset;
631 node->thunk.this_adjusting = this_adjusting;
632 node->thunk.virtual_value = virtual_value;
633 node->thunk.virtual_offset_p = virtual_offset != NULL;
634 node->thunk.alias = real_alias;
635 node->thunk.thunk_p = true;
636 node->definition = true;
638 return node;
641 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
642 Return NULL if there's no such node. */
644 cgraph_node *
645 cgraph_node::get_for_asmname (tree asmname)
647 /* We do not want to look at inline clones. */
648 for (symtab_node *node = symtab_node::get_for_asmname (asmname);
649 node;
650 node = node->next_sharing_asm_name)
652 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
653 if (cn && !cn->global.inlined_to)
654 return cn;
656 return NULL;
659 /* Returns a hash value for X (which really is a cgraph_edge). */
661 hashval_t
662 cgraph_edge_hasher::hash (cgraph_edge *e)
664 /* This is a really poor hash function, but it is what htab_hash_pointer
665 uses. */
666 return (hashval_t) ((intptr_t)e->call_stmt >> 3);
669 /* Returns a hash value for X (which really is a cgraph_edge). */
671 hashval_t
672 cgraph_edge_hasher::hash (gimple call_stmt)
674 /* This is a really poor hash function, but it is what htab_hash_pointer
675 uses. */
676 return (hashval_t) ((intptr_t)call_stmt >> 3);
679 /* Return nonzero if the call_stmt of of cgraph_edge X is stmt *Y. */
681 inline bool
682 cgraph_edge_hasher::equal (cgraph_edge *x, gimple y)
684 return x->call_stmt == y;
687 /* Add call graph edge E to call site hash of its caller. */
689 static inline void
690 cgraph_update_edge_in_call_site_hash (cgraph_edge *e)
692 gimple call = e->call_stmt;
693 *e->caller->call_site_hash->find_slot_with_hash
694 (call, cgraph_edge_hasher::hash (call), INSERT) = e;
697 /* Add call graph edge E to call site hash of its caller. */
699 static inline void
700 cgraph_add_edge_to_call_site_hash (cgraph_edge *e)
702 /* There are two speculative edges for every statement (one direct,
703 one indirect); always hash the direct one. */
704 if (e->speculative && e->indirect_unknown_callee)
705 return;
706 cgraph_edge **slot = e->caller->call_site_hash->find_slot_with_hash
707 (e->call_stmt, cgraph_edge_hasher::hash (e->call_stmt), INSERT);
708 if (*slot)
710 gcc_assert (((cgraph_edge *)*slot)->speculative);
711 if (e->callee)
712 *slot = e;
713 return;
715 gcc_assert (!*slot || e->speculative);
716 *slot = e;
719 /* Return the callgraph edge representing the GIMPLE_CALL statement
720 CALL_STMT. */
722 cgraph_edge *
723 cgraph_node::get_edge (gimple call_stmt)
725 cgraph_edge *e, *e2;
726 int n = 0;
728 if (call_site_hash)
729 return call_site_hash->find_with_hash
730 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
732 /* This loop may turn out to be performance problem. In such case adding
733 hashtables into call nodes with very many edges is probably best
734 solution. It is not good idea to add pointer into CALL_EXPR itself
735 because we want to make possible having multiple cgraph nodes representing
736 different clones of the same body before the body is actually cloned. */
737 for (e = callees; e; e = e->next_callee)
739 if (e->call_stmt == call_stmt)
740 break;
741 n++;
744 if (!e)
745 for (e = indirect_calls; e; e = e->next_callee)
747 if (e->call_stmt == call_stmt)
748 break;
749 n++;
752 if (n > 100)
754 call_site_hash = hash_table<cgraph_edge_hasher>::create_ggc (120);
755 for (e2 = callees; e2; e2 = e2->next_callee)
756 cgraph_add_edge_to_call_site_hash (e2);
757 for (e2 = indirect_calls; e2; e2 = e2->next_callee)
758 cgraph_add_edge_to_call_site_hash (e2);
761 return e;
765 /* Change field call_stmt of edge to NEW_STMT.
766 If UPDATE_SPECULATIVE and E is any component of speculative
767 edge, then update all components. */
769 void
770 cgraph_edge::set_call_stmt (gcall *new_stmt, bool update_speculative)
772 tree decl;
774 /* Speculative edges has three component, update all of them
775 when asked to. */
776 if (update_speculative && speculative)
778 cgraph_edge *direct, *indirect;
779 ipa_ref *ref;
781 speculative_call_info (direct, indirect, ref);
782 direct->set_call_stmt (new_stmt, false);
783 indirect->set_call_stmt (new_stmt, false);
784 ref->stmt = new_stmt;
785 return;
788 /* Only direct speculative edges go to call_site_hash. */
789 if (caller->call_site_hash
790 && (!speculative || !indirect_unknown_callee))
792 caller->call_site_hash->remove_elt_with_hash
793 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
796 cgraph_edge *e = this;
798 call_stmt = new_stmt;
799 if (indirect_unknown_callee
800 && (decl = gimple_call_fndecl (new_stmt)))
802 /* Constant propagation (and possibly also inlining?) can turn an
803 indirect call into a direct one. */
804 cgraph_node *new_callee = cgraph_node::get (decl);
806 gcc_checking_assert (new_callee);
807 e = make_direct (new_callee);
810 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
811 e->can_throw_external = stmt_can_throw_external (new_stmt);
812 pop_cfun ();
813 if (e->caller->call_site_hash)
814 cgraph_add_edge_to_call_site_hash (e);
817 /* Allocate a cgraph_edge structure and fill it with data according to the
818 parameters of which only CALLEE can be NULL (when creating an indirect call
819 edge). */
821 cgraph_edge *
822 symbol_table::create_edge (cgraph_node *caller, cgraph_node *callee,
823 gcall *call_stmt, gcov_type count, int freq,
824 bool indir_unknown_callee)
826 cgraph_edge *edge;
828 /* LTO does not actually have access to the call_stmt since these
829 have not been loaded yet. */
830 if (call_stmt)
832 /* This is a rather expensive check possibly triggering
833 construction of call stmt hashtable. */
834 #ifdef ENABLE_CHECKING
835 cgraph_edge *e;
836 gcc_checking_assert (
837 !(e = caller->get_edge (call_stmt)) || e->speculative);
838 #endif
840 gcc_assert (is_gimple_call (call_stmt));
843 if (free_edges)
845 edge = free_edges;
846 free_edges = NEXT_FREE_EDGE (edge);
848 else
850 edge = ggc_alloc<cgraph_edge> ();
851 edge->uid = edges_max_uid++;
854 edges_count++;
856 edge->aux = NULL;
857 edge->caller = caller;
858 edge->callee = callee;
859 edge->prev_caller = NULL;
860 edge->next_caller = NULL;
861 edge->prev_callee = NULL;
862 edge->next_callee = NULL;
863 edge->lto_stmt_uid = 0;
865 edge->count = count;
866 gcc_assert (count >= 0);
867 edge->frequency = freq;
868 gcc_assert (freq >= 0);
869 gcc_assert (freq <= CGRAPH_FREQ_MAX);
871 edge->call_stmt = call_stmt;
872 push_cfun (DECL_STRUCT_FUNCTION (caller->decl));
873 edge->can_throw_external
874 = call_stmt ? stmt_can_throw_external (call_stmt) : false;
875 pop_cfun ();
876 if (call_stmt
877 && callee && callee->decl
878 && !gimple_check_call_matching_types (call_stmt, callee->decl,
879 false))
880 edge->call_stmt_cannot_inline_p = true;
881 else
882 edge->call_stmt_cannot_inline_p = false;
884 edge->indirect_info = NULL;
885 edge->indirect_inlining_edge = 0;
886 edge->speculative = false;
887 edge->indirect_unknown_callee = indir_unknown_callee;
888 if (opt_for_fn (edge->caller->decl, flag_devirtualize)
889 && call_stmt && DECL_STRUCT_FUNCTION (caller->decl))
890 edge->in_polymorphic_cdtor
891 = decl_maybe_in_construction_p (NULL, NULL, call_stmt,
892 caller->decl);
893 else
894 edge->in_polymorphic_cdtor = caller->thunk.thunk_p;
895 if (call_stmt && caller->call_site_hash)
896 cgraph_add_edge_to_call_site_hash (edge);
898 return edge;
901 /* Create edge from a given function to CALLEE in the cgraph. */
903 cgraph_edge *
904 cgraph_node::create_edge (cgraph_node *callee,
905 gcall *call_stmt, gcov_type count, int freq)
907 cgraph_edge *edge = symtab->create_edge (this, callee, call_stmt, count,
908 freq, false);
910 initialize_inline_failed (edge);
912 edge->next_caller = callee->callers;
913 if (callee->callers)
914 callee->callers->prev_caller = edge;
915 edge->next_callee = callees;
916 if (callees)
917 callees->prev_callee = edge;
918 callees = edge;
919 callee->callers = edge;
921 return edge;
924 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
926 cgraph_indirect_call_info *
927 cgraph_allocate_init_indirect_info (void)
929 cgraph_indirect_call_info *ii;
931 ii = ggc_cleared_alloc<cgraph_indirect_call_info> ();
932 ii->param_index = -1;
933 return ii;
936 /* Create an indirect edge with a yet-undetermined callee where the call
937 statement destination is a formal parameter of the caller with index
938 PARAM_INDEX. */
940 cgraph_edge *
941 cgraph_node::create_indirect_edge (gcall *call_stmt, int ecf_flags,
942 gcov_type count, int freq,
943 bool compute_indirect_info)
945 cgraph_edge *edge = symtab->create_edge (this, NULL, call_stmt,
946 count, freq, true);
947 tree target;
949 initialize_inline_failed (edge);
951 edge->indirect_info = cgraph_allocate_init_indirect_info ();
952 edge->indirect_info->ecf_flags = ecf_flags;
953 edge->indirect_info->vptr_changed = true;
955 /* Record polymorphic call info. */
956 if (compute_indirect_info
957 && call_stmt
958 && (target = gimple_call_fn (call_stmt))
959 && virtual_method_call_p (target))
961 ipa_polymorphic_call_context context (decl, target, call_stmt);
963 /* Only record types can have virtual calls. */
964 edge->indirect_info->polymorphic = true;
965 edge->indirect_info->param_index = -1;
966 edge->indirect_info->otr_token
967 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
968 edge->indirect_info->otr_type = obj_type_ref_class (target);
969 gcc_assert (TREE_CODE (edge->indirect_info->otr_type) == RECORD_TYPE);
970 edge->indirect_info->context = context;
973 edge->next_callee = indirect_calls;
974 if (indirect_calls)
975 indirect_calls->prev_callee = edge;
976 indirect_calls = edge;
978 return edge;
981 /* Remove the edge from the list of the callees of the caller. */
983 void
984 cgraph_edge::remove_caller (void)
986 if (prev_callee)
987 prev_callee->next_callee = next_callee;
988 if (next_callee)
989 next_callee->prev_callee = prev_callee;
990 if (!prev_callee)
992 if (indirect_unknown_callee)
993 caller->indirect_calls = next_callee;
994 else
995 caller->callees = next_callee;
997 if (caller->call_site_hash)
998 caller->call_site_hash->remove_elt_with_hash
999 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
1002 /* Put the edge onto the free list. */
1004 void
1005 symbol_table::free_edge (cgraph_edge *e)
1007 int uid = e->uid;
1009 if (e->indirect_info)
1010 ggc_free (e->indirect_info);
1012 /* Clear out the edge so we do not dangle pointers. */
1013 memset (e, 0, sizeof (*e));
1014 e->uid = uid;
1015 NEXT_FREE_EDGE (e) = free_edges;
1016 free_edges = e;
1017 edges_count--;
1020 /* Remove the edge in the cgraph. */
1022 void
1023 cgraph_edge::remove (void)
1025 /* Call all edge removal hooks. */
1026 symtab->call_edge_removal_hooks (this);
1028 if (!indirect_unknown_callee)
1029 /* Remove from callers list of the callee. */
1030 remove_callee ();
1032 /* Remove from callees list of the callers. */
1033 remove_caller ();
1035 /* Put the edge onto the free list. */
1036 symtab->free_edge (this);
1039 /* Turn edge into speculative call calling N2. Update
1040 the profile so the direct call is taken COUNT times
1041 with FREQUENCY.
1043 At clone materialization time, the indirect call E will
1044 be expanded as:
1046 if (call_dest == N2)
1047 n2 ();
1048 else
1049 call call_dest
1051 At this time the function just creates the direct call,
1052 the referencd representing the if conditional and attaches
1053 them all to the orginal indirect call statement.
1055 Return direct edge created. */
1057 cgraph_edge *
1058 cgraph_edge::make_speculative (cgraph_node *n2, gcov_type direct_count,
1059 int direct_frequency)
1061 cgraph_node *n = caller;
1062 ipa_ref *ref = NULL;
1063 cgraph_edge *e2;
1065 if (dump_file)
1067 fprintf (dump_file, "Indirect call -> speculative call"
1068 " %s/%i => %s/%i\n",
1069 xstrdup_for_dump (n->name ()), n->order,
1070 xstrdup_for_dump (n2->name ()), n2->order);
1072 speculative = true;
1073 e2 = n->create_edge (n2, call_stmt, direct_count, direct_frequency);
1074 initialize_inline_failed (e2);
1075 e2->speculative = true;
1076 if (TREE_NOTHROW (n2->decl))
1077 e2->can_throw_external = false;
1078 else
1079 e2->can_throw_external = can_throw_external;
1080 e2->lto_stmt_uid = lto_stmt_uid;
1081 e2->in_polymorphic_cdtor = in_polymorphic_cdtor;
1082 count -= e2->count;
1083 frequency -= e2->frequency;
1084 symtab->call_edge_duplication_hooks (this, e2);
1085 ref = n->create_reference (n2, IPA_REF_ADDR, call_stmt);
1086 ref->lto_stmt_uid = lto_stmt_uid;
1087 ref->speculative = speculative;
1088 n2->mark_address_taken ();
1089 return e2;
1092 /* Speculative call consist of three components:
1093 1) an indirect edge representing the original call
1094 2) an direct edge representing the new call
1095 3) ADDR_EXPR reference representing the speculative check.
1096 All three components are attached to single statement (the indirect
1097 call) and if one of them exists, all of them must exist.
1099 Given speculative call edge, return all three components.
1102 void
1103 cgraph_edge::speculative_call_info (cgraph_edge *&direct,
1104 cgraph_edge *&indirect,
1105 ipa_ref *&reference)
1107 ipa_ref *ref;
1108 int i;
1109 cgraph_edge *e2;
1110 cgraph_edge *e = this;
1112 if (!e->indirect_unknown_callee)
1113 for (e2 = e->caller->indirect_calls;
1114 e2->call_stmt != e->call_stmt || e2->lto_stmt_uid != e->lto_stmt_uid;
1115 e2 = e2->next_callee)
1117 else
1119 e2 = e;
1120 /* We can take advantage of the call stmt hash. */
1121 if (e2->call_stmt)
1123 e = e->caller->get_edge (e2->call_stmt);
1124 gcc_assert (e->speculative && !e->indirect_unknown_callee);
1126 else
1127 for (e = e->caller->callees;
1128 e2->call_stmt != e->call_stmt
1129 || e2->lto_stmt_uid != e->lto_stmt_uid;
1130 e = e->next_callee)
1133 gcc_assert (e->speculative && e2->speculative);
1134 direct = e;
1135 indirect = e2;
1137 reference = NULL;
1138 for (i = 0; e->caller->iterate_reference (i, ref); i++)
1139 if (ref->speculative
1140 && ((ref->stmt && ref->stmt == e->call_stmt)
1141 || (!ref->stmt && ref->lto_stmt_uid == e->lto_stmt_uid)))
1143 reference = ref;
1144 break;
1147 /* Speculative edge always consist of all three components - direct edge,
1148 indirect and reference. */
1150 gcc_assert (e && e2 && ref);
1153 /* Speculative call edge turned out to be direct call to CALLE_DECL.
1154 Remove the speculative call sequence and return edge representing the call.
1155 It is up to caller to redirect the call as appropriate. */
1157 cgraph_edge *
1158 cgraph_edge::resolve_speculation (tree callee_decl)
1160 cgraph_edge *edge = this;
1161 cgraph_edge *e2;
1162 ipa_ref *ref;
1164 gcc_assert (edge->speculative);
1165 edge->speculative_call_info (e2, edge, ref);
1166 if (!callee_decl
1167 || !ref->referred->semantically_equivalent_p
1168 (symtab_node::get (callee_decl)))
1170 if (dump_file)
1172 if (callee_decl)
1174 fprintf (dump_file, "Speculative indirect call %s/%i => %s/%i has "
1175 "turned out to have contradicting known target ",
1176 xstrdup_for_dump (edge->caller->name ()),
1177 edge->caller->order,
1178 xstrdup_for_dump (e2->callee->name ()),
1179 e2->callee->order);
1180 print_generic_expr (dump_file, callee_decl, 0);
1181 fprintf (dump_file, "\n");
1183 else
1185 fprintf (dump_file, "Removing speculative call %s/%i => %s/%i\n",
1186 xstrdup_for_dump (edge->caller->name ()),
1187 edge->caller->order,
1188 xstrdup_for_dump (e2->callee->name ()),
1189 e2->callee->order);
1193 else
1195 cgraph_edge *tmp = edge;
1196 if (dump_file)
1197 fprintf (dump_file, "Speculative call turned into direct call.\n");
1198 edge = e2;
1199 e2 = tmp;
1200 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1201 in the functions inlined through it. */
1203 edge->count += e2->count;
1204 edge->frequency += e2->frequency;
1205 if (edge->frequency > CGRAPH_FREQ_MAX)
1206 edge->frequency = CGRAPH_FREQ_MAX;
1207 edge->speculative = false;
1208 e2->speculative = false;
1209 ref->remove_reference ();
1210 if (e2->indirect_unknown_callee || e2->inline_failed)
1211 e2->remove ();
1212 else
1213 e2->callee->remove_symbol_and_inline_clones ();
1214 if (edge->caller->call_site_hash)
1215 cgraph_update_edge_in_call_site_hash (edge);
1216 return edge;
1219 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1220 CALLEE. DELTA is an integer constant that is to be added to the this
1221 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1223 cgraph_edge *
1224 cgraph_edge::make_direct (cgraph_node *callee)
1226 cgraph_edge *edge = this;
1227 gcc_assert (indirect_unknown_callee);
1229 /* If we are redirecting speculative call, make it non-speculative. */
1230 if (indirect_unknown_callee && speculative)
1232 edge = edge->resolve_speculation (callee->decl);
1234 /* On successful speculation just return the pre existing direct edge. */
1235 if (!indirect_unknown_callee)
1236 return edge;
1239 indirect_unknown_callee = 0;
1240 ggc_free (indirect_info);
1241 indirect_info = NULL;
1243 /* Get the edge out of the indirect edge list. */
1244 if (prev_callee)
1245 prev_callee->next_callee = next_callee;
1246 if (next_callee)
1247 next_callee->prev_callee = prev_callee;
1248 if (!prev_callee)
1249 caller->indirect_calls = next_callee;
1251 /* Put it into the normal callee list */
1252 prev_callee = NULL;
1253 next_callee = caller->callees;
1254 if (caller->callees)
1255 caller->callees->prev_callee = edge;
1256 caller->callees = edge;
1258 /* Insert to callers list of the new callee. */
1259 edge->set_callee (callee);
1261 if (call_stmt)
1262 call_stmt_cannot_inline_p
1263 = !gimple_check_call_matching_types (call_stmt, callee->decl,
1264 false);
1266 /* We need to re-determine the inlining status of the edge. */
1267 initialize_inline_failed (edge);
1268 return edge;
1271 /* If necessary, change the function declaration in the call statement
1272 associated with E so that it corresponds to the edge callee. */
1274 gimple
1275 cgraph_edge::redirect_call_stmt_to_callee (void)
1277 cgraph_edge *e = this;
1279 tree decl = gimple_call_fndecl (e->call_stmt);
1280 tree lhs = gimple_call_lhs (e->call_stmt);
1281 gcall *new_stmt;
1282 gimple_stmt_iterator gsi;
1283 bool skip_bounds = false;
1284 #ifdef ENABLE_CHECKING
1285 cgraph_node *node;
1286 #endif
1288 if (e->speculative)
1290 cgraph_edge *e2;
1291 gcall *new_stmt;
1292 ipa_ref *ref;
1294 e->speculative_call_info (e, e2, ref);
1295 /* If there already is an direct call (i.e. as a result of inliner's
1296 substitution), forget about speculating. */
1297 if (decl)
1298 e = e->resolve_speculation (decl);
1299 /* If types do not match, speculation was likely wrong.
1300 The direct edge was posisbly redirected to the clone with a different
1301 signature. We did not update the call statement yet, so compare it
1302 with the reference that still points to the proper type. */
1303 else if (!gimple_check_call_matching_types (e->call_stmt,
1304 ref->referred->decl,
1305 true))
1307 if (dump_file)
1308 fprintf (dump_file, "Not expanding speculative call of %s/%i -> %s/%i\n"
1309 "Type mismatch.\n",
1310 xstrdup_for_dump (e->caller->name ()),
1311 e->caller->order,
1312 xstrdup_for_dump (e->callee->name ()),
1313 e->callee->order);
1314 e = e->resolve_speculation ();
1315 /* We are producing the final function body and will throw away the
1316 callgraph edges really soon. Reset the counts/frequencies to
1317 keep verifier happy in the case of roundoff errors. */
1318 e->count = gimple_bb (e->call_stmt)->count;
1319 e->frequency = compute_call_stmt_bb_frequency
1320 (e->caller->decl, gimple_bb (e->call_stmt));
1322 /* Expand speculation into GIMPLE code. */
1323 else
1325 if (dump_file)
1326 fprintf (dump_file,
1327 "Expanding speculative call of %s/%i -> %s/%i count:"
1328 "%" PRId64"\n",
1329 xstrdup_for_dump (e->caller->name ()),
1330 e->caller->order,
1331 xstrdup_for_dump (e->callee->name ()),
1332 e->callee->order,
1333 (int64_t)e->count);
1334 gcc_assert (e2->speculative);
1335 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
1336 new_stmt = gimple_ic (e->call_stmt,
1337 dyn_cast<cgraph_node *> (ref->referred),
1338 e->count || e2->count
1339 ? RDIV (e->count * REG_BR_PROB_BASE,
1340 e->count + e2->count)
1341 : e->frequency || e2->frequency
1342 ? RDIV (e->frequency * REG_BR_PROB_BASE,
1343 e->frequency + e2->frequency)
1344 : REG_BR_PROB_BASE / 2,
1345 e->count, e->count + e2->count);
1346 e->speculative = false;
1347 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt,
1348 false);
1350 /* Fix edges for BUILT_IN_CHKP_BNDRET calls attached to the
1351 processed call stmt. */
1352 if (gimple_call_with_bounds_p (new_stmt)
1353 && gimple_call_lhs (new_stmt)
1354 && chkp_retbnd_call_by_val (gimple_call_lhs (e2->call_stmt)))
1356 tree dresult = gimple_call_lhs (new_stmt);
1357 tree iresult = gimple_call_lhs (e2->call_stmt);
1358 gcall *dbndret = chkp_retbnd_call_by_val (dresult);
1359 gcall *ibndret = chkp_retbnd_call_by_val (iresult);
1360 struct cgraph_edge *iedge
1361 = e2->caller->cgraph_node::get_edge (ibndret);
1362 struct cgraph_edge *dedge;
1364 if (dbndret)
1366 dedge = iedge->caller->create_edge (iedge->callee,
1367 dbndret, e->count,
1368 e->frequency);
1369 dedge->frequency = compute_call_stmt_bb_frequency
1370 (dedge->caller->decl, gimple_bb (dedge->call_stmt));
1372 iedge->frequency = compute_call_stmt_bb_frequency
1373 (iedge->caller->decl, gimple_bb (iedge->call_stmt));
1376 e->frequency = compute_call_stmt_bb_frequency
1377 (e->caller->decl, gimple_bb (e->call_stmt));
1378 e2->frequency = compute_call_stmt_bb_frequency
1379 (e2->caller->decl, gimple_bb (e2->call_stmt));
1380 e2->speculative = false;
1381 ref->speculative = false;
1382 ref->stmt = NULL;
1383 /* Indirect edges are not both in the call site hash.
1384 get it updated. */
1385 if (e->caller->call_site_hash)
1386 cgraph_update_edge_in_call_site_hash (e2);
1387 pop_cfun ();
1388 /* Continue redirecting E to proper target. */
1392 /* We might propagate instrumented function pointer into
1393 not instrumented function and vice versa. In such a
1394 case we need to either fix function declaration or
1395 remove bounds from call statement. */
1396 if (flag_check_pointer_bounds && e->callee)
1397 skip_bounds = chkp_redirect_edge (e);
1399 if (e->indirect_unknown_callee
1400 || (decl == e->callee->decl
1401 && !skip_bounds))
1402 return e->call_stmt;
1404 #ifdef ENABLE_CHECKING
1405 if (decl)
1407 node = cgraph_node::get (decl);
1408 gcc_assert (!node || !node->clone.combined_args_to_skip);
1410 #endif
1412 if (symtab->dump_file)
1414 fprintf (symtab->dump_file, "updating call of %s/%i -> %s/%i: ",
1415 xstrdup_for_dump (e->caller->name ()), e->caller->order,
1416 xstrdup_for_dump (e->callee->name ()), e->callee->order);
1417 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1418 if (e->callee->clone.combined_args_to_skip)
1420 fprintf (symtab->dump_file, " combined args to skip: ");
1421 dump_bitmap (symtab->dump_file,
1422 e->callee->clone.combined_args_to_skip);
1426 if (e->callee->clone.combined_args_to_skip
1427 || skip_bounds)
1429 int lp_nr;
1431 new_stmt = e->call_stmt;
1432 if (e->callee->clone.combined_args_to_skip)
1433 new_stmt
1434 = gimple_call_copy_skip_args (new_stmt,
1435 e->callee->clone.combined_args_to_skip);
1436 if (skip_bounds)
1437 new_stmt = chkp_copy_call_skip_bounds (new_stmt);
1439 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1440 gimple_call_set_fntype (new_stmt, gimple_call_fntype (e->call_stmt));
1442 if (gimple_vdef (new_stmt)
1443 && TREE_CODE (gimple_vdef (new_stmt)) == SSA_NAME)
1444 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
1446 gsi = gsi_for_stmt (e->call_stmt);
1447 gsi_replace (&gsi, new_stmt, false);
1448 /* We need to defer cleaning EH info on the new statement to
1449 fixup-cfg. We may not have dominator information at this point
1450 and thus would end up with unreachable blocks and have no way
1451 to communicate that we need to run CFG cleanup then. */
1452 lp_nr = lookup_stmt_eh_lp (e->call_stmt);
1453 if (lp_nr != 0)
1455 remove_stmt_from_eh_lp (e->call_stmt);
1456 add_stmt_to_eh_lp (new_stmt, lp_nr);
1459 else
1461 new_stmt = e->call_stmt;
1462 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1463 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1466 /* If the call becomes noreturn, remove the LHS if possible. */
1467 if (lhs
1468 && (gimple_call_flags (new_stmt) & ECF_NORETURN)
1469 && TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (lhs))) == INTEGER_CST)
1471 if (TREE_CODE (lhs) == SSA_NAME)
1473 tree var = create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e->caller->decl),
1474 TREE_TYPE (lhs), NULL);
1475 var = get_or_create_ssa_default_def
1476 (DECL_STRUCT_FUNCTION (e->caller->decl), var);
1477 gimple set_stmt = gimple_build_assign (lhs, var);
1478 gsi = gsi_for_stmt (new_stmt);
1479 gsi_insert_before_without_update (&gsi, set_stmt, GSI_SAME_STMT);
1480 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), set_stmt);
1482 gimple_call_set_lhs (new_stmt, NULL_TREE);
1483 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1486 /* If new callee has no static chain, remove it. */
1487 if (gimple_call_chain (new_stmt) && !DECL_STATIC_CHAIN (e->callee->decl))
1489 gimple_call_set_chain (new_stmt, NULL);
1490 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1493 maybe_remove_unused_call_args (DECL_STRUCT_FUNCTION (e->caller->decl),
1494 new_stmt);
1496 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt, false);
1498 if (symtab->dump_file)
1500 fprintf (symtab->dump_file, " updated to:");
1501 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1503 return new_stmt;
1506 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1507 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1508 of OLD_STMT if it was previously call statement.
1509 If NEW_STMT is NULL, the call has been dropped without any
1510 replacement. */
1512 static void
1513 cgraph_update_edges_for_call_stmt_node (cgraph_node *node,
1514 gimple old_stmt, tree old_call,
1515 gimple new_stmt)
1517 tree new_call = (new_stmt && is_gimple_call (new_stmt))
1518 ? gimple_call_fndecl (new_stmt) : 0;
1520 /* We are seeing indirect calls, then there is nothing to update. */
1521 if (!new_call && !old_call)
1522 return;
1523 /* See if we turned indirect call into direct call or folded call to one builtin
1524 into different builtin. */
1525 if (old_call != new_call)
1527 cgraph_edge *e = node->get_edge (old_stmt);
1528 cgraph_edge *ne = NULL;
1529 gcov_type count;
1530 int frequency;
1532 if (e)
1534 /* Keep calls marked as dead dead. */
1535 if (new_stmt && is_gimple_call (new_stmt) && e->callee
1536 && DECL_BUILT_IN_CLASS (e->callee->decl) == BUILT_IN_NORMAL
1537 && DECL_FUNCTION_CODE (e->callee->decl) == BUILT_IN_UNREACHABLE)
1539 node->get_edge (old_stmt)->set_call_stmt
1540 (as_a <gcall *> (new_stmt));
1541 return;
1543 /* See if the edge is already there and has the correct callee. It
1544 might be so because of indirect inlining has already updated
1545 it. We also might've cloned and redirected the edge. */
1546 if (new_call && e->callee)
1548 cgraph_node *callee = e->callee;
1549 while (callee)
1551 if (callee->decl == new_call
1552 || callee->former_clone_of == new_call)
1554 e->set_call_stmt (as_a <gcall *> (new_stmt));
1555 return;
1557 callee = callee->clone_of;
1561 /* Otherwise remove edge and create new one; we can't simply redirect
1562 since function has changed, so inline plan and other information
1563 attached to edge is invalid. */
1564 count = e->count;
1565 frequency = e->frequency;
1566 if (e->indirect_unknown_callee || e->inline_failed)
1567 e->remove ();
1568 else
1569 e->callee->remove_symbol_and_inline_clones ();
1571 else if (new_call)
1573 /* We are seeing new direct call; compute profile info based on BB. */
1574 basic_block bb = gimple_bb (new_stmt);
1575 count = bb->count;
1576 frequency = compute_call_stmt_bb_frequency (current_function_decl,
1577 bb);
1580 if (new_call)
1582 ne = node->create_edge (cgraph_node::get_create (new_call),
1583 as_a <gcall *> (new_stmt), count,
1584 frequency);
1585 gcc_assert (ne->inline_failed);
1588 /* We only updated the call stmt; update pointer in cgraph edge.. */
1589 else if (old_stmt != new_stmt)
1590 node->get_edge (old_stmt)->set_call_stmt (as_a <gcall *> (new_stmt));
1593 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1594 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1595 of OLD_STMT before it was updated (updating can happen inplace). */
1597 void
1598 cgraph_update_edges_for_call_stmt (gimple old_stmt, tree old_decl, gimple new_stmt)
1600 cgraph_node *orig = cgraph_node::get (cfun->decl);
1601 cgraph_node *node;
1603 gcc_checking_assert (orig);
1604 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1605 if (orig->clones)
1606 for (node = orig->clones; node != orig;)
1608 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1609 if (node->clones)
1610 node = node->clones;
1611 else if (node->next_sibling_clone)
1612 node = node->next_sibling_clone;
1613 else
1615 while (node != orig && !node->next_sibling_clone)
1616 node = node->clone_of;
1617 if (node != orig)
1618 node = node->next_sibling_clone;
1624 /* Remove all callees from the node. */
1626 void
1627 cgraph_node::remove_callees (void)
1629 cgraph_edge *e, *f;
1631 /* It is sufficient to remove the edges from the lists of callers of
1632 the callees. The callee list of the node can be zapped with one
1633 assignment. */
1634 for (e = callees; e; e = f)
1636 f = e->next_callee;
1637 symtab->call_edge_removal_hooks (e);
1638 if (!e->indirect_unknown_callee)
1639 e->remove_callee ();
1640 symtab->free_edge (e);
1642 for (e = indirect_calls; e; e = f)
1644 f = e->next_callee;
1645 symtab->call_edge_removal_hooks (e);
1646 if (!e->indirect_unknown_callee)
1647 e->remove_callee ();
1648 symtab->free_edge (e);
1650 indirect_calls = NULL;
1651 callees = NULL;
1652 if (call_site_hash)
1654 call_site_hash->empty ();
1655 call_site_hash = NULL;
1659 /* Remove all callers from the node. */
1661 void
1662 cgraph_node::remove_callers (void)
1664 cgraph_edge *e, *f;
1666 /* It is sufficient to remove the edges from the lists of callees of
1667 the callers. The caller list of the node can be zapped with one
1668 assignment. */
1669 for (e = callers; e; e = f)
1671 f = e->next_caller;
1672 symtab->call_edge_removal_hooks (e);
1673 e->remove_caller ();
1674 symtab->free_edge (e);
1676 callers = NULL;
1679 /* Helper function for cgraph_release_function_body and free_lang_data.
1680 It releases body from function DECL without having to inspect its
1681 possibly non-existent symtab node. */
1683 void
1684 release_function_body (tree decl)
1686 if (DECL_STRUCT_FUNCTION (decl))
1688 if (DECL_STRUCT_FUNCTION (decl)->cfg
1689 || DECL_STRUCT_FUNCTION (decl)->gimple_df)
1691 push_cfun (DECL_STRUCT_FUNCTION (decl));
1692 if (cfun->cfg
1693 && current_loops)
1695 cfun->curr_properties &= ~PROP_loops;
1696 loop_optimizer_finalize ();
1698 if (cfun->gimple_df)
1700 delete_tree_ssa ();
1701 delete_tree_cfg_annotations ();
1702 cfun->eh = NULL;
1704 if (cfun->cfg)
1706 gcc_assert (!dom_info_available_p (CDI_DOMINATORS));
1707 gcc_assert (!dom_info_available_p (CDI_POST_DOMINATORS));
1708 clear_edges ();
1709 cfun->cfg = NULL;
1711 if (cfun->value_histograms)
1712 free_histograms ();
1713 pop_cfun ();
1715 gimple_set_body (decl, NULL);
1716 /* Struct function hangs a lot of data that would leak if we didn't
1717 removed all pointers to it. */
1718 ggc_free (DECL_STRUCT_FUNCTION (decl));
1719 DECL_STRUCT_FUNCTION (decl) = NULL;
1721 DECL_SAVED_TREE (decl) = NULL;
1724 /* Release memory used to represent body of function.
1725 Use this only for functions that are released before being translated to
1726 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1727 are free'd in final.c via free_after_compilation().
1728 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1730 void
1731 cgraph_node::release_body (bool keep_arguments)
1733 ipa_transforms_to_apply.release ();
1734 if (!used_as_abstract_origin && symtab->state != PARSING)
1736 DECL_RESULT (decl) = NULL;
1738 if (!keep_arguments)
1739 DECL_ARGUMENTS (decl) = NULL;
1741 /* If the node is abstract and needed, then do not clear DECL_INITIAL
1742 of its associated function function declaration because it's
1743 needed to emit debug info later. */
1744 if (!used_as_abstract_origin && DECL_INITIAL (decl))
1745 DECL_INITIAL (decl) = error_mark_node;
1746 release_function_body (decl);
1747 if (lto_file_data)
1749 lto_free_function_in_decl_state_for_node (this);
1750 lto_file_data = NULL;
1754 /* Remove function from symbol table. */
1756 void
1757 cgraph_node::remove (void)
1759 cgraph_node *n;
1760 int uid = this->uid;
1762 symtab->call_cgraph_removal_hooks (this);
1763 remove_callers ();
1764 remove_callees ();
1765 ipa_transforms_to_apply.release ();
1767 /* Incremental inlining access removed nodes stored in the postorder list.
1769 force_output = false;
1770 forced_by_abi = false;
1771 for (n = nested; n; n = n->next_nested)
1772 n->origin = NULL;
1773 nested = NULL;
1774 if (origin)
1776 cgraph_node **node2 = &origin->nested;
1778 while (*node2 != this)
1779 node2 = &(*node2)->next_nested;
1780 *node2 = next_nested;
1782 unregister ();
1783 if (prev_sibling_clone)
1784 prev_sibling_clone->next_sibling_clone = next_sibling_clone;
1785 else if (clone_of)
1786 clone_of->clones = next_sibling_clone;
1787 if (next_sibling_clone)
1788 next_sibling_clone->prev_sibling_clone = prev_sibling_clone;
1789 if (clones)
1791 cgraph_node *n, *next;
1793 if (clone_of)
1795 for (n = clones; n->next_sibling_clone; n = n->next_sibling_clone)
1796 n->clone_of = clone_of;
1797 n->clone_of = clone_of;
1798 n->next_sibling_clone = clone_of->clones;
1799 if (clone_of->clones)
1800 clone_of->clones->prev_sibling_clone = n;
1801 clone_of->clones = clones;
1803 else
1805 /* We are removing node with clones. This makes clones inconsistent,
1806 but assume they will be removed subsequently and just keep clone
1807 tree intact. This can happen in unreachable function removal since
1808 we remove unreachable functions in random order, not by bottom-up
1809 walk of clone trees. */
1810 for (n = clones; n; n = next)
1812 next = n->next_sibling_clone;
1813 n->next_sibling_clone = NULL;
1814 n->prev_sibling_clone = NULL;
1815 n->clone_of = NULL;
1820 /* While all the clones are removed after being proceeded, the function
1821 itself is kept in the cgraph even after it is compiled. Check whether
1822 we are done with this body and reclaim it proactively if this is the case.
1824 if (symtab->state != LTO_STREAMING)
1826 n = cgraph_node::get (decl);
1827 if (!n
1828 || (!n->clones && !n->clone_of && !n->global.inlined_to
1829 && ((symtab->global_info_ready || in_lto_p)
1830 && (TREE_ASM_WRITTEN (n->decl)
1831 || DECL_EXTERNAL (n->decl)
1832 || !n->analyzed
1833 || (!flag_wpa && n->in_other_partition)))))
1834 release_body ();
1836 else
1838 lto_free_function_in_decl_state_for_node (this);
1839 lto_file_data = NULL;
1842 decl = NULL;
1843 if (call_site_hash)
1845 call_site_hash->empty ();
1846 call_site_hash = NULL;
1849 if (instrumented_version)
1851 instrumented_version->instrumented_version = NULL;
1852 instrumented_version = NULL;
1855 symtab->release_symbol (this, uid);
1858 /* Likewise indicate that a node is having address taken. */
1860 void
1861 cgraph_node::mark_address_taken (void)
1863 /* Indirect inlining can figure out that all uses of the address are
1864 inlined. */
1865 if (global.inlined_to)
1867 gcc_assert (cfun->after_inlining);
1868 gcc_assert (callers->indirect_inlining_edge);
1869 return;
1871 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1872 IPA_REF_ADDR reference exists (and thus it should be set on node
1873 representing alias we take address of) and as a test whether address
1874 of the object was taken (and thus it should be set on node alias is
1875 referring to). We should remove the first use and the remove the
1876 following set. */
1877 address_taken = 1;
1878 cgraph_node *node = ultimate_alias_target ();
1879 node->address_taken = 1;
1882 /* Return local info for the compiled function. */
1884 cgraph_local_info *
1885 cgraph_node::local_info (tree decl)
1887 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1888 cgraph_node *node = get (decl);
1889 if (!node)
1890 return NULL;
1891 return &node->ultimate_alias_target ()->local;
1894 /* Return local info for the compiled function. */
1896 cgraph_rtl_info *
1897 cgraph_node::rtl_info (tree decl)
1899 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1900 cgraph_node *node = get (decl);
1901 if (!node)
1902 return NULL;
1903 node = node->ultimate_alias_target ();
1904 if (node->decl != current_function_decl
1905 && !TREE_ASM_WRITTEN (node->decl))
1906 return NULL;
1907 /* Allocate if it doesnt exist. */
1908 if (node->ultimate_alias_target ()->rtl == NULL)
1909 node->ultimate_alias_target ()->rtl = ggc_cleared_alloc<cgraph_rtl_info> ();
1910 return node->ultimate_alias_target ()->rtl;
1913 /* Return a string describing the failure REASON. */
1915 const char*
1916 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1918 #undef DEFCIFCODE
1919 #define DEFCIFCODE(code, type, string) string,
1921 static const char *cif_string_table[CIF_N_REASONS] = {
1922 #include "cif-code.def"
1925 /* Signedness of an enum type is implementation defined, so cast it
1926 to unsigned before testing. */
1927 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1928 return cif_string_table[reason];
1931 /* Return a type describing the failure REASON. */
1933 cgraph_inline_failed_type_t
1934 cgraph_inline_failed_type (cgraph_inline_failed_t reason)
1936 #undef DEFCIFCODE
1937 #define DEFCIFCODE(code, type, string) type,
1939 static cgraph_inline_failed_type_t cif_type_table[CIF_N_REASONS] = {
1940 #include "cif-code.def"
1943 /* Signedness of an enum type is implementation defined, so cast it
1944 to unsigned before testing. */
1945 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1946 return cif_type_table[reason];
1949 /* Names used to print out the availability enum. */
1950 const char * const cgraph_availability_names[] =
1951 {"unset", "not_available", "overwritable", "available", "local"};
1953 /* Output flags of edge to a file F. */
1955 void
1956 cgraph_edge::dump_edge_flags (FILE *f)
1958 if (speculative)
1959 fprintf (f, "(speculative) ");
1960 if (!inline_failed)
1961 fprintf (f, "(inlined) ");
1962 if (indirect_inlining_edge)
1963 fprintf (f, "(indirect_inlining) ");
1964 if (count)
1965 fprintf (f, "(%" PRId64"x) ", (int64_t)count);
1966 if (frequency)
1967 fprintf (f, "(%.2f per call) ", frequency / (double)CGRAPH_FREQ_BASE);
1968 if (can_throw_external)
1969 fprintf (f, "(can throw external) ");
1972 /* Dump call graph node to file F. */
1974 void
1975 cgraph_node::dump (FILE *f)
1977 cgraph_edge *edge;
1979 dump_base (f);
1981 if (global.inlined_to)
1982 fprintf (f, " Function %s/%i is inline copy in %s/%i\n",
1983 xstrdup_for_dump (name ()),
1984 order,
1985 xstrdup_for_dump (global.inlined_to->name ()),
1986 global.inlined_to->order);
1987 if (clone_of)
1988 fprintf (f, " Clone of %s/%i\n",
1989 clone_of->asm_name (),
1990 clone_of->order);
1991 if (symtab->function_flags_ready)
1992 fprintf (f, " Availability: %s\n",
1993 cgraph_availability_names [get_availability ()]);
1995 if (profile_id)
1996 fprintf (f, " Profile id: %i\n",
1997 profile_id);
1998 fprintf (f, " First run: %i\n", tp_first_run);
1999 fprintf (f, " Function flags:");
2000 if (count)
2001 fprintf (f, " executed %" PRId64"x",
2002 (int64_t)count);
2003 if (origin)
2004 fprintf (f, " nested in: %s", origin->asm_name ());
2005 if (gimple_has_body_p (decl))
2006 fprintf (f, " body");
2007 if (process)
2008 fprintf (f, " process");
2009 if (local.local)
2010 fprintf (f, " local");
2011 if (local.redefined_extern_inline)
2012 fprintf (f, " redefined_extern_inline");
2013 if (only_called_at_startup)
2014 fprintf (f, " only_called_at_startup");
2015 if (only_called_at_exit)
2016 fprintf (f, " only_called_at_exit");
2017 if (tm_clone)
2018 fprintf (f, " tm_clone");
2019 if (icf_merged)
2020 fprintf (f, " icf_merged");
2021 if (nonfreeing_fn)
2022 fprintf (f, " nonfreeing_fn");
2023 if (DECL_STATIC_CONSTRUCTOR (decl))
2024 fprintf (f," static_constructor (priority:%i)", get_init_priority ());
2025 if (DECL_STATIC_DESTRUCTOR (decl))
2026 fprintf (f," static_destructor (priority:%i)", get_fini_priority ());
2027 if (frequency == NODE_FREQUENCY_HOT)
2028 fprintf (f, " hot");
2029 if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2030 fprintf (f, " unlikely_executed");
2031 if (frequency == NODE_FREQUENCY_EXECUTED_ONCE)
2032 fprintf (f, " executed_once");
2033 if (only_called_at_startup)
2034 fprintf (f, " only_called_at_startup");
2035 if (only_called_at_exit)
2036 fprintf (f, " only_called_at_exit");
2037 if (opt_for_fn (decl, optimize_size))
2038 fprintf (f, " optimize_size");
2039 if (parallelized_function)
2040 fprintf (f, " parallelized_function");
2042 fprintf (f, "\n");
2044 if (thunk.thunk_p)
2046 fprintf (f, " Thunk");
2047 if (thunk.alias)
2048 fprintf (f, " of %s (asm: %s)",
2049 lang_hooks.decl_printable_name (thunk.alias, 2),
2050 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2051 fprintf (f, " fixed offset %i virtual value %i has "
2052 "virtual offset %i)\n",
2053 (int)thunk.fixed_offset,
2054 (int)thunk.virtual_value,
2055 (int)thunk.virtual_offset_p);
2057 if (alias && thunk.alias
2058 && DECL_P (thunk.alias))
2060 fprintf (f, " Alias of %s",
2061 lang_hooks.decl_printable_name (thunk.alias, 2));
2062 if (DECL_ASSEMBLER_NAME_SET_P (thunk.alias))
2063 fprintf (f, " (asm: %s)",
2064 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2065 fprintf (f, "\n");
2068 fprintf (f, " Called by: ");
2070 for (edge = callers; edge; edge = edge->next_caller)
2072 fprintf (f, "%s/%i ", edge->caller->asm_name (),
2073 edge->caller->order);
2074 edge->dump_edge_flags (f);
2077 fprintf (f, "\n Calls: ");
2078 for (edge = callees; edge; edge = edge->next_callee)
2080 fprintf (f, "%s/%i ", edge->callee->asm_name (),
2081 edge->callee->order);
2082 edge->dump_edge_flags (f);
2084 fprintf (f, "\n");
2086 for (edge = indirect_calls; edge; edge = edge->next_callee)
2088 if (edge->indirect_info->polymorphic)
2090 fprintf (f, " Polymorphic indirect call of type ");
2091 print_generic_expr (f, edge->indirect_info->otr_type, TDF_SLIM);
2092 fprintf (f, " token:%i", (int) edge->indirect_info->otr_token);
2094 else
2095 fprintf (f, " Indirect call");
2096 edge->dump_edge_flags (f);
2097 if (edge->indirect_info->param_index != -1)
2099 fprintf (f, " of param:%i", edge->indirect_info->param_index);
2100 if (edge->indirect_info->agg_contents)
2101 fprintf (f, " loaded from %s %s at offset %i",
2102 edge->indirect_info->member_ptr ? "member ptr" : "aggregate",
2103 edge->indirect_info->by_ref ? "passed by reference":"",
2104 (int)edge->indirect_info->offset);
2105 if (edge->indirect_info->vptr_changed)
2106 fprintf (f, " (vptr maybe changed)");
2108 fprintf (f, "\n");
2109 if (edge->indirect_info->polymorphic)
2110 edge->indirect_info->context.dump (f);
2113 if (instrumentation_clone)
2114 fprintf (f, " Is instrumented version.\n");
2115 else if (instrumented_version)
2116 fprintf (f, " Has instrumented version.\n");
2119 /* Dump call graph node NODE to stderr. */
2121 DEBUG_FUNCTION void
2122 cgraph_node::debug (void)
2124 dump (stderr);
2127 /* Dump the callgraph to file F. */
2129 void
2130 cgraph_node::dump_cgraph (FILE *f)
2132 cgraph_node *node;
2134 fprintf (f, "callgraph:\n\n");
2135 FOR_EACH_FUNCTION (node)
2136 node->dump (f);
2139 /* Return true when the DECL can possibly be inlined. */
2141 bool
2142 cgraph_function_possibly_inlined_p (tree decl)
2144 if (!symtab->global_info_ready)
2145 return !DECL_UNINLINABLE (decl);
2146 return DECL_POSSIBLY_INLINED (decl);
2149 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2150 void
2151 cgraph_node::unnest (void)
2153 cgraph_node **node2 = &origin->nested;
2154 gcc_assert (origin);
2156 while (*node2 != this)
2157 node2 = &(*node2)->next_nested;
2158 *node2 = next_nested;
2159 origin = NULL;
2162 /* Return function availability. See cgraph.h for description of individual
2163 return values. */
2164 enum availability
2165 cgraph_node::get_availability (void)
2167 enum availability avail;
2168 if (!analyzed)
2169 avail = AVAIL_NOT_AVAILABLE;
2170 else if (local.local)
2171 avail = AVAIL_LOCAL;
2172 else if (alias && weakref)
2173 ultimate_alias_target (&avail);
2174 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
2175 avail = AVAIL_INTERPOSABLE;
2176 else if (!externally_visible)
2177 avail = AVAIL_AVAILABLE;
2178 /* Inline functions are safe to be analyzed even if their symbol can
2179 be overwritten at runtime. It is not meaningful to enforce any sane
2180 behaviour on replacing inline function by different body. */
2181 else if (DECL_DECLARED_INLINE_P (decl))
2182 avail = AVAIL_AVAILABLE;
2184 /* If the function can be overwritten, return OVERWRITABLE. Take
2185 care at least of two notable extensions - the COMDAT functions
2186 used to share template instantiations in C++ (this is symmetric
2187 to code cp_cannot_inline_tree_fn and probably shall be shared and
2188 the inlinability hooks completely eliminated).
2190 ??? Does the C++ one definition rule allow us to always return
2191 AVAIL_AVAILABLE here? That would be good reason to preserve this
2192 bit. */
2194 else if (decl_replaceable_p (decl) && !DECL_EXTERNAL (decl))
2195 avail = AVAIL_INTERPOSABLE;
2196 else avail = AVAIL_AVAILABLE;
2198 return avail;
2201 /* Worker for cgraph_node_can_be_local_p. */
2202 static bool
2203 cgraph_node_cannot_be_local_p_1 (cgraph_node *node, void *)
2205 return !(!node->force_output
2206 && ((DECL_COMDAT (node->decl)
2207 && !node->forced_by_abi
2208 && !node->used_from_object_file_p ()
2209 && !node->same_comdat_group)
2210 || !node->externally_visible));
2213 /* Return true if cgraph_node can be made local for API change.
2214 Extern inline functions and C++ COMDAT functions can be made local
2215 at the expense of possible code size growth if function is used in multiple
2216 compilation units. */
2217 bool
2218 cgraph_node::can_be_local_p (void)
2220 return (!address_taken
2221 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1,
2222 NULL, true));
2225 /* Call callback on cgraph_node, thunks and aliases associated to cgraph_node.
2226 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2227 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
2228 skipped. */
2229 bool
2230 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback)
2231 (cgraph_node *, void *),
2232 void *data,
2233 bool include_overwritable,
2234 bool exclude_virtual_thunks)
2236 cgraph_edge *e;
2237 ipa_ref *ref;
2239 if (callback (this, data))
2240 return true;
2241 FOR_EACH_ALIAS (this, ref)
2243 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2244 if (include_overwritable
2245 || alias->get_availability () > AVAIL_INTERPOSABLE)
2246 if (alias->call_for_symbol_thunks_and_aliases (callback, data,
2247 include_overwritable,
2248 exclude_virtual_thunks))
2249 return true;
2251 for (e = callers; e; e = e->next_caller)
2252 if (e->caller->thunk.thunk_p
2253 && (include_overwritable
2254 || e->caller->get_availability () > AVAIL_INTERPOSABLE)
2255 && !(exclude_virtual_thunks
2256 && e->caller->thunk.virtual_offset_p))
2257 if (e->caller->call_for_symbol_thunks_and_aliases (callback, data,
2258 include_overwritable,
2259 exclude_virtual_thunks))
2260 return true;
2262 return false;
2265 /* Worker to bring NODE local. */
2267 bool
2268 cgraph_node::make_local (cgraph_node *node, void *)
2270 gcc_checking_assert (node->can_be_local_p ());
2271 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2273 node->make_decl_local ();
2274 node->set_section (NULL);
2275 node->set_comdat_group (NULL);
2276 node->externally_visible = false;
2277 node->forced_by_abi = false;
2278 node->local.local = true;
2279 node->set_section (NULL);
2280 node->unique_name = (node->resolution == LDPR_PREVAILING_DEF_IRONLY
2281 || node->resolution == LDPR_PREVAILING_DEF_IRONLY_EXP);
2282 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2283 gcc_assert (node->get_availability () == AVAIL_LOCAL);
2285 return false;
2288 /* Bring cgraph node local. */
2290 void
2291 cgraph_node::make_local (void)
2293 call_for_symbol_thunks_and_aliases (cgraph_node::make_local, NULL, true);
2296 /* Worker to set nothrow flag. */
2298 static bool
2299 cgraph_set_nothrow_flag_1 (cgraph_node *node, void *data)
2301 cgraph_edge *e;
2303 TREE_NOTHROW (node->decl) = data != NULL;
2305 if (data != NULL)
2306 for (e = node->callers; e; e = e->next_caller)
2307 e->can_throw_external = false;
2308 return false;
2311 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2312 if any to NOTHROW. */
2314 void
2315 cgraph_node::set_nothrow_flag (bool nothrow)
2317 call_for_symbol_thunks_and_aliases (cgraph_set_nothrow_flag_1,
2318 (void *)(size_t)nothrow, false);
2321 /* Worker to set const flag. */
2323 static bool
2324 cgraph_set_const_flag_1 (cgraph_node *node, void *data)
2326 /* Static constructors and destructors without a side effect can be
2327 optimized out. */
2328 if (data && !((size_t)data & 2))
2330 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2331 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2332 if (DECL_STATIC_DESTRUCTOR (node->decl))
2333 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2335 TREE_READONLY (node->decl) = data != NULL;
2336 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = ((size_t)data & 2) != 0;
2337 return false;
2340 /* Set TREE_READONLY on cgraph_node's decl and on aliases of the node
2341 if any to READONLY. */
2343 void
2344 cgraph_node::set_const_flag (bool readonly, bool looping)
2346 call_for_symbol_thunks_and_aliases (cgraph_set_const_flag_1,
2347 (void *)(size_t)(readonly + (int)looping * 2),
2348 false, true);
2351 /* Worker to set pure flag. */
2353 static bool
2354 cgraph_set_pure_flag_1 (cgraph_node *node, void *data)
2356 /* Static constructors and destructors without a side effect can be
2357 optimized out. */
2358 if (data && !((size_t)data & 2))
2360 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2361 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2362 if (DECL_STATIC_DESTRUCTOR (node->decl))
2363 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2365 DECL_PURE_P (node->decl) = data != NULL;
2366 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = ((size_t)data & 2) != 0;
2367 return false;
2370 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2371 if any to PURE. */
2373 void
2374 cgraph_node::set_pure_flag (bool pure, bool looping)
2376 call_for_symbol_thunks_and_aliases (cgraph_set_pure_flag_1,
2377 (void *)(size_t)(pure + (int)looping * 2),
2378 false, true);
2381 /* Return true when cgraph_node can not return or throw and thus
2382 it is safe to ignore its side effects for IPA analysis. */
2384 bool
2385 cgraph_node::cannot_return_p (void)
2387 int flags = flags_from_decl_or_type (decl);
2388 if (!opt_for_fn (decl, flag_exceptions))
2389 return (flags & ECF_NORETURN) != 0;
2390 else
2391 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2392 == (ECF_NORETURN | ECF_NOTHROW));
2395 /* Return true when call of edge can not lead to return from caller
2396 and thus it is safe to ignore its side effects for IPA analysis
2397 when computing side effects of the caller.
2398 FIXME: We could actually mark all edges that have no reaching
2399 patch to the exit block or throw to get better results. */
2400 bool
2401 cgraph_edge::cannot_lead_to_return_p (void)
2403 if (caller->cannot_return_p ())
2404 return true;
2405 if (indirect_unknown_callee)
2407 int flags = indirect_info->ecf_flags;
2408 if (!opt_for_fn (caller->decl, flag_exceptions))
2409 return (flags & ECF_NORETURN) != 0;
2410 else
2411 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2412 == (ECF_NORETURN | ECF_NOTHROW));
2414 else
2415 return callee->cannot_return_p ();
2418 /* Return true if the call can be hot. */
2420 bool
2421 cgraph_edge::maybe_hot_p (void)
2423 /* TODO: Export profile_status from cfun->cfg to cgraph_node. */
2424 if (profile_info
2425 && opt_for_fn (caller->decl, flag_branch_probabilities)
2426 && !maybe_hot_count_p (NULL, count))
2427 return false;
2428 if (caller->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
2429 || (callee
2430 && callee->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED))
2431 return false;
2432 if (caller->frequency > NODE_FREQUENCY_UNLIKELY_EXECUTED
2433 && (callee
2434 && callee->frequency <= NODE_FREQUENCY_EXECUTED_ONCE))
2435 return false;
2436 if (opt_for_fn (caller->decl, optimize_size))
2437 return false;
2438 if (caller->frequency == NODE_FREQUENCY_HOT)
2439 return true;
2440 if (caller->frequency == NODE_FREQUENCY_EXECUTED_ONCE
2441 && frequency < CGRAPH_FREQ_BASE * 3 / 2)
2442 return false;
2443 if (opt_for_fn (caller->decl, flag_guess_branch_prob))
2445 if (PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION) == 0
2446 || frequency <= (CGRAPH_FREQ_BASE
2447 / PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION)))
2448 return false;
2450 return true;
2453 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2455 static bool
2456 nonremovable_p (cgraph_node *node, void *)
2458 return !node->can_remove_if_no_direct_calls_and_refs_p ();
2461 /* Return true if whole comdat group can be removed if there are no direct
2462 calls to THIS. */
2464 bool
2465 cgraph_node::can_remove_if_no_direct_calls_p (bool will_inline)
2467 struct ipa_ref *ref;
2469 /* For local symbols or non-comdat group it is the same as
2470 can_remove_if_no_direct_calls_p. */
2471 if (!externally_visible || !same_comdat_group)
2473 if (DECL_EXTERNAL (decl))
2474 return true;
2475 if (address_taken)
2476 return false;
2477 return !call_for_symbol_and_aliases (nonremovable_p, NULL, true);
2480 if (will_inline && address_taken)
2481 return false;
2483 /* Otheriwse check if we can remove the symbol itself and then verify
2484 that only uses of the comdat groups are direct call to THIS
2485 or its aliases. */
2486 if (!can_remove_if_no_direct_calls_and_refs_p ())
2487 return false;
2489 /* Check that all refs come from within the comdat group. */
2490 for (int i = 0; iterate_referring (i, ref); i++)
2491 if (ref->referring->get_comdat_group () != get_comdat_group ())
2492 return false;
2494 struct cgraph_node *target = ultimate_alias_target ();
2495 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2496 next != this; next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2498 if (!externally_visible)
2499 continue;
2500 if (!next->alias
2501 && !next->can_remove_if_no_direct_calls_and_refs_p ())
2502 return false;
2504 /* If we see different symbol than THIS, be sure to check calls. */
2505 if (next->ultimate_alias_target () != target)
2506 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2507 if (e->caller->get_comdat_group () != get_comdat_group ()
2508 || will_inline)
2509 return false;
2511 /* If function is not being inlined, we care only about
2512 references outside of the comdat group. */
2513 if (!will_inline)
2514 for (int i = 0; next->iterate_referring (i, ref); i++)
2515 if (ref->referring->get_comdat_group () != get_comdat_group ())
2516 return false;
2518 return true;
2521 /* Return true when function cgraph_node can be expected to be removed
2522 from program when direct calls in this compilation unit are removed.
2524 As a special case COMDAT functions are
2525 cgraph_can_remove_if_no_direct_calls_p while the are not
2526 cgraph_only_called_directly_p (it is possible they are called from other
2527 unit)
2529 This function behaves as cgraph_only_called_directly_p because eliminating
2530 all uses of COMDAT function does not make it necessarily disappear from
2531 the program unless we are compiling whole program or we do LTO. In this
2532 case we know we win since dynamic linking will not really discard the
2533 linkonce section. */
2535 bool
2536 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p
2537 (bool will_inline)
2539 gcc_assert (!global.inlined_to);
2540 if (DECL_EXTERNAL (decl))
2541 return true;
2543 if (!in_lto_p && !flag_whole_program)
2545 /* If the symbol is in comdat group, we need to verify that whole comdat
2546 group becomes unreachable. Technically we could skip references from
2547 within the group, too. */
2548 if (!only_called_directly_p ())
2549 return false;
2550 if (same_comdat_group && externally_visible)
2552 struct cgraph_node *target = ultimate_alias_target ();
2554 if (will_inline && address_taken)
2555 return true;
2556 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2557 next != this;
2558 next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2560 if (!externally_visible)
2561 continue;
2562 if (!next->alias
2563 && !next->only_called_directly_p ())
2564 return false;
2566 /* If we see different symbol than THIS,
2567 be sure to check calls. */
2568 if (next->ultimate_alias_target () != target)
2569 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2570 if (e->caller->get_comdat_group () != get_comdat_group ()
2571 || will_inline)
2572 return false;
2575 return true;
2577 else
2578 return can_remove_if_no_direct_calls_p (will_inline);
2582 /* Worker for cgraph_only_called_directly_p. */
2584 static bool
2585 cgraph_not_only_called_directly_p_1 (cgraph_node *node, void *)
2587 return !node->only_called_directly_or_aliased_p ();
2590 /* Return true when function cgraph_node and all its aliases are only called
2591 directly.
2592 i.e. it is not externally visible, address was not taken and
2593 it is not used in any other non-standard way. */
2595 bool
2596 cgraph_node::only_called_directly_p (void)
2598 gcc_assert (ultimate_alias_target () == this);
2599 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1,
2600 NULL, true);
2604 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2606 static bool
2607 collect_callers_of_node_1 (cgraph_node *node, void *data)
2609 vec<cgraph_edge *> *redirect_callers = (vec<cgraph_edge *> *)data;
2610 cgraph_edge *cs;
2611 enum availability avail;
2612 node->ultimate_alias_target (&avail);
2614 if (avail > AVAIL_INTERPOSABLE)
2615 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
2616 if (!cs->indirect_inlining_edge)
2617 redirect_callers->safe_push (cs);
2618 return false;
2621 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2622 cgraph_node (i.e. are not overwritable). */
2624 vec<cgraph_edge *>
2625 cgraph_node::collect_callers (void)
2627 vec<cgraph_edge *> redirect_callers = vNULL;
2628 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1,
2629 &redirect_callers, false);
2630 return redirect_callers;
2633 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. */
2635 static bool
2636 clone_of_p (cgraph_node *node, cgraph_node *node2)
2638 bool skipped_thunk = false;
2639 node = node->ultimate_alias_target ();
2640 node2 = node2->ultimate_alias_target ();
2642 /* There are no virtual clones of thunks so check former_clone_of or if we
2643 might have skipped thunks because this adjustments are no longer
2644 necessary. */
2645 while (node->thunk.thunk_p)
2647 if (node2->former_clone_of == node->decl)
2648 return true;
2649 if (!node->thunk.this_adjusting)
2650 return false;
2651 node = node->callees->callee->ultimate_alias_target ();
2652 skipped_thunk = true;
2655 if (skipped_thunk)
2657 if (!node2->clone.args_to_skip
2658 || !bitmap_bit_p (node2->clone.args_to_skip, 0))
2659 return false;
2660 if (node2->former_clone_of == node->decl)
2661 return true;
2662 else if (!node2->clone_of)
2663 return false;
2666 while (node != node2 && node2)
2667 node2 = node2->clone_of;
2668 return node2 != NULL;
2671 /* Verify edge count and frequency. */
2673 bool
2674 cgraph_edge::verify_count_and_frequency ()
2676 bool error_found = false;
2677 if (count < 0)
2679 error ("caller edge count is negative");
2680 error_found = true;
2682 if (frequency < 0)
2684 error ("caller edge frequency is negative");
2685 error_found = true;
2687 if (frequency > CGRAPH_FREQ_MAX)
2689 error ("caller edge frequency is too large");
2690 error_found = true;
2692 return error_found;
2695 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
2696 static void
2697 cgraph_debug_gimple_stmt (function *this_cfun, gimple stmt)
2699 bool fndecl_was_null = false;
2700 /* debug_gimple_stmt needs correct cfun */
2701 if (cfun != this_cfun)
2702 set_cfun (this_cfun);
2703 /* ...and an actual current_function_decl */
2704 if (!current_function_decl)
2706 current_function_decl = this_cfun->decl;
2707 fndecl_was_null = true;
2709 debug_gimple_stmt (stmt);
2710 if (fndecl_was_null)
2711 current_function_decl = NULL;
2714 /* Verify that call graph edge corresponds to DECL from the associated
2715 statement. Return true if the verification should fail. */
2717 bool
2718 cgraph_edge::verify_corresponds_to_fndecl (tree decl)
2720 cgraph_node *node;
2722 if (!decl || callee->global.inlined_to)
2723 return false;
2724 if (symtab->state == LTO_STREAMING)
2725 return false;
2726 node = cgraph_node::get (decl);
2728 /* We do not know if a node from a different partition is an alias or what it
2729 aliases and therefore cannot do the former_clone_of check reliably. When
2730 body_removed is set, we have lost all information about what was alias or
2731 thunk of and also cannot proceed. */
2732 if (!node
2733 || node->body_removed
2734 || node->in_other_partition
2735 || callee->icf_merged
2736 || callee->in_other_partition)
2737 return false;
2739 node = node->ultimate_alias_target ();
2741 /* Optimizers can redirect unreachable calls or calls triggering undefined
2742 behaviour to builtin_unreachable. */
2743 if (DECL_BUILT_IN_CLASS (callee->decl) == BUILT_IN_NORMAL
2744 && DECL_FUNCTION_CODE (callee->decl) == BUILT_IN_UNREACHABLE)
2745 return false;
2747 if (callee->former_clone_of != node->decl
2748 && (node != callee->ultimate_alias_target ())
2749 && !clone_of_p (node, callee))
2750 return true;
2751 else
2752 return false;
2755 /* Verify cgraph nodes of given cgraph node. */
2756 DEBUG_FUNCTION void
2757 cgraph_node::verify_node (void)
2759 cgraph_edge *e;
2760 function *this_cfun = DECL_STRUCT_FUNCTION (decl);
2761 basic_block this_block;
2762 gimple_stmt_iterator gsi;
2763 bool error_found = false;
2765 if (seen_error ())
2766 return;
2768 timevar_push (TV_CGRAPH_VERIFY);
2769 error_found |= verify_base ();
2770 for (e = callees; e; e = e->next_callee)
2771 if (e->aux)
2773 error ("aux field set for edge %s->%s",
2774 identifier_to_locale (e->caller->name ()),
2775 identifier_to_locale (e->callee->name ()));
2776 error_found = true;
2778 if (count < 0)
2780 error ("execution count is negative");
2781 error_found = true;
2783 if (global.inlined_to && same_comdat_group)
2785 error ("inline clone in same comdat group list");
2786 error_found = true;
2788 if (!definition && !in_other_partition && local.local)
2790 error ("local symbols must be defined");
2791 error_found = true;
2793 if (global.inlined_to && externally_visible)
2795 error ("externally visible inline clone");
2796 error_found = true;
2798 if (global.inlined_to && address_taken)
2800 error ("inline clone with address taken");
2801 error_found = true;
2803 if (global.inlined_to && force_output)
2805 error ("inline clone is forced to output");
2806 error_found = true;
2808 for (e = indirect_calls; e; e = e->next_callee)
2810 if (e->aux)
2812 error ("aux field set for indirect edge from %s",
2813 identifier_to_locale (e->caller->name ()));
2814 error_found = true;
2816 if (!e->indirect_unknown_callee
2817 || !e->indirect_info)
2819 error ("An indirect edge from %s is not marked as indirect or has "
2820 "associated indirect_info, the corresponding statement is: ",
2821 identifier_to_locale (e->caller->name ()));
2822 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
2823 error_found = true;
2826 bool check_comdat = comdat_local_p ();
2827 for (e = callers; e; e = e->next_caller)
2829 if (e->verify_count_and_frequency ())
2830 error_found = true;
2831 if (check_comdat
2832 && !in_same_comdat_group_p (e->caller))
2834 error ("comdat-local function called by %s outside its comdat",
2835 identifier_to_locale (e->caller->name ()));
2836 error_found = true;
2838 if (!e->inline_failed)
2840 if (global.inlined_to
2841 != (e->caller->global.inlined_to
2842 ? e->caller->global.inlined_to : e->caller))
2844 error ("inlined_to pointer is wrong");
2845 error_found = true;
2847 if (callers->next_caller)
2849 error ("multiple inline callers");
2850 error_found = true;
2853 else
2854 if (global.inlined_to)
2856 error ("inlined_to pointer set for noninline callers");
2857 error_found = true;
2860 for (e = callees; e; e = e->next_callee)
2862 if (e->verify_count_and_frequency ())
2863 error_found = true;
2864 if (gimple_has_body_p (e->caller->decl)
2865 && !e->caller->global.inlined_to
2866 && !e->speculative
2867 /* Optimized out calls are redirected to __builtin_unreachable. */
2868 && (e->frequency
2869 || e->callee->decl
2870 != builtin_decl_implicit (BUILT_IN_UNREACHABLE))
2871 && (e->frequency
2872 != compute_call_stmt_bb_frequency (e->caller->decl,
2873 gimple_bb (e->call_stmt))))
2875 error ("caller edge frequency %i does not match BB frequency %i",
2876 e->frequency,
2877 compute_call_stmt_bb_frequency (e->caller->decl,
2878 gimple_bb (e->call_stmt)));
2879 error_found = true;
2882 for (e = indirect_calls; e; e = e->next_callee)
2884 if (e->verify_count_and_frequency ())
2885 error_found = true;
2886 if (gimple_has_body_p (e->caller->decl)
2887 && !e->caller->global.inlined_to
2888 && !e->speculative
2889 && (e->frequency
2890 != compute_call_stmt_bb_frequency (e->caller->decl,
2891 gimple_bb (e->call_stmt))))
2893 error ("indirect call frequency %i does not match BB frequency %i",
2894 e->frequency,
2895 compute_call_stmt_bb_frequency (e->caller->decl,
2896 gimple_bb (e->call_stmt)));
2897 error_found = true;
2900 if (!callers && global.inlined_to)
2902 error ("inlined_to pointer is set but no predecessors found");
2903 error_found = true;
2905 if (global.inlined_to == this)
2907 error ("inlined_to pointer refers to itself");
2908 error_found = true;
2911 if (clone_of)
2913 cgraph_node *n;
2914 for (n = clone_of->clones; n; n = n->next_sibling_clone)
2915 if (n == this)
2916 break;
2917 if (!n)
2919 error ("cgraph_node has wrong clone_of");
2920 error_found = true;
2923 if (clones)
2925 cgraph_node *n;
2926 for (n = clones; n; n = n->next_sibling_clone)
2927 if (n->clone_of != this)
2928 break;
2929 if (n)
2931 error ("cgraph_node has wrong clone list");
2932 error_found = true;
2935 if ((prev_sibling_clone || next_sibling_clone) && !clone_of)
2937 error ("cgraph_node is in clone list but it is not clone");
2938 error_found = true;
2940 if (!prev_sibling_clone && clone_of && clone_of->clones != this)
2942 error ("cgraph_node has wrong prev_clone pointer");
2943 error_found = true;
2945 if (prev_sibling_clone && prev_sibling_clone->next_sibling_clone != this)
2947 error ("double linked list of clones corrupted");
2948 error_found = true;
2951 if (analyzed && alias)
2953 bool ref_found = false;
2954 int i;
2955 ipa_ref *ref = NULL;
2957 if (callees)
2959 error ("Alias has call edges");
2960 error_found = true;
2962 for (i = 0; iterate_reference (i, ref); i++)
2963 if (ref->use == IPA_REF_CHKP)
2965 else if (ref->use != IPA_REF_ALIAS)
2967 error ("Alias has non-alias reference");
2968 error_found = true;
2970 else if (ref_found)
2972 error ("Alias has more than one alias reference");
2973 error_found = true;
2975 else
2976 ref_found = true;
2977 if (!ref_found)
2979 error ("Analyzed alias has no reference");
2980 error_found = true;
2984 /* Check instrumented version reference. */
2985 if (instrumented_version
2986 && instrumented_version->instrumented_version != this)
2988 error ("Instrumentation clone does not reference original node");
2989 error_found = true;
2992 /* Cannot have orig_decl for not instrumented nodes. */
2993 if (!instrumentation_clone && orig_decl)
2995 error ("Not instrumented node has non-NULL original declaration");
2996 error_found = true;
2999 /* If original not instrumented node still exists then we may check
3000 original declaration is set properly. */
3001 if (instrumented_version
3002 && orig_decl
3003 && orig_decl != instrumented_version->decl)
3005 error ("Instrumented node has wrong original declaration");
3006 error_found = true;
3009 /* Check all nodes have chkp reference to their instrumented versions. */
3010 if (analyzed
3011 && instrumented_version
3012 && !instrumentation_clone)
3014 bool ref_found = false;
3015 int i;
3016 struct ipa_ref *ref;
3018 for (i = 0; iterate_reference (i, ref); i++)
3019 if (ref->use == IPA_REF_CHKP)
3021 if (ref_found)
3023 error ("Node has more than one chkp reference");
3024 error_found = true;
3026 if (ref->referred != instrumented_version)
3028 error ("Wrong node is referenced with chkp reference");
3029 error_found = true;
3031 ref_found = true;
3034 if (!ref_found)
3036 error ("Analyzed node has no reference to instrumented version");
3037 error_found = true;
3041 if (instrumentation_clone
3042 && DECL_BUILT_IN_CLASS (decl) == NOT_BUILT_IN)
3044 tree name = DECL_ASSEMBLER_NAME (decl);
3045 tree orig_name = DECL_ASSEMBLER_NAME (orig_decl);
3047 if (!IDENTIFIER_TRANSPARENT_ALIAS (name)
3048 || TREE_CHAIN (name) != orig_name)
3050 error ("Alias chain for instrumented node is broken");
3051 error_found = true;
3055 if (analyzed && thunk.thunk_p)
3057 if (!callees)
3059 error ("No edge out of thunk node");
3060 error_found = true;
3062 else if (callees->next_callee)
3064 error ("More than one edge out of thunk node");
3065 error_found = true;
3067 if (gimple_has_body_p (decl))
3069 error ("Thunk is not supposed to have body");
3070 error_found = true;
3072 if (thunk.add_pointer_bounds_args
3073 && !instrumented_version->semantically_equivalent_p (callees->callee))
3075 error ("Instrumentation thunk has wrong edge callee");
3076 error_found = true;
3079 else if (analyzed && gimple_has_body_p (decl)
3080 && !TREE_ASM_WRITTEN (decl)
3081 && (!DECL_EXTERNAL (decl) || global.inlined_to)
3082 && !flag_wpa)
3084 if (this_cfun->cfg)
3086 hash_set<gimple> stmts;
3087 int i;
3088 ipa_ref *ref = NULL;
3090 /* Reach the trees by walking over the CFG, and note the
3091 enclosing basic-blocks in the call edges. */
3092 FOR_EACH_BB_FN (this_block, this_cfun)
3094 for (gsi = gsi_start_phis (this_block);
3095 !gsi_end_p (gsi); gsi_next (&gsi))
3096 stmts.add (gsi_stmt (gsi));
3097 for (gsi = gsi_start_bb (this_block);
3098 !gsi_end_p (gsi);
3099 gsi_next (&gsi))
3101 gimple stmt = gsi_stmt (gsi);
3102 stmts.add (stmt);
3103 if (is_gimple_call (stmt))
3105 cgraph_edge *e = get_edge (stmt);
3106 tree decl = gimple_call_fndecl (stmt);
3107 if (e)
3109 if (e->aux)
3111 error ("shared call_stmt:");
3112 cgraph_debug_gimple_stmt (this_cfun, stmt);
3113 error_found = true;
3115 if (!e->indirect_unknown_callee)
3117 if (e->verify_corresponds_to_fndecl (decl))
3119 error ("edge points to wrong declaration:");
3120 debug_tree (e->callee->decl);
3121 fprintf (stderr," Instead of:");
3122 debug_tree (decl);
3123 error_found = true;
3126 else if (decl)
3128 error ("an indirect edge with unknown callee "
3129 "corresponding to a call_stmt with "
3130 "a known declaration:");
3131 error_found = true;
3132 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3134 e->aux = (void *)1;
3136 else if (decl)
3138 error ("missing callgraph edge for call stmt:");
3139 cgraph_debug_gimple_stmt (this_cfun, stmt);
3140 error_found = true;
3145 for (i = 0; iterate_reference (i, ref); i++)
3146 if (ref->stmt && !stmts.contains (ref->stmt))
3148 error ("reference to dead statement");
3149 cgraph_debug_gimple_stmt (this_cfun, ref->stmt);
3150 error_found = true;
3153 else
3154 /* No CFG available?! */
3155 gcc_unreachable ();
3157 for (e = callees; e; e = e->next_callee)
3159 if (!e->aux)
3161 error ("edge %s->%s has no corresponding call_stmt",
3162 identifier_to_locale (e->caller->name ()),
3163 identifier_to_locale (e->callee->name ()));
3164 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3165 error_found = true;
3167 e->aux = 0;
3169 for (e = indirect_calls; e; e = e->next_callee)
3171 if (!e->aux && !e->speculative)
3173 error ("an indirect edge from %s has no corresponding call_stmt",
3174 identifier_to_locale (e->caller->name ()));
3175 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3176 error_found = true;
3178 e->aux = 0;
3181 if (error_found)
3183 dump (stderr);
3184 internal_error ("verify_cgraph_node failed");
3186 timevar_pop (TV_CGRAPH_VERIFY);
3189 /* Verify whole cgraph structure. */
3190 DEBUG_FUNCTION void
3191 cgraph_node::verify_cgraph_nodes (void)
3193 cgraph_node *node;
3195 if (seen_error ())
3196 return;
3198 FOR_EACH_FUNCTION (node)
3199 node->verify ();
3202 /* Walk the alias chain to return the function cgraph_node is alias of.
3203 Walk through thunks, too.
3204 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
3206 cgraph_node *
3207 cgraph_node::function_symbol (enum availability *availability)
3209 cgraph_node *node = ultimate_alias_target (availability);
3211 while (node->thunk.thunk_p)
3213 node = node->callees->callee;
3214 if (availability)
3216 enum availability a;
3217 a = node->get_availability ();
3218 if (a < *availability)
3219 *availability = a;
3221 node = node->ultimate_alias_target (availability);
3223 return node;
3226 /* Walk the alias chain to return the function cgraph_node is alias of.
3227 Walk through non virtual thunks, too. Thus we return either a function
3228 or a virtual thunk node.
3229 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
3231 cgraph_node *
3232 cgraph_node::function_or_virtual_thunk_symbol
3233 (enum availability *availability)
3235 cgraph_node *node = ultimate_alias_target (availability);
3237 while (node->thunk.thunk_p && !node->thunk.virtual_offset_p)
3239 node = node->callees->callee;
3240 if (availability)
3242 enum availability a;
3243 a = node->get_availability ();
3244 if (a < *availability)
3245 *availability = a;
3247 node = node->ultimate_alias_target (availability);
3249 return node;
3252 /* When doing LTO, read cgraph_node's body from disk if it is not already
3253 present. */
3255 bool
3256 cgraph_node::get_untransformed_body (void)
3258 lto_file_decl_data *file_data;
3259 const char *data, *name;
3260 size_t len;
3261 tree decl = this->decl;
3263 if (DECL_RESULT (decl))
3264 return false;
3266 gcc_assert (in_lto_p);
3268 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3270 file_data = lto_file_data;
3271 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
3273 /* We may have renamed the declaration, e.g., a static function. */
3274 name = lto_get_decl_name_mapping (file_data, name);
3276 data = lto_get_section_data (file_data, LTO_section_function_body,
3277 name, &len);
3278 if (!data)
3279 fatal_error (input_location, "%s: section %s is missing",
3280 file_data->file_name,
3281 name);
3283 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
3285 lto_input_function_body (file_data, this, data);
3286 lto_stats.num_function_bodies++;
3287 lto_free_section_data (file_data, LTO_section_function_body, name,
3288 data, len);
3289 lto_free_function_in_decl_state_for_node (this);
3290 /* Keep lto file data so ipa-inline-analysis knows about cross module
3291 inlining. */
3293 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
3295 return true;
3298 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3299 if it is not already present. When some IPA transformations are scheduled,
3300 apply them. */
3302 bool
3303 cgraph_node::get_body (void)
3305 bool updated;
3307 updated = get_untransformed_body ();
3309 /* Getting transformed body makes no sense for inline clones;
3310 we should never use this on real clones becuase they are materialized
3311 early.
3312 TODO: Materializing clones here will likely lead to smaller LTRANS
3313 footprint. */
3314 gcc_assert (!global.inlined_to && !clone_of);
3315 if (ipa_transforms_to_apply.exists ())
3317 opt_pass *saved_current_pass = current_pass;
3318 FILE *saved_dump_file = dump_file;
3319 int saved_dump_flags = dump_flags;
3321 push_cfun (DECL_STRUCT_FUNCTION (decl));
3322 execute_all_ipa_transforms ();
3323 cgraph_edge::rebuild_edges ();
3324 free_dominance_info (CDI_DOMINATORS);
3325 free_dominance_info (CDI_POST_DOMINATORS);
3326 pop_cfun ();
3327 updated = true;
3329 current_pass = saved_current_pass;
3330 dump_file = saved_dump_file;
3331 dump_flags = saved_dump_flags;
3333 return updated;
3336 /* Return the DECL_STRUCT_FUNCTION of the function. */
3338 struct function *
3339 cgraph_node::get_fun (void)
3341 cgraph_node *node = this;
3342 struct function *fun = DECL_STRUCT_FUNCTION (node->decl);
3344 while (!fun && node->clone_of)
3346 node = node->clone_of;
3347 fun = DECL_STRUCT_FUNCTION (node->decl);
3350 return fun;
3353 /* Verify if the type of the argument matches that of the function
3354 declaration. If we cannot verify this or there is a mismatch,
3355 return false. */
3357 static bool
3358 gimple_check_call_args (gimple stmt, tree fndecl, bool args_count_match)
3360 tree parms, p;
3361 unsigned int i, nargs;
3363 /* Calls to internal functions always match their signature. */
3364 if (gimple_call_internal_p (stmt))
3365 return true;
3367 nargs = gimple_call_num_args (stmt);
3369 /* Get argument types for verification. */
3370 if (fndecl)
3371 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
3372 else
3373 parms = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
3375 /* Verify if the type of the argument matches that of the function
3376 declaration. If we cannot verify this or there is a mismatch,
3377 return false. */
3378 if (fndecl && DECL_ARGUMENTS (fndecl))
3380 for (i = 0, p = DECL_ARGUMENTS (fndecl);
3381 i < nargs;
3382 i++, p = DECL_CHAIN (p))
3384 tree arg;
3385 /* We cannot distinguish a varargs function from the case
3386 of excess parameters, still deferring the inlining decision
3387 to the callee is possible. */
3388 if (!p)
3389 break;
3390 arg = gimple_call_arg (stmt, i);
3391 if (p == error_mark_node
3392 || DECL_ARG_TYPE (p) == error_mark_node
3393 || arg == error_mark_node
3394 || (!types_compatible_p (DECL_ARG_TYPE (p), TREE_TYPE (arg))
3395 && !fold_convertible_p (DECL_ARG_TYPE (p), arg)))
3396 return false;
3398 if (args_count_match && p)
3399 return false;
3401 else if (parms)
3403 for (i = 0, p = parms; i < nargs; i++, p = TREE_CHAIN (p))
3405 tree arg;
3406 /* If this is a varargs function defer inlining decision
3407 to callee. */
3408 if (!p)
3409 break;
3410 arg = gimple_call_arg (stmt, i);
3411 if (TREE_VALUE (p) == error_mark_node
3412 || arg == error_mark_node
3413 || TREE_CODE (TREE_VALUE (p)) == VOID_TYPE
3414 || (!types_compatible_p (TREE_VALUE (p), TREE_TYPE (arg))
3415 && !fold_convertible_p (TREE_VALUE (p), arg)))
3416 return false;
3419 else
3421 if (nargs != 0)
3422 return false;
3424 return true;
3427 /* Verify if the type of the argument and lhs of CALL_STMT matches
3428 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3429 true, the arg count needs to be the same.
3430 If we cannot verify this or there is a mismatch, return false. */
3432 bool
3433 gimple_check_call_matching_types (gimple call_stmt, tree callee,
3434 bool args_count_match)
3436 tree lhs;
3438 if ((DECL_RESULT (callee)
3439 && !DECL_BY_REFERENCE (DECL_RESULT (callee))
3440 && (lhs = gimple_call_lhs (call_stmt)) != NULL_TREE
3441 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee)),
3442 TREE_TYPE (lhs))
3443 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee)), lhs))
3444 || !gimple_check_call_args (call_stmt, callee, args_count_match))
3445 return false;
3446 return true;
3449 /* Reset all state within cgraph.c so that we can rerun the compiler
3450 within the same process. For use by toplev::finalize. */
3452 void
3453 cgraph_c_finalize (void)
3455 symtab = NULL;
3457 x_cgraph_nodes_queue = NULL;
3459 cgraph_fnver_htab = NULL;
3460 version_info_node = NULL;
3463 /* A wroker for call_for_symbol_and_aliases. */
3465 bool
3466 cgraph_node::call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
3467 void *),
3468 void *data,
3469 bool include_overwritable)
3471 ipa_ref *ref;
3472 FOR_EACH_ALIAS (this, ref)
3474 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
3475 if (include_overwritable
3476 || alias->get_availability () > AVAIL_INTERPOSABLE)
3477 if (alias->call_for_symbol_and_aliases (callback, data,
3478 include_overwritable))
3479 return true;
3481 return false;
3484 /* Return true if NODE has thunk. */
3486 bool
3487 cgraph_node::has_thunk_p (cgraph_node *node, void *)
3489 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
3490 if (e->caller->thunk.thunk_p)
3491 return true;
3492 return false;
3495 #include "gt-cgraph.h"