[PATCH 2/2] S/390: Implement "target" attribute.
[official-gcc.git] / gcc / cgraph.c
blob3ee1907c33569a89f606b8a29e99e7b3f9ed9afa
1 /* Callgraph handling code.
2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This file contains basic routines manipulating call graph
23 The call-graph is a data structure designed for intra-procedural optimization.
24 It represents a multi-graph where nodes are functions and edges are call sites. */
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "backend.h"
30 #include "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 "ipa-prop.h"
53 #include "ipa-inline.h"
54 #include "cfgloop.h"
55 #include "gimple-pretty-print.h"
56 #include "tree-dfa.h"
57 #include "profile.h"
58 #include "params.h"
59 #include "tree-chkp.h"
60 #include "context.h"
62 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
63 #include "tree-pass.h"
65 /* Queue of cgraph nodes scheduled to be lowered. */
66 symtab_node *x_cgraph_nodes_queue;
67 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
69 /* Symbol table global context. */
70 symbol_table *symtab;
72 /* List of hooks triggered on cgraph_edge events. */
73 struct cgraph_edge_hook_list {
74 cgraph_edge_hook hook;
75 void *data;
76 struct cgraph_edge_hook_list *next;
79 /* List of hooks triggered on cgraph_node events. */
80 struct cgraph_node_hook_list {
81 cgraph_node_hook hook;
82 void *data;
83 struct cgraph_node_hook_list *next;
86 /* List of hooks triggered on events involving two cgraph_edges. */
87 struct cgraph_2edge_hook_list {
88 cgraph_2edge_hook hook;
89 void *data;
90 struct cgraph_2edge_hook_list *next;
93 /* List of hooks triggered on events involving two cgraph_nodes. */
94 struct cgraph_2node_hook_list {
95 cgraph_2node_hook hook;
96 void *data;
97 struct cgraph_2node_hook_list *next;
100 /* Hash descriptor for cgraph_function_version_info. */
102 struct function_version_hasher : ggc_ptr_hash<cgraph_function_version_info>
104 static hashval_t hash (cgraph_function_version_info *);
105 static bool equal (cgraph_function_version_info *,
106 cgraph_function_version_info *);
109 /* Map a cgraph_node to cgraph_function_version_info using this htab.
110 The cgraph_function_version_info has a THIS_NODE field that is the
111 corresponding cgraph_node.. */
113 static GTY(()) hash_table<function_version_hasher> *cgraph_fnver_htab = NULL;
115 /* Hash function for cgraph_fnver_htab. */
116 hashval_t
117 function_version_hasher::hash (cgraph_function_version_info *ptr)
119 int uid = ptr->this_node->uid;
120 return (hashval_t)(uid);
123 /* eq function for cgraph_fnver_htab. */
124 bool
125 function_version_hasher::equal (cgraph_function_version_info *n1,
126 cgraph_function_version_info *n2)
128 return n1->this_node->uid == n2->this_node->uid;
131 /* Mark as GC root all allocated nodes. */
132 static GTY(()) struct cgraph_function_version_info *
133 version_info_node = NULL;
135 /* Return true if NODE's address can be compared. */
137 bool
138 symtab_node::address_can_be_compared_p ()
140 /* Address of virtual tables and functions is never compared. */
141 if (DECL_VIRTUAL_P (decl))
142 return false;
143 /* Address of C++ cdtors is never compared. */
144 if (is_a <cgraph_node *> (this)
145 && (DECL_CXX_CONSTRUCTOR_P (decl)
146 || DECL_CXX_DESTRUCTOR_P (decl)))
147 return false;
148 /* Constant pool symbols addresses are never compared.
149 flag_merge_constants permits us to assume the same on readonly vars. */
150 if (is_a <varpool_node *> (this)
151 && (DECL_IN_CONSTANT_POOL (decl)
152 || (flag_merge_constants >= 2
153 && TREE_READONLY (decl) && !TREE_THIS_VOLATILE (decl))))
154 return false;
155 return true;
158 /* Get the cgraph_function_version_info node corresponding to node. */
159 cgraph_function_version_info *
160 cgraph_node::function_version (void)
162 cgraph_function_version_info key;
163 key.this_node = this;
165 if (cgraph_fnver_htab == NULL)
166 return NULL;
168 return cgraph_fnver_htab->find (&key);
171 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
172 corresponding to cgraph_node NODE. */
173 cgraph_function_version_info *
174 cgraph_node::insert_new_function_version (void)
176 version_info_node = NULL;
177 version_info_node = ggc_cleared_alloc<cgraph_function_version_info> ();
178 version_info_node->this_node = this;
180 if (cgraph_fnver_htab == NULL)
181 cgraph_fnver_htab = hash_table<function_version_hasher>::create_ggc (2);
183 *cgraph_fnver_htab->find_slot (version_info_node, INSERT)
184 = version_info_node;
185 return version_info_node;
188 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
189 DECL is a duplicate declaration. */
190 void
191 cgraph_node::delete_function_version (tree decl)
193 cgraph_node *decl_node = cgraph_node::get (decl);
194 cgraph_function_version_info *decl_v = NULL;
196 if (decl_node == NULL)
197 return;
199 decl_v = decl_node->function_version ();
201 if (decl_v == NULL)
202 return;
204 if (decl_v->prev != NULL)
205 decl_v->prev->next = decl_v->next;
207 if (decl_v->next != NULL)
208 decl_v->next->prev = decl_v->prev;
210 if (cgraph_fnver_htab != NULL)
211 cgraph_fnver_htab->remove_elt (decl_v);
213 decl_node->remove ();
216 /* Record that DECL1 and DECL2 are semantically identical function
217 versions. */
218 void
219 cgraph_node::record_function_versions (tree decl1, tree decl2)
221 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
222 cgraph_node *decl2_node = cgraph_node::get_create (decl2);
223 cgraph_function_version_info *decl1_v = NULL;
224 cgraph_function_version_info *decl2_v = NULL;
225 cgraph_function_version_info *before;
226 cgraph_function_version_info *after;
228 gcc_assert (decl1_node != NULL && decl2_node != NULL);
229 decl1_v = decl1_node->function_version ();
230 decl2_v = decl2_node->function_version ();
232 if (decl1_v != NULL && decl2_v != NULL)
233 return;
235 if (decl1_v == NULL)
236 decl1_v = decl1_node->insert_new_function_version ();
238 if (decl2_v == NULL)
239 decl2_v = decl2_node->insert_new_function_version ();
241 /* Chain decl2_v and decl1_v. All semantically identical versions
242 will be chained together. */
244 before = decl1_v;
245 after = decl2_v;
247 while (before->next != NULL)
248 before = before->next;
250 while (after->prev != NULL)
251 after= after->prev;
253 before->next = after;
254 after->prev = before;
257 /* Initialize callgraph dump file. */
259 void
260 symbol_table::initialize (void)
262 if (!dump_file)
263 dump_file = dump_begin (TDI_cgraph, NULL);
266 /* Allocate new callgraph node and insert it into basic data structures. */
268 cgraph_node *
269 symbol_table::create_empty (void)
271 cgraph_node *node = allocate_cgraph_symbol ();
273 node->type = SYMTAB_FUNCTION;
274 node->frequency = NODE_FREQUENCY_NORMAL;
275 node->count_materialization_scale = REG_BR_PROB_BASE;
276 cgraph_count++;
278 return node;
281 /* Register HOOK to be called with DATA on each removed edge. */
282 cgraph_edge_hook_list *
283 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook, void *data)
285 cgraph_edge_hook_list *entry;
286 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
288 entry = (cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
289 entry->hook = hook;
290 entry->data = data;
291 entry->next = NULL;
292 while (*ptr)
293 ptr = &(*ptr)->next;
294 *ptr = entry;
295 return entry;
298 /* Remove ENTRY from the list of hooks called on removing edges. */
299 void
300 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list *entry)
302 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
304 while (*ptr != entry)
305 ptr = &(*ptr)->next;
306 *ptr = entry->next;
307 free (entry);
310 /* Call all edge removal hooks. */
311 void
312 symbol_table::call_edge_removal_hooks (cgraph_edge *e)
314 cgraph_edge_hook_list *entry = m_first_edge_removal_hook;
315 while (entry)
317 entry->hook (e, entry->data);
318 entry = entry->next;
322 /* Register HOOK to be called with DATA on each removed node. */
323 cgraph_node_hook_list *
324 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook, void *data)
326 cgraph_node_hook_list *entry;
327 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
329 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
330 entry->hook = hook;
331 entry->data = data;
332 entry->next = NULL;
333 while (*ptr)
334 ptr = &(*ptr)->next;
335 *ptr = entry;
336 return entry;
339 /* Remove ENTRY from the list of hooks called on removing nodes. */
340 void
341 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list *entry)
343 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
345 while (*ptr != entry)
346 ptr = &(*ptr)->next;
347 *ptr = entry->next;
348 free (entry);
351 /* Call all node removal hooks. */
352 void
353 symbol_table::call_cgraph_removal_hooks (cgraph_node *node)
355 cgraph_node_hook_list *entry = m_first_cgraph_removal_hook;
356 while (entry)
358 entry->hook (node, entry->data);
359 entry = entry->next;
363 /* Call all node removal hooks. */
364 void
365 symbol_table::call_cgraph_insertion_hooks (cgraph_node *node)
367 cgraph_node_hook_list *entry = m_first_cgraph_insertion_hook;
368 while (entry)
370 entry->hook (node, entry->data);
371 entry = entry->next;
376 /* Register HOOK to be called with DATA on each inserted node. */
377 cgraph_node_hook_list *
378 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook, void *data)
380 cgraph_node_hook_list *entry;
381 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
383 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
384 entry->hook = hook;
385 entry->data = data;
386 entry->next = NULL;
387 while (*ptr)
388 ptr = &(*ptr)->next;
389 *ptr = entry;
390 return entry;
393 /* Remove ENTRY from the list of hooks called on inserted nodes. */
394 void
395 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list *entry)
397 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
399 while (*ptr != entry)
400 ptr = &(*ptr)->next;
401 *ptr = entry->next;
402 free (entry);
405 /* Register HOOK to be called with DATA on each duplicated edge. */
406 cgraph_2edge_hook_list *
407 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
409 cgraph_2edge_hook_list *entry;
410 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
412 entry = (cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
413 entry->hook = hook;
414 entry->data = data;
415 entry->next = NULL;
416 while (*ptr)
417 ptr = &(*ptr)->next;
418 *ptr = entry;
419 return entry;
422 /* Remove ENTRY from the list of hooks called on duplicating edges. */
423 void
424 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list *entry)
426 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
428 while (*ptr != entry)
429 ptr = &(*ptr)->next;
430 *ptr = entry->next;
431 free (entry);
434 /* Call all edge duplication hooks. */
435 void
436 symbol_table::call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)
438 cgraph_2edge_hook_list *entry = m_first_edge_duplicated_hook;
439 while (entry)
441 entry->hook (cs1, cs2, entry->data);
442 entry = entry->next;
446 /* Register HOOK to be called with DATA on each duplicated node. */
447 cgraph_2node_hook_list *
448 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook, void *data)
450 cgraph_2node_hook_list *entry;
451 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
453 entry = (cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
454 entry->hook = hook;
455 entry->data = data;
456 entry->next = NULL;
457 while (*ptr)
458 ptr = &(*ptr)->next;
459 *ptr = entry;
460 return entry;
463 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
464 void
465 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry)
467 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
469 while (*ptr != entry)
470 ptr = &(*ptr)->next;
471 *ptr = entry->next;
472 free (entry);
475 /* Call all node duplication hooks. */
476 void
477 symbol_table::call_cgraph_duplication_hooks (cgraph_node *node,
478 cgraph_node *node2)
480 cgraph_2node_hook_list *entry = m_first_cgraph_duplicated_hook;
481 while (entry)
483 entry->hook (node, node2, entry->data);
484 entry = entry->next;
488 /* Return cgraph node assigned to DECL. Create new one when needed. */
490 cgraph_node *
491 cgraph_node::create (tree decl)
493 cgraph_node *node = symtab->create_empty ();
494 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
496 node->decl = decl;
498 if ((flag_openacc || flag_openmp)
499 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl)))
501 node->offloadable = 1;
502 if (ENABLE_OFFLOADING)
503 g->have_offload = true;
506 node->register_symbol ();
508 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
510 node->origin = cgraph_node::get_create (DECL_CONTEXT (decl));
511 node->next_nested = node->origin->nested;
512 node->origin->nested = node;
514 return node;
517 /* Try to find a call graph node for declaration DECL and if it does not exist
518 or if it corresponds to an inline clone, create a new one. */
520 cgraph_node *
521 cgraph_node::get_create (tree decl)
523 cgraph_node *first_clone = cgraph_node::get (decl);
525 if (first_clone && !first_clone->global.inlined_to)
526 return first_clone;
528 cgraph_node *node = cgraph_node::create (decl);
529 if (first_clone)
531 first_clone->clone_of = node;
532 node->clones = first_clone;
533 symtab->symtab_prevail_in_asm_name_hash (node);
534 node->decl->decl_with_vis.symtab_node = node;
535 if (dump_file)
536 fprintf (dump_file, "Introduced new external node "
537 "(%s/%i) and turned into root of the clone tree.\n",
538 node->name (), node->order);
540 else if (dump_file)
541 fprintf (dump_file, "Introduced new external node "
542 "(%s/%i).\n", node->name (), node->order);
543 return node;
546 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
547 the function body is associated with (not necessarily cgraph_node (DECL). */
549 cgraph_node *
550 cgraph_node::create_alias (tree alias, tree target)
552 cgraph_node *alias_node;
554 gcc_assert (TREE_CODE (target) == FUNCTION_DECL
555 || TREE_CODE (target) == IDENTIFIER_NODE);
556 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
557 alias_node = cgraph_node::get_create (alias);
558 gcc_assert (!alias_node->definition);
559 alias_node->alias_target = target;
560 alias_node->definition = true;
561 alias_node->alias = true;
562 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias)) != NULL)
563 alias_node->weakref = true;
564 return alias_node;
567 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
568 and NULL otherwise.
569 Same body aliases are output whenever the body of DECL is output,
570 and cgraph_node::get (ALIAS) transparently returns
571 cgraph_node::get (DECL). */
573 cgraph_node *
574 cgraph_node::create_same_body_alias (tree alias, tree decl)
576 cgraph_node *n;
577 #ifndef ASM_OUTPUT_DEF
578 /* If aliases aren't supported by the assembler, fail. */
579 return NULL;
580 #endif
581 /* Langhooks can create same body aliases of symbols not defined.
582 Those are useless. Drop them on the floor. */
583 if (symtab->global_info_ready)
584 return NULL;
586 n = cgraph_node::create_alias (alias, decl);
587 n->cpp_implicit_alias = true;
588 if (symtab->cpp_implicit_aliases_done)
589 n->resolve_alias (cgraph_node::get (decl));
590 return n;
593 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
594 aliases DECL with an adjustments made into the first parameter.
595 See comments in thunk_adjust for detail on the parameters. */
597 cgraph_node *
598 cgraph_node::create_thunk (tree alias, tree, bool this_adjusting,
599 HOST_WIDE_INT fixed_offset,
600 HOST_WIDE_INT virtual_value,
601 tree virtual_offset,
602 tree real_alias)
604 cgraph_node *node;
606 node = cgraph_node::get (alias);
607 if (node)
608 node->reset ();
609 else
610 node = cgraph_node::create (alias);
611 gcc_checking_assert (!virtual_offset
612 || wi::eq_p (virtual_offset, virtual_value));
613 node->thunk.fixed_offset = fixed_offset;
614 node->thunk.this_adjusting = this_adjusting;
615 node->thunk.virtual_value = virtual_value;
616 node->thunk.virtual_offset_p = virtual_offset != NULL;
617 node->thunk.alias = real_alias;
618 node->thunk.thunk_p = true;
619 node->definition = true;
621 return node;
624 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
625 Return NULL if there's no such node. */
627 cgraph_node *
628 cgraph_node::get_for_asmname (tree asmname)
630 /* We do not want to look at inline clones. */
631 for (symtab_node *node = symtab_node::get_for_asmname (asmname);
632 node;
633 node = node->next_sharing_asm_name)
635 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
636 if (cn && !cn->global.inlined_to)
637 return cn;
639 return NULL;
642 /* Returns a hash value for X (which really is a cgraph_edge). */
644 hashval_t
645 cgraph_edge_hasher::hash (cgraph_edge *e)
647 /* This is a really poor hash function, but it is what htab_hash_pointer
648 uses. */
649 return (hashval_t) ((intptr_t)e->call_stmt >> 3);
652 /* Returns a hash value for X (which really is a cgraph_edge). */
654 hashval_t
655 cgraph_edge_hasher::hash (gimple *call_stmt)
657 /* This is a really poor hash function, but it is what htab_hash_pointer
658 uses. */
659 return (hashval_t) ((intptr_t)call_stmt >> 3);
662 /* Return nonzero if the call_stmt of cgraph_edge X is stmt *Y. */
664 inline bool
665 cgraph_edge_hasher::equal (cgraph_edge *x, gimple *y)
667 return x->call_stmt == y;
670 /* Add call graph edge E to call site hash of its caller. */
672 static inline void
673 cgraph_update_edge_in_call_site_hash (cgraph_edge *e)
675 gimple *call = e->call_stmt;
676 *e->caller->call_site_hash->find_slot_with_hash
677 (call, cgraph_edge_hasher::hash (call), INSERT) = e;
680 /* Add call graph edge E to call site hash of its caller. */
682 static inline void
683 cgraph_add_edge_to_call_site_hash (cgraph_edge *e)
685 /* There are two speculative edges for every statement (one direct,
686 one indirect); always hash the direct one. */
687 if (e->speculative && e->indirect_unknown_callee)
688 return;
689 cgraph_edge **slot = e->caller->call_site_hash->find_slot_with_hash
690 (e->call_stmt, cgraph_edge_hasher::hash (e->call_stmt), INSERT);
691 if (*slot)
693 gcc_assert (((cgraph_edge *)*slot)->speculative);
694 if (e->callee)
695 *slot = e;
696 return;
698 gcc_assert (!*slot || e->speculative);
699 *slot = e;
702 /* Return the callgraph edge representing the GIMPLE_CALL statement
703 CALL_STMT. */
705 cgraph_edge *
706 cgraph_node::get_edge (gimple *call_stmt)
708 cgraph_edge *e, *e2;
709 int n = 0;
711 if (call_site_hash)
712 return call_site_hash->find_with_hash
713 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
715 /* This loop may turn out to be performance problem. In such case adding
716 hashtables into call nodes with very many edges is probably best
717 solution. It is not good idea to add pointer into CALL_EXPR itself
718 because we want to make possible having multiple cgraph nodes representing
719 different clones of the same body before the body is actually cloned. */
720 for (e = callees; e; e = e->next_callee)
722 if (e->call_stmt == call_stmt)
723 break;
724 n++;
727 if (!e)
728 for (e = indirect_calls; e; e = e->next_callee)
730 if (e->call_stmt == call_stmt)
731 break;
732 n++;
735 if (n > 100)
737 call_site_hash = hash_table<cgraph_edge_hasher>::create_ggc (120);
738 for (e2 = callees; e2; e2 = e2->next_callee)
739 cgraph_add_edge_to_call_site_hash (e2);
740 for (e2 = indirect_calls; e2; e2 = e2->next_callee)
741 cgraph_add_edge_to_call_site_hash (e2);
744 return e;
748 /* Change field call_stmt of edge to NEW_STMT.
749 If UPDATE_SPECULATIVE and E is any component of speculative
750 edge, then update all components. */
752 void
753 cgraph_edge::set_call_stmt (gcall *new_stmt, bool update_speculative)
755 tree decl;
757 /* Speculative edges has three component, update all of them
758 when asked to. */
759 if (update_speculative && speculative)
761 cgraph_edge *direct, *indirect;
762 ipa_ref *ref;
764 speculative_call_info (direct, indirect, ref);
765 direct->set_call_stmt (new_stmt, false);
766 indirect->set_call_stmt (new_stmt, false);
767 ref->stmt = new_stmt;
768 return;
771 /* Only direct speculative edges go to call_site_hash. */
772 if (caller->call_site_hash
773 && (!speculative || !indirect_unknown_callee))
775 caller->call_site_hash->remove_elt_with_hash
776 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
779 cgraph_edge *e = this;
781 call_stmt = new_stmt;
782 if (indirect_unknown_callee
783 && (decl = gimple_call_fndecl (new_stmt)))
785 /* Constant propagation (and possibly also inlining?) can turn an
786 indirect call into a direct one. */
787 cgraph_node *new_callee = cgraph_node::get (decl);
789 gcc_checking_assert (new_callee);
790 e = make_direct (new_callee);
793 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
794 e->can_throw_external = stmt_can_throw_external (new_stmt);
795 pop_cfun ();
796 if (e->caller->call_site_hash)
797 cgraph_add_edge_to_call_site_hash (e);
800 /* Allocate a cgraph_edge structure and fill it with data according to the
801 parameters of which only CALLEE can be NULL (when creating an indirect call
802 edge). */
804 cgraph_edge *
805 symbol_table::create_edge (cgraph_node *caller, cgraph_node *callee,
806 gcall *call_stmt, gcov_type count, int freq,
807 bool indir_unknown_callee)
809 cgraph_edge *edge;
811 /* LTO does not actually have access to the call_stmt since these
812 have not been loaded yet. */
813 if (call_stmt)
815 /* This is a rather expensive check possibly triggering
816 construction of call stmt hashtable. */
817 cgraph_edge *e;
818 gcc_checking_assert (!(e = caller->get_edge (call_stmt))
819 || e->speculative);
821 gcc_assert (is_gimple_call (call_stmt));
824 if (free_edges)
826 edge = free_edges;
827 free_edges = NEXT_FREE_EDGE (edge);
829 else
831 edge = ggc_alloc<cgraph_edge> ();
832 edge->uid = edges_max_uid++;
835 edges_count++;
837 edge->aux = NULL;
838 edge->caller = caller;
839 edge->callee = callee;
840 edge->prev_caller = NULL;
841 edge->next_caller = NULL;
842 edge->prev_callee = NULL;
843 edge->next_callee = NULL;
844 edge->lto_stmt_uid = 0;
846 edge->count = count;
847 gcc_assert (count >= 0);
848 edge->frequency = freq;
849 gcc_assert (freq >= 0);
850 gcc_assert (freq <= CGRAPH_FREQ_MAX);
852 edge->call_stmt = call_stmt;
853 push_cfun (DECL_STRUCT_FUNCTION (caller->decl));
854 edge->can_throw_external
855 = call_stmt ? stmt_can_throw_external (call_stmt) : false;
856 pop_cfun ();
857 if (call_stmt
858 && callee && callee->decl
859 && !gimple_check_call_matching_types (call_stmt, callee->decl,
860 false))
861 edge->call_stmt_cannot_inline_p = true;
862 else
863 edge->call_stmt_cannot_inline_p = false;
865 edge->indirect_info = NULL;
866 edge->indirect_inlining_edge = 0;
867 edge->speculative = false;
868 edge->indirect_unknown_callee = indir_unknown_callee;
869 if (opt_for_fn (edge->caller->decl, flag_devirtualize)
870 && call_stmt && DECL_STRUCT_FUNCTION (caller->decl))
871 edge->in_polymorphic_cdtor
872 = decl_maybe_in_construction_p (NULL, NULL, call_stmt,
873 caller->decl);
874 else
875 edge->in_polymorphic_cdtor = caller->thunk.thunk_p;
876 if (call_stmt && caller->call_site_hash)
877 cgraph_add_edge_to_call_site_hash (edge);
879 return edge;
882 /* Create edge from a given function to CALLEE in the cgraph. */
884 cgraph_edge *
885 cgraph_node::create_edge (cgraph_node *callee,
886 gcall *call_stmt, gcov_type count, int freq)
888 cgraph_edge *edge = symtab->create_edge (this, callee, call_stmt, count,
889 freq, false);
891 initialize_inline_failed (edge);
893 edge->next_caller = callee->callers;
894 if (callee->callers)
895 callee->callers->prev_caller = edge;
896 edge->next_callee = callees;
897 if (callees)
898 callees->prev_callee = edge;
899 callees = edge;
900 callee->callers = edge;
902 return edge;
905 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
907 cgraph_indirect_call_info *
908 cgraph_allocate_init_indirect_info (void)
910 cgraph_indirect_call_info *ii;
912 ii = ggc_cleared_alloc<cgraph_indirect_call_info> ();
913 ii->param_index = -1;
914 return ii;
917 /* Create an indirect edge with a yet-undetermined callee where the call
918 statement destination is a formal parameter of the caller with index
919 PARAM_INDEX. */
921 cgraph_edge *
922 cgraph_node::create_indirect_edge (gcall *call_stmt, int ecf_flags,
923 gcov_type count, int freq,
924 bool compute_indirect_info)
926 cgraph_edge *edge = symtab->create_edge (this, NULL, call_stmt,
927 count, freq, true);
928 tree target;
930 initialize_inline_failed (edge);
932 edge->indirect_info = cgraph_allocate_init_indirect_info ();
933 edge->indirect_info->ecf_flags = ecf_flags;
934 edge->indirect_info->vptr_changed = true;
936 /* Record polymorphic call info. */
937 if (compute_indirect_info
938 && call_stmt
939 && (target = gimple_call_fn (call_stmt))
940 && virtual_method_call_p (target))
942 ipa_polymorphic_call_context context (decl, target, call_stmt);
944 /* Only record types can have virtual calls. */
945 edge->indirect_info->polymorphic = true;
946 edge->indirect_info->param_index = -1;
947 edge->indirect_info->otr_token
948 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
949 edge->indirect_info->otr_type = obj_type_ref_class (target);
950 gcc_assert (TREE_CODE (edge->indirect_info->otr_type) == RECORD_TYPE);
951 edge->indirect_info->context = context;
954 edge->next_callee = indirect_calls;
955 if (indirect_calls)
956 indirect_calls->prev_callee = edge;
957 indirect_calls = edge;
959 return edge;
962 /* Remove the edge from the list of the callees of the caller. */
964 void
965 cgraph_edge::remove_caller (void)
967 if (prev_callee)
968 prev_callee->next_callee = next_callee;
969 if (next_callee)
970 next_callee->prev_callee = prev_callee;
971 if (!prev_callee)
973 if (indirect_unknown_callee)
974 caller->indirect_calls = next_callee;
975 else
976 caller->callees = next_callee;
978 if (caller->call_site_hash)
979 caller->call_site_hash->remove_elt_with_hash
980 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
983 /* Put the edge onto the free list. */
985 void
986 symbol_table::free_edge (cgraph_edge *e)
988 int uid = e->uid;
990 if (e->indirect_info)
991 ggc_free (e->indirect_info);
993 /* Clear out the edge so we do not dangle pointers. */
994 memset (e, 0, sizeof (*e));
995 e->uid = uid;
996 NEXT_FREE_EDGE (e) = free_edges;
997 free_edges = e;
998 edges_count--;
1001 /* Remove the edge in the cgraph. */
1003 void
1004 cgraph_edge::remove (void)
1006 /* Call all edge removal hooks. */
1007 symtab->call_edge_removal_hooks (this);
1009 if (!indirect_unknown_callee)
1010 /* Remove from callers list of the callee. */
1011 remove_callee ();
1013 /* Remove from callees list of the callers. */
1014 remove_caller ();
1016 /* Put the edge onto the free list. */
1017 symtab->free_edge (this);
1020 /* Turn edge into speculative call calling N2. Update
1021 the profile so the direct call is taken COUNT times
1022 with FREQUENCY.
1024 At clone materialization time, the indirect call E will
1025 be expanded as:
1027 if (call_dest == N2)
1028 n2 ();
1029 else
1030 call call_dest
1032 At this time the function just creates the direct call,
1033 the referencd representing the if conditional and attaches
1034 them all to the orginal indirect call statement.
1036 Return direct edge created. */
1038 cgraph_edge *
1039 cgraph_edge::make_speculative (cgraph_node *n2, gcov_type direct_count,
1040 int direct_frequency)
1042 cgraph_node *n = caller;
1043 ipa_ref *ref = NULL;
1044 cgraph_edge *e2;
1046 if (dump_file)
1048 fprintf (dump_file, "Indirect call -> speculative call"
1049 " %s/%i => %s/%i\n",
1050 xstrdup_for_dump (n->name ()), n->order,
1051 xstrdup_for_dump (n2->name ()), n2->order);
1053 speculative = true;
1054 e2 = n->create_edge (n2, call_stmt, direct_count, direct_frequency);
1055 initialize_inline_failed (e2);
1056 e2->speculative = true;
1057 if (TREE_NOTHROW (n2->decl))
1058 e2->can_throw_external = false;
1059 else
1060 e2->can_throw_external = can_throw_external;
1061 e2->lto_stmt_uid = lto_stmt_uid;
1062 e2->in_polymorphic_cdtor = in_polymorphic_cdtor;
1063 count -= e2->count;
1064 frequency -= e2->frequency;
1065 symtab->call_edge_duplication_hooks (this, e2);
1066 ref = n->create_reference (n2, IPA_REF_ADDR, call_stmt);
1067 ref->lto_stmt_uid = lto_stmt_uid;
1068 ref->speculative = speculative;
1069 n2->mark_address_taken ();
1070 return e2;
1073 /* Speculative call consist of three components:
1074 1) an indirect edge representing the original call
1075 2) an direct edge representing the new call
1076 3) ADDR_EXPR reference representing the speculative check.
1077 All three components are attached to single statement (the indirect
1078 call) and if one of them exists, all of them must exist.
1080 Given speculative call edge, return all three components.
1083 void
1084 cgraph_edge::speculative_call_info (cgraph_edge *&direct,
1085 cgraph_edge *&indirect,
1086 ipa_ref *&reference)
1088 ipa_ref *ref;
1089 int i;
1090 cgraph_edge *e2;
1091 cgraph_edge *e = this;
1093 if (!e->indirect_unknown_callee)
1094 for (e2 = e->caller->indirect_calls;
1095 e2->call_stmt != e->call_stmt || e2->lto_stmt_uid != e->lto_stmt_uid;
1096 e2 = e2->next_callee)
1098 else
1100 e2 = e;
1101 /* We can take advantage of the call stmt hash. */
1102 if (e2->call_stmt)
1104 e = e->caller->get_edge (e2->call_stmt);
1105 gcc_assert (e->speculative && !e->indirect_unknown_callee);
1107 else
1108 for (e = e->caller->callees;
1109 e2->call_stmt != e->call_stmt
1110 || e2->lto_stmt_uid != e->lto_stmt_uid;
1111 e = e->next_callee)
1114 gcc_assert (e->speculative && e2->speculative);
1115 direct = e;
1116 indirect = e2;
1118 reference = NULL;
1119 for (i = 0; e->caller->iterate_reference (i, ref); i++)
1120 if (ref->speculative
1121 && ((ref->stmt && ref->stmt == e->call_stmt)
1122 || (!ref->stmt && ref->lto_stmt_uid == e->lto_stmt_uid)))
1124 reference = ref;
1125 break;
1128 /* Speculative edge always consist of all three components - direct edge,
1129 indirect and reference. */
1131 gcc_assert (e && e2 && ref);
1134 /* Speculative call edge turned out to be direct call to CALLE_DECL.
1135 Remove the speculative call sequence and return edge representing the call.
1136 It is up to caller to redirect the call as appropriate. */
1138 cgraph_edge *
1139 cgraph_edge::resolve_speculation (tree callee_decl)
1141 cgraph_edge *edge = this;
1142 cgraph_edge *e2;
1143 ipa_ref *ref;
1145 gcc_assert (edge->speculative);
1146 edge->speculative_call_info (e2, edge, ref);
1147 if (!callee_decl
1148 || !ref->referred->semantically_equivalent_p
1149 (symtab_node::get (callee_decl)))
1151 if (dump_file)
1153 if (callee_decl)
1155 fprintf (dump_file, "Speculative indirect call %s/%i => %s/%i has "
1156 "turned out to have contradicting known target ",
1157 xstrdup_for_dump (edge->caller->name ()),
1158 edge->caller->order,
1159 xstrdup_for_dump (e2->callee->name ()),
1160 e2->callee->order);
1161 print_generic_expr (dump_file, callee_decl, 0);
1162 fprintf (dump_file, "\n");
1164 else
1166 fprintf (dump_file, "Removing speculative call %s/%i => %s/%i\n",
1167 xstrdup_for_dump (edge->caller->name ()),
1168 edge->caller->order,
1169 xstrdup_for_dump (e2->callee->name ()),
1170 e2->callee->order);
1174 else
1176 cgraph_edge *tmp = edge;
1177 if (dump_file)
1178 fprintf (dump_file, "Speculative call turned into direct call.\n");
1179 edge = e2;
1180 e2 = tmp;
1181 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1182 in the functions inlined through it. */
1184 edge->count += e2->count;
1185 edge->frequency += e2->frequency;
1186 if (edge->frequency > CGRAPH_FREQ_MAX)
1187 edge->frequency = CGRAPH_FREQ_MAX;
1188 edge->speculative = false;
1189 e2->speculative = false;
1190 ref->remove_reference ();
1191 if (e2->indirect_unknown_callee || e2->inline_failed)
1192 e2->remove ();
1193 else
1194 e2->callee->remove_symbol_and_inline_clones ();
1195 if (edge->caller->call_site_hash)
1196 cgraph_update_edge_in_call_site_hash (edge);
1197 return edge;
1200 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1201 CALLEE. DELTA is an integer constant that is to be added to the this
1202 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1204 cgraph_edge *
1205 cgraph_edge::make_direct (cgraph_node *callee)
1207 cgraph_edge *edge = this;
1208 gcc_assert (indirect_unknown_callee);
1210 /* If we are redirecting speculative call, make it non-speculative. */
1211 if (indirect_unknown_callee && speculative)
1213 edge = edge->resolve_speculation (callee->decl);
1215 /* On successful speculation just return the pre existing direct edge. */
1216 if (!indirect_unknown_callee)
1217 return edge;
1220 indirect_unknown_callee = 0;
1221 ggc_free (indirect_info);
1222 indirect_info = NULL;
1224 /* Get the edge out of the indirect edge list. */
1225 if (prev_callee)
1226 prev_callee->next_callee = next_callee;
1227 if (next_callee)
1228 next_callee->prev_callee = prev_callee;
1229 if (!prev_callee)
1230 caller->indirect_calls = next_callee;
1232 /* Put it into the normal callee list */
1233 prev_callee = NULL;
1234 next_callee = caller->callees;
1235 if (caller->callees)
1236 caller->callees->prev_callee = edge;
1237 caller->callees = edge;
1239 /* Insert to callers list of the new callee. */
1240 edge->set_callee (callee);
1242 if (call_stmt)
1243 call_stmt_cannot_inline_p
1244 = !gimple_check_call_matching_types (call_stmt, callee->decl,
1245 false);
1247 /* We need to re-determine the inlining status of the edge. */
1248 initialize_inline_failed (edge);
1249 return edge;
1252 /* If necessary, change the function declaration in the call statement
1253 associated with E so that it corresponds to the edge callee. */
1255 gimple *
1256 cgraph_edge::redirect_call_stmt_to_callee (void)
1258 cgraph_edge *e = this;
1260 tree decl = gimple_call_fndecl (e->call_stmt);
1261 tree lhs = gimple_call_lhs (e->call_stmt);
1262 gcall *new_stmt;
1263 gimple_stmt_iterator gsi;
1264 bool skip_bounds = false;
1266 if (e->speculative)
1268 cgraph_edge *e2;
1269 gcall *new_stmt;
1270 ipa_ref *ref;
1272 e->speculative_call_info (e, e2, ref);
1273 /* If there already is an direct call (i.e. as a result of inliner's
1274 substitution), forget about speculating. */
1275 if (decl)
1276 e = e->resolve_speculation (decl);
1277 /* If types do not match, speculation was likely wrong.
1278 The direct edge was posisbly redirected to the clone with a different
1279 signature. We did not update the call statement yet, so compare it
1280 with the reference that still points to the proper type. */
1281 else if (!gimple_check_call_matching_types (e->call_stmt,
1282 ref->referred->decl,
1283 true))
1285 if (dump_file)
1286 fprintf (dump_file, "Not expanding speculative call of %s/%i -> %s/%i\n"
1287 "Type mismatch.\n",
1288 xstrdup_for_dump (e->caller->name ()),
1289 e->caller->order,
1290 xstrdup_for_dump (e->callee->name ()),
1291 e->callee->order);
1292 e = e->resolve_speculation ();
1293 /* We are producing the final function body and will throw away the
1294 callgraph edges really soon. Reset the counts/frequencies to
1295 keep verifier happy in the case of roundoff errors. */
1296 e->count = gimple_bb (e->call_stmt)->count;
1297 e->frequency = compute_call_stmt_bb_frequency
1298 (e->caller->decl, gimple_bb (e->call_stmt));
1300 /* Expand speculation into GIMPLE code. */
1301 else
1303 if (dump_file)
1304 fprintf (dump_file,
1305 "Expanding speculative call of %s/%i -> %s/%i count:"
1306 "%" PRId64"\n",
1307 xstrdup_for_dump (e->caller->name ()),
1308 e->caller->order,
1309 xstrdup_for_dump (e->callee->name ()),
1310 e->callee->order,
1311 (int64_t)e->count);
1312 gcc_assert (e2->speculative);
1313 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
1314 new_stmt = gimple_ic (e->call_stmt,
1315 dyn_cast<cgraph_node *> (ref->referred),
1316 e->count || e2->count
1317 ? RDIV (e->count * REG_BR_PROB_BASE,
1318 e->count + e2->count)
1319 : e->frequency || e2->frequency
1320 ? RDIV (e->frequency * REG_BR_PROB_BASE,
1321 e->frequency + e2->frequency)
1322 : REG_BR_PROB_BASE / 2,
1323 e->count, e->count + e2->count);
1324 e->speculative = false;
1325 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt,
1326 false);
1328 /* Fix edges for BUILT_IN_CHKP_BNDRET calls attached to the
1329 processed call stmt. */
1330 if (gimple_call_with_bounds_p (new_stmt)
1331 && gimple_call_lhs (new_stmt)
1332 && chkp_retbnd_call_by_val (gimple_call_lhs (e2->call_stmt)))
1334 tree dresult = gimple_call_lhs (new_stmt);
1335 tree iresult = gimple_call_lhs (e2->call_stmt);
1336 gcall *dbndret = chkp_retbnd_call_by_val (dresult);
1337 gcall *ibndret = chkp_retbnd_call_by_val (iresult);
1338 struct cgraph_edge *iedge
1339 = e2->caller->cgraph_node::get_edge (ibndret);
1340 struct cgraph_edge *dedge;
1342 if (dbndret)
1344 dedge = iedge->caller->create_edge (iedge->callee,
1345 dbndret, e->count,
1346 e->frequency);
1347 dedge->frequency = compute_call_stmt_bb_frequency
1348 (dedge->caller->decl, gimple_bb (dedge->call_stmt));
1350 iedge->frequency = compute_call_stmt_bb_frequency
1351 (iedge->caller->decl, gimple_bb (iedge->call_stmt));
1354 e->frequency = compute_call_stmt_bb_frequency
1355 (e->caller->decl, gimple_bb (e->call_stmt));
1356 e2->frequency = compute_call_stmt_bb_frequency
1357 (e2->caller->decl, gimple_bb (e2->call_stmt));
1358 e2->speculative = false;
1359 ref->speculative = false;
1360 ref->stmt = NULL;
1361 /* Indirect edges are not both in the call site hash.
1362 get it updated. */
1363 if (e->caller->call_site_hash)
1364 cgraph_update_edge_in_call_site_hash (e2);
1365 pop_cfun ();
1366 /* Continue redirecting E to proper target. */
1370 /* We might propagate instrumented function pointer into
1371 not instrumented function and vice versa. In such a
1372 case we need to either fix function declaration or
1373 remove bounds from call statement. */
1374 if (flag_check_pointer_bounds && e->callee)
1375 skip_bounds = chkp_redirect_edge (e);
1377 if (e->indirect_unknown_callee
1378 || (decl == e->callee->decl
1379 && !skip_bounds))
1380 return e->call_stmt;
1382 if (flag_checking && decl)
1384 cgraph_node *node = cgraph_node::get (decl);
1385 gcc_assert (!node || !node->clone.combined_args_to_skip);
1388 if (symtab->dump_file)
1390 fprintf (symtab->dump_file, "updating call of %s/%i -> %s/%i: ",
1391 xstrdup_for_dump (e->caller->name ()), e->caller->order,
1392 xstrdup_for_dump (e->callee->name ()), e->callee->order);
1393 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1394 if (e->callee->clone.combined_args_to_skip)
1396 fprintf (symtab->dump_file, " combined args to skip: ");
1397 dump_bitmap (symtab->dump_file,
1398 e->callee->clone.combined_args_to_skip);
1402 if (e->callee->clone.combined_args_to_skip
1403 || skip_bounds)
1405 int lp_nr;
1407 new_stmt = e->call_stmt;
1408 if (e->callee->clone.combined_args_to_skip)
1409 new_stmt
1410 = gimple_call_copy_skip_args (new_stmt,
1411 e->callee->clone.combined_args_to_skip);
1412 if (skip_bounds)
1413 new_stmt = chkp_copy_call_skip_bounds (new_stmt);
1415 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1416 gimple_call_set_fntype (new_stmt, gimple_call_fntype (e->call_stmt));
1418 if (gimple_vdef (new_stmt)
1419 && TREE_CODE (gimple_vdef (new_stmt)) == SSA_NAME)
1420 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
1422 gsi = gsi_for_stmt (e->call_stmt);
1423 gsi_replace (&gsi, new_stmt, false);
1424 /* We need to defer cleaning EH info on the new statement to
1425 fixup-cfg. We may not have dominator information at this point
1426 and thus would end up with unreachable blocks and have no way
1427 to communicate that we need to run CFG cleanup then. */
1428 lp_nr = lookup_stmt_eh_lp (e->call_stmt);
1429 if (lp_nr != 0)
1431 remove_stmt_from_eh_lp (e->call_stmt);
1432 add_stmt_to_eh_lp (new_stmt, lp_nr);
1435 else
1437 new_stmt = e->call_stmt;
1438 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1439 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1442 /* If the call becomes noreturn, remove the LHS if possible. */
1443 if (lhs
1444 && (gimple_call_flags (new_stmt) & ECF_NORETURN)
1445 && TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (lhs))) == INTEGER_CST)
1447 if (TREE_CODE (lhs) == SSA_NAME)
1449 tree var = create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e->caller->decl),
1450 TREE_TYPE (lhs), NULL);
1451 var = get_or_create_ssa_default_def
1452 (DECL_STRUCT_FUNCTION (e->caller->decl), var);
1453 gimple *set_stmt = gimple_build_assign (lhs, var);
1454 gsi = gsi_for_stmt (new_stmt);
1455 gsi_insert_before_without_update (&gsi, set_stmt, GSI_SAME_STMT);
1456 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), set_stmt);
1458 gimple_call_set_lhs (new_stmt, NULL_TREE);
1459 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1462 /* If new callee has no static chain, remove it. */
1463 if (gimple_call_chain (new_stmt) && !DECL_STATIC_CHAIN (e->callee->decl))
1465 gimple_call_set_chain (new_stmt, NULL);
1466 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1469 maybe_remove_unused_call_args (DECL_STRUCT_FUNCTION (e->caller->decl),
1470 new_stmt);
1472 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt, false);
1474 if (symtab->dump_file)
1476 fprintf (symtab->dump_file, " updated to:");
1477 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1479 return new_stmt;
1482 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1483 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1484 of OLD_STMT if it was previously call statement.
1485 If NEW_STMT is NULL, the call has been dropped without any
1486 replacement. */
1488 static void
1489 cgraph_update_edges_for_call_stmt_node (cgraph_node *node,
1490 gimple *old_stmt, tree old_call,
1491 gimple *new_stmt)
1493 tree new_call = (new_stmt && is_gimple_call (new_stmt))
1494 ? gimple_call_fndecl (new_stmt) : 0;
1496 /* We are seeing indirect calls, then there is nothing to update. */
1497 if (!new_call && !old_call)
1498 return;
1499 /* See if we turned indirect call into direct call or folded call to one builtin
1500 into different builtin. */
1501 if (old_call != new_call)
1503 cgraph_edge *e = node->get_edge (old_stmt);
1504 cgraph_edge *ne = NULL;
1505 gcov_type count;
1506 int frequency;
1508 if (e)
1510 /* Keep calls marked as dead dead. */
1511 if (new_stmt && is_gimple_call (new_stmt) && e->callee
1512 && DECL_BUILT_IN_CLASS (e->callee->decl) == BUILT_IN_NORMAL
1513 && DECL_FUNCTION_CODE (e->callee->decl) == BUILT_IN_UNREACHABLE)
1515 node->get_edge (old_stmt)->set_call_stmt
1516 (as_a <gcall *> (new_stmt));
1517 return;
1519 /* See if the edge is already there and has the correct callee. It
1520 might be so because of indirect inlining has already updated
1521 it. We also might've cloned and redirected the edge. */
1522 if (new_call && e->callee)
1524 cgraph_node *callee = e->callee;
1525 while (callee)
1527 if (callee->decl == new_call
1528 || callee->former_clone_of == new_call)
1530 e->set_call_stmt (as_a <gcall *> (new_stmt));
1531 return;
1533 callee = callee->clone_of;
1537 /* Otherwise remove edge and create new one; we can't simply redirect
1538 since function has changed, so inline plan and other information
1539 attached to edge is invalid. */
1540 count = e->count;
1541 frequency = e->frequency;
1542 if (e->indirect_unknown_callee || e->inline_failed)
1543 e->remove ();
1544 else
1545 e->callee->remove_symbol_and_inline_clones ();
1547 else if (new_call)
1549 /* We are seeing new direct call; compute profile info based on BB. */
1550 basic_block bb = gimple_bb (new_stmt);
1551 count = bb->count;
1552 frequency = compute_call_stmt_bb_frequency (current_function_decl,
1553 bb);
1556 if (new_call)
1558 ne = node->create_edge (cgraph_node::get_create (new_call),
1559 as_a <gcall *> (new_stmt), count,
1560 frequency);
1561 gcc_assert (ne->inline_failed);
1564 /* We only updated the call stmt; update pointer in cgraph edge.. */
1565 else if (old_stmt != new_stmt)
1566 node->get_edge (old_stmt)->set_call_stmt (as_a <gcall *> (new_stmt));
1569 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1570 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1571 of OLD_STMT before it was updated (updating can happen inplace). */
1573 void
1574 cgraph_update_edges_for_call_stmt (gimple *old_stmt, tree old_decl,
1575 gimple *new_stmt)
1577 cgraph_node *orig = cgraph_node::get (cfun->decl);
1578 cgraph_node *node;
1580 gcc_checking_assert (orig);
1581 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1582 if (orig->clones)
1583 for (node = orig->clones; node != orig;)
1585 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1586 if (node->clones)
1587 node = node->clones;
1588 else if (node->next_sibling_clone)
1589 node = node->next_sibling_clone;
1590 else
1592 while (node != orig && !node->next_sibling_clone)
1593 node = node->clone_of;
1594 if (node != orig)
1595 node = node->next_sibling_clone;
1601 /* Remove all callees from the node. */
1603 void
1604 cgraph_node::remove_callees (void)
1606 cgraph_edge *e, *f;
1608 /* It is sufficient to remove the edges from the lists of callers of
1609 the callees. The callee list of the node can be zapped with one
1610 assignment. */
1611 for (e = callees; e; e = f)
1613 f = e->next_callee;
1614 symtab->call_edge_removal_hooks (e);
1615 if (!e->indirect_unknown_callee)
1616 e->remove_callee ();
1617 symtab->free_edge (e);
1619 for (e = indirect_calls; e; e = f)
1621 f = e->next_callee;
1622 symtab->call_edge_removal_hooks (e);
1623 if (!e->indirect_unknown_callee)
1624 e->remove_callee ();
1625 symtab->free_edge (e);
1627 indirect_calls = NULL;
1628 callees = NULL;
1629 if (call_site_hash)
1631 call_site_hash->empty ();
1632 call_site_hash = NULL;
1636 /* Remove all callers from the node. */
1638 void
1639 cgraph_node::remove_callers (void)
1641 cgraph_edge *e, *f;
1643 /* It is sufficient to remove the edges from the lists of callees of
1644 the callers. The caller list of the node can be zapped with one
1645 assignment. */
1646 for (e = callers; e; e = f)
1648 f = e->next_caller;
1649 symtab->call_edge_removal_hooks (e);
1650 e->remove_caller ();
1651 symtab->free_edge (e);
1653 callers = NULL;
1656 /* Helper function for cgraph_release_function_body and free_lang_data.
1657 It releases body from function DECL without having to inspect its
1658 possibly non-existent symtab node. */
1660 void
1661 release_function_body (tree decl)
1663 function *fn = DECL_STRUCT_FUNCTION (decl);
1664 if (fn)
1666 if (fn->cfg
1667 || fn->gimple_df)
1669 if (fn->cfg
1670 && loops_for_fn (fn))
1672 fn->curr_properties &= ~PROP_loops;
1673 loop_optimizer_finalize (fn);
1675 if (fn->gimple_df)
1677 delete_tree_ssa (fn);
1678 delete_tree_cfg_annotations (fn);
1679 fn->eh = NULL;
1681 if (fn->cfg)
1683 gcc_assert (!dom_info_available_p (fn, CDI_DOMINATORS));
1684 gcc_assert (!dom_info_available_p (fn, CDI_POST_DOMINATORS));
1685 clear_edges (fn);
1686 fn->cfg = NULL;
1688 if (fn->value_histograms)
1689 free_histograms (fn);
1691 gimple_set_body (decl, NULL);
1692 /* Struct function hangs a lot of data that would leak if we didn't
1693 removed all pointers to it. */
1694 ggc_free (fn);
1695 DECL_STRUCT_FUNCTION (decl) = NULL;
1697 DECL_SAVED_TREE (decl) = NULL;
1700 /* Release memory used to represent body of function.
1701 Use this only for functions that are released before being translated to
1702 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1703 are free'd in final.c via free_after_compilation().
1704 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1706 void
1707 cgraph_node::release_body (bool keep_arguments)
1709 ipa_transforms_to_apply.release ();
1710 if (!used_as_abstract_origin && symtab->state != PARSING)
1712 DECL_RESULT (decl) = NULL;
1714 if (!keep_arguments)
1715 DECL_ARGUMENTS (decl) = NULL;
1717 /* If the node is abstract and needed, then do not clear
1718 DECL_INITIAL of its associated function declaration because it's
1719 needed to emit debug info later. */
1720 if (!used_as_abstract_origin && DECL_INITIAL (decl))
1721 DECL_INITIAL (decl) = error_mark_node;
1722 release_function_body (decl);
1723 if (lto_file_data)
1725 lto_free_function_in_decl_state_for_node (this);
1726 lto_file_data = NULL;
1730 /* Remove function from symbol table. */
1732 void
1733 cgraph_node::remove (void)
1735 cgraph_node *n;
1736 int uid = this->uid;
1738 symtab->call_cgraph_removal_hooks (this);
1739 remove_callers ();
1740 remove_callees ();
1741 ipa_transforms_to_apply.release ();
1743 /* Incremental inlining access removed nodes stored in the postorder list.
1745 force_output = false;
1746 forced_by_abi = false;
1747 for (n = nested; n; n = n->next_nested)
1748 n->origin = NULL;
1749 nested = NULL;
1750 if (origin)
1752 cgraph_node **node2 = &origin->nested;
1754 while (*node2 != this)
1755 node2 = &(*node2)->next_nested;
1756 *node2 = next_nested;
1758 unregister ();
1759 if (prev_sibling_clone)
1760 prev_sibling_clone->next_sibling_clone = next_sibling_clone;
1761 else if (clone_of)
1762 clone_of->clones = next_sibling_clone;
1763 if (next_sibling_clone)
1764 next_sibling_clone->prev_sibling_clone = prev_sibling_clone;
1765 if (clones)
1767 cgraph_node *n, *next;
1769 if (clone_of)
1771 for (n = clones; n->next_sibling_clone; n = n->next_sibling_clone)
1772 n->clone_of = clone_of;
1773 n->clone_of = clone_of;
1774 n->next_sibling_clone = clone_of->clones;
1775 if (clone_of->clones)
1776 clone_of->clones->prev_sibling_clone = n;
1777 clone_of->clones = clones;
1779 else
1781 /* We are removing node with clones. This makes clones inconsistent,
1782 but assume they will be removed subsequently and just keep clone
1783 tree intact. This can happen in unreachable function removal since
1784 we remove unreachable functions in random order, not by bottom-up
1785 walk of clone trees. */
1786 for (n = clones; n; n = next)
1788 next = n->next_sibling_clone;
1789 n->next_sibling_clone = NULL;
1790 n->prev_sibling_clone = NULL;
1791 n->clone_of = NULL;
1796 /* While all the clones are removed after being proceeded, the function
1797 itself is kept in the cgraph even after it is compiled. Check whether
1798 we are done with this body and reclaim it proactively if this is the case.
1800 if (symtab->state != LTO_STREAMING)
1802 n = cgraph_node::get (decl);
1803 if (!n
1804 || (!n->clones && !n->clone_of && !n->global.inlined_to
1805 && ((symtab->global_info_ready || in_lto_p)
1806 && (TREE_ASM_WRITTEN (n->decl)
1807 || DECL_EXTERNAL (n->decl)
1808 || !n->analyzed
1809 || (!flag_wpa && n->in_other_partition)))))
1810 release_body ();
1812 else
1814 lto_free_function_in_decl_state_for_node (this);
1815 lto_file_data = NULL;
1818 decl = NULL;
1819 if (call_site_hash)
1821 call_site_hash->empty ();
1822 call_site_hash = NULL;
1825 if (instrumented_version)
1827 instrumented_version->instrumented_version = NULL;
1828 instrumented_version = NULL;
1831 symtab->release_symbol (this, uid);
1834 /* Likewise indicate that a node is having address taken. */
1836 void
1837 cgraph_node::mark_address_taken (void)
1839 /* Indirect inlining can figure out that all uses of the address are
1840 inlined. */
1841 if (global.inlined_to)
1843 gcc_assert (cfun->after_inlining);
1844 gcc_assert (callers->indirect_inlining_edge);
1845 return;
1847 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1848 IPA_REF_ADDR reference exists (and thus it should be set on node
1849 representing alias we take address of) and as a test whether address
1850 of the object was taken (and thus it should be set on node alias is
1851 referring to). We should remove the first use and the remove the
1852 following set. */
1853 address_taken = 1;
1854 cgraph_node *node = ultimate_alias_target ();
1855 node->address_taken = 1;
1858 /* Return local info for the compiled function. */
1860 cgraph_local_info *
1861 cgraph_node::local_info (tree decl)
1863 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1864 cgraph_node *node = get (decl);
1865 if (!node)
1866 return NULL;
1867 return &node->ultimate_alias_target ()->local;
1870 /* Return local info for the compiled function. */
1872 cgraph_rtl_info *
1873 cgraph_node::rtl_info (tree decl)
1875 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1876 cgraph_node *node = get (decl);
1877 if (!node)
1878 return NULL;
1879 node = node->ultimate_alias_target ();
1880 if (node->decl != current_function_decl
1881 && !TREE_ASM_WRITTEN (node->decl))
1882 return NULL;
1883 /* Allocate if it doesnt exist. */
1884 if (node->ultimate_alias_target ()->rtl == NULL)
1885 node->ultimate_alias_target ()->rtl = ggc_cleared_alloc<cgraph_rtl_info> ();
1886 return node->ultimate_alias_target ()->rtl;
1889 /* Return a string describing the failure REASON. */
1891 const char*
1892 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1894 #undef DEFCIFCODE
1895 #define DEFCIFCODE(code, type, string) string,
1897 static const char *cif_string_table[CIF_N_REASONS] = {
1898 #include "cif-code.def"
1901 /* Signedness of an enum type is implementation defined, so cast it
1902 to unsigned before testing. */
1903 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1904 return cif_string_table[reason];
1907 /* Return a type describing the failure REASON. */
1909 cgraph_inline_failed_type_t
1910 cgraph_inline_failed_type (cgraph_inline_failed_t reason)
1912 #undef DEFCIFCODE
1913 #define DEFCIFCODE(code, type, string) type,
1915 static cgraph_inline_failed_type_t cif_type_table[CIF_N_REASONS] = {
1916 #include "cif-code.def"
1919 /* Signedness of an enum type is implementation defined, so cast it
1920 to unsigned before testing. */
1921 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1922 return cif_type_table[reason];
1925 /* Names used to print out the availability enum. */
1926 const char * const cgraph_availability_names[] =
1927 {"unset", "not_available", "overwritable", "available", "local"};
1929 /* Output flags of edge to a file F. */
1931 void
1932 cgraph_edge::dump_edge_flags (FILE *f)
1934 if (speculative)
1935 fprintf (f, "(speculative) ");
1936 if (!inline_failed)
1937 fprintf (f, "(inlined) ");
1938 if (indirect_inlining_edge)
1939 fprintf (f, "(indirect_inlining) ");
1940 if (count)
1941 fprintf (f, "(%" PRId64"x) ", (int64_t)count);
1942 if (frequency)
1943 fprintf (f, "(%.2f per call) ", frequency / (double)CGRAPH_FREQ_BASE);
1944 if (can_throw_external)
1945 fprintf (f, "(can throw external) ");
1948 /* Dump call graph node to file F. */
1950 void
1951 cgraph_node::dump (FILE *f)
1953 cgraph_edge *edge;
1955 dump_base (f);
1957 if (global.inlined_to)
1958 fprintf (f, " Function %s/%i is inline copy in %s/%i\n",
1959 xstrdup_for_dump (name ()),
1960 order,
1961 xstrdup_for_dump (global.inlined_to->name ()),
1962 global.inlined_to->order);
1963 if (clone_of)
1964 fprintf (f, " Clone of %s/%i\n",
1965 clone_of->asm_name (),
1966 clone_of->order);
1967 if (symtab->function_flags_ready)
1968 fprintf (f, " Availability: %s\n",
1969 cgraph_availability_names [get_availability ()]);
1971 if (profile_id)
1972 fprintf (f, " Profile id: %i\n",
1973 profile_id);
1974 fprintf (f, " First run: %i\n", tp_first_run);
1975 fprintf (f, " Function flags:");
1976 if (count)
1977 fprintf (f, " executed %" PRId64"x",
1978 (int64_t)count);
1979 if (origin)
1980 fprintf (f, " nested in: %s", origin->asm_name ());
1981 if (gimple_has_body_p (decl))
1982 fprintf (f, " body");
1983 if (process)
1984 fprintf (f, " process");
1985 if (local.local)
1986 fprintf (f, " local");
1987 if (local.redefined_extern_inline)
1988 fprintf (f, " redefined_extern_inline");
1989 if (only_called_at_startup)
1990 fprintf (f, " only_called_at_startup");
1991 if (only_called_at_exit)
1992 fprintf (f, " only_called_at_exit");
1993 if (tm_clone)
1994 fprintf (f, " tm_clone");
1995 if (icf_merged)
1996 fprintf (f, " icf_merged");
1997 if (nonfreeing_fn)
1998 fprintf (f, " nonfreeing_fn");
1999 if (DECL_STATIC_CONSTRUCTOR (decl))
2000 fprintf (f," static_constructor (priority:%i)", get_init_priority ());
2001 if (DECL_STATIC_DESTRUCTOR (decl))
2002 fprintf (f," static_destructor (priority:%i)", get_fini_priority ());
2003 if (frequency == NODE_FREQUENCY_HOT)
2004 fprintf (f, " hot");
2005 if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2006 fprintf (f, " unlikely_executed");
2007 if (frequency == NODE_FREQUENCY_EXECUTED_ONCE)
2008 fprintf (f, " executed_once");
2009 if (only_called_at_startup)
2010 fprintf (f, " only_called_at_startup");
2011 if (only_called_at_exit)
2012 fprintf (f, " only_called_at_exit");
2013 if (opt_for_fn (decl, optimize_size))
2014 fprintf (f, " optimize_size");
2015 if (parallelized_function)
2016 fprintf (f, " parallelized_function");
2018 fprintf (f, "\n");
2020 if (thunk.thunk_p)
2022 fprintf (f, " Thunk");
2023 if (thunk.alias)
2024 fprintf (f, " of %s (asm: %s)",
2025 lang_hooks.decl_printable_name (thunk.alias, 2),
2026 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2027 fprintf (f, " fixed offset %i virtual value %i has "
2028 "virtual offset %i)\n",
2029 (int)thunk.fixed_offset,
2030 (int)thunk.virtual_value,
2031 (int)thunk.virtual_offset_p);
2033 if (alias && thunk.alias
2034 && DECL_P (thunk.alias))
2036 fprintf (f, " Alias of %s",
2037 lang_hooks.decl_printable_name (thunk.alias, 2));
2038 if (DECL_ASSEMBLER_NAME_SET_P (thunk.alias))
2039 fprintf (f, " (asm: %s)",
2040 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2041 fprintf (f, "\n");
2044 fprintf (f, " Called by: ");
2046 for (edge = callers; edge; edge = edge->next_caller)
2048 fprintf (f, "%s/%i ", edge->caller->asm_name (),
2049 edge->caller->order);
2050 edge->dump_edge_flags (f);
2053 fprintf (f, "\n Calls: ");
2054 for (edge = callees; edge; edge = edge->next_callee)
2056 fprintf (f, "%s/%i ", edge->callee->asm_name (),
2057 edge->callee->order);
2058 edge->dump_edge_flags (f);
2060 fprintf (f, "\n");
2062 for (edge = indirect_calls; edge; edge = edge->next_callee)
2064 if (edge->indirect_info->polymorphic)
2066 fprintf (f, " Polymorphic indirect call of type ");
2067 print_generic_expr (f, edge->indirect_info->otr_type, TDF_SLIM);
2068 fprintf (f, " token:%i", (int) edge->indirect_info->otr_token);
2070 else
2071 fprintf (f, " Indirect call");
2072 edge->dump_edge_flags (f);
2073 if (edge->indirect_info->param_index != -1)
2075 fprintf (f, " of param:%i", edge->indirect_info->param_index);
2076 if (edge->indirect_info->agg_contents)
2077 fprintf (f, " loaded from %s %s at offset %i",
2078 edge->indirect_info->member_ptr ? "member ptr" : "aggregate",
2079 edge->indirect_info->by_ref ? "passed by reference":"",
2080 (int)edge->indirect_info->offset);
2081 if (edge->indirect_info->vptr_changed)
2082 fprintf (f, " (vptr maybe changed)");
2084 fprintf (f, "\n");
2085 if (edge->indirect_info->polymorphic)
2086 edge->indirect_info->context.dump (f);
2089 if (instrumentation_clone)
2090 fprintf (f, " Is instrumented version.\n");
2091 else if (instrumented_version)
2092 fprintf (f, " Has instrumented version.\n");
2095 /* Dump call graph node NODE to stderr. */
2097 DEBUG_FUNCTION void
2098 cgraph_node::debug (void)
2100 dump (stderr);
2103 /* Dump the callgraph to file F. */
2105 void
2106 cgraph_node::dump_cgraph (FILE *f)
2108 cgraph_node *node;
2110 fprintf (f, "callgraph:\n\n");
2111 FOR_EACH_FUNCTION (node)
2112 node->dump (f);
2115 /* Return true when the DECL can possibly be inlined. */
2117 bool
2118 cgraph_function_possibly_inlined_p (tree decl)
2120 if (!symtab->global_info_ready)
2121 return !DECL_UNINLINABLE (decl);
2122 return DECL_POSSIBLY_INLINED (decl);
2125 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2126 void
2127 cgraph_node::unnest (void)
2129 cgraph_node **node2 = &origin->nested;
2130 gcc_assert (origin);
2132 while (*node2 != this)
2133 node2 = &(*node2)->next_nested;
2134 *node2 = next_nested;
2135 origin = NULL;
2138 /* Return function availability. See cgraph.h for description of individual
2139 return values. */
2140 enum availability
2141 cgraph_node::get_availability (void)
2143 enum availability avail;
2144 if (!analyzed)
2145 avail = AVAIL_NOT_AVAILABLE;
2146 else if (local.local)
2147 avail = AVAIL_LOCAL;
2148 else if (alias && weakref)
2149 ultimate_alias_target (&avail);
2150 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
2151 avail = AVAIL_INTERPOSABLE;
2152 else if (!externally_visible)
2153 avail = AVAIL_AVAILABLE;
2154 /* Inline functions are safe to be analyzed even if their symbol can
2155 be overwritten at runtime. It is not meaningful to enforce any sane
2156 behaviour on replacing inline function by different body. */
2157 else if (DECL_DECLARED_INLINE_P (decl))
2158 avail = AVAIL_AVAILABLE;
2160 /* If the function can be overwritten, return OVERWRITABLE. Take
2161 care at least of two notable extensions - the COMDAT functions
2162 used to share template instantiations in C++ (this is symmetric
2163 to code cp_cannot_inline_tree_fn and probably shall be shared and
2164 the inlinability hooks completely eliminated).
2166 ??? Does the C++ one definition rule allow us to always return
2167 AVAIL_AVAILABLE here? That would be good reason to preserve this
2168 bit. */
2170 else if (decl_replaceable_p (decl) && !DECL_EXTERNAL (decl))
2171 avail = AVAIL_INTERPOSABLE;
2172 else avail = AVAIL_AVAILABLE;
2174 return avail;
2177 /* Worker for cgraph_node_can_be_local_p. */
2178 static bool
2179 cgraph_node_cannot_be_local_p_1 (cgraph_node *node, void *)
2181 return !(!node->force_output
2182 && ((DECL_COMDAT (node->decl)
2183 && !node->forced_by_abi
2184 && !node->used_from_object_file_p ()
2185 && !node->same_comdat_group)
2186 || !node->externally_visible));
2189 /* Return true if cgraph_node can be made local for API change.
2190 Extern inline functions and C++ COMDAT functions can be made local
2191 at the expense of possible code size growth if function is used in multiple
2192 compilation units. */
2193 bool
2194 cgraph_node::can_be_local_p (void)
2196 return (!address_taken
2197 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1,
2198 NULL, true));
2201 /* Call callback on cgraph_node, thunks and aliases associated to cgraph_node.
2202 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2203 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
2204 skipped. */
2205 bool
2206 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback)
2207 (cgraph_node *, void *),
2208 void *data,
2209 bool include_overwritable,
2210 bool exclude_virtual_thunks)
2212 cgraph_edge *e;
2213 ipa_ref *ref;
2215 if (callback (this, data))
2216 return true;
2217 FOR_EACH_ALIAS (this, ref)
2219 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2220 if (include_overwritable
2221 || alias->get_availability () > AVAIL_INTERPOSABLE)
2222 if (alias->call_for_symbol_thunks_and_aliases (callback, data,
2223 include_overwritable,
2224 exclude_virtual_thunks))
2225 return true;
2227 for (e = callers; e; e = e->next_caller)
2228 if (e->caller->thunk.thunk_p
2229 && (include_overwritable
2230 || e->caller->get_availability () > AVAIL_INTERPOSABLE)
2231 && !(exclude_virtual_thunks
2232 && e->caller->thunk.virtual_offset_p))
2233 if (e->caller->call_for_symbol_thunks_and_aliases (callback, data,
2234 include_overwritable,
2235 exclude_virtual_thunks))
2236 return true;
2238 return false;
2241 /* Worker to bring NODE local. */
2243 bool
2244 cgraph_node::make_local (cgraph_node *node, void *)
2246 gcc_checking_assert (node->can_be_local_p ());
2247 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2249 node->make_decl_local ();
2250 node->set_section (NULL);
2251 node->set_comdat_group (NULL);
2252 node->externally_visible = false;
2253 node->forced_by_abi = false;
2254 node->local.local = true;
2255 node->set_section (NULL);
2256 node->unique_name = ((node->resolution == LDPR_PREVAILING_DEF_IRONLY
2257 || node->resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
2258 && !flag_incremental_link);
2259 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2260 gcc_assert (node->get_availability () == AVAIL_LOCAL);
2262 return false;
2265 /* Bring cgraph node local. */
2267 void
2268 cgraph_node::make_local (void)
2270 call_for_symbol_thunks_and_aliases (cgraph_node::make_local, NULL, true);
2273 /* Worker to set nothrow flag. */
2275 static bool
2276 cgraph_set_nothrow_flag_1 (cgraph_node *node, void *data)
2278 cgraph_edge *e;
2280 TREE_NOTHROW (node->decl) = data != NULL;
2282 if (data != NULL)
2283 for (e = node->callers; e; e = e->next_caller)
2284 e->can_throw_external = false;
2285 return false;
2288 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2289 if any to NOTHROW. */
2291 void
2292 cgraph_node::set_nothrow_flag (bool nothrow)
2294 call_for_symbol_thunks_and_aliases (cgraph_set_nothrow_flag_1,
2295 (void *)(size_t)nothrow, false);
2298 /* Worker to set const flag. */
2300 static bool
2301 cgraph_set_const_flag_1 (cgraph_node *node, void *data)
2303 /* Static constructors and destructors without a side effect can be
2304 optimized out. */
2305 if (data && !((size_t)data & 2))
2307 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2308 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2309 if (DECL_STATIC_DESTRUCTOR (node->decl))
2310 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2312 TREE_READONLY (node->decl) = data != NULL;
2313 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = ((size_t)data & 2) != 0;
2314 return false;
2317 /* Set TREE_READONLY on cgraph_node's decl and on aliases of the node
2318 if any to READONLY. */
2320 void
2321 cgraph_node::set_const_flag (bool readonly, bool looping)
2323 call_for_symbol_thunks_and_aliases (cgraph_set_const_flag_1,
2324 (void *)(size_t)(readonly + (int)looping * 2),
2325 false, true);
2328 /* Worker to set pure flag. */
2330 static bool
2331 cgraph_set_pure_flag_1 (cgraph_node *node, void *data)
2333 /* Static constructors and destructors without a side effect can be
2334 optimized out. */
2335 if (data && !((size_t)data & 2))
2337 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2338 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2339 if (DECL_STATIC_DESTRUCTOR (node->decl))
2340 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2342 DECL_PURE_P (node->decl) = data != NULL;
2343 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = ((size_t)data & 2) != 0;
2344 return false;
2347 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2348 if any to PURE. */
2350 void
2351 cgraph_node::set_pure_flag (bool pure, bool looping)
2353 call_for_symbol_thunks_and_aliases (cgraph_set_pure_flag_1,
2354 (void *)(size_t)(pure + (int)looping * 2),
2355 false, true);
2358 /* Return true when cgraph_node can not return or throw and thus
2359 it is safe to ignore its side effects for IPA analysis. */
2361 bool
2362 cgraph_node::cannot_return_p (void)
2364 int flags = flags_from_decl_or_type (decl);
2365 if (!opt_for_fn (decl, flag_exceptions))
2366 return (flags & ECF_NORETURN) != 0;
2367 else
2368 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2369 == (ECF_NORETURN | ECF_NOTHROW));
2372 /* Return true when call of edge can not lead to return from caller
2373 and thus it is safe to ignore its side effects for IPA analysis
2374 when computing side effects of the caller.
2375 FIXME: We could actually mark all edges that have no reaching
2376 patch to the exit block or throw to get better results. */
2377 bool
2378 cgraph_edge::cannot_lead_to_return_p (void)
2380 if (caller->cannot_return_p ())
2381 return true;
2382 if (indirect_unknown_callee)
2384 int flags = indirect_info->ecf_flags;
2385 if (!opt_for_fn (caller->decl, flag_exceptions))
2386 return (flags & ECF_NORETURN) != 0;
2387 else
2388 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2389 == (ECF_NORETURN | ECF_NOTHROW));
2391 else
2392 return callee->cannot_return_p ();
2395 /* Return true if the call can be hot. */
2397 bool
2398 cgraph_edge::maybe_hot_p (void)
2400 /* TODO: Export profile_status from cfun->cfg to cgraph_node. */
2401 if (profile_info
2402 && opt_for_fn (caller->decl, flag_branch_probabilities)
2403 && !maybe_hot_count_p (NULL, count))
2404 return false;
2405 if (caller->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
2406 || (callee
2407 && callee->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED))
2408 return false;
2409 if (caller->frequency > NODE_FREQUENCY_UNLIKELY_EXECUTED
2410 && (callee
2411 && callee->frequency <= NODE_FREQUENCY_EXECUTED_ONCE))
2412 return false;
2413 if (opt_for_fn (caller->decl, optimize_size))
2414 return false;
2415 if (caller->frequency == NODE_FREQUENCY_HOT)
2416 return true;
2417 if (caller->frequency == NODE_FREQUENCY_EXECUTED_ONCE
2418 && frequency < CGRAPH_FREQ_BASE * 3 / 2)
2419 return false;
2420 if (opt_for_fn (caller->decl, flag_guess_branch_prob))
2422 if (PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION) == 0
2423 || frequency <= (CGRAPH_FREQ_BASE
2424 / PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION)))
2425 return false;
2427 return true;
2430 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2432 static bool
2433 nonremovable_p (cgraph_node *node, void *)
2435 return !node->can_remove_if_no_direct_calls_and_refs_p ();
2438 /* Return true if whole comdat group can be removed if there are no direct
2439 calls to THIS. */
2441 bool
2442 cgraph_node::can_remove_if_no_direct_calls_p (bool will_inline)
2444 struct ipa_ref *ref;
2446 /* For local symbols or non-comdat group it is the same as
2447 can_remove_if_no_direct_calls_p. */
2448 if (!externally_visible || !same_comdat_group)
2450 if (DECL_EXTERNAL (decl))
2451 return true;
2452 if (address_taken)
2453 return false;
2454 return !call_for_symbol_and_aliases (nonremovable_p, NULL, true);
2457 if (will_inline && address_taken)
2458 return false;
2460 /* Otheriwse check if we can remove the symbol itself and then verify
2461 that only uses of the comdat groups are direct call to THIS
2462 or its aliases. */
2463 if (!can_remove_if_no_direct_calls_and_refs_p ())
2464 return false;
2466 /* Check that all refs come from within the comdat group. */
2467 for (int i = 0; iterate_referring (i, ref); i++)
2468 if (ref->referring->get_comdat_group () != get_comdat_group ())
2469 return false;
2471 struct cgraph_node *target = ultimate_alias_target ();
2472 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2473 next != this; next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2475 if (!externally_visible)
2476 continue;
2477 if (!next->alias
2478 && !next->can_remove_if_no_direct_calls_and_refs_p ())
2479 return false;
2481 /* If we see different symbol than THIS, be sure to check calls. */
2482 if (next->ultimate_alias_target () != target)
2483 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2484 if (e->caller->get_comdat_group () != get_comdat_group ()
2485 || will_inline)
2486 return false;
2488 /* If function is not being inlined, we care only about
2489 references outside of the comdat group. */
2490 if (!will_inline)
2491 for (int i = 0; next->iterate_referring (i, ref); i++)
2492 if (ref->referring->get_comdat_group () != get_comdat_group ())
2493 return false;
2495 return true;
2498 /* Return true when function cgraph_node can be expected to be removed
2499 from program when direct calls in this compilation unit are removed.
2501 As a special case COMDAT functions are
2502 cgraph_can_remove_if_no_direct_calls_p while the are not
2503 cgraph_only_called_directly_p (it is possible they are called from other
2504 unit)
2506 This function behaves as cgraph_only_called_directly_p because eliminating
2507 all uses of COMDAT function does not make it necessarily disappear from
2508 the program unless we are compiling whole program or we do LTO. In this
2509 case we know we win since dynamic linking will not really discard the
2510 linkonce section. */
2512 bool
2513 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p
2514 (bool will_inline)
2516 gcc_assert (!global.inlined_to);
2517 if (DECL_EXTERNAL (decl))
2518 return true;
2520 if (!in_lto_p && !flag_whole_program)
2522 /* If the symbol is in comdat group, we need to verify that whole comdat
2523 group becomes unreachable. Technically we could skip references from
2524 within the group, too. */
2525 if (!only_called_directly_p ())
2526 return false;
2527 if (same_comdat_group && externally_visible)
2529 struct cgraph_node *target = ultimate_alias_target ();
2531 if (will_inline && address_taken)
2532 return true;
2533 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2534 next != this;
2535 next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2537 if (!externally_visible)
2538 continue;
2539 if (!next->alias
2540 && !next->only_called_directly_p ())
2541 return false;
2543 /* If we see different symbol than THIS,
2544 be sure to check calls. */
2545 if (next->ultimate_alias_target () != target)
2546 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2547 if (e->caller->get_comdat_group () != get_comdat_group ()
2548 || will_inline)
2549 return false;
2552 return true;
2554 else
2555 return can_remove_if_no_direct_calls_p (will_inline);
2559 /* Worker for cgraph_only_called_directly_p. */
2561 static bool
2562 cgraph_not_only_called_directly_p_1 (cgraph_node *node, void *)
2564 return !node->only_called_directly_or_aliased_p ();
2567 /* Return true when function cgraph_node and all its aliases are only called
2568 directly.
2569 i.e. it is not externally visible, address was not taken and
2570 it is not used in any other non-standard way. */
2572 bool
2573 cgraph_node::only_called_directly_p (void)
2575 gcc_assert (ultimate_alias_target () == this);
2576 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1,
2577 NULL, true);
2581 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2583 static bool
2584 collect_callers_of_node_1 (cgraph_node *node, void *data)
2586 vec<cgraph_edge *> *redirect_callers = (vec<cgraph_edge *> *)data;
2587 cgraph_edge *cs;
2588 enum availability avail;
2589 node->ultimate_alias_target (&avail);
2591 if (avail > AVAIL_INTERPOSABLE)
2592 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
2593 if (!cs->indirect_inlining_edge)
2594 redirect_callers->safe_push (cs);
2595 return false;
2598 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2599 cgraph_node (i.e. are not overwritable). */
2601 vec<cgraph_edge *>
2602 cgraph_node::collect_callers (void)
2604 vec<cgraph_edge *> redirect_callers = vNULL;
2605 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1,
2606 &redirect_callers, false);
2607 return redirect_callers;
2610 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. */
2612 static bool
2613 clone_of_p (cgraph_node *node, cgraph_node *node2)
2615 bool skipped_thunk = false;
2616 node = node->ultimate_alias_target ();
2617 node2 = node2->ultimate_alias_target ();
2619 /* There are no virtual clones of thunks so check former_clone_of or if we
2620 might have skipped thunks because this adjustments are no longer
2621 necessary. */
2622 while (node->thunk.thunk_p)
2624 if (node2->former_clone_of == node->decl)
2625 return true;
2626 if (!node->thunk.this_adjusting)
2627 return false;
2628 node = node->callees->callee->ultimate_alias_target ();
2629 skipped_thunk = true;
2632 if (skipped_thunk)
2634 if (!node2->clone.args_to_skip
2635 || !bitmap_bit_p (node2->clone.args_to_skip, 0))
2636 return false;
2637 if (node2->former_clone_of == node->decl)
2638 return true;
2639 else if (!node2->clone_of)
2640 return false;
2643 while (node != node2 && node2)
2644 node2 = node2->clone_of;
2645 return node2 != NULL;
2648 /* Verify edge count and frequency. */
2650 bool
2651 cgraph_edge::verify_count_and_frequency ()
2653 bool error_found = false;
2654 if (count < 0)
2656 error ("caller edge count is negative");
2657 error_found = true;
2659 if (frequency < 0)
2661 error ("caller edge frequency is negative");
2662 error_found = true;
2664 if (frequency > CGRAPH_FREQ_MAX)
2666 error ("caller edge frequency is too large");
2667 error_found = true;
2669 return error_found;
2672 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
2673 static void
2674 cgraph_debug_gimple_stmt (function *this_cfun, gimple *stmt)
2676 bool fndecl_was_null = false;
2677 /* debug_gimple_stmt needs correct cfun */
2678 if (cfun != this_cfun)
2679 set_cfun (this_cfun);
2680 /* ...and an actual current_function_decl */
2681 if (!current_function_decl)
2683 current_function_decl = this_cfun->decl;
2684 fndecl_was_null = true;
2686 debug_gimple_stmt (stmt);
2687 if (fndecl_was_null)
2688 current_function_decl = NULL;
2691 /* Verify that call graph edge corresponds to DECL from the associated
2692 statement. Return true if the verification should fail. */
2694 bool
2695 cgraph_edge::verify_corresponds_to_fndecl (tree decl)
2697 cgraph_node *node;
2699 if (!decl || callee->global.inlined_to)
2700 return false;
2701 if (symtab->state == LTO_STREAMING)
2702 return false;
2703 node = cgraph_node::get (decl);
2705 /* We do not know if a node from a different partition is an alias or what it
2706 aliases and therefore cannot do the former_clone_of check reliably. When
2707 body_removed is set, we have lost all information about what was alias or
2708 thunk of and also cannot proceed. */
2709 if (!node
2710 || node->body_removed
2711 || node->in_other_partition
2712 || callee->icf_merged
2713 || callee->in_other_partition)
2714 return false;
2716 node = node->ultimate_alias_target ();
2718 /* Optimizers can redirect unreachable calls or calls triggering undefined
2719 behaviour to builtin_unreachable. */
2720 if (DECL_BUILT_IN_CLASS (callee->decl) == BUILT_IN_NORMAL
2721 && DECL_FUNCTION_CODE (callee->decl) == BUILT_IN_UNREACHABLE)
2722 return false;
2724 if (callee->former_clone_of != node->decl
2725 && (node != callee->ultimate_alias_target ())
2726 && !clone_of_p (node, callee))
2727 return true;
2728 else
2729 return false;
2732 /* Verify cgraph nodes of given cgraph node. */
2733 DEBUG_FUNCTION void
2734 cgraph_node::verify_node (void)
2736 cgraph_edge *e;
2737 function *this_cfun = DECL_STRUCT_FUNCTION (decl);
2738 basic_block this_block;
2739 gimple_stmt_iterator gsi;
2740 bool error_found = false;
2742 if (seen_error ())
2743 return;
2745 timevar_push (TV_CGRAPH_VERIFY);
2746 error_found |= verify_base ();
2747 for (e = callees; e; e = e->next_callee)
2748 if (e->aux)
2750 error ("aux field set for edge %s->%s",
2751 identifier_to_locale (e->caller->name ()),
2752 identifier_to_locale (e->callee->name ()));
2753 error_found = true;
2755 if (count < 0)
2757 error ("execution count is negative");
2758 error_found = true;
2760 if (global.inlined_to && same_comdat_group)
2762 error ("inline clone in same comdat group list");
2763 error_found = true;
2765 if (!definition && !in_other_partition && local.local)
2767 error ("local symbols must be defined");
2768 error_found = true;
2770 if (global.inlined_to && externally_visible)
2772 error ("externally visible inline clone");
2773 error_found = true;
2775 if (global.inlined_to && address_taken)
2777 error ("inline clone with address taken");
2778 error_found = true;
2780 if (global.inlined_to && force_output)
2782 error ("inline clone is forced to output");
2783 error_found = true;
2785 for (e = indirect_calls; e; e = e->next_callee)
2787 if (e->aux)
2789 error ("aux field set for indirect edge from %s",
2790 identifier_to_locale (e->caller->name ()));
2791 error_found = true;
2793 if (!e->indirect_unknown_callee
2794 || !e->indirect_info)
2796 error ("An indirect edge from %s is not marked as indirect or has "
2797 "associated indirect_info, the corresponding statement is: ",
2798 identifier_to_locale (e->caller->name ()));
2799 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
2800 error_found = true;
2803 bool check_comdat = comdat_local_p ();
2804 for (e = callers; e; e = e->next_caller)
2806 if (e->verify_count_and_frequency ())
2807 error_found = true;
2808 if (check_comdat
2809 && !in_same_comdat_group_p (e->caller))
2811 error ("comdat-local function called by %s outside its comdat",
2812 identifier_to_locale (e->caller->name ()));
2813 error_found = true;
2815 if (!e->inline_failed)
2817 if (global.inlined_to
2818 != (e->caller->global.inlined_to
2819 ? e->caller->global.inlined_to : e->caller))
2821 error ("inlined_to pointer is wrong");
2822 error_found = true;
2824 if (callers->next_caller)
2826 error ("multiple inline callers");
2827 error_found = true;
2830 else
2831 if (global.inlined_to)
2833 error ("inlined_to pointer set for noninline callers");
2834 error_found = true;
2837 for (e = callees; e; e = e->next_callee)
2839 if (e->verify_count_and_frequency ())
2840 error_found = true;
2841 if (gimple_has_body_p (e->caller->decl)
2842 && !e->caller->global.inlined_to
2843 && !e->speculative
2844 /* Optimized out calls are redirected to __builtin_unreachable. */
2845 && (e->frequency
2846 || e->callee->decl
2847 != builtin_decl_implicit (BUILT_IN_UNREACHABLE))
2848 && (e->frequency
2849 != compute_call_stmt_bb_frequency (e->caller->decl,
2850 gimple_bb (e->call_stmt))))
2852 error ("caller edge frequency %i does not match BB frequency %i",
2853 e->frequency,
2854 compute_call_stmt_bb_frequency (e->caller->decl,
2855 gimple_bb (e->call_stmt)));
2856 error_found = true;
2859 for (e = indirect_calls; e; e = e->next_callee)
2861 if (e->verify_count_and_frequency ())
2862 error_found = true;
2863 if (gimple_has_body_p (e->caller->decl)
2864 && !e->caller->global.inlined_to
2865 && !e->speculative
2866 && (e->frequency
2867 != compute_call_stmt_bb_frequency (e->caller->decl,
2868 gimple_bb (e->call_stmt))))
2870 error ("indirect call frequency %i does not match BB frequency %i",
2871 e->frequency,
2872 compute_call_stmt_bb_frequency (e->caller->decl,
2873 gimple_bb (e->call_stmt)));
2874 error_found = true;
2877 if (!callers && global.inlined_to)
2879 error ("inlined_to pointer is set but no predecessors found");
2880 error_found = true;
2882 if (global.inlined_to == this)
2884 error ("inlined_to pointer refers to itself");
2885 error_found = true;
2888 if (clone_of)
2890 cgraph_node *n;
2891 for (n = clone_of->clones; n; n = n->next_sibling_clone)
2892 if (n == this)
2893 break;
2894 if (!n)
2896 error ("cgraph_node has wrong clone_of");
2897 error_found = true;
2900 if (clones)
2902 cgraph_node *n;
2903 for (n = clones; n; n = n->next_sibling_clone)
2904 if (n->clone_of != this)
2905 break;
2906 if (n)
2908 error ("cgraph_node has wrong clone list");
2909 error_found = true;
2912 if ((prev_sibling_clone || next_sibling_clone) && !clone_of)
2914 error ("cgraph_node is in clone list but it is not clone");
2915 error_found = true;
2917 if (!prev_sibling_clone && clone_of && clone_of->clones != this)
2919 error ("cgraph_node has wrong prev_clone pointer");
2920 error_found = true;
2922 if (prev_sibling_clone && prev_sibling_clone->next_sibling_clone != this)
2924 error ("double linked list of clones corrupted");
2925 error_found = true;
2928 if (analyzed && alias)
2930 bool ref_found = false;
2931 int i;
2932 ipa_ref *ref = NULL;
2934 if (callees)
2936 error ("Alias has call edges");
2937 error_found = true;
2939 for (i = 0; iterate_reference (i, ref); i++)
2940 if (ref->use == IPA_REF_CHKP)
2942 else if (ref->use != IPA_REF_ALIAS)
2944 error ("Alias has non-alias reference");
2945 error_found = true;
2947 else if (ref_found)
2949 error ("Alias has more than one alias reference");
2950 error_found = true;
2952 else
2953 ref_found = true;
2954 if (!ref_found)
2956 error ("Analyzed alias has no reference");
2957 error_found = true;
2961 /* Check instrumented version reference. */
2962 if (instrumented_version
2963 && instrumented_version->instrumented_version != this)
2965 error ("Instrumentation clone does not reference original node");
2966 error_found = true;
2969 /* Cannot have orig_decl for not instrumented nodes. */
2970 if (!instrumentation_clone && orig_decl)
2972 error ("Not instrumented node has non-NULL original declaration");
2973 error_found = true;
2976 /* If original not instrumented node still exists then we may check
2977 original declaration is set properly. */
2978 if (instrumented_version
2979 && orig_decl
2980 && orig_decl != instrumented_version->decl)
2982 error ("Instrumented node has wrong original declaration");
2983 error_found = true;
2986 /* Check all nodes have chkp reference to their instrumented versions. */
2987 if (analyzed
2988 && instrumented_version
2989 && !instrumentation_clone)
2991 bool ref_found = false;
2992 int i;
2993 struct ipa_ref *ref;
2995 for (i = 0; iterate_reference (i, ref); i++)
2996 if (ref->use == IPA_REF_CHKP)
2998 if (ref_found)
3000 error ("Node has more than one chkp reference");
3001 error_found = true;
3003 if (ref->referred != instrumented_version)
3005 error ("Wrong node is referenced with chkp reference");
3006 error_found = true;
3008 ref_found = true;
3011 if (!ref_found)
3013 error ("Analyzed node has no reference to instrumented version");
3014 error_found = true;
3018 if (instrumentation_clone
3019 && DECL_BUILT_IN_CLASS (decl) == NOT_BUILT_IN)
3021 tree name = DECL_ASSEMBLER_NAME (decl);
3022 tree orig_name = DECL_ASSEMBLER_NAME (orig_decl);
3024 if (!IDENTIFIER_TRANSPARENT_ALIAS (name)
3025 || TREE_CHAIN (name) != orig_name)
3027 error ("Alias chain for instrumented node is broken");
3028 error_found = true;
3032 if (analyzed && thunk.thunk_p)
3034 if (!callees)
3036 error ("No edge out of thunk node");
3037 error_found = true;
3039 else if (callees->next_callee)
3041 error ("More than one edge out of thunk node");
3042 error_found = true;
3044 if (gimple_has_body_p (decl))
3046 error ("Thunk is not supposed to have body");
3047 error_found = true;
3049 if (thunk.add_pointer_bounds_args
3050 && !instrumented_version->semantically_equivalent_p (callees->callee))
3052 error ("Instrumentation thunk has wrong edge callee");
3053 error_found = true;
3056 else if (analyzed && gimple_has_body_p (decl)
3057 && !TREE_ASM_WRITTEN (decl)
3058 && (!DECL_EXTERNAL (decl) || global.inlined_to)
3059 && !flag_wpa)
3061 if (this_cfun->cfg)
3063 hash_set<gimple *> stmts;
3064 int i;
3065 ipa_ref *ref = NULL;
3067 /* Reach the trees by walking over the CFG, and note the
3068 enclosing basic-blocks in the call edges. */
3069 FOR_EACH_BB_FN (this_block, this_cfun)
3071 for (gsi = gsi_start_phis (this_block);
3072 !gsi_end_p (gsi); gsi_next (&gsi))
3073 stmts.add (gsi_stmt (gsi));
3074 for (gsi = gsi_start_bb (this_block);
3075 !gsi_end_p (gsi);
3076 gsi_next (&gsi))
3078 gimple *stmt = gsi_stmt (gsi);
3079 stmts.add (stmt);
3080 if (is_gimple_call (stmt))
3082 cgraph_edge *e = get_edge (stmt);
3083 tree decl = gimple_call_fndecl (stmt);
3084 if (e)
3086 if (e->aux)
3088 error ("shared call_stmt:");
3089 cgraph_debug_gimple_stmt (this_cfun, stmt);
3090 error_found = true;
3092 if (!e->indirect_unknown_callee)
3094 if (e->verify_corresponds_to_fndecl (decl))
3096 error ("edge points to wrong declaration:");
3097 debug_tree (e->callee->decl);
3098 fprintf (stderr," Instead of:");
3099 debug_tree (decl);
3100 error_found = true;
3103 else if (decl)
3105 error ("an indirect edge with unknown callee "
3106 "corresponding to a call_stmt with "
3107 "a known declaration:");
3108 error_found = true;
3109 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3111 e->aux = (void *)1;
3113 else if (decl)
3115 error ("missing callgraph edge for call stmt:");
3116 cgraph_debug_gimple_stmt (this_cfun, stmt);
3117 error_found = true;
3122 for (i = 0; iterate_reference (i, ref); i++)
3123 if (ref->stmt && !stmts.contains (ref->stmt))
3125 error ("reference to dead statement");
3126 cgraph_debug_gimple_stmt (this_cfun, ref->stmt);
3127 error_found = true;
3130 else
3131 /* No CFG available?! */
3132 gcc_unreachable ();
3134 for (e = callees; e; e = e->next_callee)
3136 if (!e->aux)
3138 error ("edge %s->%s has no corresponding call_stmt",
3139 identifier_to_locale (e->caller->name ()),
3140 identifier_to_locale (e->callee->name ()));
3141 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3142 error_found = true;
3144 e->aux = 0;
3146 for (e = indirect_calls; e; e = e->next_callee)
3148 if (!e->aux && !e->speculative)
3150 error ("an indirect edge from %s has no corresponding call_stmt",
3151 identifier_to_locale (e->caller->name ()));
3152 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3153 error_found = true;
3155 e->aux = 0;
3158 if (error_found)
3160 dump (stderr);
3161 internal_error ("verify_cgraph_node failed");
3163 timevar_pop (TV_CGRAPH_VERIFY);
3166 /* Verify whole cgraph structure. */
3167 DEBUG_FUNCTION void
3168 cgraph_node::verify_cgraph_nodes (void)
3170 cgraph_node *node;
3172 if (seen_error ())
3173 return;
3175 FOR_EACH_FUNCTION (node)
3176 node->verify ();
3179 /* Walk the alias chain to return the function cgraph_node is alias of.
3180 Walk through thunks, too.
3181 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
3183 cgraph_node *
3184 cgraph_node::function_symbol (enum availability *availability)
3186 cgraph_node *node = ultimate_alias_target (availability);
3188 while (node->thunk.thunk_p)
3190 node = node->callees->callee;
3191 if (availability)
3193 enum availability a;
3194 a = node->get_availability ();
3195 if (a < *availability)
3196 *availability = a;
3198 node = node->ultimate_alias_target (availability);
3200 return node;
3203 /* Walk the alias chain to return the function cgraph_node is alias of.
3204 Walk through non virtual thunks, too. Thus we return either a function
3205 or a virtual thunk node.
3206 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
3208 cgraph_node *
3209 cgraph_node::function_or_virtual_thunk_symbol
3210 (enum availability *availability)
3212 cgraph_node *node = ultimate_alias_target (availability);
3214 while (node->thunk.thunk_p && !node->thunk.virtual_offset_p)
3216 node = node->callees->callee;
3217 if (availability)
3219 enum availability a;
3220 a = node->get_availability ();
3221 if (a < *availability)
3222 *availability = a;
3224 node = node->ultimate_alias_target (availability);
3226 return node;
3229 /* When doing LTO, read cgraph_node's body from disk if it is not already
3230 present. */
3232 bool
3233 cgraph_node::get_untransformed_body (void)
3235 lto_file_decl_data *file_data;
3236 const char *data, *name;
3237 size_t len;
3238 tree decl = this->decl;
3240 if (DECL_RESULT (decl))
3241 return false;
3243 gcc_assert (in_lto_p);
3245 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3247 file_data = lto_file_data;
3248 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
3250 /* We may have renamed the declaration, e.g., a static function. */
3251 name = lto_get_decl_name_mapping (file_data, name);
3253 data = lto_get_section_data (file_data, LTO_section_function_body,
3254 name, &len);
3255 if (!data)
3256 fatal_error (input_location, "%s: section %s is missing",
3257 file_data->file_name,
3258 name);
3260 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
3262 lto_input_function_body (file_data, this, data);
3263 lto_stats.num_function_bodies++;
3264 lto_free_section_data (file_data, LTO_section_function_body, name,
3265 data, len);
3266 lto_free_function_in_decl_state_for_node (this);
3267 /* Keep lto file data so ipa-inline-analysis knows about cross module
3268 inlining. */
3270 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
3272 return true;
3275 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3276 if it is not already present. When some IPA transformations are scheduled,
3277 apply them. */
3279 bool
3280 cgraph_node::get_body (void)
3282 bool updated;
3284 updated = get_untransformed_body ();
3286 /* Getting transformed body makes no sense for inline clones;
3287 we should never use this on real clones becuase they are materialized
3288 early.
3289 TODO: Materializing clones here will likely lead to smaller LTRANS
3290 footprint. */
3291 gcc_assert (!global.inlined_to && !clone_of);
3292 if (ipa_transforms_to_apply.exists ())
3294 opt_pass *saved_current_pass = current_pass;
3295 FILE *saved_dump_file = dump_file;
3296 int saved_dump_flags = dump_flags;
3298 push_cfun (DECL_STRUCT_FUNCTION (decl));
3299 execute_all_ipa_transforms ();
3300 cgraph_edge::rebuild_edges ();
3301 free_dominance_info (CDI_DOMINATORS);
3302 free_dominance_info (CDI_POST_DOMINATORS);
3303 pop_cfun ();
3304 updated = true;
3306 current_pass = saved_current_pass;
3307 dump_file = saved_dump_file;
3308 dump_flags = saved_dump_flags;
3310 return updated;
3313 /* Return the DECL_STRUCT_FUNCTION of the function. */
3315 struct function *
3316 cgraph_node::get_fun (void)
3318 cgraph_node *node = this;
3319 struct function *fun = DECL_STRUCT_FUNCTION (node->decl);
3321 while (!fun && node->clone_of)
3323 node = node->clone_of;
3324 fun = DECL_STRUCT_FUNCTION (node->decl);
3327 return fun;
3330 /* Verify if the type of the argument matches that of the function
3331 declaration. If we cannot verify this or there is a mismatch,
3332 return false. */
3334 static bool
3335 gimple_check_call_args (gimple *stmt, tree fndecl, bool args_count_match)
3337 tree parms, p;
3338 unsigned int i, nargs;
3340 /* Calls to internal functions always match their signature. */
3341 if (gimple_call_internal_p (stmt))
3342 return true;
3344 nargs = gimple_call_num_args (stmt);
3346 /* Get argument types for verification. */
3347 if (fndecl)
3348 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
3349 else
3350 parms = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
3352 /* Verify if the type of the argument matches that of the function
3353 declaration. If we cannot verify this or there is a mismatch,
3354 return false. */
3355 if (fndecl && DECL_ARGUMENTS (fndecl))
3357 for (i = 0, p = DECL_ARGUMENTS (fndecl);
3358 i < nargs;
3359 i++, p = DECL_CHAIN (p))
3361 tree arg;
3362 /* We cannot distinguish a varargs function from the case
3363 of excess parameters, still deferring the inlining decision
3364 to the callee is possible. */
3365 if (!p)
3366 break;
3367 arg = gimple_call_arg (stmt, i);
3368 if (p == error_mark_node
3369 || DECL_ARG_TYPE (p) == error_mark_node
3370 || arg == error_mark_node
3371 || (!types_compatible_p (DECL_ARG_TYPE (p), TREE_TYPE (arg))
3372 && !fold_convertible_p (DECL_ARG_TYPE (p), arg)))
3373 return false;
3375 if (args_count_match && p)
3376 return false;
3378 else if (parms)
3380 for (i = 0, p = parms; i < nargs; i++, p = TREE_CHAIN (p))
3382 tree arg;
3383 /* If this is a varargs function defer inlining decision
3384 to callee. */
3385 if (!p)
3386 break;
3387 arg = gimple_call_arg (stmt, i);
3388 if (TREE_VALUE (p) == error_mark_node
3389 || arg == error_mark_node
3390 || TREE_CODE (TREE_VALUE (p)) == VOID_TYPE
3391 || (!types_compatible_p (TREE_VALUE (p), TREE_TYPE (arg))
3392 && !fold_convertible_p (TREE_VALUE (p), arg)))
3393 return false;
3396 else
3398 if (nargs != 0)
3399 return false;
3401 return true;
3404 /* Verify if the type of the argument and lhs of CALL_STMT matches
3405 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3406 true, the arg count needs to be the same.
3407 If we cannot verify this or there is a mismatch, return false. */
3409 bool
3410 gimple_check_call_matching_types (gimple *call_stmt, tree callee,
3411 bool args_count_match)
3413 tree lhs;
3415 if ((DECL_RESULT (callee)
3416 && !DECL_BY_REFERENCE (DECL_RESULT (callee))
3417 && (lhs = gimple_call_lhs (call_stmt)) != NULL_TREE
3418 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee)),
3419 TREE_TYPE (lhs))
3420 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee)), lhs))
3421 || !gimple_check_call_args (call_stmt, callee, args_count_match))
3422 return false;
3423 return true;
3426 /* Reset all state within cgraph.c so that we can rerun the compiler
3427 within the same process. For use by toplev::finalize. */
3429 void
3430 cgraph_c_finalize (void)
3432 symtab = NULL;
3434 x_cgraph_nodes_queue = NULL;
3436 cgraph_fnver_htab = NULL;
3437 version_info_node = NULL;
3440 /* A wroker for call_for_symbol_and_aliases. */
3442 bool
3443 cgraph_node::call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
3444 void *),
3445 void *data,
3446 bool include_overwritable)
3448 ipa_ref *ref;
3449 FOR_EACH_ALIAS (this, ref)
3451 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
3452 if (include_overwritable
3453 || alias->get_availability () > AVAIL_INTERPOSABLE)
3454 if (alias->call_for_symbol_and_aliases (callback, data,
3455 include_overwritable))
3456 return true;
3458 return false;
3461 /* Return true if NODE has thunk. */
3463 bool
3464 cgraph_node::has_thunk_p (cgraph_node *node, void *)
3466 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
3467 if (e->caller->thunk.thunk_p)
3468 return true;
3469 return false;
3472 #include "gt-cgraph.h"