passes.c (execute_one_pass): Do not apply all transforms prior every simple IPA pass.
[official-gcc.git] / gcc / cgraph.c
blobad181b062c858f189c886b8c37a7e3cb08b6c77e
1 /* Callgraph handling code.
2 Copyright (C) 2003-2014 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 "tm.h"
30 #include "tree.h"
31 #include "varasm.h"
32 #include "calls.h"
33 #include "print-tree.h"
34 #include "tree-inline.h"
35 #include "langhooks.h"
36 #include "hashtab.h"
37 #include "hash-set.h"
38 #include "toplev.h"
39 #include "flags.h"
40 #include "debug.h"
41 #include "target.h"
42 #include "predict.h"
43 #include "dominance.h"
44 #include "cfg.h"
45 #include "basic-block.h"
46 #include "hash-map.h"
47 #include "is-a.h"
48 #include "plugin-api.h"
49 #include "vec.h"
50 #include "machmode.h"
51 #include "hard-reg-set.h"
52 #include "input.h"
53 #include "function.h"
54 #include "ipa-ref.h"
55 #include "cgraph.h"
56 #include "intl.h"
57 #include "tree-ssa-alias.h"
58 #include "internal-fn.h"
59 #include "tree-eh.h"
60 #include "gimple-expr.h"
61 #include "gimple.h"
62 #include "gimple-iterator.h"
63 #include "timevar.h"
64 #include "dumpfile.h"
65 #include "gimple-ssa.h"
66 #include "tree-cfg.h"
67 #include "tree-ssa.h"
68 #include "value-prof.h"
69 #include "except.h"
70 #include "diagnostic-core.h"
71 #include "rtl.h"
72 #include "ipa-utils.h"
73 #include "lto-streamer.h"
74 #include "alloc-pool.h"
75 #include "ipa-prop.h"
76 #include "ipa-inline.h"
77 #include "cfgloop.h"
78 #include "gimple-pretty-print.h"
79 #include "expr.h"
80 #include "tree-dfa.h"
81 #include "profile.h"
82 #include "params.h"
83 #include "tree-chkp.h"
84 #include "context.h"
86 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
87 #include "tree-pass.h"
89 /* Queue of cgraph nodes scheduled to be lowered. */
90 symtab_node *x_cgraph_nodes_queue;
91 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
93 /* Symbol table global context. */
94 symbol_table *symtab;
96 /* List of hooks triggered on cgraph_edge events. */
97 struct cgraph_edge_hook_list {
98 cgraph_edge_hook hook;
99 void *data;
100 struct cgraph_edge_hook_list *next;
103 /* List of hooks triggered on cgraph_node events. */
104 struct cgraph_node_hook_list {
105 cgraph_node_hook hook;
106 void *data;
107 struct cgraph_node_hook_list *next;
110 /* List of hooks triggered on events involving two cgraph_edges. */
111 struct cgraph_2edge_hook_list {
112 cgraph_2edge_hook hook;
113 void *data;
114 struct cgraph_2edge_hook_list *next;
117 /* List of hooks triggered on events involving two cgraph_nodes. */
118 struct cgraph_2node_hook_list {
119 cgraph_2node_hook hook;
120 void *data;
121 struct cgraph_2node_hook_list *next;
124 /* Hash descriptor for cgraph_function_version_info. */
126 struct function_version_hasher : ggc_hasher<cgraph_function_version_info *>
128 static hashval_t hash (cgraph_function_version_info *);
129 static bool equal (cgraph_function_version_info *,
130 cgraph_function_version_info *);
133 /* Map a cgraph_node to cgraph_function_version_info using this htab.
134 The cgraph_function_version_info has a THIS_NODE field that is the
135 corresponding cgraph_node.. */
137 static GTY(()) hash_table<function_version_hasher> *cgraph_fnver_htab = NULL;
139 /* Hash function for cgraph_fnver_htab. */
140 hashval_t
141 function_version_hasher::hash (cgraph_function_version_info *ptr)
143 int uid = ptr->this_node->uid;
144 return (hashval_t)(uid);
147 /* eq function for cgraph_fnver_htab. */
148 bool
149 function_version_hasher::equal (cgraph_function_version_info *n1,
150 cgraph_function_version_info *n2)
152 return n1->this_node->uid == n2->this_node->uid;
155 /* Mark as GC root all allocated nodes. */
156 static GTY(()) struct cgraph_function_version_info *
157 version_info_node = NULL;
159 /* Get the cgraph_function_version_info node corresponding to node. */
160 cgraph_function_version_info *
161 cgraph_node::function_version (void)
163 cgraph_function_version_info key;
164 key.this_node = this;
166 if (cgraph_fnver_htab == NULL)
167 return NULL;
169 return cgraph_fnver_htab->find (&key);
172 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
173 corresponding to cgraph_node NODE. */
174 cgraph_function_version_info *
175 cgraph_node::insert_new_function_version (void)
177 version_info_node = NULL;
178 version_info_node = ggc_cleared_alloc<cgraph_function_version_info> ();
179 version_info_node->this_node = this;
181 if (cgraph_fnver_htab == NULL)
182 cgraph_fnver_htab = hash_table<function_version_hasher>::create_ggc (2);
184 *cgraph_fnver_htab->find_slot (version_info_node, INSERT)
185 = version_info_node;
186 return version_info_node;
189 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
190 DECL is a duplicate declaration. */
191 void
192 cgraph_node::delete_function_version (tree decl)
194 cgraph_node *decl_node = cgraph_node::get (decl);
195 cgraph_function_version_info *decl_v = NULL;
197 if (decl_node == NULL)
198 return;
200 decl_v = decl_node->function_version ();
202 if (decl_v == NULL)
203 return;
205 if (decl_v->prev != NULL)
206 decl_v->prev->next = decl_v->next;
208 if (decl_v->next != NULL)
209 decl_v->next->prev = decl_v->prev;
211 if (cgraph_fnver_htab != NULL)
212 cgraph_fnver_htab->remove_elt (decl_v);
214 decl_node->remove ();
217 /* Record that DECL1 and DECL2 are semantically identical function
218 versions. */
219 void
220 cgraph_node::record_function_versions (tree decl1, tree decl2)
222 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
223 cgraph_node *decl2_node = cgraph_node::get_create (decl2);
224 cgraph_function_version_info *decl1_v = NULL;
225 cgraph_function_version_info *decl2_v = NULL;
226 cgraph_function_version_info *before;
227 cgraph_function_version_info *after;
229 gcc_assert (decl1_node != NULL && decl2_node != NULL);
230 decl1_v = decl1_node->function_version ();
231 decl2_v = decl2_node->function_version ();
233 if (decl1_v != NULL && decl2_v != NULL)
234 return;
236 if (decl1_v == NULL)
237 decl1_v = decl1_node->insert_new_function_version ();
239 if (decl2_v == NULL)
240 decl2_v = decl2_node->insert_new_function_version ();
242 /* Chain decl2_v and decl1_v. All semantically identical versions
243 will be chained together. */
245 before = decl1_v;
246 after = decl2_v;
248 while (before->next != NULL)
249 before = before->next;
251 while (after->prev != NULL)
252 after= after->prev;
254 before->next = after;
255 after->prev = before;
258 /* Initialize callgraph dump file. */
260 void
261 symbol_table::initialize (void)
263 if (!dump_file)
264 dump_file = dump_begin (TDI_cgraph, NULL);
267 /* Allocate new callgraph node and insert it into basic data structures. */
269 cgraph_node *
270 symbol_table::create_empty (void)
272 cgraph_node *node = allocate_cgraph_symbol ();
274 node->type = SYMTAB_FUNCTION;
275 node->frequency = NODE_FREQUENCY_NORMAL;
276 node->count_materialization_scale = REG_BR_PROB_BASE;
277 cgraph_count++;
279 return node;
282 /* Register HOOK to be called with DATA on each removed edge. */
283 cgraph_edge_hook_list *
284 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook, void *data)
286 cgraph_edge_hook_list *entry;
287 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
289 entry = (cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
290 entry->hook = hook;
291 entry->data = data;
292 entry->next = NULL;
293 while (*ptr)
294 ptr = &(*ptr)->next;
295 *ptr = entry;
296 return entry;
299 /* Remove ENTRY from the list of hooks called on removing edges. */
300 void
301 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list *entry)
303 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
305 while (*ptr != entry)
306 ptr = &(*ptr)->next;
307 *ptr = entry->next;
308 free (entry);
311 /* Call all edge removal hooks. */
312 void
313 symbol_table::call_edge_removal_hooks (cgraph_edge *e)
315 cgraph_edge_hook_list *entry = m_first_edge_removal_hook;
316 while (entry)
318 entry->hook (e, entry->data);
319 entry = entry->next;
323 /* Register HOOK to be called with DATA on each removed node. */
324 cgraph_node_hook_list *
325 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook, void *data)
327 cgraph_node_hook_list *entry;
328 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
330 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
331 entry->hook = hook;
332 entry->data = data;
333 entry->next = NULL;
334 while (*ptr)
335 ptr = &(*ptr)->next;
336 *ptr = entry;
337 return entry;
340 /* Remove ENTRY from the list of hooks called on removing nodes. */
341 void
342 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list *entry)
344 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
346 while (*ptr != entry)
347 ptr = &(*ptr)->next;
348 *ptr = entry->next;
349 free (entry);
352 /* Call all node removal hooks. */
353 void
354 symbol_table::call_cgraph_removal_hooks (cgraph_node *node)
356 cgraph_node_hook_list *entry = m_first_cgraph_removal_hook;
357 while (entry)
359 entry->hook (node, entry->data);
360 entry = entry->next;
364 /* Call all node removal hooks. */
365 void
366 symbol_table::call_cgraph_insertion_hooks (cgraph_node *node)
368 cgraph_node_hook_list *entry = m_first_cgraph_insertion_hook;
369 while (entry)
371 entry->hook (node, entry->data);
372 entry = entry->next;
377 /* Register HOOK to be called with DATA on each inserted node. */
378 cgraph_node_hook_list *
379 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook, void *data)
381 cgraph_node_hook_list *entry;
382 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
384 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
385 entry->hook = hook;
386 entry->data = data;
387 entry->next = NULL;
388 while (*ptr)
389 ptr = &(*ptr)->next;
390 *ptr = entry;
391 return entry;
394 /* Remove ENTRY from the list of hooks called on inserted nodes. */
395 void
396 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list *entry)
398 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
400 while (*ptr != entry)
401 ptr = &(*ptr)->next;
402 *ptr = entry->next;
403 free (entry);
406 /* Register HOOK to be called with DATA on each duplicated edge. */
407 cgraph_2edge_hook_list *
408 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
410 cgraph_2edge_hook_list *entry;
411 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
413 entry = (cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
414 entry->hook = hook;
415 entry->data = data;
416 entry->next = NULL;
417 while (*ptr)
418 ptr = &(*ptr)->next;
419 *ptr = entry;
420 return entry;
423 /* Remove ENTRY from the list of hooks called on duplicating edges. */
424 void
425 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list *entry)
427 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
429 while (*ptr != entry)
430 ptr = &(*ptr)->next;
431 *ptr = entry->next;
432 free (entry);
435 /* Call all edge duplication hooks. */
436 void
437 symbol_table::call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)
439 cgraph_2edge_hook_list *entry = m_first_edge_duplicated_hook;
440 while (entry)
442 entry->hook (cs1, cs2, entry->data);
443 entry = entry->next;
447 /* Register HOOK to be called with DATA on each duplicated node. */
448 cgraph_2node_hook_list *
449 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook, void *data)
451 cgraph_2node_hook_list *entry;
452 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
454 entry = (cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
455 entry->hook = hook;
456 entry->data = data;
457 entry->next = NULL;
458 while (*ptr)
459 ptr = &(*ptr)->next;
460 *ptr = entry;
461 return entry;
464 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
465 void
466 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry)
468 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
470 while (*ptr != entry)
471 ptr = &(*ptr)->next;
472 *ptr = entry->next;
473 free (entry);
476 /* Call all node duplication hooks. */
477 void
478 symbol_table::call_cgraph_duplication_hooks (cgraph_node *node,
479 cgraph_node *node2)
481 cgraph_2node_hook_list *entry = m_first_cgraph_duplicated_hook;
482 while (entry)
484 entry->hook (node, node2, entry->data);
485 entry = entry->next;
489 /* Return cgraph node assigned to DECL. Create new one when needed. */
491 cgraph_node *
492 cgraph_node::create (tree decl)
494 cgraph_node *node = symtab->create_empty ();
495 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
497 node->decl = decl;
499 if (flag_openmp
500 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl)))
502 node->offloadable = 1;
503 g->have_offload = true;
506 node->register_symbol ();
508 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
510 node->origin = cgraph_node::get_create (DECL_CONTEXT (decl));
511 node->next_nested = node->origin->nested;
512 node->origin->nested = node;
514 return node;
517 /* Try to find a call graph node for declaration DECL and if it does not exist
518 or if it corresponds to an inline clone, create a new one. */
520 cgraph_node *
521 cgraph_node::get_create (tree decl)
523 cgraph_node *first_clone = cgraph_node::get (decl);
525 if (first_clone && !first_clone->global.inlined_to)
526 return first_clone;
528 cgraph_node *node = cgraph_node::create (decl);
529 if (first_clone)
531 first_clone->clone_of = node;
532 node->clones = first_clone;
533 symtab->symtab_prevail_in_asm_name_hash (node);
534 node->decl->decl_with_vis.symtab_node = node;
535 if (dump_file)
536 fprintf (dump_file, "Introduced new external node "
537 "(%s/%i) and turned into root of the clone tree.\n",
538 xstrdup (node->name ()), node->order);
540 else if (dump_file)
541 fprintf (dump_file, "Introduced new external node "
542 "(%s/%i).\n", xstrdup (node->name ()),
543 node->order);
544 return node;
547 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
548 the function body is associated with (not necessarily cgraph_node (DECL). */
550 cgraph_node *
551 cgraph_node::create_alias (tree alias, tree target)
553 cgraph_node *alias_node;
555 gcc_assert (TREE_CODE (target) == FUNCTION_DECL
556 || TREE_CODE (target) == IDENTIFIER_NODE);
557 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
558 alias_node = cgraph_node::get_create (alias);
559 gcc_assert (!alias_node->definition);
560 alias_node->alias_target = target;
561 alias_node->definition = true;
562 alias_node->alias = true;
563 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias)) != NULL)
564 alias_node->weakref = true;
565 return alias_node;
568 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
569 and NULL otherwise.
570 Same body aliases are output whenever the body of DECL is output,
571 and cgraph_node::get (ALIAS) transparently returns
572 cgraph_node::get (DECL). */
574 cgraph_node *
575 cgraph_node::create_same_body_alias (tree alias, tree decl)
577 cgraph_node *n;
578 #ifndef ASM_OUTPUT_DEF
579 /* If aliases aren't supported by the assembler, fail. */
580 return NULL;
581 #endif
582 /* Langhooks can create same body aliases of symbols not defined.
583 Those are useless. Drop them on the floor. */
584 if (symtab->global_info_ready)
585 return NULL;
587 n = cgraph_node::create_alias (alias, decl);
588 n->cpp_implicit_alias = true;
589 if (symtab->cpp_implicit_aliases_done)
590 n->resolve_alias (cgraph_node::get (decl));
591 return n;
594 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
595 aliases DECL with an adjustments made into the first parameter.
596 See comments in thunk_adjust for detail on the parameters. */
598 cgraph_node *
599 cgraph_node::create_thunk (tree alias, tree, bool this_adjusting,
600 HOST_WIDE_INT fixed_offset,
601 HOST_WIDE_INT virtual_value,
602 tree virtual_offset,
603 tree real_alias)
605 cgraph_node *node;
607 node = cgraph_node::get (alias);
608 if (node)
609 node->reset ();
610 else
611 node = cgraph_node::create (alias);
612 gcc_checking_assert (!virtual_offset
613 || wi::eq_p (virtual_offset, virtual_value));
614 node->thunk.fixed_offset = fixed_offset;
615 node->thunk.this_adjusting = this_adjusting;
616 node->thunk.virtual_value = virtual_value;
617 node->thunk.virtual_offset_p = virtual_offset != NULL;
618 node->thunk.alias = real_alias;
619 node->thunk.thunk_p = true;
620 node->definition = true;
622 return node;
625 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
626 Return NULL if there's no such node. */
628 cgraph_node *
629 cgraph_node::get_for_asmname (tree asmname)
631 /* We do not want to look at inline clones. */
632 for (symtab_node *node = symtab_node::get_for_asmname (asmname);
633 node;
634 node = node->next_sharing_asm_name)
636 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
637 if (cn && !cn->global.inlined_to)
638 return cn;
640 return NULL;
643 /* Returns a hash value for X (which really is a cgraph_edge). */
645 hashval_t
646 cgraph_edge_hasher::hash (cgraph_edge *e)
648 return htab_hash_pointer (e->call_stmt);
651 /* Return nonzero if the call_stmt of of cgraph_edge X is stmt *Y. */
653 inline bool
654 cgraph_edge_hasher::equal (cgraph_edge *x, gimple y)
656 return x->call_stmt == y;
659 /* Add call graph edge E to call site hash of its caller. */
661 static inline void
662 cgraph_update_edge_in_call_site_hash (cgraph_edge *e)
664 gimple call = e->call_stmt;
665 *e->caller->call_site_hash->find_slot_with_hash (call,
666 htab_hash_pointer (call),
667 INSERT) = e;
670 /* Add call graph edge E to call site hash of its caller. */
672 static inline void
673 cgraph_add_edge_to_call_site_hash (cgraph_edge *e)
675 /* There are two speculative edges for every statement (one direct,
676 one indirect); always hash the direct one. */
677 if (e->speculative && e->indirect_unknown_callee)
678 return;
679 cgraph_edge **slot = e->caller->call_site_hash->find_slot_with_hash
680 (e->call_stmt,
681 htab_hash_pointer (e->call_stmt), INSERT);
682 if (*slot)
684 gcc_assert (((cgraph_edge *)*slot)->speculative);
685 if (e->callee)
686 *slot = e;
687 return;
689 gcc_assert (!*slot || e->speculative);
690 *slot = e;
693 /* Return the callgraph edge representing the GIMPLE_CALL statement
694 CALL_STMT. */
696 cgraph_edge *
697 cgraph_node::get_edge (gimple call_stmt)
699 cgraph_edge *e, *e2;
700 int n = 0;
702 if (call_site_hash)
703 return call_site_hash->find_with_hash (call_stmt,
704 htab_hash_pointer (call_stmt));
706 /* This loop may turn out to be performance problem. In such case adding
707 hashtables into call nodes with very many edges is probably best
708 solution. It is not good idea to add pointer into CALL_EXPR itself
709 because we want to make possible having multiple cgraph nodes representing
710 different clones of the same body before the body is actually cloned. */
711 for (e = callees; e; e = e->next_callee)
713 if (e->call_stmt == call_stmt)
714 break;
715 n++;
718 if (!e)
719 for (e = indirect_calls; e; e = e->next_callee)
721 if (e->call_stmt == call_stmt)
722 break;
723 n++;
726 if (n > 100)
728 call_site_hash = hash_table<cgraph_edge_hasher>::create_ggc (120);
729 for (e2 = callees; e2; e2 = e2->next_callee)
730 cgraph_add_edge_to_call_site_hash (e2);
731 for (e2 = indirect_calls; e2; e2 = e2->next_callee)
732 cgraph_add_edge_to_call_site_hash (e2);
735 return e;
739 /* Change field call_stmt of edge to NEW_STMT.
740 If UPDATE_SPECULATIVE and E is any component of speculative
741 edge, then update all components. */
743 void
744 cgraph_edge::set_call_stmt (gimple new_stmt, bool update_speculative)
746 tree decl;
748 /* Speculative edges has three component, update all of them
749 when asked to. */
750 if (update_speculative && speculative)
752 cgraph_edge *direct, *indirect;
753 ipa_ref *ref;
755 speculative_call_info (direct, indirect, ref);
756 direct->set_call_stmt (new_stmt, false);
757 indirect->set_call_stmt (new_stmt, false);
758 ref->stmt = new_stmt;
759 return;
762 /* Only direct speculative edges go to call_site_hash. */
763 if (caller->call_site_hash
764 && (!speculative || !indirect_unknown_callee))
766 caller->call_site_hash->remove_elt_with_hash
767 (call_stmt, htab_hash_pointer (call_stmt));
770 cgraph_edge *e = this;
772 call_stmt = new_stmt;
773 if (indirect_unknown_callee
774 && (decl = gimple_call_fndecl (new_stmt)))
776 /* Constant propagation (and possibly also inlining?) can turn an
777 indirect call into a direct one. */
778 cgraph_node *new_callee = cgraph_node::get (decl);
780 gcc_checking_assert (new_callee);
781 e = make_direct (new_callee);
784 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
785 e->can_throw_external = stmt_can_throw_external (new_stmt);
786 pop_cfun ();
787 if (e->caller->call_site_hash)
788 cgraph_add_edge_to_call_site_hash (e);
791 /* Allocate a cgraph_edge structure and fill it with data according to the
792 parameters of which only CALLEE can be NULL (when creating an indirect call
793 edge). */
795 cgraph_edge *
796 symbol_table::create_edge (cgraph_node *caller, cgraph_node *callee,
797 gimple call_stmt, gcov_type count, int freq,
798 bool indir_unknown_callee)
800 cgraph_edge *edge;
802 /* LTO does not actually have access to the call_stmt since these
803 have not been loaded yet. */
804 if (call_stmt)
806 /* This is a rather expensive check possibly triggering
807 construction of call stmt hashtable. */
808 #ifdef ENABLE_CHECKING
809 cgraph_edge *e;
810 gcc_checking_assert (
811 !(e = caller->get_edge (call_stmt)) || e->speculative);
812 #endif
814 gcc_assert (is_gimple_call (call_stmt));
817 if (free_edges)
819 edge = free_edges;
820 free_edges = NEXT_FREE_EDGE (edge);
822 else
824 edge = ggc_alloc<cgraph_edge> ();
825 edge->uid = edges_max_uid++;
828 edges_count++;
830 edge->aux = NULL;
831 edge->caller = caller;
832 edge->callee = callee;
833 edge->prev_caller = NULL;
834 edge->next_caller = NULL;
835 edge->prev_callee = NULL;
836 edge->next_callee = NULL;
837 edge->lto_stmt_uid = 0;
839 edge->count = count;
840 gcc_assert (count >= 0);
841 edge->frequency = freq;
842 gcc_assert (freq >= 0);
843 gcc_assert (freq <= CGRAPH_FREQ_MAX);
845 edge->call_stmt = call_stmt;
846 push_cfun (DECL_STRUCT_FUNCTION (caller->decl));
847 edge->can_throw_external
848 = call_stmt ? stmt_can_throw_external (call_stmt) : false;
849 pop_cfun ();
850 if (call_stmt
851 && callee && callee->decl
852 && !gimple_check_call_matching_types (call_stmt, callee->decl,
853 false))
854 edge->call_stmt_cannot_inline_p = true;
855 else
856 edge->call_stmt_cannot_inline_p = false;
858 edge->indirect_info = NULL;
859 edge->indirect_inlining_edge = 0;
860 edge->speculative = false;
861 edge->indirect_unknown_callee = indir_unknown_callee;
862 if (flag_devirtualize && call_stmt && DECL_STRUCT_FUNCTION (caller->decl))
863 edge->in_polymorphic_cdtor
864 = decl_maybe_in_construction_p (NULL, NULL, call_stmt,
865 caller->decl);
866 else
867 edge->in_polymorphic_cdtor = caller->thunk.thunk_p;
868 if (call_stmt && caller->call_site_hash)
869 cgraph_add_edge_to_call_site_hash (edge);
871 return edge;
874 /* Create edge from a given function to CALLEE in the cgraph. */
876 cgraph_edge *
877 cgraph_node::create_edge (cgraph_node *callee,
878 gimple call_stmt, gcov_type count, int freq)
880 cgraph_edge *edge = symtab->create_edge (this, callee, call_stmt, count,
881 freq, false);
883 initialize_inline_failed (edge);
885 edge->next_caller = callee->callers;
886 if (callee->callers)
887 callee->callers->prev_caller = edge;
888 edge->next_callee = callees;
889 if (callees)
890 callees->prev_callee = edge;
891 callees = edge;
892 callee->callers = edge;
894 return edge;
897 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
899 cgraph_indirect_call_info *
900 cgraph_allocate_init_indirect_info (void)
902 cgraph_indirect_call_info *ii;
904 ii = ggc_cleared_alloc<cgraph_indirect_call_info> ();
905 ii->param_index = -1;
906 return ii;
909 /* Create an indirect edge with a yet-undetermined callee where the call
910 statement destination is a formal parameter of the caller with index
911 PARAM_INDEX. */
913 cgraph_edge *
914 cgraph_node::create_indirect_edge (gimple call_stmt, int ecf_flags,
915 gcov_type count, int freq,
916 bool compute_indirect_info)
918 cgraph_edge *edge = symtab->create_edge (this, NULL, call_stmt,
919 count, freq, true);
920 tree target;
922 initialize_inline_failed (edge);
924 edge->indirect_info = cgraph_allocate_init_indirect_info ();
925 edge->indirect_info->ecf_flags = ecf_flags;
926 edge->indirect_info->vptr_changed = true;
928 /* Record polymorphic call info. */
929 if (compute_indirect_info
930 && call_stmt
931 && (target = gimple_call_fn (call_stmt))
932 && virtual_method_call_p (target))
934 ipa_polymorphic_call_context context (decl, target, call_stmt);
936 /* Only record types can have virtual calls. */
937 edge->indirect_info->polymorphic = true;
938 edge->indirect_info->param_index = -1;
939 edge->indirect_info->otr_token
940 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
941 edge->indirect_info->otr_type = obj_type_ref_class (target);
942 gcc_assert (TREE_CODE (edge->indirect_info->otr_type) == RECORD_TYPE);
943 edge->indirect_info->context = context;
946 edge->next_callee = indirect_calls;
947 if (indirect_calls)
948 indirect_calls->prev_callee = edge;
949 indirect_calls = edge;
951 return edge;
954 /* Remove the edge from the list of the callers of the callee. */
956 void
957 cgraph_edge::remove_callee (void)
959 gcc_assert (!indirect_unknown_callee);
960 if (prev_caller)
961 prev_caller->next_caller = next_caller;
962 if (next_caller)
963 next_caller->prev_caller = prev_caller;
964 if (!prev_caller)
965 callee->callers = next_caller;
968 /* Remove the edge from the list of the callees of the caller. */
970 void
971 cgraph_edge::remove_caller (void)
973 if (prev_callee)
974 prev_callee->next_callee = next_callee;
975 if (next_callee)
976 next_callee->prev_callee = prev_callee;
977 if (!prev_callee)
979 if (indirect_unknown_callee)
980 caller->indirect_calls = next_callee;
981 else
982 caller->callees = next_callee;
984 if (caller->call_site_hash)
985 caller->call_site_hash->remove_elt_with_hash (call_stmt,
986 htab_hash_pointer (call_stmt));
989 /* Put the edge onto the free list. */
991 void
992 symbol_table::free_edge (cgraph_edge *e)
994 int uid = e->uid;
996 if (e->indirect_info)
997 ggc_free (e->indirect_info);
999 /* Clear out the edge so we do not dangle pointers. */
1000 memset (e, 0, sizeof (*e));
1001 e->uid = uid;
1002 NEXT_FREE_EDGE (e) = free_edges;
1003 free_edges = e;
1004 edges_count--;
1007 /* Remove the edge in the cgraph. */
1009 void
1010 cgraph_edge::remove (void)
1012 /* Call all edge removal hooks. */
1013 symtab->call_edge_removal_hooks (this);
1015 if (!indirect_unknown_callee)
1016 /* Remove from callers list of the callee. */
1017 remove_callee ();
1019 /* Remove from callees list of the callers. */
1020 remove_caller ();
1022 /* Put the edge onto the free list. */
1023 symtab->free_edge (this);
1026 /* Set callee of call graph edge E and add it to the corresponding set of
1027 callers. */
1029 static void
1030 cgraph_set_edge_callee (cgraph_edge *e, cgraph_node *n)
1032 e->prev_caller = NULL;
1033 if (n->callers)
1034 n->callers->prev_caller = e;
1035 e->next_caller = n->callers;
1036 n->callers = e;
1037 e->callee = n;
1040 /* Turn edge into speculative call calling N2. Update
1041 the profile so the direct call is taken COUNT times
1042 with FREQUENCY.
1044 At clone materialization time, the indirect call E will
1045 be expanded as:
1047 if (call_dest == N2)
1048 n2 ();
1049 else
1050 call call_dest
1052 At this time the function just creates the direct call,
1053 the referencd representing the if conditional and attaches
1054 them all to the orginal indirect call statement.
1056 Return direct edge created. */
1058 cgraph_edge *
1059 cgraph_edge::make_speculative (cgraph_node *n2, gcov_type direct_count,
1060 int direct_frequency)
1062 cgraph_node *n = caller;
1063 ipa_ref *ref = NULL;
1064 cgraph_edge *e2;
1066 if (dump_file)
1068 fprintf (dump_file, "Indirect call -> speculative call"
1069 " %s/%i => %s/%i\n",
1070 xstrdup (n->name ()), n->order,
1071 xstrdup (n2->name ()), n2->order);
1073 speculative = true;
1074 e2 = n->create_edge (n2, call_stmt, direct_count, direct_frequency);
1075 initialize_inline_failed (e2);
1076 e2->speculative = true;
1077 if (TREE_NOTHROW (n2->decl))
1078 e2->can_throw_external = false;
1079 else
1080 e2->can_throw_external = can_throw_external;
1081 e2->lto_stmt_uid = lto_stmt_uid;
1082 e2->in_polymorphic_cdtor = in_polymorphic_cdtor;
1083 count -= e2->count;
1084 frequency -= e2->frequency;
1085 symtab->call_edge_duplication_hooks (this, e2);
1086 ref = n->create_reference (n2, IPA_REF_ADDR, call_stmt);
1087 ref->lto_stmt_uid = lto_stmt_uid;
1088 ref->speculative = speculative;
1089 n2->mark_address_taken ();
1090 return e2;
1093 /* Speculative call consist of three components:
1094 1) an indirect edge representing the original call
1095 2) an direct edge representing the new call
1096 3) ADDR_EXPR reference representing the speculative check.
1097 All three components are attached to single statement (the indirect
1098 call) and if one of them exists, all of them must exist.
1100 Given speculative call edge, return all three components.
1103 void
1104 cgraph_edge::speculative_call_info (cgraph_edge *&direct,
1105 cgraph_edge *&indirect,
1106 ipa_ref *&reference)
1108 ipa_ref *ref;
1109 int i;
1110 cgraph_edge *e2;
1111 cgraph_edge *e = this;
1113 if (!e->indirect_unknown_callee)
1114 for (e2 = e->caller->indirect_calls;
1115 e2->call_stmt != e->call_stmt || e2->lto_stmt_uid != e->lto_stmt_uid;
1116 e2 = e2->next_callee)
1118 else
1120 e2 = e;
1121 /* We can take advantage of the call stmt hash. */
1122 if (e2->call_stmt)
1124 e = e->caller->get_edge (e2->call_stmt);
1125 gcc_assert (e->speculative && !e->indirect_unknown_callee);
1127 else
1128 for (e = e->caller->callees;
1129 e2->call_stmt != e->call_stmt
1130 || e2->lto_stmt_uid != e->lto_stmt_uid;
1131 e = e->next_callee)
1134 gcc_assert (e->speculative && e2->speculative);
1135 direct = e;
1136 indirect = e2;
1138 reference = NULL;
1139 for (i = 0; e->caller->iterate_reference (i, ref); i++)
1140 if (ref->speculative
1141 && ((ref->stmt && ref->stmt == e->call_stmt)
1142 || (!ref->stmt && ref->lto_stmt_uid == e->lto_stmt_uid)))
1144 reference = ref;
1145 break;
1148 /* Speculative edge always consist of all three components - direct edge,
1149 indirect and reference. */
1151 gcc_assert (e && e2 && ref);
1154 /* Redirect callee of the edge to N. The function does not update underlying
1155 call expression. */
1157 void
1158 cgraph_edge::redirect_callee (cgraph_node *n)
1160 /* Remove from callers list of the current callee. */
1161 remove_callee ();
1163 /* Insert to callers list of the new callee. */
1164 cgraph_set_edge_callee (this, n);
1167 /* Speculative call edge turned out to be direct call to CALLE_DECL.
1168 Remove the speculative call sequence and return edge representing the call.
1169 It is up to caller to redirect the call as appropriate. */
1171 cgraph_edge *
1172 cgraph_edge::resolve_speculation (tree callee_decl)
1174 cgraph_edge *edge = this;
1175 cgraph_edge *e2;
1176 ipa_ref *ref;
1178 gcc_assert (edge->speculative);
1179 edge->speculative_call_info (e2, edge, ref);
1180 if (!callee_decl
1181 || !ref->referred->semantically_equivalent_p
1182 (symtab_node::get (callee_decl)))
1184 if (dump_file)
1186 if (callee_decl)
1188 fprintf (dump_file, "Speculative indirect call %s/%i => %s/%i has "
1189 "turned out to have contradicting known target ",
1190 xstrdup (edge->caller->name ()), edge->caller->order,
1191 xstrdup (e2->callee->name ()), e2->callee->order);
1192 print_generic_expr (dump_file, callee_decl, 0);
1193 fprintf (dump_file, "\n");
1195 else
1197 fprintf (dump_file, "Removing speculative call %s/%i => %s/%i\n",
1198 xstrdup (edge->caller->name ()), edge->caller->order,
1199 xstrdup (e2->callee->name ()), e2->callee->order);
1203 else
1205 cgraph_edge *tmp = edge;
1206 if (dump_file)
1207 fprintf (dump_file, "Speculative call turned into direct call.\n");
1208 edge = e2;
1209 e2 = tmp;
1210 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1211 in the functions inlined through it. */
1213 edge->count += e2->count;
1214 edge->frequency += e2->frequency;
1215 if (edge->frequency > CGRAPH_FREQ_MAX)
1216 edge->frequency = CGRAPH_FREQ_MAX;
1217 edge->speculative = false;
1218 e2->speculative = false;
1219 ref->remove_reference ();
1220 if (e2->indirect_unknown_callee || e2->inline_failed)
1221 e2->remove ();
1222 else
1223 e2->callee->remove_symbol_and_inline_clones ();
1224 if (edge->caller->call_site_hash)
1225 cgraph_update_edge_in_call_site_hash (edge);
1226 return edge;
1229 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1230 CALLEE. DELTA is an integer constant that is to be added to the this
1231 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1233 cgraph_edge *
1234 cgraph_edge::make_direct (cgraph_node *callee)
1236 cgraph_edge *edge = this;
1237 gcc_assert (indirect_unknown_callee);
1239 /* If we are redirecting speculative call, make it non-speculative. */
1240 if (indirect_unknown_callee && speculative)
1242 edge = edge->resolve_speculation (callee->decl);
1244 /* On successful speculation just return the pre existing direct edge. */
1245 if (!indirect_unknown_callee)
1246 return edge;
1249 indirect_unknown_callee = 0;
1250 ggc_free (indirect_info);
1251 indirect_info = NULL;
1253 /* Get the edge out of the indirect edge list. */
1254 if (prev_callee)
1255 prev_callee->next_callee = next_callee;
1256 if (next_callee)
1257 next_callee->prev_callee = prev_callee;
1258 if (!prev_callee)
1259 caller->indirect_calls = next_callee;
1261 /* Put it into the normal callee list */
1262 prev_callee = NULL;
1263 next_callee = caller->callees;
1264 if (caller->callees)
1265 caller->callees->prev_callee = edge;
1266 caller->callees = edge;
1268 /* Insert to callers list of the new callee. */
1269 cgraph_set_edge_callee (edge, callee);
1271 if (call_stmt)
1272 call_stmt_cannot_inline_p
1273 = !gimple_check_call_matching_types (call_stmt, callee->decl,
1274 false);
1276 /* We need to re-determine the inlining status of the edge. */
1277 initialize_inline_failed (edge);
1278 return edge;
1281 /* If necessary, change the function declaration in the call statement
1282 associated with E so that it corresponds to the edge callee. */
1284 gimple
1285 cgraph_edge::redirect_call_stmt_to_callee (void)
1287 cgraph_edge *e = this;
1289 tree decl = gimple_call_fndecl (e->call_stmt);
1290 tree lhs = gimple_call_lhs (e->call_stmt);
1291 gimple new_stmt;
1292 gimple_stmt_iterator gsi;
1293 #ifdef ENABLE_CHECKING
1294 cgraph_node *node;
1295 #endif
1297 if (e->speculative)
1299 cgraph_edge *e2;
1300 gimple new_stmt;
1301 ipa_ref *ref;
1303 e->speculative_call_info (e, e2, ref);
1304 /* If there already is an direct call (i.e. as a result of inliner's
1305 substitution), forget about speculating. */
1306 if (decl)
1307 e = e->resolve_speculation (decl);
1308 /* If types do not match, speculation was likely wrong.
1309 The direct edge was posisbly redirected to the clone with a different
1310 signature. We did not update the call statement yet, so compare it
1311 with the reference that still points to the proper type. */
1312 else if (!gimple_check_call_matching_types (e->call_stmt,
1313 ref->referred->decl,
1314 true))
1316 if (dump_file)
1317 fprintf (dump_file, "Not expanding speculative call of %s/%i -> %s/%i\n"
1318 "Type mismatch.\n",
1319 xstrdup (e->caller->name ()),
1320 e->caller->order,
1321 xstrdup (e->callee->name ()),
1322 e->callee->order);
1323 e = e->resolve_speculation ();
1324 /* We are producing the final function body and will throw away the
1325 callgraph edges really soon. Reset the counts/frequencies to
1326 keep verifier happy in the case of roundoff errors. */
1327 e->count = gimple_bb (e->call_stmt)->count;
1328 e->frequency = compute_call_stmt_bb_frequency
1329 (e->caller->decl, gimple_bb (e->call_stmt));
1331 /* Expand speculation into GIMPLE code. */
1332 else
1334 if (dump_file)
1335 fprintf (dump_file,
1336 "Expanding speculative call of %s/%i -> %s/%i count:"
1337 "%"PRId64"\n",
1338 xstrdup (e->caller->name ()),
1339 e->caller->order,
1340 xstrdup (e->callee->name ()),
1341 e->callee->order,
1342 (int64_t)e->count);
1343 gcc_assert (e2->speculative);
1344 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
1345 new_stmt = gimple_ic (e->call_stmt, dyn_cast<cgraph_node *> (ref->referred),
1346 e->count || e2->count
1347 ? RDIV (e->count * REG_BR_PROB_BASE,
1348 e->count + e2->count)
1349 : e->frequency || e2->frequency
1350 ? RDIV (e->frequency * REG_BR_PROB_BASE,
1351 e->frequency + e2->frequency)
1352 : REG_BR_PROB_BASE / 2,
1353 e->count, e->count + e2->count);
1354 e->speculative = false;
1355 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt,
1356 false);
1358 /* Fix edges for BUILT_IN_CHKP_BNDRET calls attached to the
1359 processed call stmt. */
1360 if (gimple_call_with_bounds_p (new_stmt)
1361 && gimple_call_lhs (new_stmt)
1362 && chkp_retbnd_call_by_val (gimple_call_lhs (e2->call_stmt)))
1364 tree dresult = gimple_call_lhs (new_stmt);
1365 tree iresult = gimple_call_lhs (e2->call_stmt);
1366 gimple dbndret = chkp_retbnd_call_by_val (dresult);
1367 gimple ibndret = chkp_retbnd_call_by_val (iresult);
1368 struct cgraph_edge *iedge
1369 = e2->caller->cgraph_node::get_edge (ibndret);
1370 struct cgraph_edge *dedge;
1372 if (dbndret)
1374 dedge = iedge->caller->create_edge (iedge->callee,
1375 dbndret, e->count,
1376 e->frequency);
1377 dedge->frequency = compute_call_stmt_bb_frequency
1378 (dedge->caller->decl, gimple_bb (dedge->call_stmt));
1380 iedge->frequency = compute_call_stmt_bb_frequency
1381 (iedge->caller->decl, gimple_bb (iedge->call_stmt));
1384 e->frequency = compute_call_stmt_bb_frequency
1385 (e->caller->decl, gimple_bb (e->call_stmt));
1386 e2->frequency = compute_call_stmt_bb_frequency
1387 (e2->caller->decl, gimple_bb (e2->call_stmt));
1388 e2->speculative = false;
1389 ref->speculative = false;
1390 ref->stmt = NULL;
1391 /* Indirect edges are not both in the call site hash.
1392 get it updated. */
1393 if (e->caller->call_site_hash)
1394 cgraph_update_edge_in_call_site_hash (e2);
1395 pop_cfun ();
1396 /* Continue redirecting E to proper target. */
1400 if (e->indirect_unknown_callee
1401 || decl == e->callee->decl)
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 (e->caller->name ()), e->caller->order,
1416 xstrdup (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)
1428 int lp_nr;
1430 new_stmt
1431 = gimple_call_copy_skip_args (e->call_stmt,
1432 e->callee->clone.combined_args_to_skip);
1433 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1434 gimple_call_set_fntype (new_stmt, gimple_call_fntype (e->call_stmt));
1436 if (gimple_vdef (new_stmt)
1437 && TREE_CODE (gimple_vdef (new_stmt)) == SSA_NAME)
1438 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
1440 gsi = gsi_for_stmt (e->call_stmt);
1441 gsi_replace (&gsi, new_stmt, false);
1442 /* We need to defer cleaning EH info on the new statement to
1443 fixup-cfg. We may not have dominator information at this point
1444 and thus would end up with unreachable blocks and have no way
1445 to communicate that we need to run CFG cleanup then. */
1446 lp_nr = lookup_stmt_eh_lp (e->call_stmt);
1447 if (lp_nr != 0)
1449 remove_stmt_from_eh_lp (e->call_stmt);
1450 add_stmt_to_eh_lp (new_stmt, lp_nr);
1453 else
1455 new_stmt = e->call_stmt;
1456 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1457 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1460 /* If the call becomes noreturn, remove the lhs. */
1461 if (lhs && (gimple_call_flags (new_stmt) & ECF_NORETURN))
1463 if (TREE_CODE (lhs) == SSA_NAME)
1465 tree var = create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e->caller->decl),
1466 TREE_TYPE (lhs), NULL);
1467 var = get_or_create_ssa_default_def
1468 (DECL_STRUCT_FUNCTION (e->caller->decl), var);
1469 gimple set_stmt = gimple_build_assign (lhs, var);
1470 gsi = gsi_for_stmt (new_stmt);
1471 gsi_insert_before_without_update (&gsi, set_stmt, GSI_SAME_STMT);
1472 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), set_stmt);
1474 gimple_call_set_lhs (new_stmt, NULL_TREE);
1475 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1478 /* If new callee has no static chain, remove it. */
1479 if (gimple_call_chain (new_stmt) && !DECL_STATIC_CHAIN (e->callee->decl))
1481 gimple_call_set_chain (new_stmt, NULL);
1482 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1485 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt, false);
1487 if (symtab->dump_file)
1489 fprintf (symtab->dump_file, " updated to:");
1490 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1492 return new_stmt;
1495 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1496 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1497 of OLD_STMT if it was previously call statement.
1498 If NEW_STMT is NULL, the call has been dropped without any
1499 replacement. */
1501 static void
1502 cgraph_update_edges_for_call_stmt_node (cgraph_node *node,
1503 gimple old_stmt, tree old_call,
1504 gimple new_stmt)
1506 tree new_call = (new_stmt && is_gimple_call (new_stmt))
1507 ? gimple_call_fndecl (new_stmt) : 0;
1509 /* We are seeing indirect calls, then there is nothing to update. */
1510 if (!new_call && !old_call)
1511 return;
1512 /* See if we turned indirect call into direct call or folded call to one builtin
1513 into different builtin. */
1514 if (old_call != new_call)
1516 cgraph_edge *e = node->get_edge (old_stmt);
1517 cgraph_edge *ne = NULL;
1518 gcov_type count;
1519 int frequency;
1521 if (e)
1523 /* See if the edge is already there and has the correct callee. It
1524 might be so because of indirect inlining has already updated
1525 it. We also might've cloned and redirected the edge. */
1526 if (new_call && e->callee)
1528 cgraph_node *callee = e->callee;
1529 while (callee)
1531 if (callee->decl == new_call
1532 || callee->former_clone_of == new_call)
1534 e->set_call_stmt (new_stmt);
1535 return;
1537 callee = callee->clone_of;
1541 /* Otherwise remove edge and create new one; we can't simply redirect
1542 since function has changed, so inline plan and other information
1543 attached to edge is invalid. */
1544 count = e->count;
1545 frequency = e->frequency;
1546 if (e->indirect_unknown_callee || e->inline_failed)
1547 e->remove ();
1548 else
1549 e->callee->remove_symbol_and_inline_clones ();
1551 else if (new_call)
1553 /* We are seeing new direct call; compute profile info based on BB. */
1554 basic_block bb = gimple_bb (new_stmt);
1555 count = bb->count;
1556 frequency = compute_call_stmt_bb_frequency (current_function_decl,
1557 bb);
1560 if (new_call)
1562 ne = node->create_edge (cgraph_node::get_create (new_call),
1563 new_stmt, count, frequency);
1564 gcc_assert (ne->inline_failed);
1567 /* We only updated the call stmt; update pointer in cgraph edge.. */
1568 else if (old_stmt != new_stmt)
1569 node->get_edge (old_stmt)->set_call_stmt (new_stmt);
1572 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1573 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1574 of OLD_STMT before it was updated (updating can happen inplace). */
1576 void
1577 cgraph_update_edges_for_call_stmt (gimple old_stmt, tree old_decl, gimple new_stmt)
1579 cgraph_node *orig = cgraph_node::get (cfun->decl);
1580 cgraph_node *node;
1582 gcc_checking_assert (orig);
1583 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1584 if (orig->clones)
1585 for (node = orig->clones; node != orig;)
1587 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1588 if (node->clones)
1589 node = node->clones;
1590 else if (node->next_sibling_clone)
1591 node = node->next_sibling_clone;
1592 else
1594 while (node != orig && !node->next_sibling_clone)
1595 node = node->clone_of;
1596 if (node != orig)
1597 node = node->next_sibling_clone;
1603 /* Remove all callees from the node. */
1605 void
1606 cgraph_node::remove_callees (void)
1608 cgraph_edge *e, *f;
1610 /* It is sufficient to remove the edges from the lists of callers of
1611 the callees. The callee list of the node can be zapped with one
1612 assignment. */
1613 for (e = callees; e; e = f)
1615 f = e->next_callee;
1616 symtab->call_edge_removal_hooks (e);
1617 if (!e->indirect_unknown_callee)
1618 e->remove_callee ();
1619 symtab->free_edge (e);
1621 for (e = indirect_calls; e; e = f)
1623 f = e->next_callee;
1624 symtab->call_edge_removal_hooks (e);
1625 if (!e->indirect_unknown_callee)
1626 e->remove_callee ();
1627 symtab->free_edge (e);
1629 indirect_calls = NULL;
1630 callees = NULL;
1631 if (call_site_hash)
1633 call_site_hash->empty ();
1634 call_site_hash = NULL;
1638 /* Remove all callers from the node. */
1640 void
1641 cgraph_node::remove_callers (void)
1643 cgraph_edge *e, *f;
1645 /* It is sufficient to remove the edges from the lists of callees of
1646 the callers. The caller list of the node can be zapped with one
1647 assignment. */
1648 for (e = callers; e; e = f)
1650 f = e->next_caller;
1651 symtab->call_edge_removal_hooks (e);
1652 e->remove_caller ();
1653 symtab->free_edge (e);
1655 callers = NULL;
1658 /* Helper function for cgraph_release_function_body and free_lang_data.
1659 It releases body from function DECL without having to inspect its
1660 possibly non-existent symtab node. */
1662 void
1663 release_function_body (tree decl)
1665 if (DECL_STRUCT_FUNCTION (decl))
1667 if (DECL_STRUCT_FUNCTION (decl)->cfg
1668 || DECL_STRUCT_FUNCTION (decl)->gimple_df)
1670 push_cfun (DECL_STRUCT_FUNCTION (decl));
1671 if (cfun->cfg
1672 && current_loops)
1674 cfun->curr_properties &= ~PROP_loops;
1675 loop_optimizer_finalize ();
1677 if (cfun->gimple_df)
1679 delete_tree_ssa ();
1680 delete_tree_cfg_annotations ();
1681 cfun->eh = NULL;
1683 if (cfun->cfg)
1685 gcc_assert (!dom_info_available_p (CDI_DOMINATORS));
1686 gcc_assert (!dom_info_available_p (CDI_POST_DOMINATORS));
1687 clear_edges ();
1688 cfun->cfg = NULL;
1690 if (cfun->value_histograms)
1691 free_histograms ();
1692 pop_cfun ();
1694 gimple_set_body (decl, NULL);
1695 /* Struct function hangs a lot of data that would leak if we didn't
1696 removed all pointers to it. */
1697 ggc_free (DECL_STRUCT_FUNCTION (decl));
1698 DECL_STRUCT_FUNCTION (decl) = NULL;
1700 DECL_SAVED_TREE (decl) = NULL;
1703 /* Release memory used to represent body of function.
1704 Use this only for functions that are released before being translated to
1705 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1706 are free'd in final.c via free_after_compilation().
1707 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1709 void
1710 cgraph_node::release_body (bool keep_arguments)
1712 ipa_transforms_to_apply.release ();
1713 if (!used_as_abstract_origin && symtab->state != PARSING)
1715 DECL_RESULT (decl) = NULL;
1717 if (!keep_arguments)
1718 DECL_ARGUMENTS (decl) = NULL;
1720 /* If the node is abstract and needed, then do not clear DECL_INITIAL
1721 of its associated function function declaration because it's
1722 needed to emit debug info later. */
1723 if (!used_as_abstract_origin && DECL_INITIAL (decl))
1724 DECL_INITIAL (decl) = error_mark_node;
1725 release_function_body (decl);
1726 if (lto_file_data)
1727 lto_free_function_in_decl_state_for_node (this);
1730 /* Remove function from symbol table. */
1732 void
1733 cgraph_node::remove (void)
1735 cgraph_node *n;
1736 int uid = this->uid;
1738 symtab->call_cgraph_removal_hooks (this);
1739 remove_callers ();
1740 remove_callees ();
1741 ipa_transforms_to_apply.release ();
1743 /* Incremental inlining access removed nodes stored in the postorder list.
1745 force_output = false;
1746 forced_by_abi = false;
1747 for (n = nested; n; n = n->next_nested)
1748 n->origin = NULL;
1749 nested = NULL;
1750 if (origin)
1752 cgraph_node **node2 = &origin->nested;
1754 while (*node2 != this)
1755 node2 = &(*node2)->next_nested;
1756 *node2 = next_nested;
1758 unregister ();
1759 if (prev_sibling_clone)
1760 prev_sibling_clone->next_sibling_clone = next_sibling_clone;
1761 else if (clone_of)
1762 clone_of->clones = next_sibling_clone;
1763 if (next_sibling_clone)
1764 next_sibling_clone->prev_sibling_clone = prev_sibling_clone;
1765 if (clones)
1767 cgraph_node *n, *next;
1769 if (clone_of)
1771 for (n = clones; n->next_sibling_clone; n = n->next_sibling_clone)
1772 n->clone_of = clone_of;
1773 n->clone_of = clone_of;
1774 n->next_sibling_clone = clone_of->clones;
1775 if (clone_of->clones)
1776 clone_of->clones->prev_sibling_clone = n;
1777 clone_of->clones = clones;
1779 else
1781 /* We are removing node with clones. This makes clones inconsistent,
1782 but assume they will be removed subsequently and just keep clone
1783 tree intact. This can happen in unreachable function removal since
1784 we remove unreachable functions in random order, not by bottom-up
1785 walk of clone trees. */
1786 for (n = clones; n; n = next)
1788 next = n->next_sibling_clone;
1789 n->next_sibling_clone = NULL;
1790 n->prev_sibling_clone = NULL;
1791 n->clone_of = NULL;
1796 /* While all the clones are removed after being proceeded, the function
1797 itself is kept in the cgraph even after it is compiled. Check whether
1798 we are done with this body and reclaim it proactively if this is the case.
1800 if (symtab->state != LTO_STREAMING)
1802 n = cgraph_node::get (decl);
1803 if (!n
1804 || (!n->clones && !n->clone_of && !n->global.inlined_to
1805 && (symtab->global_info_ready
1806 && (TREE_ASM_WRITTEN (n->decl)
1807 || DECL_EXTERNAL (n->decl)
1808 || !n->analyzed
1809 || (!flag_wpa && n->in_other_partition)))))
1810 release_body ();
1813 decl = NULL;
1814 if (call_site_hash)
1816 call_site_hash->empty ();
1817 call_site_hash = NULL;
1820 if (instrumented_version)
1822 instrumented_version->instrumented_version = NULL;
1823 instrumented_version = NULL;
1826 symtab->release_symbol (this, uid);
1829 /* Likewise indicate that a node is having address taken. */
1831 void
1832 cgraph_node::mark_address_taken (void)
1834 /* Indirect inlining can figure out that all uses of the address are
1835 inlined. */
1836 if (global.inlined_to)
1838 gcc_assert (cfun->after_inlining);
1839 gcc_assert (callers->indirect_inlining_edge);
1840 return;
1842 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1843 IPA_REF_ADDR reference exists (and thus it should be set on node
1844 representing alias we take address of) and as a test whether address
1845 of the object was taken (and thus it should be set on node alias is
1846 referring to). We should remove the first use and the remove the
1847 following set. */
1848 address_taken = 1;
1849 cgraph_node *node = ultimate_alias_target ();
1850 node->address_taken = 1;
1853 /* Return local info for the compiled function. */
1855 cgraph_local_info *
1856 cgraph_node::local_info (tree decl)
1858 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1859 cgraph_node *node = get (decl);
1860 if (!node)
1861 return NULL;
1862 return &node->local;
1865 /* Return global info for the compiled function. */
1867 cgraph_global_info *
1868 cgraph_node::global_info (tree decl)
1870 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1871 && symtab->global_info_ready);
1872 cgraph_node *node = get (decl);
1873 if (!node)
1874 return NULL;
1875 return &node->global;
1878 /* Return local info for the compiled function. */
1880 cgraph_rtl_info *
1881 cgraph_node::rtl_info (tree decl)
1883 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1884 cgraph_node *node = get (decl);
1885 if (!node
1886 || (decl != current_function_decl
1887 && !TREE_ASM_WRITTEN (node->decl)))
1888 return NULL;
1889 return &node->rtl;
1892 /* Return a string describing the failure REASON. */
1894 const char*
1895 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1897 #undef DEFCIFCODE
1898 #define DEFCIFCODE(code, type, string) string,
1900 static const char *cif_string_table[CIF_N_REASONS] = {
1901 #include "cif-code.def"
1904 /* Signedness of an enum type is implementation defined, so cast it
1905 to unsigned before testing. */
1906 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1907 return cif_string_table[reason];
1910 /* Return a type describing the failure REASON. */
1912 cgraph_inline_failed_type_t
1913 cgraph_inline_failed_type (cgraph_inline_failed_t reason)
1915 #undef DEFCIFCODE
1916 #define DEFCIFCODE(code, type, string) type,
1918 static cgraph_inline_failed_type_t cif_type_table[CIF_N_REASONS] = {
1919 #include "cif-code.def"
1922 /* Signedness of an enum type is implementation defined, so cast it
1923 to unsigned before testing. */
1924 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1925 return cif_type_table[reason];
1928 /* Names used to print out the availability enum. */
1929 const char * const cgraph_availability_names[] =
1930 {"unset", "not_available", "overwritable", "available", "local"};
1932 /* Output flags of edge E. */
1934 static void
1935 dump_edge_flags (FILE *f, struct cgraph_edge *edge)
1937 if (edge->speculative)
1938 fprintf (f, "(speculative) ");
1939 if (!edge->inline_failed)
1940 fprintf (f, "(inlined) ");
1941 if (edge->indirect_inlining_edge)
1942 fprintf (f, "(indirect_inlining) ");
1943 if (edge->count)
1944 fprintf (f, "(%"PRId64"x) ",
1945 (int64_t)edge->count);
1946 if (edge->frequency)
1947 fprintf (f, "(%.2f per call) ",
1948 edge->frequency / (double)CGRAPH_FREQ_BASE);
1949 if (edge->can_throw_external)
1950 fprintf (f, "(can throw external) ");
1953 /* Dump call graph node to file F. */
1955 void
1956 cgraph_node::dump (FILE *f)
1958 cgraph_edge *edge;
1960 dump_base (f);
1962 if (global.inlined_to)
1963 fprintf (f, " Function %s/%i is inline copy in %s/%i\n",
1964 xstrdup (name ()),
1965 order,
1966 xstrdup (global.inlined_to->name ()),
1967 global.inlined_to->order);
1968 if (clone_of)
1969 fprintf (f, " Clone of %s/%i\n",
1970 clone_of->asm_name (),
1971 clone_of->order);
1972 if (symtab->function_flags_ready)
1973 fprintf (f, " Availability: %s\n",
1974 cgraph_availability_names [get_availability ()]);
1976 if (profile_id)
1977 fprintf (f, " Profile id: %i\n",
1978 profile_id);
1979 fprintf (f, " First run: %i\n", tp_first_run);
1980 fprintf (f, " Function flags:");
1981 if (count)
1982 fprintf (f, " executed %"PRId64"x",
1983 (int64_t)count);
1984 if (origin)
1985 fprintf (f, " nested in: %s", origin->asm_name ());
1986 if (gimple_has_body_p (decl))
1987 fprintf (f, " body");
1988 if (process)
1989 fprintf (f, " process");
1990 if (local.local)
1991 fprintf (f, " local");
1992 if (local.redefined_extern_inline)
1993 fprintf (f, " redefined_extern_inline");
1994 if (only_called_at_startup)
1995 fprintf (f, " only_called_at_startup");
1996 if (only_called_at_exit)
1997 fprintf (f, " only_called_at_exit");
1998 if (tm_clone)
1999 fprintf (f, " tm_clone");
2000 if (icf_merged)
2001 fprintf (f, " icf_merged");
2002 if (nonfreeing_fn)
2003 fprintf (f, " nonfreeing_fn");
2004 if (DECL_STATIC_CONSTRUCTOR (decl))
2005 fprintf (f," static_constructor (priority:%i)", get_init_priority ());
2006 if (DECL_STATIC_DESTRUCTOR (decl))
2007 fprintf (f," static_destructor (priority:%i)", get_fini_priority ());
2009 fprintf (f, "\n");
2011 if (thunk.thunk_p)
2013 fprintf (f, " Thunk");
2014 if (thunk.alias)
2015 fprintf (f, " of %s (asm: %s)",
2016 lang_hooks.decl_printable_name (thunk.alias, 2),
2017 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2018 fprintf (f, " fixed offset %i virtual value %i has "
2019 "virtual offset %i)\n",
2020 (int)thunk.fixed_offset,
2021 (int)thunk.virtual_value,
2022 (int)thunk.virtual_offset_p);
2024 if (alias && thunk.alias
2025 && DECL_P (thunk.alias))
2027 fprintf (f, " Alias of %s",
2028 lang_hooks.decl_printable_name (thunk.alias, 2));
2029 if (DECL_ASSEMBLER_NAME_SET_P (thunk.alias))
2030 fprintf (f, " (asm: %s)",
2031 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2032 fprintf (f, "\n");
2035 fprintf (f, " Called by: ");
2037 for (edge = callers; edge; edge = edge->next_caller)
2039 fprintf (f, "%s/%i ", edge->caller->asm_name (),
2040 edge->caller->order);
2041 dump_edge_flags (f, edge);
2044 fprintf (f, "\n Calls: ");
2045 for (edge = callees; edge; edge = edge->next_callee)
2047 fprintf (f, "%s/%i ", edge->callee->asm_name (),
2048 edge->callee->order);
2049 dump_edge_flags (f, edge);
2051 fprintf (f, "\n");
2053 for (edge = indirect_calls; edge; edge = edge->next_callee)
2055 if (edge->indirect_info->polymorphic)
2057 fprintf (f, " Polymorphic indirect call of type ");
2058 print_generic_expr (f, edge->indirect_info->otr_type, TDF_SLIM);
2059 fprintf (f, " token:%i", (int) edge->indirect_info->otr_token);
2061 else
2062 fprintf (f, " Indirect call");
2063 dump_edge_flags (f, edge);
2064 if (edge->indirect_info->param_index != -1)
2066 fprintf (f, " of param:%i", edge->indirect_info->param_index);
2067 if (edge->indirect_info->agg_contents)
2068 fprintf (f, " loaded from %s %s at offset %i",
2069 edge->indirect_info->member_ptr ? "member ptr" : "aggregate",
2070 edge->indirect_info->by_ref ? "passed by reference":"",
2071 (int)edge->indirect_info->offset);
2072 if (edge->indirect_info->vptr_changed)
2073 fprintf (f, " (vptr maybe changed)");
2075 fprintf (f, "\n");
2076 if (edge->indirect_info->polymorphic)
2077 edge->indirect_info->context.dump (f);
2080 if (instrumentation_clone)
2081 fprintf (f, " Is instrumented version.\n");
2082 else if (instrumented_version)
2083 fprintf (f, " Has instrumented version.\n");
2086 /* Dump call graph node NODE to stderr. */
2088 DEBUG_FUNCTION void
2089 cgraph_node::debug (void)
2091 dump (stderr);
2094 /* Dump the callgraph to file F. */
2096 void
2097 cgraph_node::dump_cgraph (FILE *f)
2099 cgraph_node *node;
2101 fprintf (f, "callgraph:\n\n");
2102 FOR_EACH_FUNCTION (node)
2103 node->dump (f);
2106 /* Return true when the DECL can possibly be inlined. */
2108 bool
2109 cgraph_function_possibly_inlined_p (tree decl)
2111 if (!symtab->global_info_ready)
2112 return !DECL_UNINLINABLE (decl);
2113 return DECL_POSSIBLY_INLINED (decl);
2116 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2117 void
2118 cgraph_node::unnest (void)
2120 cgraph_node **node2 = &origin->nested;
2121 gcc_assert (origin);
2123 while (*node2 != this)
2124 node2 = &(*node2)->next_nested;
2125 *node2 = next_nested;
2126 origin = NULL;
2129 /* Return function availability. See cgraph.h for description of individual
2130 return values. */
2131 enum availability
2132 cgraph_node::get_availability (void)
2134 enum availability avail;
2135 if (!analyzed)
2136 avail = AVAIL_NOT_AVAILABLE;
2137 else if (local.local)
2138 avail = AVAIL_LOCAL;
2139 else if (alias && weakref)
2140 ultimate_alias_target (&avail);
2141 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
2142 avail = AVAIL_INTERPOSABLE;
2143 else if (!externally_visible)
2144 avail = AVAIL_AVAILABLE;
2145 /* Inline functions are safe to be analyzed even if their symbol can
2146 be overwritten at runtime. It is not meaningful to enforce any sane
2147 behaviour on replacing inline function by different body. */
2148 else if (DECL_DECLARED_INLINE_P (decl))
2149 avail = AVAIL_AVAILABLE;
2151 /* If the function can be overwritten, return OVERWRITABLE. Take
2152 care at least of two notable extensions - the COMDAT functions
2153 used to share template instantiations in C++ (this is symmetric
2154 to code cp_cannot_inline_tree_fn and probably shall be shared and
2155 the inlinability hooks completely eliminated).
2157 ??? Does the C++ one definition rule allow us to always return
2158 AVAIL_AVAILABLE here? That would be good reason to preserve this
2159 bit. */
2161 else if (decl_replaceable_p (decl) && !DECL_EXTERNAL (decl))
2162 avail = AVAIL_INTERPOSABLE;
2163 else avail = AVAIL_AVAILABLE;
2165 return avail;
2168 /* Worker for cgraph_node_can_be_local_p. */
2169 static bool
2170 cgraph_node_cannot_be_local_p_1 (cgraph_node *node, void *)
2172 return !(!node->force_output
2173 && ((DECL_COMDAT (node->decl)
2174 && !node->forced_by_abi
2175 && !node->used_from_object_file_p ()
2176 && !node->same_comdat_group)
2177 || !node->externally_visible));
2180 /* Return true if cgraph_node can be made local for API change.
2181 Extern inline functions and C++ COMDAT functions can be made local
2182 at the expense of possible code size growth if function is used in multiple
2183 compilation units. */
2184 bool
2185 cgraph_node::can_be_local_p (void)
2187 return (!address_taken
2188 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1,
2189 NULL, true));
2192 /* Call calback on cgraph_node, thunks and aliases associated to cgraph_node.
2193 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2194 skipped. */
2196 bool
2197 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback)
2198 (cgraph_node *, void *),
2199 void *data,
2200 bool include_overwritable)
2202 cgraph_edge *e;
2203 ipa_ref *ref;
2205 if (callback (this, data))
2206 return true;
2207 for (e = callers; e; e = e->next_caller)
2208 if (e->caller->thunk.thunk_p
2209 && (include_overwritable
2210 || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2211 if (e->caller->call_for_symbol_thunks_and_aliases (callback, data,
2212 include_overwritable))
2213 return true;
2215 FOR_EACH_ALIAS (this, ref)
2217 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2218 if (include_overwritable
2219 || alias->get_availability () > AVAIL_INTERPOSABLE)
2220 if (alias->call_for_symbol_thunks_and_aliases (callback, data,
2221 include_overwritable))
2222 return true;
2224 return false;
2227 /* Call calback on function and aliases associated to the function.
2228 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2229 skipped. */
2231 bool
2232 cgraph_node::call_for_symbol_and_aliases (bool (*callback) (cgraph_node *,
2233 void *),
2234 void *data,
2235 bool include_overwritable)
2237 ipa_ref *ref;
2239 if (callback (this, data))
2240 return true;
2242 FOR_EACH_ALIAS (this, ref)
2244 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2245 if (include_overwritable
2246 || alias->get_availability () > AVAIL_INTERPOSABLE)
2247 if (alias->call_for_symbol_and_aliases (callback, data,
2248 include_overwritable))
2249 return true;
2251 return false;
2254 /* Worker to bring NODE local. */
2256 bool
2257 cgraph_node::make_local (cgraph_node *node, void *)
2259 gcc_checking_assert (node->can_be_local_p ());
2260 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2262 node->make_decl_local ();
2263 node->set_section (NULL);
2264 node->set_comdat_group (NULL);
2265 node->externally_visible = false;
2266 node->forced_by_abi = false;
2267 node->local.local = true;
2268 node->set_section (NULL);
2269 node->unique_name = (node->resolution == LDPR_PREVAILING_DEF_IRONLY
2270 || node->resolution == LDPR_PREVAILING_DEF_IRONLY_EXP);
2271 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2272 gcc_assert (node->get_availability () == AVAIL_LOCAL);
2274 return false;
2277 /* Bring cgraph node local. */
2279 void
2280 cgraph_node::make_local (void)
2282 call_for_symbol_thunks_and_aliases (cgraph_node::make_local, NULL, true);
2285 /* Worker to set nothrow flag. */
2287 static bool
2288 cgraph_set_nothrow_flag_1 (cgraph_node *node, void *data)
2290 cgraph_edge *e;
2292 TREE_NOTHROW (node->decl) = data != NULL;
2294 if (data != NULL)
2295 for (e = node->callers; e; e = e->next_caller)
2296 e->can_throw_external = false;
2297 return false;
2300 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2301 if any to NOTHROW. */
2303 void
2304 cgraph_node::set_nothrow_flag (bool nothrow)
2306 call_for_symbol_thunks_and_aliases (cgraph_set_nothrow_flag_1,
2307 (void *)(size_t)nothrow, false);
2310 /* Worker to set const flag. */
2312 static bool
2313 cgraph_set_const_flag_1 (cgraph_node *node, void *data)
2315 /* Static constructors and destructors without a side effect can be
2316 optimized out. */
2317 if (data && !((size_t)data & 2))
2319 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2320 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2321 if (DECL_STATIC_DESTRUCTOR (node->decl))
2322 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2324 TREE_READONLY (node->decl) = data != NULL;
2325 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = ((size_t)data & 2) != 0;
2326 return false;
2329 /* Set TREE_READONLY on cgraph_node's decl and on aliases of the node
2330 if any to READONLY. */
2332 void
2333 cgraph_node::set_const_flag (bool readonly, bool looping)
2335 call_for_symbol_thunks_and_aliases (cgraph_set_const_flag_1,
2336 (void *)(size_t)(readonly + (int)looping * 2),
2337 false);
2340 /* Worker to set pure flag. */
2342 static bool
2343 cgraph_set_pure_flag_1 (cgraph_node *node, void *data)
2345 /* Static constructors and destructors without a side effect can be
2346 optimized out. */
2347 if (data && !((size_t)data & 2))
2349 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2350 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2351 if (DECL_STATIC_DESTRUCTOR (node->decl))
2352 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2354 DECL_PURE_P (node->decl) = data != NULL;
2355 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = ((size_t)data & 2) != 0;
2356 return false;
2359 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2360 if any to PURE. */
2362 void
2363 cgraph_node::set_pure_flag (bool pure, bool looping)
2365 call_for_symbol_thunks_and_aliases (cgraph_set_pure_flag_1,
2366 (void *)(size_t)(pure + (int)looping * 2),
2367 false);
2370 /* Return true when cgraph_node can not return or throw and thus
2371 it is safe to ignore its side effects for IPA analysis. */
2373 bool
2374 cgraph_node::cannot_return_p (void)
2376 int flags = flags_from_decl_or_type (decl);
2377 if (!flag_exceptions)
2378 return (flags & ECF_NORETURN) != 0;
2379 else
2380 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2381 == (ECF_NORETURN | ECF_NOTHROW));
2384 /* Return true when call of edge can not lead to return from caller
2385 and thus it is safe to ignore its side effects for IPA analysis
2386 when computing side effects of the caller.
2387 FIXME: We could actually mark all edges that have no reaching
2388 patch to the exit block or throw to get better results. */
2389 bool
2390 cgraph_edge::cannot_lead_to_return_p (void)
2392 if (caller->cannot_return_p ())
2393 return true;
2394 if (indirect_unknown_callee)
2396 int flags = indirect_info->ecf_flags;
2397 if (!flag_exceptions)
2398 return (flags & ECF_NORETURN) != 0;
2399 else
2400 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2401 == (ECF_NORETURN | ECF_NOTHROW));
2403 else
2404 return callee->cannot_return_p ();
2407 /* Return true if the call can be hot. */
2409 bool
2410 cgraph_edge::maybe_hot_p (void)
2412 if (profile_info && flag_branch_probabilities
2413 && !maybe_hot_count_p (NULL, count))
2414 return false;
2415 if (caller->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
2416 || (callee
2417 && callee->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED))
2418 return false;
2419 if (caller->frequency > NODE_FREQUENCY_UNLIKELY_EXECUTED
2420 && (callee
2421 && callee->frequency <= NODE_FREQUENCY_EXECUTED_ONCE))
2422 return false;
2423 if (optimize_size) return false;
2424 if (caller->frequency == NODE_FREQUENCY_HOT)
2425 return true;
2426 if (caller->frequency == NODE_FREQUENCY_EXECUTED_ONCE
2427 && frequency < CGRAPH_FREQ_BASE * 3 / 2)
2428 return false;
2429 if (flag_guess_branch_prob)
2431 if (PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION) == 0
2432 || frequency <= (CGRAPH_FREQ_BASE
2433 / PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION)))
2434 return false;
2436 return true;
2439 /* Return true when function can be removed from callgraph
2440 if all direct calls are eliminated. */
2442 bool
2443 cgraph_node::can_remove_if_no_direct_calls_and_refs_p (void)
2445 gcc_assert (!global.inlined_to);
2446 /* Instrumentation clones should not be removed before
2447 instrumentation happens. New callers may appear after
2448 instrumentation. */
2449 if (instrumentation_clone
2450 && !chkp_function_instrumented_p (decl))
2451 return false;
2452 /* Extern inlines can always go, we will use the external definition. */
2453 if (DECL_EXTERNAL (decl))
2454 return true;
2455 /* When function is needed, we can not remove it. */
2456 if (force_output || used_from_other_partition)
2457 return false;
2458 if (DECL_STATIC_CONSTRUCTOR (decl)
2459 || DECL_STATIC_DESTRUCTOR (decl))
2460 return false;
2461 /* Only COMDAT functions can be removed if externally visible. */
2462 if (externally_visible
2463 && (!DECL_COMDAT (decl)
2464 || forced_by_abi
2465 || used_from_object_file_p ()))
2466 return false;
2467 return true;
2470 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2472 static bool
2473 nonremovable_p (cgraph_node *node, void *)
2475 return !node->can_remove_if_no_direct_calls_and_refs_p ();
2478 /* Return true when function cgraph_node and its aliases can be removed from
2479 callgraph if all direct calls are eliminated. */
2481 bool
2482 cgraph_node::can_remove_if_no_direct_calls_p (void)
2484 /* Extern inlines can always go, we will use the external definition. */
2485 if (DECL_EXTERNAL (decl))
2486 return true;
2487 if (address_taken)
2488 return false;
2489 return !call_for_symbol_and_aliases (nonremovable_p, NULL, true);
2492 /* Return true when function cgraph_node can be expected to be removed
2493 from program when direct calls in this compilation unit are removed.
2495 As a special case COMDAT functions are
2496 cgraph_can_remove_if_no_direct_calls_p while the are not
2497 cgraph_only_called_directly_p (it is possible they are called from other
2498 unit)
2500 This function behaves as cgraph_only_called_directly_p because eliminating
2501 all uses of COMDAT function does not make it necessarily disappear from
2502 the program unless we are compiling whole program or we do LTO. In this
2503 case we know we win since dynamic linking will not really discard the
2504 linkonce section. */
2506 bool
2507 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p (void)
2509 gcc_assert (!global.inlined_to);
2511 if (call_for_symbol_and_aliases (used_from_object_file_p_worker,
2512 NULL, true))
2513 return false;
2514 if (!in_lto_p && !flag_whole_program)
2515 return only_called_directly_p ();
2516 else
2518 if (DECL_EXTERNAL (decl))
2519 return true;
2520 return can_remove_if_no_direct_calls_p ();
2525 /* Worker for cgraph_only_called_directly_p. */
2527 static bool
2528 cgraph_not_only_called_directly_p_1 (cgraph_node *node, void *)
2530 return !node->only_called_directly_or_aliased_p ();
2533 /* Return true when function cgraph_node and all its aliases are only called
2534 directly.
2535 i.e. it is not externally visible, address was not taken and
2536 it is not used in any other non-standard way. */
2538 bool
2539 cgraph_node::only_called_directly_p (void)
2541 gcc_assert (ultimate_alias_target () == this);
2542 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1,
2543 NULL, true);
2547 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2549 static bool
2550 collect_callers_of_node_1 (cgraph_node *node, void *data)
2552 vec<cgraph_edge *> *redirect_callers = (vec<cgraph_edge *> *)data;
2553 cgraph_edge *cs;
2554 enum availability avail;
2555 node->ultimate_alias_target (&avail);
2557 if (avail > AVAIL_INTERPOSABLE)
2558 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
2559 if (!cs->indirect_inlining_edge)
2560 redirect_callers->safe_push (cs);
2561 return false;
2564 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2565 cgraph_node (i.e. are not overwritable). */
2567 vec<cgraph_edge *>
2568 cgraph_node::collect_callers (void)
2570 vec<cgraph_edge *> redirect_callers = vNULL;
2571 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1,
2572 &redirect_callers, false);
2573 return redirect_callers;
2576 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. */
2578 static bool
2579 clone_of_p (cgraph_node *node, cgraph_node *node2)
2581 bool skipped_thunk = false;
2582 node = node->ultimate_alias_target ();
2583 node2 = node2->ultimate_alias_target ();
2585 /* There are no virtual clones of thunks so check former_clone_of or if we
2586 might have skipped thunks because this adjustments are no longer
2587 necessary. */
2588 while (node->thunk.thunk_p)
2590 if (node2->former_clone_of == node->decl)
2591 return true;
2592 if (!node->thunk.this_adjusting)
2593 return false;
2594 node = node->callees->callee->ultimate_alias_target ();
2595 skipped_thunk = true;
2598 if (skipped_thunk)
2600 if (!node2->clone.args_to_skip
2601 || !bitmap_bit_p (node2->clone.args_to_skip, 0))
2602 return false;
2603 if (node2->former_clone_of == node->decl)
2604 return true;
2605 else if (!node2->clone_of)
2606 return false;
2609 while (node != node2 && node2)
2610 node2 = node2->clone_of;
2611 return node2 != NULL;
2614 /* Verify edge E count and frequency. */
2616 static bool
2617 verify_edge_count_and_frequency (cgraph_edge *e)
2619 bool error_found = false;
2620 if (e->count < 0)
2622 error ("caller edge count is negative");
2623 error_found = true;
2625 if (e->frequency < 0)
2627 error ("caller edge frequency is negative");
2628 error_found = true;
2630 if (e->frequency > CGRAPH_FREQ_MAX)
2632 error ("caller edge frequency is too large");
2633 error_found = true;
2635 if (gimple_has_body_p (e->caller->decl)
2636 && !e->caller->global.inlined_to
2637 && !e->speculative
2638 /* FIXME: Inline-analysis sets frequency to 0 when edge is optimized out.
2639 Remove this once edges are actually removed from the function at that time. */
2640 && (e->frequency
2641 || (inline_edge_summary_vec.exists ()
2642 && ((inline_edge_summary_vec.length () <= (unsigned) e->uid)
2643 || !inline_edge_summary (e)->predicate)))
2644 && (e->frequency
2645 != compute_call_stmt_bb_frequency (e->caller->decl,
2646 gimple_bb (e->call_stmt))))
2648 error ("caller edge frequency %i does not match BB frequency %i",
2649 e->frequency,
2650 compute_call_stmt_bb_frequency (e->caller->decl,
2651 gimple_bb (e->call_stmt)));
2652 error_found = true;
2654 return error_found;
2657 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
2658 static void
2659 cgraph_debug_gimple_stmt (function *this_cfun, gimple stmt)
2661 bool fndecl_was_null = false;
2662 /* debug_gimple_stmt needs correct cfun */
2663 if (cfun != this_cfun)
2664 set_cfun (this_cfun);
2665 /* ...and an actual current_function_decl */
2666 if (!current_function_decl)
2668 current_function_decl = this_cfun->decl;
2669 fndecl_was_null = true;
2671 debug_gimple_stmt (stmt);
2672 if (fndecl_was_null)
2673 current_function_decl = NULL;
2676 /* Verify that call graph edge E corresponds to DECL from the associated
2677 statement. Return true if the verification should fail. */
2679 static bool
2680 verify_edge_corresponds_to_fndecl (cgraph_edge *e, tree decl)
2682 cgraph_node *node;
2684 if (!decl || e->callee->global.inlined_to)
2685 return false;
2686 if (symtab->state == LTO_STREAMING)
2687 return false;
2688 node = cgraph_node::get (decl);
2690 /* We do not know if a node from a different partition is an alias or what it
2691 aliases and therefore cannot do the former_clone_of check reliably. When
2692 body_removed is set, we have lost all information about what was alias or
2693 thunk of and also cannot proceed. */
2694 if (!node
2695 || node->body_removed
2696 || node->in_other_partition
2697 || node->icf_merged
2698 || e->callee->in_other_partition)
2699 return false;
2701 node = node->ultimate_alias_target ();
2703 /* Optimizers can redirect unreachable calls or calls triggering undefined
2704 behaviour to builtin_unreachable. */
2705 if (DECL_BUILT_IN_CLASS (e->callee->decl) == BUILT_IN_NORMAL
2706 && DECL_FUNCTION_CODE (e->callee->decl) == BUILT_IN_UNREACHABLE)
2707 return false;
2709 if (e->callee->former_clone_of != node->decl
2710 && (node != e->callee->ultimate_alias_target ())
2711 && !clone_of_p (node, e->callee))
2712 return true;
2713 else
2714 return false;
2717 /* Verify cgraph nodes of given cgraph node. */
2718 DEBUG_FUNCTION void
2719 cgraph_node::verify_node (void)
2721 cgraph_edge *e;
2722 function *this_cfun = DECL_STRUCT_FUNCTION (decl);
2723 basic_block this_block;
2724 gimple_stmt_iterator gsi;
2725 bool error_found = false;
2727 if (seen_error ())
2728 return;
2730 timevar_push (TV_CGRAPH_VERIFY);
2731 error_found |= verify_base ();
2732 for (e = callees; e; e = e->next_callee)
2733 if (e->aux)
2735 error ("aux field set for edge %s->%s",
2736 identifier_to_locale (e->caller->name ()),
2737 identifier_to_locale (e->callee->name ()));
2738 error_found = true;
2740 if (count < 0)
2742 error ("execution count is negative");
2743 error_found = true;
2745 if (global.inlined_to && same_comdat_group)
2747 error ("inline clone in same comdat group list");
2748 error_found = true;
2750 if (!definition && !in_other_partition && local.local)
2752 error ("local symbols must be defined");
2753 error_found = true;
2755 if (global.inlined_to && externally_visible)
2757 error ("externally visible inline clone");
2758 error_found = true;
2760 if (global.inlined_to && address_taken)
2762 error ("inline clone with address taken");
2763 error_found = true;
2765 if (global.inlined_to && force_output)
2767 error ("inline clone is forced to output");
2768 error_found = true;
2770 for (e = indirect_calls; e; e = e->next_callee)
2772 if (e->aux)
2774 error ("aux field set for indirect edge from %s",
2775 identifier_to_locale (e->caller->name ()));
2776 error_found = true;
2778 if (!e->indirect_unknown_callee
2779 || !e->indirect_info)
2781 error ("An indirect edge from %s is not marked as indirect or has "
2782 "associated indirect_info, the corresponding statement is: ",
2783 identifier_to_locale (e->caller->name ()));
2784 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
2785 error_found = true;
2788 bool check_comdat = comdat_local_p ();
2789 for (e = callers; e; e = e->next_caller)
2791 if (verify_edge_count_and_frequency (e))
2792 error_found = true;
2793 if (check_comdat
2794 && !in_same_comdat_group_p (e->caller))
2796 error ("comdat-local function called by %s outside its comdat",
2797 identifier_to_locale (e->caller->name ()));
2798 error_found = true;
2800 if (!e->inline_failed)
2802 if (global.inlined_to
2803 != (e->caller->global.inlined_to
2804 ? e->caller->global.inlined_to : e->caller))
2806 error ("inlined_to pointer is wrong");
2807 error_found = true;
2809 if (callers->next_caller)
2811 error ("multiple inline callers");
2812 error_found = true;
2815 else
2816 if (global.inlined_to)
2818 error ("inlined_to pointer set for noninline callers");
2819 error_found = true;
2822 for (e = indirect_calls; e; e = e->next_callee)
2823 if (verify_edge_count_and_frequency (e))
2824 error_found = true;
2825 if (!callers && global.inlined_to)
2827 error ("inlined_to pointer is set but no predecessors found");
2828 error_found = true;
2830 if (global.inlined_to == this)
2832 error ("inlined_to pointer refers to itself");
2833 error_found = true;
2836 if (clone_of)
2838 cgraph_node *n;
2839 for (n = clone_of->clones; n; n = n->next_sibling_clone)
2840 if (n == this)
2841 break;
2842 if (!n)
2844 error ("cgraph_node has wrong clone_of");
2845 error_found = true;
2848 if (clones)
2850 cgraph_node *n;
2851 for (n = clones; n; n = n->next_sibling_clone)
2852 if (n->clone_of != this)
2853 break;
2854 if (n)
2856 error ("cgraph_node has wrong clone list");
2857 error_found = true;
2860 if ((prev_sibling_clone || next_sibling_clone) && !clone_of)
2862 error ("cgraph_node is in clone list but it is not clone");
2863 error_found = true;
2865 if (!prev_sibling_clone && clone_of && clone_of->clones != this)
2867 error ("cgraph_node has wrong prev_clone pointer");
2868 error_found = true;
2870 if (prev_sibling_clone && prev_sibling_clone->next_sibling_clone != this)
2872 error ("double linked list of clones corrupted");
2873 error_found = true;
2876 if (analyzed && alias)
2878 bool ref_found = false;
2879 int i;
2880 ipa_ref *ref = NULL;
2882 if (callees)
2884 error ("Alias has call edges");
2885 error_found = true;
2887 for (i = 0; iterate_reference (i, ref); i++)
2888 if (ref->use == IPA_REF_CHKP)
2890 else if (ref->use != IPA_REF_ALIAS)
2892 error ("Alias has non-alias reference");
2893 error_found = true;
2895 else if (ref_found)
2897 error ("Alias has more than one alias reference");
2898 error_found = true;
2900 else
2901 ref_found = true;
2902 if (!ref_found)
2904 error ("Analyzed alias has no reference");
2905 error_found = true;
2909 /* Check instrumented version reference. */
2910 if (instrumented_version
2911 && instrumented_version->instrumented_version != this)
2913 error ("Instrumentation clone does not reference original node");
2914 error_found = true;
2917 /* Cannot have orig_decl for not instrumented nodes. */
2918 if (!instrumentation_clone && orig_decl)
2920 error ("Not instrumented node has non-NULL original declaration");
2921 error_found = true;
2924 /* If original not instrumented node still exists then we may check
2925 original declaration is set properly. */
2926 if (instrumented_version
2927 && orig_decl
2928 && orig_decl != instrumented_version->decl)
2930 error ("Instrumented node has wrong original declaration");
2931 error_found = true;
2934 /* Check all nodes have chkp reference to their instrumented versions. */
2935 if (analyzed
2936 && instrumented_version
2937 && !instrumentation_clone)
2939 bool ref_found = false;
2940 int i;
2941 struct ipa_ref *ref;
2943 for (i = 0; iterate_reference (i, ref); i++)
2944 if (ref->use == IPA_REF_CHKP)
2946 if (ref_found)
2948 error ("Node has more than one chkp reference");
2949 error_found = true;
2951 if (ref->referred != instrumented_version)
2953 error ("Wrong node is referenced with chkp reference");
2954 error_found = true;
2956 ref_found = true;
2959 if (!ref_found)
2961 error ("Analyzed node has no reference to instrumented version");
2962 error_found = true;
2966 if (analyzed && thunk.thunk_p)
2968 if (!callees)
2970 error ("No edge out of thunk node");
2971 error_found = true;
2973 else if (callees->next_callee)
2975 error ("More than one edge out of thunk node");
2976 error_found = true;
2978 if (gimple_has_body_p (decl))
2980 error ("Thunk is not supposed to have body");
2981 error_found = true;
2983 if (thunk.add_pointer_bounds_args
2984 && !instrumented_version->semantically_equivalent_p (callees->callee))
2986 error ("Instrumentation thunk has wrong edge callee");
2987 error_found = true;
2990 else if (analyzed && gimple_has_body_p (decl)
2991 && !TREE_ASM_WRITTEN (decl)
2992 && (!DECL_EXTERNAL (decl) || global.inlined_to)
2993 && !flag_wpa)
2995 if (this_cfun->cfg)
2997 hash_set<gimple> stmts;
2998 int i;
2999 ipa_ref *ref = NULL;
3001 /* Reach the trees by walking over the CFG, and note the
3002 enclosing basic-blocks in the call edges. */
3003 FOR_EACH_BB_FN (this_block, this_cfun)
3005 for (gsi = gsi_start_phis (this_block);
3006 !gsi_end_p (gsi); gsi_next (&gsi))
3007 stmts.add (gsi_stmt (gsi));
3008 for (gsi = gsi_start_bb (this_block);
3009 !gsi_end_p (gsi);
3010 gsi_next (&gsi))
3012 gimple stmt = gsi_stmt (gsi);
3013 stmts.add (stmt);
3014 if (is_gimple_call (stmt))
3016 cgraph_edge *e = get_edge (stmt);
3017 tree decl = gimple_call_fndecl (stmt);
3018 if (e)
3020 if (e->aux)
3022 error ("shared call_stmt:");
3023 cgraph_debug_gimple_stmt (this_cfun, stmt);
3024 error_found = true;
3026 if (!e->indirect_unknown_callee)
3028 if (verify_edge_corresponds_to_fndecl (e, decl))
3030 error ("edge points to wrong declaration:");
3031 debug_tree (e->callee->decl);
3032 fprintf (stderr," Instead of:");
3033 debug_tree (decl);
3034 error_found = true;
3037 else if (decl)
3039 error ("an indirect edge with unknown callee "
3040 "corresponding to a call_stmt with "
3041 "a known declaration:");
3042 error_found = true;
3043 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3045 e->aux = (void *)1;
3047 else if (decl)
3049 error ("missing callgraph edge for call stmt:");
3050 cgraph_debug_gimple_stmt (this_cfun, stmt);
3051 error_found = true;
3056 for (i = 0; iterate_reference (i, ref); i++)
3057 if (ref->stmt && !stmts.contains (ref->stmt))
3059 error ("reference to dead statement");
3060 cgraph_debug_gimple_stmt (this_cfun, ref->stmt);
3061 error_found = true;
3064 else
3065 /* No CFG available?! */
3066 gcc_unreachable ();
3068 for (e = callees; e; e = e->next_callee)
3070 if (!e->aux)
3072 error ("edge %s->%s has no corresponding call_stmt",
3073 identifier_to_locale (e->caller->name ()),
3074 identifier_to_locale (e->callee->name ()));
3075 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3076 error_found = true;
3078 e->aux = 0;
3080 for (e = indirect_calls; e; e = e->next_callee)
3082 if (!e->aux && !e->speculative)
3084 error ("an indirect edge from %s has no corresponding call_stmt",
3085 identifier_to_locale (e->caller->name ()));
3086 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3087 error_found = true;
3089 e->aux = 0;
3092 if (error_found)
3094 dump (stderr);
3095 internal_error ("verify_cgraph_node failed");
3097 timevar_pop (TV_CGRAPH_VERIFY);
3100 /* Verify whole cgraph structure. */
3101 DEBUG_FUNCTION void
3102 cgraph_node::verify_cgraph_nodes (void)
3104 cgraph_node *node;
3106 if (seen_error ())
3107 return;
3109 FOR_EACH_FUNCTION (node)
3110 node->verify ();
3113 /* Walk the alias chain to return the function cgraph_node is alias of.
3114 Walk through thunk, too.
3115 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
3117 cgraph_node *
3118 cgraph_node::function_symbol (enum availability *availability)
3120 cgraph_node *node = this;
3124 node = node->ultimate_alias_target (availability);
3125 if (node->thunk.thunk_p)
3127 node = node->callees->callee;
3128 if (availability)
3130 enum availability a;
3131 a = node->get_availability ();
3132 if (a < *availability)
3133 *availability = a;
3135 node = node->ultimate_alias_target (availability);
3137 } while (node && node->thunk.thunk_p);
3138 return node;
3141 /* When doing LTO, read cgraph_node's body from disk if it is not already
3142 present. */
3144 bool
3145 cgraph_node::get_untransformed_body (void)
3147 lto_file_decl_data *file_data;
3148 const char *data, *name;
3149 size_t len;
3150 tree decl = this->decl;
3152 if (DECL_RESULT (decl))
3153 return false;
3155 gcc_assert (in_lto_p);
3157 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3159 file_data = lto_file_data;
3160 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
3162 /* We may have renamed the declaration, e.g., a static function. */
3163 name = lto_get_decl_name_mapping (file_data, name);
3165 data = lto_get_section_data (file_data, LTO_section_function_body,
3166 name, &len);
3167 if (!data)
3168 fatal_error ("%s: section %s is missing",
3169 file_data->file_name,
3170 name);
3172 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
3174 lto_input_function_body (file_data, this, data);
3175 lto_stats.num_function_bodies++;
3176 lto_free_section_data (file_data, LTO_section_function_body, name,
3177 data, len);
3178 lto_free_function_in_decl_state_for_node (this);
3180 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
3182 return true;
3185 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3186 if it is not already present. When some IPA transformations are scheduled,
3187 apply them. */
3189 bool
3190 cgraph_node::get_body (void)
3192 bool updated;
3194 updated = get_untransformed_body ();
3196 /* Getting transformed body makes no sense for inline clones;
3197 we should never use this on real clones becuase they are materialized
3198 early.
3199 TODO: Materializing clones here will likely lead to smaller LTRANS
3200 footprint. */
3201 gcc_assert (!global.inlined_to && !clone_of);
3202 if (ipa_transforms_to_apply.exists ())
3204 opt_pass *saved_current_pass = current_pass;
3205 FILE *saved_dump_file = dump_file;
3206 int saved_dump_flags = dump_flags;
3208 push_cfun (DECL_STRUCT_FUNCTION (decl));
3209 execute_all_ipa_transforms ();
3210 cgraph_edge::rebuild_edges ();
3211 free_dominance_info (CDI_DOMINATORS);
3212 free_dominance_info (CDI_POST_DOMINATORS);
3213 pop_cfun ();
3214 updated = true;
3216 current_pass = saved_current_pass;
3217 dump_file = saved_dump_file;
3218 dump_flags = saved_dump_flags;
3220 return updated;
3223 /* Return the DECL_STRUCT_FUNCTION of the function. */
3225 struct function *
3226 cgraph_node::get_fun (void)
3228 cgraph_node *node = this;
3229 struct function *fun = DECL_STRUCT_FUNCTION (node->decl);
3231 while (!fun && node->clone_of)
3233 node = node->clone_of;
3234 fun = DECL_STRUCT_FUNCTION (node->decl);
3237 return fun;
3240 /* Verify if the type of the argument matches that of the function
3241 declaration. If we cannot verify this or there is a mismatch,
3242 return false. */
3244 static bool
3245 gimple_check_call_args (gimple stmt, tree fndecl, bool args_count_match)
3247 tree parms, p;
3248 unsigned int i, nargs;
3250 /* Calls to internal functions always match their signature. */
3251 if (gimple_call_internal_p (stmt))
3252 return true;
3254 nargs = gimple_call_num_args (stmt);
3256 /* Get argument types for verification. */
3257 if (fndecl)
3258 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
3259 else
3260 parms = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
3262 /* Verify if the type of the argument matches that of the function
3263 declaration. If we cannot verify this or there is a mismatch,
3264 return false. */
3265 if (fndecl && DECL_ARGUMENTS (fndecl))
3267 for (i = 0, p = DECL_ARGUMENTS (fndecl);
3268 i < nargs;
3269 i++, p = DECL_CHAIN (p))
3271 tree arg;
3272 /* We cannot distinguish a varargs function from the case
3273 of excess parameters, still deferring the inlining decision
3274 to the callee is possible. */
3275 if (!p)
3276 break;
3277 arg = gimple_call_arg (stmt, i);
3278 if (p == error_mark_node
3279 || DECL_ARG_TYPE (p) == error_mark_node
3280 || arg == error_mark_node
3281 || (!types_compatible_p (DECL_ARG_TYPE (p), TREE_TYPE (arg))
3282 && !fold_convertible_p (DECL_ARG_TYPE (p), arg)))
3283 return false;
3285 if (args_count_match && p)
3286 return false;
3288 else if (parms)
3290 for (i = 0, p = parms; i < nargs; i++, p = TREE_CHAIN (p))
3292 tree arg;
3293 /* If this is a varargs function defer inlining decision
3294 to callee. */
3295 if (!p)
3296 break;
3297 arg = gimple_call_arg (stmt, i);
3298 if (TREE_VALUE (p) == error_mark_node
3299 || arg == error_mark_node
3300 || TREE_CODE (TREE_VALUE (p)) == VOID_TYPE
3301 || (!types_compatible_p (TREE_VALUE (p), TREE_TYPE (arg))
3302 && !fold_convertible_p (TREE_VALUE (p), arg)))
3303 return false;
3306 else
3308 if (nargs != 0)
3309 return false;
3311 return true;
3314 /* Verify if the type of the argument and lhs of CALL_STMT matches
3315 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3316 true, the arg count needs to be the same.
3317 If we cannot verify this or there is a mismatch, return false. */
3319 bool
3320 gimple_check_call_matching_types (gimple call_stmt, tree callee,
3321 bool args_count_match)
3323 tree lhs;
3325 if ((DECL_RESULT (callee)
3326 && !DECL_BY_REFERENCE (DECL_RESULT (callee))
3327 && (lhs = gimple_call_lhs (call_stmt)) != NULL_TREE
3328 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee)),
3329 TREE_TYPE (lhs))
3330 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee)), lhs))
3331 || !gimple_check_call_args (call_stmt, callee, args_count_match))
3332 return false;
3333 return true;
3336 /* Reset all state within cgraph.c so that we can rerun the compiler
3337 within the same process. For use by toplev::finalize. */
3339 void
3340 cgraph_c_finalize (void)
3342 symtab = NULL;
3344 x_cgraph_nodes_queue = NULL;
3346 cgraph_fnver_htab = NULL;
3347 version_info_node = NULL;
3350 #include "gt-cgraph.h"