2016-11-10 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / cgraph.c
blobb702a7cd5eaa7b3e761b93eab314154679c9b679
1 /* Callgraph handling code.
2 Copyright (C) 2003-2016 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This file contains basic routines manipulating call graph
23 The call-graph is a data structure designed for intra-procedural optimization.
24 It represents a multi-graph where nodes are functions and edges are call sites. */
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "backend.h"
30 #include "target.h"
31 #include "rtl.h"
32 #include "tree.h"
33 #include "gimple.h"
34 #include "predict.h"
35 #include "alloc-pool.h"
36 #include "gimple-ssa.h"
37 #include "cgraph.h"
38 #include "lto-streamer.h"
39 #include "fold-const.h"
40 #include "varasm.h"
41 #include "calls.h"
42 #include "print-tree.h"
43 #include "langhooks.h"
44 #include "intl.h"
45 #include "tree-eh.h"
46 #include "gimple-iterator.h"
47 #include "tree-cfg.h"
48 #include "tree-ssa.h"
49 #include "value-prof.h"
50 #include "ipa-utils.h"
51 #include "symbol-summary.h"
52 #include "tree-vrp.h"
53 #include "ipa-prop.h"
54 #include "ipa-inline.h"
55 #include "cfgloop.h"
56 #include "gimple-pretty-print.h"
57 #include "tree-dfa.h"
58 #include "profile.h"
59 #include "params.h"
60 #include "tree-chkp.h"
61 #include "context.h"
62 #include "gimplify.h"
64 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
65 #include "tree-pass.h"
67 /* Queue of cgraph nodes scheduled to be lowered. */
68 symtab_node *x_cgraph_nodes_queue;
69 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
71 /* Symbol table global context. */
72 symbol_table *symtab;
74 /* List of hooks triggered on cgraph_edge events. */
75 struct cgraph_edge_hook_list {
76 cgraph_edge_hook hook;
77 void *data;
78 struct cgraph_edge_hook_list *next;
81 /* List of hooks triggered on cgraph_node events. */
82 struct cgraph_node_hook_list {
83 cgraph_node_hook hook;
84 void *data;
85 struct cgraph_node_hook_list *next;
88 /* List of hooks triggered on events involving two cgraph_edges. */
89 struct cgraph_2edge_hook_list {
90 cgraph_2edge_hook hook;
91 void *data;
92 struct cgraph_2edge_hook_list *next;
95 /* List of hooks triggered on events involving two cgraph_nodes. */
96 struct cgraph_2node_hook_list {
97 cgraph_2node_hook hook;
98 void *data;
99 struct cgraph_2node_hook_list *next;
102 /* Hash descriptor for cgraph_function_version_info. */
104 struct function_version_hasher : ggc_ptr_hash<cgraph_function_version_info>
106 static hashval_t hash (cgraph_function_version_info *);
107 static bool equal (cgraph_function_version_info *,
108 cgraph_function_version_info *);
111 /* Map a cgraph_node to cgraph_function_version_info using this htab.
112 The cgraph_function_version_info has a THIS_NODE field that is the
113 corresponding cgraph_node.. */
115 static GTY(()) hash_table<function_version_hasher> *cgraph_fnver_htab = NULL;
117 /* Hash function for cgraph_fnver_htab. */
118 hashval_t
119 function_version_hasher::hash (cgraph_function_version_info *ptr)
121 int uid = ptr->this_node->uid;
122 return (hashval_t)(uid);
125 /* eq function for cgraph_fnver_htab. */
126 bool
127 function_version_hasher::equal (cgraph_function_version_info *n1,
128 cgraph_function_version_info *n2)
130 return n1->this_node->uid == n2->this_node->uid;
133 /* Mark as GC root all allocated nodes. */
134 static GTY(()) struct cgraph_function_version_info *
135 version_info_node = NULL;
137 /* Return true if NODE's address can be compared. */
139 bool
140 symtab_node::address_can_be_compared_p ()
142 /* Address of virtual tables and functions is never compared. */
143 if (DECL_VIRTUAL_P (decl))
144 return false;
145 /* Address of C++ cdtors is never compared. */
146 if (is_a <cgraph_node *> (this)
147 && (DECL_CXX_CONSTRUCTOR_P (decl)
148 || DECL_CXX_DESTRUCTOR_P (decl)))
149 return false;
150 /* Constant pool symbols addresses are never compared.
151 flag_merge_constants permits us to assume the same on readonly vars. */
152 if (is_a <varpool_node *> (this)
153 && (DECL_IN_CONSTANT_POOL (decl)
154 || (flag_merge_constants >= 2
155 && TREE_READONLY (decl) && !TREE_THIS_VOLATILE (decl))))
156 return false;
157 return true;
160 /* Get the cgraph_function_version_info node corresponding to node. */
161 cgraph_function_version_info *
162 cgraph_node::function_version (void)
164 cgraph_function_version_info key;
165 key.this_node = this;
167 if (cgraph_fnver_htab == NULL)
168 return NULL;
170 return cgraph_fnver_htab->find (&key);
173 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
174 corresponding to cgraph_node NODE. */
175 cgraph_function_version_info *
176 cgraph_node::insert_new_function_version (void)
178 version_info_node = NULL;
179 version_info_node = ggc_cleared_alloc<cgraph_function_version_info> ();
180 version_info_node->this_node = this;
182 if (cgraph_fnver_htab == NULL)
183 cgraph_fnver_htab = hash_table<function_version_hasher>::create_ggc (2);
185 *cgraph_fnver_htab->find_slot (version_info_node, INSERT)
186 = version_info_node;
187 return version_info_node;
190 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
191 DECL is a duplicate declaration. */
192 void
193 cgraph_node::delete_function_version (tree decl)
195 cgraph_node *decl_node = cgraph_node::get (decl);
196 cgraph_function_version_info *decl_v = NULL;
198 if (decl_node == NULL)
199 return;
201 decl_v = decl_node->function_version ();
203 if (decl_v == NULL)
204 return;
206 if (decl_v->prev != NULL)
207 decl_v->prev->next = decl_v->next;
209 if (decl_v->next != NULL)
210 decl_v->next->prev = decl_v->prev;
212 if (cgraph_fnver_htab != NULL)
213 cgraph_fnver_htab->remove_elt (decl_v);
215 decl_node->remove ();
218 /* Record that DECL1 and DECL2 are semantically identical function
219 versions. */
220 void
221 cgraph_node::record_function_versions (tree decl1, tree decl2)
223 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
224 cgraph_node *decl2_node = cgraph_node::get_create (decl2);
225 cgraph_function_version_info *decl1_v = NULL;
226 cgraph_function_version_info *decl2_v = NULL;
227 cgraph_function_version_info *before;
228 cgraph_function_version_info *after;
230 gcc_assert (decl1_node != NULL && decl2_node != NULL);
231 decl1_v = decl1_node->function_version ();
232 decl2_v = decl2_node->function_version ();
234 if (decl1_v != NULL && decl2_v != NULL)
235 return;
237 if (decl1_v == NULL)
238 decl1_v = decl1_node->insert_new_function_version ();
240 if (decl2_v == NULL)
241 decl2_v = decl2_node->insert_new_function_version ();
243 /* Chain decl2_v and decl1_v. All semantically identical versions
244 will be chained together. */
246 before = decl1_v;
247 after = decl2_v;
249 while (before->next != NULL)
250 before = before->next;
252 while (after->prev != NULL)
253 after= after->prev;
255 before->next = after;
256 after->prev = before;
259 /* Initialize callgraph dump file. */
261 void
262 symbol_table::initialize (void)
264 if (!dump_file)
265 dump_file = dump_begin (TDI_cgraph, NULL);
268 /* Allocate new callgraph node and insert it into basic data structures. */
270 cgraph_node *
271 symbol_table::create_empty (void)
273 cgraph_node *node = allocate_cgraph_symbol ();
275 node->type = SYMTAB_FUNCTION;
276 node->frequency = NODE_FREQUENCY_NORMAL;
277 node->count_materialization_scale = REG_BR_PROB_BASE;
278 cgraph_count++;
280 return node;
283 /* Register HOOK to be called with DATA on each removed edge. */
284 cgraph_edge_hook_list *
285 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook, void *data)
287 cgraph_edge_hook_list *entry;
288 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
290 entry = (cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
291 entry->hook = hook;
292 entry->data = data;
293 entry->next = NULL;
294 while (*ptr)
295 ptr = &(*ptr)->next;
296 *ptr = entry;
297 return entry;
300 /* Remove ENTRY from the list of hooks called on removing edges. */
301 void
302 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list *entry)
304 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
306 while (*ptr != entry)
307 ptr = &(*ptr)->next;
308 *ptr = entry->next;
309 free (entry);
312 /* Call all edge removal hooks. */
313 void
314 symbol_table::call_edge_removal_hooks (cgraph_edge *e)
316 cgraph_edge_hook_list *entry = m_first_edge_removal_hook;
317 while (entry)
319 entry->hook (e, entry->data);
320 entry = entry->next;
324 /* Register HOOK to be called with DATA on each removed node. */
325 cgraph_node_hook_list *
326 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook, void *data)
328 cgraph_node_hook_list *entry;
329 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
331 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
332 entry->hook = hook;
333 entry->data = data;
334 entry->next = NULL;
335 while (*ptr)
336 ptr = &(*ptr)->next;
337 *ptr = entry;
338 return entry;
341 /* Remove ENTRY from the list of hooks called on removing nodes. */
342 void
343 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list *entry)
345 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
347 while (*ptr != entry)
348 ptr = &(*ptr)->next;
349 *ptr = entry->next;
350 free (entry);
353 /* Call all node removal hooks. */
354 void
355 symbol_table::call_cgraph_removal_hooks (cgraph_node *node)
357 cgraph_node_hook_list *entry = m_first_cgraph_removal_hook;
358 while (entry)
360 entry->hook (node, entry->data);
361 entry = entry->next;
365 /* Call all node removal hooks. */
366 void
367 symbol_table::call_cgraph_insertion_hooks (cgraph_node *node)
369 cgraph_node_hook_list *entry = m_first_cgraph_insertion_hook;
370 while (entry)
372 entry->hook (node, entry->data);
373 entry = entry->next;
378 /* Register HOOK to be called with DATA on each inserted node. */
379 cgraph_node_hook_list *
380 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook, void *data)
382 cgraph_node_hook_list *entry;
383 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
385 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
386 entry->hook = hook;
387 entry->data = data;
388 entry->next = NULL;
389 while (*ptr)
390 ptr = &(*ptr)->next;
391 *ptr = entry;
392 return entry;
395 /* Remove ENTRY from the list of hooks called on inserted nodes. */
396 void
397 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list *entry)
399 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
401 while (*ptr != entry)
402 ptr = &(*ptr)->next;
403 *ptr = entry->next;
404 free (entry);
407 /* Register HOOK to be called with DATA on each duplicated edge. */
408 cgraph_2edge_hook_list *
409 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
411 cgraph_2edge_hook_list *entry;
412 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
414 entry = (cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
415 entry->hook = hook;
416 entry->data = data;
417 entry->next = NULL;
418 while (*ptr)
419 ptr = &(*ptr)->next;
420 *ptr = entry;
421 return entry;
424 /* Remove ENTRY from the list of hooks called on duplicating edges. */
425 void
426 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list *entry)
428 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
430 while (*ptr != entry)
431 ptr = &(*ptr)->next;
432 *ptr = entry->next;
433 free (entry);
436 /* Call all edge duplication hooks. */
437 void
438 symbol_table::call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)
440 cgraph_2edge_hook_list *entry = m_first_edge_duplicated_hook;
441 while (entry)
443 entry->hook (cs1, cs2, entry->data);
444 entry = entry->next;
448 /* Register HOOK to be called with DATA on each duplicated node. */
449 cgraph_2node_hook_list *
450 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook, void *data)
452 cgraph_2node_hook_list *entry;
453 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
455 entry = (cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
456 entry->hook = hook;
457 entry->data = data;
458 entry->next = NULL;
459 while (*ptr)
460 ptr = &(*ptr)->next;
461 *ptr = entry;
462 return entry;
465 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
466 void
467 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry)
469 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
471 while (*ptr != entry)
472 ptr = &(*ptr)->next;
473 *ptr = entry->next;
474 free (entry);
477 /* Call all node duplication hooks. */
478 void
479 symbol_table::call_cgraph_duplication_hooks (cgraph_node *node,
480 cgraph_node *node2)
482 cgraph_2node_hook_list *entry = m_first_cgraph_duplicated_hook;
483 while (entry)
485 entry->hook (node, node2, entry->data);
486 entry = entry->next;
490 /* Return cgraph node assigned to DECL. Create new one when needed. */
492 cgraph_node *
493 cgraph_node::create (tree decl)
495 cgraph_node *node = symtab->create_empty ();
496 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
498 node->decl = decl;
500 if ((flag_openacc || flag_openmp)
501 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl)))
503 node->offloadable = 1;
504 if (ENABLE_OFFLOADING)
505 g->have_offload = true;
508 node->register_symbol ();
510 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
512 node->origin = cgraph_node::get_create (DECL_CONTEXT (decl));
513 node->next_nested = node->origin->nested;
514 node->origin->nested = node;
516 return node;
519 /* Try to find a call graph node for declaration DECL and if it does not exist
520 or if it corresponds to an inline clone, create a new one. */
522 cgraph_node *
523 cgraph_node::get_create (tree decl)
525 cgraph_node *first_clone = cgraph_node::get (decl);
527 if (first_clone && !first_clone->global.inlined_to)
528 return first_clone;
530 cgraph_node *node = cgraph_node::create (decl);
531 if (first_clone)
533 first_clone->clone_of = node;
534 node->clones = first_clone;
535 symtab->symtab_prevail_in_asm_name_hash (node);
536 node->decl->decl_with_vis.symtab_node = node;
537 if (dump_file)
538 fprintf (dump_file, "Introduced new external node "
539 "(%s/%i) and turned into root of the clone tree.\n",
540 node->name (), node->order);
542 else if (dump_file)
543 fprintf (dump_file, "Introduced new external node "
544 "(%s/%i).\n", node->name (), node->order);
545 return node;
548 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
549 the function body is associated with (not necessarily cgraph_node (DECL). */
551 cgraph_node *
552 cgraph_node::create_alias (tree alias, tree target)
554 cgraph_node *alias_node;
556 gcc_assert (TREE_CODE (target) == FUNCTION_DECL
557 || TREE_CODE (target) == IDENTIFIER_NODE);
558 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
559 alias_node = cgraph_node::get_create (alias);
560 gcc_assert (!alias_node->definition);
561 alias_node->alias_target = target;
562 alias_node->definition = true;
563 alias_node->alias = true;
564 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias)) != NULL)
565 alias_node->transparent_alias = alias_node->weakref = true;
566 return alias_node;
569 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
570 and NULL otherwise.
571 Same body aliases are output whenever the body of DECL is output,
572 and cgraph_node::get (ALIAS) transparently returns
573 cgraph_node::get (DECL). */
575 cgraph_node *
576 cgraph_node::create_same_body_alias (tree alias, tree decl)
578 cgraph_node *n;
579 #ifndef ASM_OUTPUT_DEF
580 /* If aliases aren't supported by the assembler, fail. */
581 return NULL;
582 #endif
583 /* Langhooks can create same body aliases of symbols not defined.
584 Those are useless. Drop them on the floor. */
585 if (symtab->global_info_ready)
586 return NULL;
588 n = cgraph_node::create_alias (alias, decl);
589 n->cpp_implicit_alias = true;
590 if (symtab->cpp_implicit_aliases_done)
591 n->resolve_alias (cgraph_node::get (decl));
592 return n;
595 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
596 aliases DECL with an adjustments made into the first parameter.
597 See comments in thunk_adjust for detail on the parameters. */
599 cgraph_node *
600 cgraph_node::create_thunk (tree alias, tree, bool this_adjusting,
601 HOST_WIDE_INT fixed_offset,
602 HOST_WIDE_INT virtual_value,
603 tree virtual_offset,
604 tree real_alias)
606 cgraph_node *node;
608 node = cgraph_node::get (alias);
609 if (node)
610 node->reset ();
611 else
612 node = cgraph_node::create (alias);
613 gcc_checking_assert (!virtual_offset
614 || wi::eq_p (virtual_offset, virtual_value));
615 node->thunk.fixed_offset = fixed_offset;
616 node->thunk.this_adjusting = this_adjusting;
617 node->thunk.virtual_value = virtual_value;
618 node->thunk.virtual_offset_p = virtual_offset != NULL;
619 node->thunk.alias = real_alias;
620 node->thunk.thunk_p = true;
621 node->definition = true;
623 return node;
626 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
627 Return NULL if there's no such node. */
629 cgraph_node *
630 cgraph_node::get_for_asmname (tree asmname)
632 /* We do not want to look at inline clones. */
633 for (symtab_node *node = symtab_node::get_for_asmname (asmname);
634 node;
635 node = node->next_sharing_asm_name)
637 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
638 if (cn && !cn->global.inlined_to)
639 return cn;
641 return NULL;
644 /* Returns a hash value for X (which really is a cgraph_edge). */
646 hashval_t
647 cgraph_edge_hasher::hash (cgraph_edge *e)
649 /* This is a really poor hash function, but it is what htab_hash_pointer
650 uses. */
651 return (hashval_t) ((intptr_t)e->call_stmt >> 3);
654 /* Returns a hash value for X (which really is a cgraph_edge). */
656 hashval_t
657 cgraph_edge_hasher::hash (gimple *call_stmt)
659 /* This is a really poor hash function, but it is what htab_hash_pointer
660 uses. */
661 return (hashval_t) ((intptr_t)call_stmt >> 3);
664 /* Return nonzero if the call_stmt of cgraph_edge X is stmt *Y. */
666 inline bool
667 cgraph_edge_hasher::equal (cgraph_edge *x, gimple *y)
669 return x->call_stmt == y;
672 /* Add call graph edge E to call site hash of its caller. */
674 static inline void
675 cgraph_update_edge_in_call_site_hash (cgraph_edge *e)
677 gimple *call = e->call_stmt;
678 *e->caller->call_site_hash->find_slot_with_hash
679 (call, cgraph_edge_hasher::hash (call), INSERT) = e;
682 /* Add call graph edge E to call site hash of its caller. */
684 static inline void
685 cgraph_add_edge_to_call_site_hash (cgraph_edge *e)
687 /* There are two speculative edges for every statement (one direct,
688 one indirect); always hash the direct one. */
689 if (e->speculative && e->indirect_unknown_callee)
690 return;
691 cgraph_edge **slot = e->caller->call_site_hash->find_slot_with_hash
692 (e->call_stmt, cgraph_edge_hasher::hash (e->call_stmt), INSERT);
693 if (*slot)
695 gcc_assert (((cgraph_edge *)*slot)->speculative);
696 if (e->callee)
697 *slot = e;
698 return;
700 gcc_assert (!*slot || e->speculative);
701 *slot = e;
704 /* Return the callgraph edge representing the GIMPLE_CALL statement
705 CALL_STMT. */
707 cgraph_edge *
708 cgraph_node::get_edge (gimple *call_stmt)
710 cgraph_edge *e, *e2;
711 int n = 0;
713 if (call_site_hash)
714 return call_site_hash->find_with_hash
715 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
717 /* This loop may turn out to be performance problem. In such case adding
718 hashtables into call nodes with very many edges is probably best
719 solution. It is not good idea to add pointer into CALL_EXPR itself
720 because we want to make possible having multiple cgraph nodes representing
721 different clones of the same body before the body is actually cloned. */
722 for (e = callees; e; e = e->next_callee)
724 if (e->call_stmt == call_stmt)
725 break;
726 n++;
729 if (!e)
730 for (e = indirect_calls; e; e = e->next_callee)
732 if (e->call_stmt == call_stmt)
733 break;
734 n++;
737 if (n > 100)
739 call_site_hash = hash_table<cgraph_edge_hasher>::create_ggc (120);
740 for (e2 = callees; e2; e2 = e2->next_callee)
741 cgraph_add_edge_to_call_site_hash (e2);
742 for (e2 = indirect_calls; e2; e2 = e2->next_callee)
743 cgraph_add_edge_to_call_site_hash (e2);
746 return e;
750 /* Change field call_stmt of edge to NEW_STMT.
751 If UPDATE_SPECULATIVE and E is any component of speculative
752 edge, then update all components. */
754 void
755 cgraph_edge::set_call_stmt (gcall *new_stmt, bool update_speculative)
757 tree decl;
759 /* Speculative edges has three component, update all of them
760 when asked to. */
761 if (update_speculative && speculative)
763 cgraph_edge *direct, *indirect;
764 ipa_ref *ref;
766 speculative_call_info (direct, indirect, ref);
767 direct->set_call_stmt (new_stmt, false);
768 indirect->set_call_stmt (new_stmt, false);
769 ref->stmt = new_stmt;
770 return;
773 /* Only direct speculative edges go to call_site_hash. */
774 if (caller->call_site_hash
775 && (!speculative || !indirect_unknown_callee))
777 caller->call_site_hash->remove_elt_with_hash
778 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
781 cgraph_edge *e = this;
783 call_stmt = new_stmt;
784 if (indirect_unknown_callee
785 && (decl = gimple_call_fndecl (new_stmt)))
787 /* Constant propagation (and possibly also inlining?) can turn an
788 indirect call into a direct one. */
789 cgraph_node *new_callee = cgraph_node::get (decl);
791 gcc_checking_assert (new_callee);
792 e = make_direct (new_callee);
795 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
796 e->can_throw_external = stmt_can_throw_external (new_stmt);
797 pop_cfun ();
798 if (e->caller->call_site_hash)
799 cgraph_add_edge_to_call_site_hash (e);
802 /* Allocate a cgraph_edge structure and fill it with data according to the
803 parameters of which only CALLEE can be NULL (when creating an indirect call
804 edge). */
806 cgraph_edge *
807 symbol_table::create_edge (cgraph_node *caller, cgraph_node *callee,
808 gcall *call_stmt, gcov_type count, int freq,
809 bool indir_unknown_callee)
811 cgraph_edge *edge;
813 /* LTO does not actually have access to the call_stmt since these
814 have not been loaded yet. */
815 if (call_stmt)
817 /* This is a rather expensive check possibly triggering
818 construction of call stmt hashtable. */
819 cgraph_edge *e;
820 gcc_checking_assert (!(e = caller->get_edge (call_stmt))
821 || e->speculative);
823 gcc_assert (is_gimple_call (call_stmt));
826 if (free_edges)
828 edge = free_edges;
829 free_edges = NEXT_FREE_EDGE (edge);
831 else
833 edge = ggc_alloc<cgraph_edge> ();
834 edge->uid = edges_max_uid++;
837 edges_count++;
839 edge->aux = NULL;
840 edge->caller = caller;
841 edge->callee = callee;
842 edge->prev_caller = NULL;
843 edge->next_caller = NULL;
844 edge->prev_callee = NULL;
845 edge->next_callee = NULL;
846 edge->lto_stmt_uid = 0;
848 edge->count = count;
849 gcc_assert (count >= 0);
850 edge->frequency = freq;
851 gcc_assert (freq >= 0);
852 gcc_assert (freq <= CGRAPH_FREQ_MAX);
854 edge->call_stmt = call_stmt;
855 push_cfun (DECL_STRUCT_FUNCTION (caller->decl));
856 edge->can_throw_external
857 = call_stmt ? stmt_can_throw_external (call_stmt) : false;
858 pop_cfun ();
859 if (call_stmt
860 && callee && callee->decl
861 && !gimple_check_call_matching_types (call_stmt, callee->decl,
862 false))
864 edge->inline_failed = CIF_MISMATCHED_ARGUMENTS;
865 edge->call_stmt_cannot_inline_p = true;
867 else
869 edge->inline_failed = CIF_FUNCTION_NOT_CONSIDERED;
870 edge->call_stmt_cannot_inline_p = false;
873 edge->indirect_info = NULL;
874 edge->indirect_inlining_edge = 0;
875 edge->speculative = false;
876 edge->indirect_unknown_callee = indir_unknown_callee;
877 if (opt_for_fn (edge->caller->decl, flag_devirtualize)
878 && call_stmt && DECL_STRUCT_FUNCTION (caller->decl))
879 edge->in_polymorphic_cdtor
880 = decl_maybe_in_construction_p (NULL, NULL, call_stmt,
881 caller->decl);
882 else
883 edge->in_polymorphic_cdtor = caller->thunk.thunk_p;
884 if (call_stmt && caller->call_site_hash)
885 cgraph_add_edge_to_call_site_hash (edge);
887 return edge;
890 /* Create edge from a given function to CALLEE in the cgraph. */
892 cgraph_edge *
893 cgraph_node::create_edge (cgraph_node *callee,
894 gcall *call_stmt, gcov_type count, int freq)
896 cgraph_edge *edge = symtab->create_edge (this, callee, call_stmt, count,
897 freq, false);
899 initialize_inline_failed (edge);
901 edge->next_caller = callee->callers;
902 if (callee->callers)
903 callee->callers->prev_caller = edge;
904 edge->next_callee = callees;
905 if (callees)
906 callees->prev_callee = edge;
907 callees = edge;
908 callee->callers = edge;
910 return edge;
913 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
915 cgraph_indirect_call_info *
916 cgraph_allocate_init_indirect_info (void)
918 cgraph_indirect_call_info *ii;
920 ii = ggc_cleared_alloc<cgraph_indirect_call_info> ();
921 ii->param_index = -1;
922 return ii;
925 /* Create an indirect edge with a yet-undetermined callee where the call
926 statement destination is a formal parameter of the caller with index
927 PARAM_INDEX. */
929 cgraph_edge *
930 cgraph_node::create_indirect_edge (gcall *call_stmt, int ecf_flags,
931 gcov_type count, int freq,
932 bool compute_indirect_info)
934 cgraph_edge *edge = symtab->create_edge (this, NULL, call_stmt,
935 count, freq, true);
936 tree target;
938 initialize_inline_failed (edge);
940 edge->indirect_info = cgraph_allocate_init_indirect_info ();
941 edge->indirect_info->ecf_flags = ecf_flags;
942 edge->indirect_info->vptr_changed = true;
944 /* Record polymorphic call info. */
945 if (compute_indirect_info
946 && call_stmt
947 && (target = gimple_call_fn (call_stmt))
948 && virtual_method_call_p (target))
950 ipa_polymorphic_call_context context (decl, target, call_stmt);
952 /* Only record types can have virtual calls. */
953 edge->indirect_info->polymorphic = true;
954 edge->indirect_info->param_index = -1;
955 edge->indirect_info->otr_token
956 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
957 edge->indirect_info->otr_type = obj_type_ref_class (target);
958 gcc_assert (TREE_CODE (edge->indirect_info->otr_type) == RECORD_TYPE);
959 edge->indirect_info->context = context;
962 edge->next_callee = indirect_calls;
963 if (indirect_calls)
964 indirect_calls->prev_callee = edge;
965 indirect_calls = edge;
967 return edge;
970 /* Remove the edge from the list of the callees of the caller. */
972 void
973 cgraph_edge::remove_caller (void)
975 if (prev_callee)
976 prev_callee->next_callee = next_callee;
977 if (next_callee)
978 next_callee->prev_callee = prev_callee;
979 if (!prev_callee)
981 if (indirect_unknown_callee)
982 caller->indirect_calls = next_callee;
983 else
984 caller->callees = next_callee;
986 if (caller->call_site_hash)
987 caller->call_site_hash->remove_elt_with_hash
988 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
991 /* Put the edge onto the free list. */
993 void
994 symbol_table::free_edge (cgraph_edge *e)
996 int uid = e->uid;
998 if (e->indirect_info)
999 ggc_free (e->indirect_info);
1001 /* Clear out the edge so we do not dangle pointers. */
1002 memset (e, 0, sizeof (*e));
1003 e->uid = uid;
1004 NEXT_FREE_EDGE (e) = free_edges;
1005 free_edges = e;
1006 edges_count--;
1009 /* Remove the edge in the cgraph. */
1011 void
1012 cgraph_edge::remove (void)
1014 /* Call all edge removal hooks. */
1015 symtab->call_edge_removal_hooks (this);
1017 if (!indirect_unknown_callee)
1018 /* Remove from callers list of the callee. */
1019 remove_callee ();
1021 /* Remove from callees list of the callers. */
1022 remove_caller ();
1024 /* Put the edge onto the free list. */
1025 symtab->free_edge (this);
1028 /* Turn edge into speculative call calling N2. Update
1029 the profile so the direct call is taken COUNT times
1030 with FREQUENCY.
1032 At clone materialization time, the indirect call E will
1033 be expanded as:
1035 if (call_dest == N2)
1036 n2 ();
1037 else
1038 call call_dest
1040 At this time the function just creates the direct call,
1041 the referencd representing the if conditional and attaches
1042 them all to the orginal indirect call statement.
1044 Return direct edge created. */
1046 cgraph_edge *
1047 cgraph_edge::make_speculative (cgraph_node *n2, gcov_type direct_count,
1048 int direct_frequency)
1050 cgraph_node *n = caller;
1051 ipa_ref *ref = NULL;
1052 cgraph_edge *e2;
1054 if (dump_file)
1056 fprintf (dump_file, "Indirect call -> speculative call"
1057 " %s/%i => %s/%i\n",
1058 xstrdup_for_dump (n->name ()), n->order,
1059 xstrdup_for_dump (n2->name ()), n2->order);
1061 speculative = true;
1062 e2 = n->create_edge (n2, call_stmt, direct_count, direct_frequency);
1063 initialize_inline_failed (e2);
1064 e2->speculative = true;
1065 if (TREE_NOTHROW (n2->decl))
1066 e2->can_throw_external = false;
1067 else
1068 e2->can_throw_external = can_throw_external;
1069 e2->lto_stmt_uid = lto_stmt_uid;
1070 e2->in_polymorphic_cdtor = in_polymorphic_cdtor;
1071 count -= e2->count;
1072 frequency -= e2->frequency;
1073 symtab->call_edge_duplication_hooks (this, e2);
1074 ref = n->create_reference (n2, IPA_REF_ADDR, call_stmt);
1075 ref->lto_stmt_uid = lto_stmt_uid;
1076 ref->speculative = speculative;
1077 n2->mark_address_taken ();
1078 return e2;
1081 /* Speculative call consist of three components:
1082 1) an indirect edge representing the original call
1083 2) an direct edge representing the new call
1084 3) ADDR_EXPR reference representing the speculative check.
1085 All three components are attached to single statement (the indirect
1086 call) and if one of them exists, all of them must exist.
1088 Given speculative call edge, return all three components.
1091 void
1092 cgraph_edge::speculative_call_info (cgraph_edge *&direct,
1093 cgraph_edge *&indirect,
1094 ipa_ref *&reference)
1096 ipa_ref *ref;
1097 int i;
1098 cgraph_edge *e2;
1099 cgraph_edge *e = this;
1101 if (!e->indirect_unknown_callee)
1102 for (e2 = e->caller->indirect_calls;
1103 e2->call_stmt != e->call_stmt || e2->lto_stmt_uid != e->lto_stmt_uid;
1104 e2 = e2->next_callee)
1106 else
1108 e2 = e;
1109 /* We can take advantage of the call stmt hash. */
1110 if (e2->call_stmt)
1112 e = e->caller->get_edge (e2->call_stmt);
1113 gcc_assert (e->speculative && !e->indirect_unknown_callee);
1115 else
1116 for (e = e->caller->callees;
1117 e2->call_stmt != e->call_stmt
1118 || e2->lto_stmt_uid != e->lto_stmt_uid;
1119 e = e->next_callee)
1122 gcc_assert (e->speculative && e2->speculative);
1123 direct = e;
1124 indirect = e2;
1126 reference = NULL;
1127 for (i = 0; e->caller->iterate_reference (i, ref); i++)
1128 if (ref->speculative
1129 && ((ref->stmt && ref->stmt == e->call_stmt)
1130 || (!ref->stmt && ref->lto_stmt_uid == e->lto_stmt_uid)))
1132 reference = ref;
1133 break;
1136 /* Speculative edge always consist of all three components - direct edge,
1137 indirect and reference. */
1139 gcc_assert (e && e2 && ref);
1142 /* Speculative call edge turned out to be direct call to CALLE_DECL.
1143 Remove the speculative call sequence and return edge representing the call.
1144 It is up to caller to redirect the call as appropriate. */
1146 cgraph_edge *
1147 cgraph_edge::resolve_speculation (tree callee_decl)
1149 cgraph_edge *edge = this;
1150 cgraph_edge *e2;
1151 ipa_ref *ref;
1153 gcc_assert (edge->speculative);
1154 edge->speculative_call_info (e2, edge, ref);
1155 if (!callee_decl
1156 || !ref->referred->semantically_equivalent_p
1157 (symtab_node::get (callee_decl)))
1159 if (dump_file)
1161 if (callee_decl)
1163 fprintf (dump_file, "Speculative indirect call %s/%i => %s/%i has "
1164 "turned out to have contradicting known target ",
1165 xstrdup_for_dump (edge->caller->name ()),
1166 edge->caller->order,
1167 xstrdup_for_dump (e2->callee->name ()),
1168 e2->callee->order);
1169 print_generic_expr (dump_file, callee_decl, 0);
1170 fprintf (dump_file, "\n");
1172 else
1174 fprintf (dump_file, "Removing speculative call %s/%i => %s/%i\n",
1175 xstrdup_for_dump (edge->caller->name ()),
1176 edge->caller->order,
1177 xstrdup_for_dump (e2->callee->name ()),
1178 e2->callee->order);
1182 else
1184 cgraph_edge *tmp = edge;
1185 if (dump_file)
1186 fprintf (dump_file, "Speculative call turned into direct call.\n");
1187 edge = e2;
1188 e2 = tmp;
1189 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1190 in the functions inlined through it. */
1192 edge->count += e2->count;
1193 edge->frequency += e2->frequency;
1194 if (edge->frequency > CGRAPH_FREQ_MAX)
1195 edge->frequency = CGRAPH_FREQ_MAX;
1196 edge->speculative = false;
1197 e2->speculative = false;
1198 ref->remove_reference ();
1199 if (e2->indirect_unknown_callee || e2->inline_failed)
1200 e2->remove ();
1201 else
1202 e2->callee->remove_symbol_and_inline_clones ();
1203 if (edge->caller->call_site_hash)
1204 cgraph_update_edge_in_call_site_hash (edge);
1205 return edge;
1208 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1209 CALLEE. DELTA is an integer constant that is to be added to the this
1210 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1212 cgraph_edge *
1213 cgraph_edge::make_direct (cgraph_node *callee)
1215 cgraph_edge *edge = this;
1216 gcc_assert (indirect_unknown_callee);
1218 /* If we are redirecting speculative call, make it non-speculative. */
1219 if (indirect_unknown_callee && speculative)
1221 edge = edge->resolve_speculation (callee->decl);
1223 /* On successful speculation just return the pre existing direct edge. */
1224 if (!indirect_unknown_callee)
1225 return edge;
1228 indirect_unknown_callee = 0;
1229 ggc_free (indirect_info);
1230 indirect_info = NULL;
1232 /* Get the edge out of the indirect edge list. */
1233 if (prev_callee)
1234 prev_callee->next_callee = next_callee;
1235 if (next_callee)
1236 next_callee->prev_callee = prev_callee;
1237 if (!prev_callee)
1238 caller->indirect_calls = next_callee;
1240 /* Put it into the normal callee list */
1241 prev_callee = NULL;
1242 next_callee = caller->callees;
1243 if (caller->callees)
1244 caller->callees->prev_callee = edge;
1245 caller->callees = edge;
1247 /* Insert to callers list of the new callee. */
1248 edge->set_callee (callee);
1250 if (call_stmt
1251 && !gimple_check_call_matching_types (call_stmt, callee->decl, false))
1253 call_stmt_cannot_inline_p = true;
1254 inline_failed = CIF_MISMATCHED_ARGUMENTS;
1257 /* We need to re-determine the inlining status of the edge. */
1258 initialize_inline_failed (edge);
1259 return edge;
1262 /* If necessary, change the function declaration in the call statement
1263 associated with E so that it corresponds to the edge callee. */
1265 gimple *
1266 cgraph_edge::redirect_call_stmt_to_callee (void)
1268 cgraph_edge *e = this;
1270 tree decl = gimple_call_fndecl (e->call_stmt);
1271 tree lhs = gimple_call_lhs (e->call_stmt);
1272 gcall *new_stmt;
1273 gimple_stmt_iterator gsi;
1274 bool skip_bounds = false;
1276 if (e->speculative)
1278 cgraph_edge *e2;
1279 gcall *new_stmt;
1280 ipa_ref *ref;
1282 e->speculative_call_info (e, e2, ref);
1283 /* If there already is an direct call (i.e. as a result of inliner's
1284 substitution), forget about speculating. */
1285 if (decl)
1286 e = e->resolve_speculation (decl);
1287 /* If types do not match, speculation was likely wrong.
1288 The direct edge was possibly redirected to the clone with a different
1289 signature. We did not update the call statement yet, so compare it
1290 with the reference that still points to the proper type. */
1291 else if (!gimple_check_call_matching_types (e->call_stmt,
1292 ref->referred->decl,
1293 true))
1295 if (dump_file)
1296 fprintf (dump_file, "Not expanding speculative call of %s/%i -> %s/%i\n"
1297 "Type mismatch.\n",
1298 xstrdup_for_dump (e->caller->name ()),
1299 e->caller->order,
1300 xstrdup_for_dump (e->callee->name ()),
1301 e->callee->order);
1302 e = e->resolve_speculation ();
1303 /* We are producing the final function body and will throw away the
1304 callgraph edges really soon. Reset the counts/frequencies to
1305 keep verifier happy in the case of roundoff errors. */
1306 e->count = gimple_bb (e->call_stmt)->count;
1307 e->frequency = compute_call_stmt_bb_frequency
1308 (e->caller->decl, gimple_bb (e->call_stmt));
1310 /* Expand speculation into GIMPLE code. */
1311 else
1313 if (dump_file)
1314 fprintf (dump_file,
1315 "Expanding speculative call of %s/%i -> %s/%i count:"
1316 "%" PRId64"\n",
1317 xstrdup_for_dump (e->caller->name ()),
1318 e->caller->order,
1319 xstrdup_for_dump (e->callee->name ()),
1320 e->callee->order,
1321 (int64_t)e->count);
1322 gcc_assert (e2->speculative);
1323 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
1324 new_stmt = gimple_ic (e->call_stmt,
1325 dyn_cast<cgraph_node *> (ref->referred),
1326 e->count || e2->count
1327 ? RDIV (e->count * REG_BR_PROB_BASE,
1328 e->count + e2->count)
1329 : e->frequency || e2->frequency
1330 ? RDIV (e->frequency * REG_BR_PROB_BASE,
1331 e->frequency + e2->frequency)
1332 : REG_BR_PROB_BASE / 2,
1333 e->count, e->count + e2->count);
1334 e->speculative = false;
1335 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt,
1336 false);
1338 /* Fix edges for BUILT_IN_CHKP_BNDRET calls attached to the
1339 processed call stmt. */
1340 if (gimple_call_with_bounds_p (new_stmt)
1341 && gimple_call_lhs (new_stmt)
1342 && chkp_retbnd_call_by_val (gimple_call_lhs (e2->call_stmt)))
1344 tree dresult = gimple_call_lhs (new_stmt);
1345 tree iresult = gimple_call_lhs (e2->call_stmt);
1346 gcall *dbndret = chkp_retbnd_call_by_val (dresult);
1347 gcall *ibndret = chkp_retbnd_call_by_val (iresult);
1348 struct cgraph_edge *iedge
1349 = e2->caller->cgraph_node::get_edge (ibndret);
1350 struct cgraph_edge *dedge;
1352 if (dbndret)
1354 dedge = iedge->caller->create_edge (iedge->callee,
1355 dbndret, e->count,
1356 e->frequency);
1357 dedge->frequency = compute_call_stmt_bb_frequency
1358 (dedge->caller->decl, gimple_bb (dedge->call_stmt));
1360 iedge->frequency = compute_call_stmt_bb_frequency
1361 (iedge->caller->decl, gimple_bb (iedge->call_stmt));
1364 e->frequency = compute_call_stmt_bb_frequency
1365 (e->caller->decl, gimple_bb (e->call_stmt));
1366 e2->frequency = compute_call_stmt_bb_frequency
1367 (e2->caller->decl, gimple_bb (e2->call_stmt));
1368 e2->speculative = false;
1369 ref->speculative = false;
1370 ref->stmt = NULL;
1371 /* Indirect edges are not both in the call site hash.
1372 get it updated. */
1373 if (e->caller->call_site_hash)
1374 cgraph_update_edge_in_call_site_hash (e2);
1375 pop_cfun ();
1376 /* Continue redirecting E to proper target. */
1380 /* We might propagate instrumented function pointer into
1381 not instrumented function and vice versa. In such a
1382 case we need to either fix function declaration or
1383 remove bounds from call statement. */
1384 if (flag_check_pointer_bounds && e->callee)
1385 skip_bounds = chkp_redirect_edge (e);
1387 if (e->indirect_unknown_callee
1388 || (decl == e->callee->decl
1389 && !skip_bounds))
1390 return e->call_stmt;
1392 if (flag_checking && decl)
1394 cgraph_node *node = cgraph_node::get (decl);
1395 gcc_assert (!node || !node->clone.combined_args_to_skip);
1398 if (symtab->dump_file)
1400 fprintf (symtab->dump_file, "updating call of %s/%i -> %s/%i: ",
1401 xstrdup_for_dump (e->caller->name ()), e->caller->order,
1402 xstrdup_for_dump (e->callee->name ()), e->callee->order);
1403 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1404 if (e->callee->clone.combined_args_to_skip)
1406 fprintf (symtab->dump_file, " combined args to skip: ");
1407 dump_bitmap (symtab->dump_file,
1408 e->callee->clone.combined_args_to_skip);
1412 if (e->callee->clone.combined_args_to_skip
1413 || skip_bounds)
1415 int lp_nr;
1417 new_stmt = e->call_stmt;
1418 if (e->callee->clone.combined_args_to_skip)
1419 new_stmt
1420 = gimple_call_copy_skip_args (new_stmt,
1421 e->callee->clone.combined_args_to_skip);
1422 if (skip_bounds)
1423 new_stmt = chkp_copy_call_skip_bounds (new_stmt);
1425 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1426 gimple_call_set_fntype (new_stmt, gimple_call_fntype (e->call_stmt));
1428 if (gimple_vdef (new_stmt)
1429 && TREE_CODE (gimple_vdef (new_stmt)) == SSA_NAME)
1430 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
1432 gsi = gsi_for_stmt (e->call_stmt);
1434 /* For optimized away parameters, add on the caller side
1435 before the call
1436 DEBUG D#X => parm_Y(D)
1437 stmts and associate D#X with parm in decl_debug_args_lookup
1438 vector to say for debug info that if parameter parm had been passed,
1439 it would have value parm_Y(D). */
1440 if (e->callee->clone.combined_args_to_skip && MAY_HAVE_DEBUG_STMTS)
1442 vec<tree, va_gc> **debug_args
1443 = decl_debug_args_lookup (e->callee->decl);
1444 tree old_decl = gimple_call_fndecl (e->call_stmt);
1445 if (debug_args && old_decl)
1447 tree parm;
1448 unsigned i = 0, num;
1449 unsigned len = vec_safe_length (*debug_args);
1450 unsigned nargs = gimple_call_num_args (e->call_stmt);
1451 for (parm = DECL_ARGUMENTS (old_decl), num = 0;
1452 parm && num < nargs;
1453 parm = DECL_CHAIN (parm), num++)
1454 if (bitmap_bit_p (e->callee->clone.combined_args_to_skip, num)
1455 && is_gimple_reg (parm))
1457 unsigned last = i;
1459 while (i < len && (**debug_args)[i] != DECL_ORIGIN (parm))
1460 i += 2;
1461 if (i >= len)
1463 i = 0;
1464 while (i < last
1465 && (**debug_args)[i] != DECL_ORIGIN (parm))
1466 i += 2;
1467 if (i >= last)
1468 continue;
1470 tree ddecl = (**debug_args)[i + 1];
1471 tree arg = gimple_call_arg (e->call_stmt, num);
1472 if (!useless_type_conversion_p (TREE_TYPE (ddecl),
1473 TREE_TYPE (arg)))
1475 tree rhs1;
1476 if (!fold_convertible_p (TREE_TYPE (ddecl), arg))
1477 continue;
1478 if (TREE_CODE (arg) == SSA_NAME
1479 && gimple_assign_cast_p (SSA_NAME_DEF_STMT (arg))
1480 && (rhs1
1481 = gimple_assign_rhs1 (SSA_NAME_DEF_STMT (arg)))
1482 && useless_type_conversion_p (TREE_TYPE (ddecl),
1483 TREE_TYPE (rhs1)))
1484 arg = rhs1;
1485 else
1486 arg = fold_convert (TREE_TYPE (ddecl), arg);
1489 gimple *def_temp
1490 = gimple_build_debug_bind (ddecl, unshare_expr (arg),
1491 e->call_stmt);
1492 gsi_insert_before (&gsi, def_temp, GSI_SAME_STMT);
1497 gsi_replace (&gsi, new_stmt, false);
1498 /* We need to defer cleaning EH info on the new statement to
1499 fixup-cfg. We may not have dominator information at this point
1500 and thus would end up with unreachable blocks and have no way
1501 to communicate that we need to run CFG cleanup then. */
1502 lp_nr = lookup_stmt_eh_lp (e->call_stmt);
1503 if (lp_nr != 0)
1505 remove_stmt_from_eh_lp (e->call_stmt);
1506 add_stmt_to_eh_lp (new_stmt, lp_nr);
1509 else
1511 new_stmt = e->call_stmt;
1512 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1513 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1516 /* If changing the call to __cxa_pure_virtual or similar noreturn function,
1517 adjust gimple_call_fntype too. */
1518 if (gimple_call_noreturn_p (new_stmt)
1519 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (e->callee->decl)))
1520 && TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl))
1521 && (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl)))
1522 == void_type_node))
1523 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1525 /* If the call becomes noreturn, remove the LHS if possible. */
1526 if (lhs
1527 && gimple_call_noreturn_p (new_stmt)
1528 && (VOID_TYPE_P (TREE_TYPE (gimple_call_fntype (new_stmt)))
1529 || should_remove_lhs_p (lhs)))
1531 if (TREE_CODE (lhs) == SSA_NAME)
1533 tree var = create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e->caller->decl),
1534 TREE_TYPE (lhs), NULL);
1535 var = get_or_create_ssa_default_def
1536 (DECL_STRUCT_FUNCTION (e->caller->decl), var);
1537 gimple *set_stmt = gimple_build_assign (lhs, var);
1538 gsi = gsi_for_stmt (new_stmt);
1539 gsi_insert_before_without_update (&gsi, set_stmt, GSI_SAME_STMT);
1540 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), set_stmt);
1542 gimple_call_set_lhs (new_stmt, NULL_TREE);
1543 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1546 /* If new callee has no static chain, remove it. */
1547 if (gimple_call_chain (new_stmt) && !DECL_STATIC_CHAIN (e->callee->decl))
1549 gimple_call_set_chain (new_stmt, NULL);
1550 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1553 maybe_remove_unused_call_args (DECL_STRUCT_FUNCTION (e->caller->decl),
1554 new_stmt);
1556 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt, false);
1558 if (symtab->dump_file)
1560 fprintf (symtab->dump_file, " updated to:");
1561 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1563 return new_stmt;
1566 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1567 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1568 of OLD_STMT if it was previously call statement.
1569 If NEW_STMT is NULL, the call has been dropped without any
1570 replacement. */
1572 static void
1573 cgraph_update_edges_for_call_stmt_node (cgraph_node *node,
1574 gimple *old_stmt, tree old_call,
1575 gimple *new_stmt)
1577 tree new_call = (new_stmt && is_gimple_call (new_stmt))
1578 ? gimple_call_fndecl (new_stmt) : 0;
1580 /* We are seeing indirect calls, then there is nothing to update. */
1581 if (!new_call && !old_call)
1582 return;
1583 /* See if we turned indirect call into direct call or folded call to one builtin
1584 into different builtin. */
1585 if (old_call != new_call)
1587 cgraph_edge *e = node->get_edge (old_stmt);
1588 cgraph_edge *ne = NULL;
1589 gcov_type count;
1590 int frequency;
1592 if (e)
1594 /* Keep calls marked as dead dead. */
1595 if (new_stmt && is_gimple_call (new_stmt) && e->callee
1596 && DECL_BUILT_IN_CLASS (e->callee->decl) == BUILT_IN_NORMAL
1597 && DECL_FUNCTION_CODE (e->callee->decl) == BUILT_IN_UNREACHABLE)
1599 node->get_edge (old_stmt)->set_call_stmt
1600 (as_a <gcall *> (new_stmt));
1601 return;
1603 /* See if the edge is already there and has the correct callee. It
1604 might be so because of indirect inlining has already updated
1605 it. We also might've cloned and redirected the edge. */
1606 if (new_call && e->callee)
1608 cgraph_node *callee = e->callee;
1609 while (callee)
1611 if (callee->decl == new_call
1612 || callee->former_clone_of == new_call)
1614 e->set_call_stmt (as_a <gcall *> (new_stmt));
1615 return;
1617 callee = callee->clone_of;
1621 /* Otherwise remove edge and create new one; we can't simply redirect
1622 since function has changed, so inline plan and other information
1623 attached to edge is invalid. */
1624 count = e->count;
1625 frequency = e->frequency;
1626 if (e->indirect_unknown_callee || e->inline_failed)
1627 e->remove ();
1628 else
1629 e->callee->remove_symbol_and_inline_clones ();
1631 else if (new_call)
1633 /* We are seeing new direct call; compute profile info based on BB. */
1634 basic_block bb = gimple_bb (new_stmt);
1635 count = bb->count;
1636 frequency = compute_call_stmt_bb_frequency (current_function_decl,
1637 bb);
1640 if (new_call)
1642 ne = node->create_edge (cgraph_node::get_create (new_call),
1643 as_a <gcall *> (new_stmt), count,
1644 frequency);
1645 gcc_assert (ne->inline_failed);
1648 /* We only updated the call stmt; update pointer in cgraph edge.. */
1649 else if (old_stmt != new_stmt)
1650 node->get_edge (old_stmt)->set_call_stmt (as_a <gcall *> (new_stmt));
1653 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1654 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1655 of OLD_STMT before it was updated (updating can happen inplace). */
1657 void
1658 cgraph_update_edges_for_call_stmt (gimple *old_stmt, tree old_decl,
1659 gimple *new_stmt)
1661 cgraph_node *orig = cgraph_node::get (cfun->decl);
1662 cgraph_node *node;
1664 gcc_checking_assert (orig);
1665 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1666 if (orig->clones)
1667 for (node = orig->clones; node != orig;)
1669 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1670 if (node->clones)
1671 node = node->clones;
1672 else if (node->next_sibling_clone)
1673 node = node->next_sibling_clone;
1674 else
1676 while (node != orig && !node->next_sibling_clone)
1677 node = node->clone_of;
1678 if (node != orig)
1679 node = node->next_sibling_clone;
1685 /* Remove all callees from the node. */
1687 void
1688 cgraph_node::remove_callees (void)
1690 cgraph_edge *e, *f;
1692 /* It is sufficient to remove the edges from the lists of callers of
1693 the callees. The callee list of the node can be zapped with one
1694 assignment. */
1695 for (e = callees; e; e = f)
1697 f = e->next_callee;
1698 symtab->call_edge_removal_hooks (e);
1699 if (!e->indirect_unknown_callee)
1700 e->remove_callee ();
1701 symtab->free_edge (e);
1703 for (e = indirect_calls; e; e = f)
1705 f = e->next_callee;
1706 symtab->call_edge_removal_hooks (e);
1707 if (!e->indirect_unknown_callee)
1708 e->remove_callee ();
1709 symtab->free_edge (e);
1711 indirect_calls = NULL;
1712 callees = NULL;
1713 if (call_site_hash)
1715 call_site_hash->empty ();
1716 call_site_hash = NULL;
1720 /* Remove all callers from the node. */
1722 void
1723 cgraph_node::remove_callers (void)
1725 cgraph_edge *e, *f;
1727 /* It is sufficient to remove the edges from the lists of callees of
1728 the callers. The caller list of the node can be zapped with one
1729 assignment. */
1730 for (e = callers; e; e = f)
1732 f = e->next_caller;
1733 symtab->call_edge_removal_hooks (e);
1734 e->remove_caller ();
1735 symtab->free_edge (e);
1737 callers = NULL;
1740 /* Helper function for cgraph_release_function_body and free_lang_data.
1741 It releases body from function DECL without having to inspect its
1742 possibly non-existent symtab node. */
1744 void
1745 release_function_body (tree decl)
1747 function *fn = DECL_STRUCT_FUNCTION (decl);
1748 if (fn)
1750 if (fn->cfg
1751 && loops_for_fn (fn))
1753 fn->curr_properties &= ~PROP_loops;
1754 loop_optimizer_finalize (fn);
1756 if (fn->gimple_df)
1758 delete_tree_ssa (fn);
1759 fn->eh = NULL;
1761 if (fn->cfg)
1763 gcc_assert (!dom_info_available_p (fn, CDI_DOMINATORS));
1764 gcc_assert (!dom_info_available_p (fn, CDI_POST_DOMINATORS));
1765 delete_tree_cfg_annotations (fn);
1766 clear_edges (fn);
1767 fn->cfg = NULL;
1769 if (fn->value_histograms)
1770 free_histograms (fn);
1771 gimple_set_body (decl, NULL);
1772 /* Struct function hangs a lot of data that would leak if we didn't
1773 removed all pointers to it. */
1774 ggc_free (fn);
1775 DECL_STRUCT_FUNCTION (decl) = NULL;
1777 DECL_SAVED_TREE (decl) = NULL;
1780 /* Release memory used to represent body of function.
1781 Use this only for functions that are released before being translated to
1782 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1783 are free'd in final.c via free_after_compilation().
1784 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1786 void
1787 cgraph_node::release_body (bool keep_arguments)
1789 ipa_transforms_to_apply.release ();
1790 if (!used_as_abstract_origin && symtab->state != PARSING)
1792 DECL_RESULT (decl) = NULL;
1794 if (!keep_arguments)
1795 DECL_ARGUMENTS (decl) = NULL;
1797 /* If the node is abstract and needed, then do not clear
1798 DECL_INITIAL of its associated function declaration because it's
1799 needed to emit debug info later. */
1800 if (!used_as_abstract_origin && DECL_INITIAL (decl))
1801 DECL_INITIAL (decl) = error_mark_node;
1802 release_function_body (decl);
1803 if (lto_file_data)
1805 lto_free_function_in_decl_state_for_node (this);
1806 lto_file_data = NULL;
1810 /* Remove function from symbol table. */
1812 void
1813 cgraph_node::remove (void)
1815 cgraph_node *n;
1816 int uid = this->uid;
1818 symtab->call_cgraph_removal_hooks (this);
1819 remove_callers ();
1820 remove_callees ();
1821 ipa_transforms_to_apply.release ();
1823 /* Incremental inlining access removed nodes stored in the postorder list.
1825 force_output = false;
1826 forced_by_abi = false;
1827 for (n = nested; n; n = n->next_nested)
1828 n->origin = NULL;
1829 nested = NULL;
1830 if (origin)
1832 cgraph_node **node2 = &origin->nested;
1834 while (*node2 != this)
1835 node2 = &(*node2)->next_nested;
1836 *node2 = next_nested;
1838 unregister ();
1839 if (prev_sibling_clone)
1840 prev_sibling_clone->next_sibling_clone = next_sibling_clone;
1841 else if (clone_of)
1842 clone_of->clones = next_sibling_clone;
1843 if (next_sibling_clone)
1844 next_sibling_clone->prev_sibling_clone = prev_sibling_clone;
1845 if (clones)
1847 cgraph_node *n, *next;
1849 if (clone_of)
1851 for (n = clones; n->next_sibling_clone; n = n->next_sibling_clone)
1852 n->clone_of = clone_of;
1853 n->clone_of = clone_of;
1854 n->next_sibling_clone = clone_of->clones;
1855 if (clone_of->clones)
1856 clone_of->clones->prev_sibling_clone = n;
1857 clone_of->clones = clones;
1859 else
1861 /* We are removing node with clones. This makes clones inconsistent,
1862 but assume they will be removed subsequently and just keep clone
1863 tree intact. This can happen in unreachable function removal since
1864 we remove unreachable functions in random order, not by bottom-up
1865 walk of clone trees. */
1866 for (n = clones; n; n = next)
1868 next = n->next_sibling_clone;
1869 n->next_sibling_clone = NULL;
1870 n->prev_sibling_clone = NULL;
1871 n->clone_of = NULL;
1876 /* While all the clones are removed after being proceeded, the function
1877 itself is kept in the cgraph even after it is compiled. Check whether
1878 we are done with this body and reclaim it proactively if this is the case.
1880 if (symtab->state != LTO_STREAMING)
1882 n = cgraph_node::get (decl);
1883 if (!n
1884 || (!n->clones && !n->clone_of && !n->global.inlined_to
1885 && ((symtab->global_info_ready || in_lto_p)
1886 && (TREE_ASM_WRITTEN (n->decl)
1887 || DECL_EXTERNAL (n->decl)
1888 || !n->analyzed
1889 || (!flag_wpa && n->in_other_partition)))))
1890 release_body ();
1892 else
1894 lto_free_function_in_decl_state_for_node (this);
1895 lto_file_data = NULL;
1898 decl = NULL;
1899 if (call_site_hash)
1901 call_site_hash->empty ();
1902 call_site_hash = NULL;
1905 if (instrumented_version)
1907 instrumented_version->instrumented_version = NULL;
1908 instrumented_version = NULL;
1911 symtab->release_symbol (this, uid);
1914 /* Likewise indicate that a node is having address taken. */
1916 void
1917 cgraph_node::mark_address_taken (void)
1919 /* Indirect inlining can figure out that all uses of the address are
1920 inlined. */
1921 if (global.inlined_to)
1923 gcc_assert (cfun->after_inlining);
1924 gcc_assert (callers->indirect_inlining_edge);
1925 return;
1927 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1928 IPA_REF_ADDR reference exists (and thus it should be set on node
1929 representing alias we take address of) and as a test whether address
1930 of the object was taken (and thus it should be set on node alias is
1931 referring to). We should remove the first use and the remove the
1932 following set. */
1933 address_taken = 1;
1934 cgraph_node *node = ultimate_alias_target ();
1935 node->address_taken = 1;
1938 /* Return local info for the compiled function. */
1940 cgraph_local_info *
1941 cgraph_node::local_info (tree decl)
1943 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1944 cgraph_node *node = get (decl);
1945 if (!node)
1946 return NULL;
1947 return &node->ultimate_alias_target ()->local;
1950 /* Return local info for the compiled function. */
1952 cgraph_rtl_info *
1953 cgraph_node::rtl_info (tree decl)
1955 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1956 cgraph_node *node = get (decl);
1957 if (!node)
1958 return NULL;
1959 enum availability avail;
1960 node = node->ultimate_alias_target (&avail);
1961 if (decl != current_function_decl
1962 && (avail < AVAIL_AVAILABLE
1963 || (node->decl != current_function_decl
1964 && !TREE_ASM_WRITTEN (node->decl))))
1965 return NULL;
1966 /* Allocate if it doesn't exist. */
1967 if (node->rtl == NULL)
1968 node->rtl = ggc_cleared_alloc<cgraph_rtl_info> ();
1969 return node->rtl;
1972 /* Return a string describing the failure REASON. */
1974 const char*
1975 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1977 #undef DEFCIFCODE
1978 #define DEFCIFCODE(code, type, string) string,
1980 static const char *cif_string_table[CIF_N_REASONS] = {
1981 #include "cif-code.def"
1984 /* Signedness of an enum type is implementation defined, so cast it
1985 to unsigned before testing. */
1986 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1987 return cif_string_table[reason];
1990 /* Return a type describing the failure REASON. */
1992 cgraph_inline_failed_type_t
1993 cgraph_inline_failed_type (cgraph_inline_failed_t reason)
1995 #undef DEFCIFCODE
1996 #define DEFCIFCODE(code, type, string) type,
1998 static cgraph_inline_failed_type_t cif_type_table[CIF_N_REASONS] = {
1999 #include "cif-code.def"
2002 /* Signedness of an enum type is implementation defined, so cast it
2003 to unsigned before testing. */
2004 gcc_assert ((unsigned) reason < CIF_N_REASONS);
2005 return cif_type_table[reason];
2008 /* Names used to print out the availability enum. */
2009 const char * const cgraph_availability_names[] =
2010 {"unset", "not_available", "overwritable", "available", "local"};
2012 /* Output flags of edge to a file F. */
2014 void
2015 cgraph_edge::dump_edge_flags (FILE *f)
2017 if (speculative)
2018 fprintf (f, "(speculative) ");
2019 if (!inline_failed)
2020 fprintf (f, "(inlined) ");
2021 if (call_stmt_cannot_inline_p)
2022 fprintf (f, "(call_stmt_cannot_inline_p) ");
2023 if (indirect_inlining_edge)
2024 fprintf (f, "(indirect_inlining) ");
2025 if (count)
2026 fprintf (f, "(%" PRId64"x) ", (int64_t)count);
2027 if (frequency)
2028 fprintf (f, "(%.2f per call) ", frequency / (double)CGRAPH_FREQ_BASE);
2029 if (can_throw_external)
2030 fprintf (f, "(can throw external) ");
2033 /* Dump call graph node to file F. */
2035 void
2036 cgraph_node::dump (FILE *f)
2038 cgraph_edge *edge;
2040 dump_base (f);
2042 if (global.inlined_to)
2043 fprintf (f, " Function %s/%i is inline copy in %s/%i\n",
2044 xstrdup_for_dump (name ()),
2045 order,
2046 xstrdup_for_dump (global.inlined_to->name ()),
2047 global.inlined_to->order);
2048 if (clone_of)
2049 fprintf (f, " Clone of %s/%i\n",
2050 clone_of->asm_name (),
2051 clone_of->order);
2052 if (symtab->function_flags_ready)
2053 fprintf (f, " Availability: %s\n",
2054 cgraph_availability_names [get_availability ()]);
2056 if (profile_id)
2057 fprintf (f, " Profile id: %i\n",
2058 profile_id);
2059 fprintf (f, " First run: %i\n", tp_first_run);
2060 fprintf (f, " Function flags:");
2061 if (count)
2062 fprintf (f, " executed %" PRId64"x",
2063 (int64_t)count);
2064 if (origin)
2065 fprintf (f, " nested in: %s", origin->asm_name ());
2066 if (gimple_has_body_p (decl))
2067 fprintf (f, " body");
2068 if (process)
2069 fprintf (f, " process");
2070 if (local.local)
2071 fprintf (f, " local");
2072 if (local.redefined_extern_inline)
2073 fprintf (f, " redefined_extern_inline");
2074 if (only_called_at_startup)
2075 fprintf (f, " only_called_at_startup");
2076 if (only_called_at_exit)
2077 fprintf (f, " only_called_at_exit");
2078 if (tm_clone)
2079 fprintf (f, " tm_clone");
2080 if (icf_merged)
2081 fprintf (f, " icf_merged");
2082 if (merged_comdat)
2083 fprintf (f, " merged_comdat");
2084 if (split_part)
2085 fprintf (f, " split_part");
2086 if (indirect_call_target)
2087 fprintf (f, " indirect_call_target");
2088 if (nonfreeing_fn)
2089 fprintf (f, " nonfreeing_fn");
2090 if (DECL_STATIC_CONSTRUCTOR (decl))
2091 fprintf (f," static_constructor (priority:%i)", get_init_priority ());
2092 if (DECL_STATIC_DESTRUCTOR (decl))
2093 fprintf (f," static_destructor (priority:%i)", get_fini_priority ());
2094 if (frequency == NODE_FREQUENCY_HOT)
2095 fprintf (f, " hot");
2096 if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2097 fprintf (f, " unlikely_executed");
2098 if (frequency == NODE_FREQUENCY_EXECUTED_ONCE)
2099 fprintf (f, " executed_once");
2100 if (only_called_at_startup)
2101 fprintf (f, " only_called_at_startup");
2102 if (only_called_at_exit)
2103 fprintf (f, " only_called_at_exit");
2104 if (opt_for_fn (decl, optimize_size))
2105 fprintf (f, " optimize_size");
2106 if (parallelized_function)
2107 fprintf (f, " parallelized_function");
2109 fprintf (f, "\n");
2111 if (thunk.thunk_p)
2113 fprintf (f, " Thunk");
2114 if (thunk.alias)
2115 fprintf (f, " of %s (asm: %s)",
2116 lang_hooks.decl_printable_name (thunk.alias, 2),
2117 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2118 fprintf (f, " fixed offset %i virtual value %i has "
2119 "virtual offset %i)\n",
2120 (int)thunk.fixed_offset,
2121 (int)thunk.virtual_value,
2122 (int)thunk.virtual_offset_p);
2124 if (alias && thunk.alias
2125 && DECL_P (thunk.alias))
2127 fprintf (f, " Alias of %s",
2128 lang_hooks.decl_printable_name (thunk.alias, 2));
2129 if (DECL_ASSEMBLER_NAME_SET_P (thunk.alias))
2130 fprintf (f, " (asm: %s)",
2131 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2132 fprintf (f, "\n");
2135 fprintf (f, " Called by: ");
2137 for (edge = callers; edge; edge = edge->next_caller)
2139 fprintf (f, "%s/%i ", edge->caller->asm_name (),
2140 edge->caller->order);
2141 edge->dump_edge_flags (f);
2144 fprintf (f, "\n Calls: ");
2145 for (edge = callees; edge; edge = edge->next_callee)
2147 fprintf (f, "%s/%i ", edge->callee->asm_name (),
2148 edge->callee->order);
2149 edge->dump_edge_flags (f);
2151 fprintf (f, "\n");
2153 for (edge = indirect_calls; edge; edge = edge->next_callee)
2155 if (edge->indirect_info->polymorphic)
2157 fprintf (f, " Polymorphic indirect call of type ");
2158 print_generic_expr (f, edge->indirect_info->otr_type, TDF_SLIM);
2159 fprintf (f, " token:%i", (int) edge->indirect_info->otr_token);
2161 else
2162 fprintf (f, " Indirect call");
2163 edge->dump_edge_flags (f);
2164 if (edge->indirect_info->param_index != -1)
2166 fprintf (f, " of param:%i", edge->indirect_info->param_index);
2167 if (edge->indirect_info->agg_contents)
2168 fprintf (f, " loaded from %s %s at offset %i",
2169 edge->indirect_info->member_ptr ? "member ptr" : "aggregate",
2170 edge->indirect_info->by_ref ? "passed by reference":"",
2171 (int)edge->indirect_info->offset);
2172 if (edge->indirect_info->vptr_changed)
2173 fprintf (f, " (vptr maybe changed)");
2175 fprintf (f, "\n");
2176 if (edge->indirect_info->polymorphic)
2177 edge->indirect_info->context.dump (f);
2180 if (instrumentation_clone)
2181 fprintf (f, " Is instrumented version.\n");
2182 else if (instrumented_version)
2183 fprintf (f, " Has instrumented version.\n");
2186 /* Dump call graph node NODE to stderr. */
2188 DEBUG_FUNCTION void
2189 cgraph_node::debug (void)
2191 dump (stderr);
2194 /* Dump the callgraph to file F. */
2196 void
2197 cgraph_node::dump_cgraph (FILE *f)
2199 cgraph_node *node;
2201 fprintf (f, "callgraph:\n\n");
2202 FOR_EACH_FUNCTION (node)
2203 node->dump (f);
2206 /* Return true when the DECL can possibly be inlined. */
2208 bool
2209 cgraph_function_possibly_inlined_p (tree decl)
2211 if (!symtab->global_info_ready)
2212 return !DECL_UNINLINABLE (decl);
2213 return DECL_POSSIBLY_INLINED (decl);
2216 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2217 void
2218 cgraph_node::unnest (void)
2220 cgraph_node **node2 = &origin->nested;
2221 gcc_assert (origin);
2223 while (*node2 != this)
2224 node2 = &(*node2)->next_nested;
2225 *node2 = next_nested;
2226 origin = NULL;
2229 /* Return function availability. See cgraph.h for description of individual
2230 return values. */
2231 enum availability
2232 cgraph_node::get_availability (symtab_node *ref)
2234 if (ref)
2236 cgraph_node *cref = dyn_cast <cgraph_node *> (ref);
2237 if (cref)
2238 ref = cref->global.inlined_to;
2240 enum availability avail;
2241 if (!analyzed)
2242 avail = AVAIL_NOT_AVAILABLE;
2243 else if (local.local)
2244 avail = AVAIL_LOCAL;
2245 else if (global.inlined_to)
2246 avail = AVAIL_AVAILABLE;
2247 else if (transparent_alias)
2248 ultimate_alias_target (&avail, ref);
2249 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
2250 avail = AVAIL_INTERPOSABLE;
2251 else if (!externally_visible)
2252 avail = AVAIL_AVAILABLE;
2253 /* If this is a reference from symbol itself and there are no aliases, we
2254 may be sure that the symbol was not interposed by something else because
2255 the symbol itself would be unreachable otherwise.
2257 Also comdat groups are always resolved in groups. */
2258 else if ((this == ref && !has_aliases_p ())
2259 || (ref && get_comdat_group ()
2260 && get_comdat_group () == ref->get_comdat_group ()))
2261 avail = AVAIL_AVAILABLE;
2262 /* Inline functions are safe to be analyzed even if their symbol can
2263 be overwritten at runtime. It is not meaningful to enforce any sane
2264 behavior on replacing inline function by different body. */
2265 else if (DECL_DECLARED_INLINE_P (decl))
2266 avail = AVAIL_AVAILABLE;
2268 /* If the function can be overwritten, return OVERWRITABLE. Take
2269 care at least of two notable extensions - the COMDAT functions
2270 used to share template instantiations in C++ (this is symmetric
2271 to code cp_cannot_inline_tree_fn and probably shall be shared and
2272 the inlinability hooks completely eliminated). */
2274 else if (decl_replaceable_p (decl) && !DECL_EXTERNAL (decl))
2275 avail = AVAIL_INTERPOSABLE;
2276 else avail = AVAIL_AVAILABLE;
2278 return avail;
2281 /* Worker for cgraph_node_can_be_local_p. */
2282 static bool
2283 cgraph_node_cannot_be_local_p_1 (cgraph_node *node, void *)
2285 return !(!node->force_output
2286 && ((DECL_COMDAT (node->decl)
2287 && !node->forced_by_abi
2288 && !node->used_from_object_file_p ()
2289 && !node->same_comdat_group)
2290 || !node->externally_visible));
2293 /* Return true if cgraph_node can be made local for API change.
2294 Extern inline functions and C++ COMDAT functions can be made local
2295 at the expense of possible code size growth if function is used in multiple
2296 compilation units. */
2297 bool
2298 cgraph_node::can_be_local_p (void)
2300 return (!address_taken
2301 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1,
2302 NULL, true));
2305 /* Call callback on cgraph_node, thunks and aliases associated to cgraph_node.
2306 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
2307 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
2308 skipped. */
2309 bool
2310 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback)
2311 (cgraph_node *, void *),
2312 void *data,
2313 bool include_overwritable,
2314 bool exclude_virtual_thunks)
2316 cgraph_edge *e;
2317 ipa_ref *ref;
2318 enum availability avail = AVAIL_AVAILABLE;
2320 if (include_overwritable
2321 || (avail = get_availability ()) > AVAIL_INTERPOSABLE)
2323 if (callback (this, data))
2324 return true;
2326 FOR_EACH_ALIAS (this, ref)
2328 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2329 if (include_overwritable
2330 || alias->get_availability () > AVAIL_INTERPOSABLE)
2331 if (alias->call_for_symbol_thunks_and_aliases (callback, data,
2332 include_overwritable,
2333 exclude_virtual_thunks))
2334 return true;
2336 if (avail <= AVAIL_INTERPOSABLE)
2337 return false;
2338 for (e = callers; e; e = e->next_caller)
2339 if (e->caller->thunk.thunk_p
2340 && (include_overwritable
2341 || e->caller->get_availability () > AVAIL_INTERPOSABLE)
2342 && !(exclude_virtual_thunks
2343 && e->caller->thunk.virtual_offset_p))
2344 if (e->caller->call_for_symbol_thunks_and_aliases (callback, data,
2345 include_overwritable,
2346 exclude_virtual_thunks))
2347 return true;
2349 return false;
2352 /* Worker to bring NODE local. */
2354 bool
2355 cgraph_node::make_local (cgraph_node *node, void *)
2357 gcc_checking_assert (node->can_be_local_p ());
2358 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2360 node->make_decl_local ();
2361 node->set_section (NULL);
2362 node->set_comdat_group (NULL);
2363 node->externally_visible = false;
2364 node->forced_by_abi = false;
2365 node->local.local = true;
2366 node->set_section (NULL);
2367 node->unique_name = ((node->resolution == LDPR_PREVAILING_DEF_IRONLY
2368 || node->resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
2369 && !flag_incremental_link);
2370 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2371 gcc_assert (node->get_availability () == AVAIL_LOCAL);
2373 return false;
2376 /* Bring cgraph node local. */
2378 void
2379 cgraph_node::make_local (void)
2381 call_for_symbol_thunks_and_aliases (cgraph_node::make_local, NULL, true);
2384 /* Worker to set nothrow flag. */
2386 static void
2387 set_nothrow_flag_1 (cgraph_node *node, bool nothrow, bool non_call,
2388 bool *changed)
2390 cgraph_edge *e;
2392 if (nothrow && !TREE_NOTHROW (node->decl))
2394 /* With non-call exceptions we can't say for sure if other function body
2395 was not possibly optimized to stil throw. */
2396 if (!non_call || node->binds_to_current_def_p ())
2398 TREE_NOTHROW (node->decl) = true;
2399 *changed = true;
2400 for (e = node->callers; e; e = e->next_caller)
2401 e->can_throw_external = false;
2404 else if (!nothrow && TREE_NOTHROW (node->decl))
2406 TREE_NOTHROW (node->decl) = false;
2407 *changed = true;
2409 ipa_ref *ref;
2410 FOR_EACH_ALIAS (node, ref)
2412 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2413 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2414 set_nothrow_flag_1 (alias, nothrow, non_call, changed);
2416 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2417 if (e->caller->thunk.thunk_p
2418 && (!nothrow || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2419 set_nothrow_flag_1 (e->caller, nothrow, non_call, changed);
2422 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2423 if any to NOTHROW. */
2425 bool
2426 cgraph_node::set_nothrow_flag (bool nothrow)
2428 bool changed = false;
2429 bool non_call = opt_for_fn (decl, flag_non_call_exceptions);
2431 if (!nothrow || get_availability () > AVAIL_INTERPOSABLE)
2432 set_nothrow_flag_1 (this, nothrow, non_call, &changed);
2433 else
2435 ipa_ref *ref;
2437 FOR_EACH_ALIAS (this, ref)
2439 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2440 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2441 set_nothrow_flag_1 (alias, nothrow, non_call, &changed);
2444 return changed;
2447 /* Worker to set_const_flag. */
2449 static void
2450 set_const_flag_1 (cgraph_node *node, bool set_const, bool looping,
2451 bool *changed)
2453 /* Static constructors and destructors without a side effect can be
2454 optimized out. */
2455 if (set_const && !looping)
2457 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2459 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2460 *changed = true;
2462 if (DECL_STATIC_DESTRUCTOR (node->decl))
2464 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2465 *changed = true;
2468 if (!set_const)
2470 if (TREE_READONLY (node->decl))
2472 TREE_READONLY (node->decl) = 0;
2473 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2474 *changed = true;
2477 else
2479 /* Consider function:
2481 bool a(int *p)
2483 return *p==*p;
2486 During early optimization we will turn this into:
2488 bool a(int *p)
2490 return true;
2493 Now if this function will be detected as CONST however when interposed
2494 it may end up being just pure. We always must assume the worst
2495 scenario here. */
2496 if (TREE_READONLY (node->decl))
2498 if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2500 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2501 *changed = true;
2504 else if (node->binds_to_current_def_p ())
2506 TREE_READONLY (node->decl) = true;
2507 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2508 DECL_PURE_P (node->decl) = false;
2509 *changed = true;
2511 else
2513 if (dump_file && (dump_flags & TDF_DETAILS))
2514 fprintf (dump_file, "Dropping state to PURE because function does "
2515 "not bind to current def.\n");
2516 if (!DECL_PURE_P (node->decl))
2518 DECL_PURE_P (node->decl) = true;
2519 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2520 *changed = true;
2522 else if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2524 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2525 *changed = true;
2530 ipa_ref *ref;
2531 FOR_EACH_ALIAS (node, ref)
2533 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2534 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2535 set_const_flag_1 (alias, set_const, looping, changed);
2537 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2538 if (e->caller->thunk.thunk_p
2539 && (!set_const || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2541 /* Virtual thunks access virtual offset in the vtable, so they can
2542 only be pure, never const. */
2543 if (set_const
2544 && (e->caller->thunk.virtual_offset_p
2545 || !node->binds_to_current_def_p (e->caller)))
2546 *changed |= e->caller->set_pure_flag (true, looping);
2547 else
2548 set_const_flag_1 (e->caller, set_const, looping, changed);
2552 /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST.
2553 If SET_CONST if false, clear the flag.
2555 When setting the flag be careful about possible interposition and
2556 do not set the flag for functions that can be interposet and set pure
2557 flag for functions that can bind to other definition.
2559 Return true if any change was done. */
2561 bool
2562 cgraph_node::set_const_flag (bool set_const, bool looping)
2564 bool changed = false;
2565 if (!set_const || get_availability () > AVAIL_INTERPOSABLE)
2566 set_const_flag_1 (this, set_const, looping, &changed);
2567 else
2569 ipa_ref *ref;
2571 FOR_EACH_ALIAS (this, ref)
2573 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2574 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2575 set_const_flag_1 (alias, set_const, looping, &changed);
2578 return changed;
2581 /* Info used by set_pure_flag_1. */
2583 struct set_pure_flag_info
2585 bool pure;
2586 bool looping;
2587 bool changed;
2590 /* Worker to set_pure_flag. */
2592 static bool
2593 set_pure_flag_1 (cgraph_node *node, void *data)
2595 struct set_pure_flag_info *info = (struct set_pure_flag_info *)data;
2596 /* Static constructors and destructors without a side effect can be
2597 optimized out. */
2598 if (info->pure && !info->looping)
2600 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2602 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2603 info->changed = true;
2605 if (DECL_STATIC_DESTRUCTOR (node->decl))
2607 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2608 info->changed = true;
2611 if (info->pure)
2613 if (!DECL_PURE_P (node->decl) && !TREE_READONLY (node->decl))
2615 DECL_PURE_P (node->decl) = true;
2616 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = info->looping;
2617 info->changed = true;
2619 else if (DECL_LOOPING_CONST_OR_PURE_P (node->decl)
2620 && !info->looping)
2622 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2623 info->changed = true;
2626 else
2628 if (DECL_PURE_P (node->decl))
2630 DECL_PURE_P (node->decl) = false;
2631 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2632 info->changed = true;
2635 return false;
2638 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2639 if any to PURE.
2641 When setting the flag, be careful about possible interposition.
2642 Return true if any change was done. */
2644 bool
2645 cgraph_node::set_pure_flag (bool pure, bool looping)
2647 struct set_pure_flag_info info = {pure, looping, false};
2648 if (!pure)
2649 looping = false;
2650 call_for_symbol_thunks_and_aliases (set_pure_flag_1, &info, !pure, true);
2651 return info.changed;
2654 /* Return true when cgraph_node can not return or throw and thus
2655 it is safe to ignore its side effects for IPA analysis. */
2657 bool
2658 cgraph_node::cannot_return_p (void)
2660 int flags = flags_from_decl_or_type (decl);
2661 if (!opt_for_fn (decl, flag_exceptions))
2662 return (flags & ECF_NORETURN) != 0;
2663 else
2664 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2665 == (ECF_NORETURN | ECF_NOTHROW));
2668 /* Return true when call of edge can not lead to return from caller
2669 and thus it is safe to ignore its side effects for IPA analysis
2670 when computing side effects of the caller.
2671 FIXME: We could actually mark all edges that have no reaching
2672 patch to the exit block or throw to get better results. */
2673 bool
2674 cgraph_edge::cannot_lead_to_return_p (void)
2676 if (caller->cannot_return_p ())
2677 return true;
2678 if (indirect_unknown_callee)
2680 int flags = indirect_info->ecf_flags;
2681 if (!opt_for_fn (caller->decl, flag_exceptions))
2682 return (flags & ECF_NORETURN) != 0;
2683 else
2684 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2685 == (ECF_NORETURN | ECF_NOTHROW));
2687 else
2688 return callee->cannot_return_p ();
2691 /* Return true if the call can be hot. */
2693 bool
2694 cgraph_edge::maybe_hot_p (void)
2696 /* TODO: Export profile_status from cfun->cfg to cgraph_node. */
2697 if (profile_info
2698 && opt_for_fn (caller->decl, flag_branch_probabilities)
2699 && !maybe_hot_count_p (NULL, count))
2700 return false;
2701 if (caller->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
2702 || (callee
2703 && callee->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED))
2704 return false;
2705 if (caller->frequency > NODE_FREQUENCY_UNLIKELY_EXECUTED
2706 && (callee
2707 && callee->frequency <= NODE_FREQUENCY_EXECUTED_ONCE))
2708 return false;
2709 if (opt_for_fn (caller->decl, optimize_size))
2710 return false;
2711 if (caller->frequency == NODE_FREQUENCY_HOT)
2712 return true;
2713 if (caller->frequency == NODE_FREQUENCY_EXECUTED_ONCE
2714 && frequency < CGRAPH_FREQ_BASE * 3 / 2)
2715 return false;
2716 if (opt_for_fn (caller->decl, flag_guess_branch_prob))
2718 if (PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION) == 0
2719 || frequency <= (CGRAPH_FREQ_BASE
2720 / PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION)))
2721 return false;
2723 return true;
2726 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2728 static bool
2729 nonremovable_p (cgraph_node *node, void *)
2731 return !node->can_remove_if_no_direct_calls_and_refs_p ();
2734 /* Return true if whole comdat group can be removed if there are no direct
2735 calls to THIS. */
2737 bool
2738 cgraph_node::can_remove_if_no_direct_calls_p (bool will_inline)
2740 struct ipa_ref *ref;
2742 /* For local symbols or non-comdat group it is the same as
2743 can_remove_if_no_direct_calls_p. */
2744 if (!externally_visible || !same_comdat_group)
2746 if (DECL_EXTERNAL (decl))
2747 return true;
2748 if (address_taken)
2749 return false;
2750 return !call_for_symbol_and_aliases (nonremovable_p, NULL, true);
2753 if (will_inline && address_taken)
2754 return false;
2756 /* Otheriwse check if we can remove the symbol itself and then verify
2757 that only uses of the comdat groups are direct call to THIS
2758 or its aliases. */
2759 if (!can_remove_if_no_direct_calls_and_refs_p ())
2760 return false;
2762 /* Check that all refs come from within the comdat group. */
2763 for (int i = 0; iterate_referring (i, ref); i++)
2764 if (ref->referring->get_comdat_group () != get_comdat_group ())
2765 return false;
2767 struct cgraph_node *target = ultimate_alias_target ();
2768 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2769 next != this; next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2771 if (!externally_visible)
2772 continue;
2773 if (!next->alias
2774 && !next->can_remove_if_no_direct_calls_and_refs_p ())
2775 return false;
2777 /* If we see different symbol than THIS, be sure to check calls. */
2778 if (next->ultimate_alias_target () != target)
2779 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2780 if (e->caller->get_comdat_group () != get_comdat_group ()
2781 || will_inline)
2782 return false;
2784 /* If function is not being inlined, we care only about
2785 references outside of the comdat group. */
2786 if (!will_inline)
2787 for (int i = 0; next->iterate_referring (i, ref); i++)
2788 if (ref->referring->get_comdat_group () != get_comdat_group ())
2789 return false;
2791 return true;
2794 /* Return true when function cgraph_node can be expected to be removed
2795 from program when direct calls in this compilation unit are removed.
2797 As a special case COMDAT functions are
2798 cgraph_can_remove_if_no_direct_calls_p while the are not
2799 cgraph_only_called_directly_p (it is possible they are called from other
2800 unit)
2802 This function behaves as cgraph_only_called_directly_p because eliminating
2803 all uses of COMDAT function does not make it necessarily disappear from
2804 the program unless we are compiling whole program or we do LTO. In this
2805 case we know we win since dynamic linking will not really discard the
2806 linkonce section. */
2808 bool
2809 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p
2810 (bool will_inline)
2812 gcc_assert (!global.inlined_to);
2813 if (DECL_EXTERNAL (decl))
2814 return true;
2816 if (!in_lto_p && !flag_whole_program)
2818 /* If the symbol is in comdat group, we need to verify that whole comdat
2819 group becomes unreachable. Technically we could skip references from
2820 within the group, too. */
2821 if (!only_called_directly_p ())
2822 return false;
2823 if (same_comdat_group && externally_visible)
2825 struct cgraph_node *target = ultimate_alias_target ();
2827 if (will_inline && address_taken)
2828 return true;
2829 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2830 next != this;
2831 next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2833 if (!externally_visible)
2834 continue;
2835 if (!next->alias
2836 && !next->only_called_directly_p ())
2837 return false;
2839 /* If we see different symbol than THIS,
2840 be sure to check calls. */
2841 if (next->ultimate_alias_target () != target)
2842 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2843 if (e->caller->get_comdat_group () != get_comdat_group ()
2844 || will_inline)
2845 return false;
2848 return true;
2850 else
2851 return can_remove_if_no_direct_calls_p (will_inline);
2855 /* Worker for cgraph_only_called_directly_p. */
2857 static bool
2858 cgraph_not_only_called_directly_p_1 (cgraph_node *node, void *)
2860 return !node->only_called_directly_or_aliased_p ();
2863 /* Return true when function cgraph_node and all its aliases are only called
2864 directly.
2865 i.e. it is not externally visible, address was not taken and
2866 it is not used in any other non-standard way. */
2868 bool
2869 cgraph_node::only_called_directly_p (void)
2871 gcc_assert (ultimate_alias_target () == this);
2872 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1,
2873 NULL, true);
2877 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2879 static bool
2880 collect_callers_of_node_1 (cgraph_node *node, void *data)
2882 vec<cgraph_edge *> *redirect_callers = (vec<cgraph_edge *> *)data;
2883 cgraph_edge *cs;
2884 enum availability avail;
2885 node->ultimate_alias_target (&avail);
2887 if (avail > AVAIL_INTERPOSABLE)
2888 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
2889 if (!cs->indirect_inlining_edge
2890 && !cs->caller->thunk.thunk_p)
2891 redirect_callers->safe_push (cs);
2892 return false;
2895 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2896 cgraph_node (i.e. are not overwritable). */
2898 vec<cgraph_edge *>
2899 cgraph_node::collect_callers (void)
2901 vec<cgraph_edge *> redirect_callers = vNULL;
2902 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1,
2903 &redirect_callers, false);
2904 return redirect_callers;
2907 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. */
2909 static bool
2910 clone_of_p (cgraph_node *node, cgraph_node *node2)
2912 bool skipped_thunk = false;
2913 node = node->ultimate_alias_target ();
2914 node2 = node2->ultimate_alias_target ();
2916 /* There are no virtual clones of thunks so check former_clone_of or if we
2917 might have skipped thunks because this adjustments are no longer
2918 necessary. */
2919 while (node->thunk.thunk_p)
2921 if (node2->former_clone_of == node->decl)
2922 return true;
2923 if (!node->thunk.this_adjusting)
2924 return false;
2925 node = node->callees->callee->ultimate_alias_target ();
2926 skipped_thunk = true;
2929 if (skipped_thunk)
2931 if (!node2->clone.args_to_skip
2932 || !bitmap_bit_p (node2->clone.args_to_skip, 0))
2933 return false;
2934 if (node2->former_clone_of == node->decl)
2935 return true;
2936 else if (!node2->clone_of)
2937 return false;
2940 while (node != node2 && node2)
2941 node2 = node2->clone_of;
2942 return node2 != NULL;
2945 /* Verify edge count and frequency. */
2947 bool
2948 cgraph_edge::verify_count_and_frequency ()
2950 bool error_found = false;
2951 if (count < 0)
2953 error ("caller edge count is negative");
2954 error_found = true;
2956 if (frequency < 0)
2958 error ("caller edge frequency is negative");
2959 error_found = true;
2961 if (frequency > CGRAPH_FREQ_MAX)
2963 error ("caller edge frequency is too large");
2964 error_found = true;
2966 return error_found;
2969 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
2970 static void
2971 cgraph_debug_gimple_stmt (function *this_cfun, gimple *stmt)
2973 bool fndecl_was_null = false;
2974 /* debug_gimple_stmt needs correct cfun */
2975 if (cfun != this_cfun)
2976 set_cfun (this_cfun);
2977 /* ...and an actual current_function_decl */
2978 if (!current_function_decl)
2980 current_function_decl = this_cfun->decl;
2981 fndecl_was_null = true;
2983 debug_gimple_stmt (stmt);
2984 if (fndecl_was_null)
2985 current_function_decl = NULL;
2988 /* Verify that call graph edge corresponds to DECL from the associated
2989 statement. Return true if the verification should fail. */
2991 bool
2992 cgraph_edge::verify_corresponds_to_fndecl (tree decl)
2994 cgraph_node *node;
2996 if (!decl || callee->global.inlined_to)
2997 return false;
2998 if (symtab->state == LTO_STREAMING)
2999 return false;
3000 node = cgraph_node::get (decl);
3002 /* We do not know if a node from a different partition is an alias or what it
3003 aliases and therefore cannot do the former_clone_of check reliably. When
3004 body_removed is set, we have lost all information about what was alias or
3005 thunk of and also cannot proceed. */
3006 if (!node
3007 || node->body_removed
3008 || node->in_other_partition
3009 || callee->icf_merged
3010 || callee->in_other_partition)
3011 return false;
3013 node = node->ultimate_alias_target ();
3015 /* Optimizers can redirect unreachable calls or calls triggering undefined
3016 behavior to builtin_unreachable. */
3017 if (DECL_BUILT_IN_CLASS (callee->decl) == BUILT_IN_NORMAL
3018 && DECL_FUNCTION_CODE (callee->decl) == BUILT_IN_UNREACHABLE)
3019 return false;
3021 if (callee->former_clone_of != node->decl
3022 && (node != callee->ultimate_alias_target ())
3023 && !clone_of_p (node, callee))
3024 return true;
3025 else
3026 return false;
3029 /* Verify cgraph nodes of given cgraph node. */
3030 DEBUG_FUNCTION void
3031 cgraph_node::verify_node (void)
3033 cgraph_edge *e;
3034 function *this_cfun = DECL_STRUCT_FUNCTION (decl);
3035 basic_block this_block;
3036 gimple_stmt_iterator gsi;
3037 bool error_found = false;
3039 if (seen_error ())
3040 return;
3042 timevar_push (TV_CGRAPH_VERIFY);
3043 error_found |= verify_base ();
3044 for (e = callees; e; e = e->next_callee)
3045 if (e->aux)
3047 error ("aux field set for edge %s->%s",
3048 identifier_to_locale (e->caller->name ()),
3049 identifier_to_locale (e->callee->name ()));
3050 error_found = true;
3052 if (count < 0)
3054 error ("execution count is negative");
3055 error_found = true;
3057 if (global.inlined_to && same_comdat_group)
3059 error ("inline clone in same comdat group list");
3060 error_found = true;
3062 if (!definition && !in_other_partition && local.local)
3064 error ("local symbols must be defined");
3065 error_found = true;
3067 if (global.inlined_to && externally_visible)
3069 error ("externally visible inline clone");
3070 error_found = true;
3072 if (global.inlined_to && address_taken)
3074 error ("inline clone with address taken");
3075 error_found = true;
3077 if (global.inlined_to && force_output)
3079 error ("inline clone is forced to output");
3080 error_found = true;
3082 for (e = indirect_calls; e; e = e->next_callee)
3084 if (e->aux)
3086 error ("aux field set for indirect edge from %s",
3087 identifier_to_locale (e->caller->name ()));
3088 error_found = true;
3090 if (!e->indirect_unknown_callee
3091 || !e->indirect_info)
3093 error ("An indirect edge from %s is not marked as indirect or has "
3094 "associated indirect_info, the corresponding statement is: ",
3095 identifier_to_locale (e->caller->name ()));
3096 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3097 error_found = true;
3100 bool check_comdat = comdat_local_p ();
3101 for (e = callers; e; e = e->next_caller)
3103 if (e->verify_count_and_frequency ())
3104 error_found = true;
3105 if (check_comdat
3106 && !in_same_comdat_group_p (e->caller))
3108 error ("comdat-local function called by %s outside its comdat",
3109 identifier_to_locale (e->caller->name ()));
3110 error_found = true;
3112 if (!e->inline_failed)
3114 if (global.inlined_to
3115 != (e->caller->global.inlined_to
3116 ? e->caller->global.inlined_to : e->caller))
3118 error ("inlined_to pointer is wrong");
3119 error_found = true;
3121 if (callers->next_caller)
3123 error ("multiple inline callers");
3124 error_found = true;
3127 else
3128 if (global.inlined_to)
3130 error ("inlined_to pointer set for noninline callers");
3131 error_found = true;
3134 for (e = callees; e; e = e->next_callee)
3136 if (e->verify_count_and_frequency ())
3137 error_found = true;
3138 if (gimple_has_body_p (e->caller->decl)
3139 && !e->caller->global.inlined_to
3140 && !e->speculative
3141 /* Optimized out calls are redirected to __builtin_unreachable. */
3142 && (e->frequency
3143 || ! e->callee->decl
3144 || DECL_BUILT_IN_CLASS (e->callee->decl) != BUILT_IN_NORMAL
3145 || DECL_FUNCTION_CODE (e->callee->decl) != BUILT_IN_UNREACHABLE)
3146 && (e->frequency
3147 != compute_call_stmt_bb_frequency (e->caller->decl,
3148 gimple_bb (e->call_stmt))))
3150 error ("caller edge frequency %i does not match BB frequency %i",
3151 e->frequency,
3152 compute_call_stmt_bb_frequency (e->caller->decl,
3153 gimple_bb (e->call_stmt)));
3154 error_found = true;
3157 for (e = indirect_calls; e; e = e->next_callee)
3159 if (e->verify_count_and_frequency ())
3160 error_found = true;
3161 if (gimple_has_body_p (e->caller->decl)
3162 && !e->caller->global.inlined_to
3163 && !e->speculative
3164 && (e->frequency
3165 != compute_call_stmt_bb_frequency (e->caller->decl,
3166 gimple_bb (e->call_stmt))))
3168 error ("indirect call frequency %i does not match BB frequency %i",
3169 e->frequency,
3170 compute_call_stmt_bb_frequency (e->caller->decl,
3171 gimple_bb (e->call_stmt)));
3172 error_found = true;
3175 if (!callers && global.inlined_to)
3177 error ("inlined_to pointer is set but no predecessors found");
3178 error_found = true;
3180 if (global.inlined_to == this)
3182 error ("inlined_to pointer refers to itself");
3183 error_found = true;
3186 if (clone_of)
3188 cgraph_node *n;
3189 for (n = clone_of->clones; n; n = n->next_sibling_clone)
3190 if (n == this)
3191 break;
3192 if (!n)
3194 error ("cgraph_node has wrong clone_of");
3195 error_found = true;
3198 if (clones)
3200 cgraph_node *n;
3201 for (n = clones; n; n = n->next_sibling_clone)
3202 if (n->clone_of != this)
3203 break;
3204 if (n)
3206 error ("cgraph_node has wrong clone list");
3207 error_found = true;
3210 if ((prev_sibling_clone || next_sibling_clone) && !clone_of)
3212 error ("cgraph_node is in clone list but it is not clone");
3213 error_found = true;
3215 if (!prev_sibling_clone && clone_of && clone_of->clones != this)
3217 error ("cgraph_node has wrong prev_clone pointer");
3218 error_found = true;
3220 if (prev_sibling_clone && prev_sibling_clone->next_sibling_clone != this)
3222 error ("double linked list of clones corrupted");
3223 error_found = true;
3226 if (analyzed && alias)
3228 bool ref_found = false;
3229 int i;
3230 ipa_ref *ref = NULL;
3232 if (callees)
3234 error ("Alias has call edges");
3235 error_found = true;
3237 for (i = 0; iterate_reference (i, ref); i++)
3238 if (ref->use == IPA_REF_CHKP)
3240 else if (ref->use != IPA_REF_ALIAS)
3242 error ("Alias has non-alias reference");
3243 error_found = true;
3245 else if (ref_found)
3247 error ("Alias has more than one alias reference");
3248 error_found = true;
3250 else
3251 ref_found = true;
3252 if (!ref_found)
3254 error ("Analyzed alias has no reference");
3255 error_found = true;
3259 /* Check instrumented version reference. */
3260 if (instrumented_version
3261 && instrumented_version->instrumented_version != this)
3263 error ("Instrumentation clone does not reference original node");
3264 error_found = true;
3267 /* Cannot have orig_decl for not instrumented nodes. */
3268 if (!instrumentation_clone && orig_decl)
3270 error ("Not instrumented node has non-NULL original declaration");
3271 error_found = true;
3274 /* If original not instrumented node still exists then we may check
3275 original declaration is set properly. */
3276 if (instrumented_version
3277 && orig_decl
3278 && orig_decl != instrumented_version->decl)
3280 error ("Instrumented node has wrong original declaration");
3281 error_found = true;
3284 /* Check all nodes have chkp reference to their instrumented versions. */
3285 if (analyzed
3286 && instrumented_version
3287 && !instrumentation_clone)
3289 bool ref_found = false;
3290 int i;
3291 struct ipa_ref *ref;
3293 for (i = 0; iterate_reference (i, ref); i++)
3294 if (ref->use == IPA_REF_CHKP)
3296 if (ref_found)
3298 error ("Node has more than one chkp reference");
3299 error_found = true;
3301 if (ref->referred != instrumented_version)
3303 error ("Wrong node is referenced with chkp reference");
3304 error_found = true;
3306 ref_found = true;
3309 if (!ref_found)
3311 error ("Analyzed node has no reference to instrumented version");
3312 error_found = true;
3316 if (instrumentation_clone
3317 && DECL_BUILT_IN_CLASS (decl) == NOT_BUILT_IN)
3319 tree name = DECL_ASSEMBLER_NAME (decl);
3320 tree orig_name = DECL_ASSEMBLER_NAME (orig_decl);
3322 if (!IDENTIFIER_TRANSPARENT_ALIAS (name)
3323 || TREE_CHAIN (name) != orig_name)
3325 error ("Alias chain for instrumented node is broken");
3326 error_found = true;
3330 if (analyzed && thunk.thunk_p)
3332 if (!callees)
3334 error ("No edge out of thunk node");
3335 error_found = true;
3337 else if (callees->next_callee)
3339 error ("More than one edge out of thunk node");
3340 error_found = true;
3342 if (gimple_has_body_p (decl) && !global.inlined_to)
3344 error ("Thunk is not supposed to have body");
3345 error_found = true;
3347 if (thunk.add_pointer_bounds_args
3348 && !instrumented_version->semantically_equivalent_p (callees->callee))
3350 error ("Instrumentation thunk has wrong edge callee");
3351 error_found = true;
3354 else if (analyzed && gimple_has_body_p (decl)
3355 && !TREE_ASM_WRITTEN (decl)
3356 && (!DECL_EXTERNAL (decl) || global.inlined_to)
3357 && !flag_wpa)
3359 if (this_cfun->cfg)
3361 hash_set<gimple *> stmts;
3362 int i;
3363 ipa_ref *ref = NULL;
3365 /* Reach the trees by walking over the CFG, and note the
3366 enclosing basic-blocks in the call edges. */
3367 FOR_EACH_BB_FN (this_block, this_cfun)
3369 for (gsi = gsi_start_phis (this_block);
3370 !gsi_end_p (gsi); gsi_next (&gsi))
3371 stmts.add (gsi_stmt (gsi));
3372 for (gsi = gsi_start_bb (this_block);
3373 !gsi_end_p (gsi);
3374 gsi_next (&gsi))
3376 gimple *stmt = gsi_stmt (gsi);
3377 stmts.add (stmt);
3378 if (is_gimple_call (stmt))
3380 cgraph_edge *e = get_edge (stmt);
3381 tree decl = gimple_call_fndecl (stmt);
3382 if (e)
3384 if (e->aux)
3386 error ("shared call_stmt:");
3387 cgraph_debug_gimple_stmt (this_cfun, stmt);
3388 error_found = true;
3390 if (!e->indirect_unknown_callee)
3392 if (e->verify_corresponds_to_fndecl (decl))
3394 error ("edge points to wrong declaration:");
3395 debug_tree (e->callee->decl);
3396 fprintf (stderr," Instead of:");
3397 debug_tree (decl);
3398 error_found = true;
3401 else if (decl)
3403 error ("an indirect edge with unknown callee "
3404 "corresponding to a call_stmt with "
3405 "a known declaration:");
3406 error_found = true;
3407 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3409 e->aux = (void *)1;
3411 else if (decl)
3413 error ("missing callgraph edge for call stmt:");
3414 cgraph_debug_gimple_stmt (this_cfun, stmt);
3415 error_found = true;
3420 for (i = 0; iterate_reference (i, ref); i++)
3421 if (ref->stmt && !stmts.contains (ref->stmt))
3423 error ("reference to dead statement");
3424 cgraph_debug_gimple_stmt (this_cfun, ref->stmt);
3425 error_found = true;
3428 else
3429 /* No CFG available?! */
3430 gcc_unreachable ();
3432 for (e = callees; e; e = e->next_callee)
3434 if (!e->aux)
3436 error ("edge %s->%s has no corresponding call_stmt",
3437 identifier_to_locale (e->caller->name ()),
3438 identifier_to_locale (e->callee->name ()));
3439 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3440 error_found = true;
3442 e->aux = 0;
3444 for (e = indirect_calls; e; e = e->next_callee)
3446 if (!e->aux && !e->speculative)
3448 error ("an indirect edge from %s has no corresponding call_stmt",
3449 identifier_to_locale (e->caller->name ()));
3450 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3451 error_found = true;
3453 e->aux = 0;
3456 if (error_found)
3458 dump (stderr);
3459 internal_error ("verify_cgraph_node failed");
3461 timevar_pop (TV_CGRAPH_VERIFY);
3464 /* Verify whole cgraph structure. */
3465 DEBUG_FUNCTION void
3466 cgraph_node::verify_cgraph_nodes (void)
3468 cgraph_node *node;
3470 if (seen_error ())
3471 return;
3473 FOR_EACH_FUNCTION (node)
3474 node->verify ();
3477 /* Walk the alias chain to return the function cgraph_node is alias of.
3478 Walk through thunks, too.
3479 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3480 When REF is non-NULL, assume that reference happens in symbol REF
3481 when determining the availability. */
3483 cgraph_node *
3484 cgraph_node::function_symbol (enum availability *availability,
3485 struct symtab_node *ref)
3487 cgraph_node *node = ultimate_alias_target (availability, ref);
3489 while (node->thunk.thunk_p)
3491 ref = node;
3492 node = node->callees->callee;
3493 if (availability)
3495 enum availability a;
3496 a = node->get_availability (ref);
3497 if (a < *availability)
3498 *availability = a;
3500 node = node->ultimate_alias_target (availability, ref);
3502 return node;
3505 /* Walk the alias chain to return the function cgraph_node is alias of.
3506 Walk through non virtual thunks, too. Thus we return either a function
3507 or a virtual thunk node.
3508 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3509 When REF is non-NULL, assume that reference happens in symbol REF
3510 when determining the availability. */
3512 cgraph_node *
3513 cgraph_node::function_or_virtual_thunk_symbol
3514 (enum availability *availability,
3515 struct symtab_node *ref)
3517 cgraph_node *node = ultimate_alias_target (availability, ref);
3519 while (node->thunk.thunk_p && !node->thunk.virtual_offset_p)
3521 ref = node;
3522 node = node->callees->callee;
3523 if (availability)
3525 enum availability a;
3526 a = node->get_availability (ref);
3527 if (a < *availability)
3528 *availability = a;
3530 node = node->ultimate_alias_target (availability, ref);
3532 return node;
3535 /* When doing LTO, read cgraph_node's body from disk if it is not already
3536 present. */
3538 bool
3539 cgraph_node::get_untransformed_body (void)
3541 lto_file_decl_data *file_data;
3542 const char *data, *name;
3543 size_t len;
3544 tree decl = this->decl;
3546 /* Check if body is already there. Either we have gimple body or
3547 the function is thunk and in that case we set DECL_ARGUMENTS. */
3548 if (DECL_ARGUMENTS (decl) || gimple_has_body_p (decl))
3549 return false;
3551 gcc_assert (in_lto_p && !DECL_RESULT (decl));
3553 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3555 file_data = lto_file_data;
3556 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
3558 /* We may have renamed the declaration, e.g., a static function. */
3559 name = lto_get_decl_name_mapping (file_data, name);
3560 struct lto_in_decl_state *decl_state
3561 = lto_get_function_in_decl_state (file_data, decl);
3563 data = lto_get_section_data (file_data, LTO_section_function_body,
3564 name, &len, decl_state->compressed);
3565 if (!data)
3566 fatal_error (input_location, "%s: section %s is missing",
3567 file_data->file_name,
3568 name);
3570 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
3572 lto_input_function_body (file_data, this, data);
3573 lto_stats.num_function_bodies++;
3574 lto_free_section_data (file_data, LTO_section_function_body, name,
3575 data, len, decl_state->compressed);
3576 lto_free_function_in_decl_state_for_node (this);
3577 /* Keep lto file data so ipa-inline-analysis knows about cross module
3578 inlining. */
3580 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
3582 return true;
3585 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3586 if it is not already present. When some IPA transformations are scheduled,
3587 apply them. */
3589 bool
3590 cgraph_node::get_body (void)
3592 bool updated;
3594 updated = get_untransformed_body ();
3596 /* Getting transformed body makes no sense for inline clones;
3597 we should never use this on real clones because they are materialized
3598 early.
3599 TODO: Materializing clones here will likely lead to smaller LTRANS
3600 footprint. */
3601 gcc_assert (!global.inlined_to && !clone_of);
3602 if (ipa_transforms_to_apply.exists ())
3604 opt_pass *saved_current_pass = current_pass;
3605 FILE *saved_dump_file = dump_file;
3606 const char *saved_dump_file_name = dump_file_name;
3607 int saved_dump_flags = dump_flags;
3608 dump_file_name = NULL;
3609 dump_file = NULL;
3611 push_cfun (DECL_STRUCT_FUNCTION (decl));
3612 execute_all_ipa_transforms ();
3613 cgraph_edge::rebuild_edges ();
3614 free_dominance_info (CDI_DOMINATORS);
3615 free_dominance_info (CDI_POST_DOMINATORS);
3616 pop_cfun ();
3617 updated = true;
3619 current_pass = saved_current_pass;
3620 dump_file = saved_dump_file;
3621 dump_file_name = saved_dump_file_name;
3622 dump_flags = saved_dump_flags;
3624 return updated;
3627 /* Return the DECL_STRUCT_FUNCTION of the function. */
3629 struct function *
3630 cgraph_node::get_fun (void)
3632 cgraph_node *node = this;
3633 struct function *fun = DECL_STRUCT_FUNCTION (node->decl);
3635 while (!fun && node->clone_of)
3637 node = node->clone_of;
3638 fun = DECL_STRUCT_FUNCTION (node->decl);
3641 return fun;
3644 /* Verify if the type of the argument matches that of the function
3645 declaration. If we cannot verify this or there is a mismatch,
3646 return false. */
3648 static bool
3649 gimple_check_call_args (gimple *stmt, tree fndecl, bool args_count_match)
3651 tree parms, p;
3652 unsigned int i, nargs;
3654 /* Calls to internal functions always match their signature. */
3655 if (gimple_call_internal_p (stmt))
3656 return true;
3658 nargs = gimple_call_num_args (stmt);
3660 /* Get argument types for verification. */
3661 if (fndecl)
3662 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
3663 else
3664 parms = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
3666 /* Verify if the type of the argument matches that of the function
3667 declaration. If we cannot verify this or there is a mismatch,
3668 return false. */
3669 if (fndecl && DECL_ARGUMENTS (fndecl))
3671 for (i = 0, p = DECL_ARGUMENTS (fndecl);
3672 i < nargs;
3673 i++, p = DECL_CHAIN (p))
3675 tree arg;
3676 /* We cannot distinguish a varargs function from the case
3677 of excess parameters, still deferring the inlining decision
3678 to the callee is possible. */
3679 if (!p)
3680 break;
3681 arg = gimple_call_arg (stmt, i);
3682 if (p == error_mark_node
3683 || DECL_ARG_TYPE (p) == error_mark_node
3684 || arg == error_mark_node
3685 || (!types_compatible_p (DECL_ARG_TYPE (p), TREE_TYPE (arg))
3686 && !fold_convertible_p (DECL_ARG_TYPE (p), arg)))
3687 return false;
3689 if (args_count_match && p)
3690 return false;
3692 else if (parms)
3694 for (i = 0, p = parms; i < nargs; i++, p = TREE_CHAIN (p))
3696 tree arg;
3697 /* If this is a varargs function defer inlining decision
3698 to callee. */
3699 if (!p)
3700 break;
3701 arg = gimple_call_arg (stmt, i);
3702 if (TREE_VALUE (p) == error_mark_node
3703 || arg == error_mark_node
3704 || TREE_CODE (TREE_VALUE (p)) == VOID_TYPE
3705 || (!types_compatible_p (TREE_VALUE (p), TREE_TYPE (arg))
3706 && !fold_convertible_p (TREE_VALUE (p), arg)))
3707 return false;
3710 else
3712 if (nargs != 0)
3713 return false;
3715 return true;
3718 /* Verify if the type of the argument and lhs of CALL_STMT matches
3719 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3720 true, the arg count needs to be the same.
3721 If we cannot verify this or there is a mismatch, return false. */
3723 bool
3724 gimple_check_call_matching_types (gimple *call_stmt, tree callee,
3725 bool args_count_match)
3727 tree lhs;
3729 if ((DECL_RESULT (callee)
3730 && !DECL_BY_REFERENCE (DECL_RESULT (callee))
3731 && (lhs = gimple_call_lhs (call_stmt)) != NULL_TREE
3732 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee)),
3733 TREE_TYPE (lhs))
3734 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee)), lhs))
3735 || !gimple_check_call_args (call_stmt, callee, args_count_match))
3736 return false;
3737 return true;
3740 /* Reset all state within cgraph.c so that we can rerun the compiler
3741 within the same process. For use by toplev::finalize. */
3743 void
3744 cgraph_c_finalize (void)
3746 symtab = NULL;
3748 x_cgraph_nodes_queue = NULL;
3750 cgraph_fnver_htab = NULL;
3751 version_info_node = NULL;
3754 /* A wroker for call_for_symbol_and_aliases. */
3756 bool
3757 cgraph_node::call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
3758 void *),
3759 void *data,
3760 bool include_overwritable)
3762 ipa_ref *ref;
3763 FOR_EACH_ALIAS (this, ref)
3765 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
3766 if (include_overwritable
3767 || alias->get_availability () > AVAIL_INTERPOSABLE)
3768 if (alias->call_for_symbol_and_aliases (callback, data,
3769 include_overwritable))
3770 return true;
3772 return false;
3775 /* Return true if NODE has thunk. */
3777 bool
3778 cgraph_node::has_thunk_p (cgraph_node *node, void *)
3780 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
3781 if (e->caller->thunk.thunk_p)
3782 return true;
3783 return false;
3786 #include "gt-cgraph.h"