1 /* Callgraph handling code.
2 Copyright (C) 2003-2014 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
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
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. */
28 #include "coretypes.h"
33 #include "print-tree.h"
34 #include "tree-inline.h"
35 #include "langhooks.h"
43 #include "dominance.h"
45 #include "basic-block.h"
48 #include "plugin-api.h"
51 #include "hard-reg-set.h"
57 #include "tree-ssa-alias.h"
58 #include "internal-fn.h"
60 #include "gimple-expr.h"
62 #include "gimple-iterator.h"
65 #include "gimple-ssa.h"
68 #include "value-prof.h"
70 #include "diagnostic-core.h"
72 #include "ipa-utils.h"
73 #include "lto-streamer.h"
74 #include "alloc-pool.h"
76 #include "ipa-inline.h"
78 #include "gimple-pretty-print.h"
83 #include "tree-chkp.h"
86 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
87 #include "tree-pass.h"
89 /* Queue of cgraph nodes scheduled to be lowered. */
90 symtab_node
*x_cgraph_nodes_queue
;
91 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
93 /* Symbol table global context. */
96 /* List of hooks triggered on cgraph_edge events. */
97 struct cgraph_edge_hook_list
{
98 cgraph_edge_hook hook
;
100 struct cgraph_edge_hook_list
*next
;
103 /* List of hooks triggered on cgraph_node events. */
104 struct cgraph_node_hook_list
{
105 cgraph_node_hook hook
;
107 struct cgraph_node_hook_list
*next
;
110 /* List of hooks triggered on events involving two cgraph_edges. */
111 struct cgraph_2edge_hook_list
{
112 cgraph_2edge_hook hook
;
114 struct cgraph_2edge_hook_list
*next
;
117 /* List of hooks triggered on events involving two cgraph_nodes. */
118 struct cgraph_2node_hook_list
{
119 cgraph_2node_hook hook
;
121 struct cgraph_2node_hook_list
*next
;
124 /* Hash descriptor for cgraph_function_version_info. */
126 struct function_version_hasher
: ggc_hasher
<cgraph_function_version_info
*>
128 static hashval_t
hash (cgraph_function_version_info
*);
129 static bool equal (cgraph_function_version_info
*,
130 cgraph_function_version_info
*);
133 /* Map a cgraph_node to cgraph_function_version_info using this htab.
134 The cgraph_function_version_info has a THIS_NODE field that is the
135 corresponding cgraph_node.. */
137 static GTY(()) hash_table
<function_version_hasher
> *cgraph_fnver_htab
= NULL
;
139 /* Hash function for cgraph_fnver_htab. */
141 function_version_hasher::hash (cgraph_function_version_info
*ptr
)
143 int uid
= ptr
->this_node
->uid
;
144 return (hashval_t
)(uid
);
147 /* eq function for cgraph_fnver_htab. */
149 function_version_hasher::equal (cgraph_function_version_info
*n1
,
150 cgraph_function_version_info
*n2
)
152 return n1
->this_node
->uid
== n2
->this_node
->uid
;
155 /* Mark as GC root all allocated nodes. */
156 static GTY(()) struct cgraph_function_version_info
*
157 version_info_node
= NULL
;
159 /* Get the cgraph_function_version_info node corresponding to node. */
160 cgraph_function_version_info
*
161 cgraph_node::function_version (void)
163 cgraph_function_version_info key
;
164 key
.this_node
= this;
166 if (cgraph_fnver_htab
== NULL
)
169 return cgraph_fnver_htab
->find (&key
);
172 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
173 corresponding to cgraph_node NODE. */
174 cgraph_function_version_info
*
175 cgraph_node::insert_new_function_version (void)
177 version_info_node
= NULL
;
178 version_info_node
= ggc_cleared_alloc
<cgraph_function_version_info
> ();
179 version_info_node
->this_node
= this;
181 if (cgraph_fnver_htab
== NULL
)
182 cgraph_fnver_htab
= hash_table
<function_version_hasher
>::create_ggc (2);
184 *cgraph_fnver_htab
->find_slot (version_info_node
, INSERT
)
186 return version_info_node
;
189 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
190 DECL is a duplicate declaration. */
192 cgraph_node::delete_function_version (tree decl
)
194 cgraph_node
*decl_node
= cgraph_node::get (decl
);
195 cgraph_function_version_info
*decl_v
= NULL
;
197 if (decl_node
== NULL
)
200 decl_v
= decl_node
->function_version ();
205 if (decl_v
->prev
!= NULL
)
206 decl_v
->prev
->next
= decl_v
->next
;
208 if (decl_v
->next
!= NULL
)
209 decl_v
->next
->prev
= decl_v
->prev
;
211 if (cgraph_fnver_htab
!= NULL
)
212 cgraph_fnver_htab
->remove_elt (decl_v
);
214 decl_node
->remove ();
217 /* Record that DECL1 and DECL2 are semantically identical function
220 cgraph_node::record_function_versions (tree decl1
, tree decl2
)
222 cgraph_node
*decl1_node
= cgraph_node::get_create (decl1
);
223 cgraph_node
*decl2_node
= cgraph_node::get_create (decl2
);
224 cgraph_function_version_info
*decl1_v
= NULL
;
225 cgraph_function_version_info
*decl2_v
= NULL
;
226 cgraph_function_version_info
*before
;
227 cgraph_function_version_info
*after
;
229 gcc_assert (decl1_node
!= NULL
&& decl2_node
!= NULL
);
230 decl1_v
= decl1_node
->function_version ();
231 decl2_v
= decl2_node
->function_version ();
233 if (decl1_v
!= NULL
&& decl2_v
!= NULL
)
237 decl1_v
= decl1_node
->insert_new_function_version ();
240 decl2_v
= decl2_node
->insert_new_function_version ();
242 /* Chain decl2_v and decl1_v. All semantically identical versions
243 will be chained together. */
248 while (before
->next
!= NULL
)
249 before
= before
->next
;
251 while (after
->prev
!= NULL
)
254 before
->next
= after
;
255 after
->prev
= before
;
258 /* Initialize callgraph dump file. */
261 symbol_table::initialize (void)
264 dump_file
= dump_begin (TDI_cgraph
, NULL
);
267 /* Allocate new callgraph node and insert it into basic data structures. */
270 symbol_table::create_empty (void)
272 cgraph_node
*node
= allocate_cgraph_symbol ();
274 node
->type
= SYMTAB_FUNCTION
;
275 node
->frequency
= NODE_FREQUENCY_NORMAL
;
276 node
->count_materialization_scale
= REG_BR_PROB_BASE
;
282 /* Register HOOK to be called with DATA on each removed edge. */
283 cgraph_edge_hook_list
*
284 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook
, void *data
)
286 cgraph_edge_hook_list
*entry
;
287 cgraph_edge_hook_list
**ptr
= &m_first_edge_removal_hook
;
289 entry
= (cgraph_edge_hook_list
*) xmalloc (sizeof (*entry
));
299 /* Remove ENTRY from the list of hooks called on removing edges. */
301 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list
*entry
)
303 cgraph_edge_hook_list
**ptr
= &m_first_edge_removal_hook
;
305 while (*ptr
!= entry
)
311 /* Call all edge removal hooks. */
313 symbol_table::call_edge_removal_hooks (cgraph_edge
*e
)
315 cgraph_edge_hook_list
*entry
= m_first_edge_removal_hook
;
318 entry
->hook (e
, entry
->data
);
323 /* Register HOOK to be called with DATA on each removed node. */
324 cgraph_node_hook_list
*
325 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook
, void *data
)
327 cgraph_node_hook_list
*entry
;
328 cgraph_node_hook_list
**ptr
= &m_first_cgraph_removal_hook
;
330 entry
= (cgraph_node_hook_list
*) xmalloc (sizeof (*entry
));
340 /* Remove ENTRY from the list of hooks called on removing nodes. */
342 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list
*entry
)
344 cgraph_node_hook_list
**ptr
= &m_first_cgraph_removal_hook
;
346 while (*ptr
!= entry
)
352 /* Call all node removal hooks. */
354 symbol_table::call_cgraph_removal_hooks (cgraph_node
*node
)
356 cgraph_node_hook_list
*entry
= m_first_cgraph_removal_hook
;
359 entry
->hook (node
, entry
->data
);
364 /* Call all node removal hooks. */
366 symbol_table::call_cgraph_insertion_hooks (cgraph_node
*node
)
368 cgraph_node_hook_list
*entry
= m_first_cgraph_insertion_hook
;
371 entry
->hook (node
, entry
->data
);
377 /* Register HOOK to be called with DATA on each inserted node. */
378 cgraph_node_hook_list
*
379 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook
, void *data
)
381 cgraph_node_hook_list
*entry
;
382 cgraph_node_hook_list
**ptr
= &m_first_cgraph_insertion_hook
;
384 entry
= (cgraph_node_hook_list
*) xmalloc (sizeof (*entry
));
394 /* Remove ENTRY from the list of hooks called on inserted nodes. */
396 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list
*entry
)
398 cgraph_node_hook_list
**ptr
= &m_first_cgraph_insertion_hook
;
400 while (*ptr
!= entry
)
406 /* Register HOOK to be called with DATA on each duplicated edge. */
407 cgraph_2edge_hook_list
*
408 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook
, void *data
)
410 cgraph_2edge_hook_list
*entry
;
411 cgraph_2edge_hook_list
**ptr
= &m_first_edge_duplicated_hook
;
413 entry
= (cgraph_2edge_hook_list
*) xmalloc (sizeof (*entry
));
423 /* Remove ENTRY from the list of hooks called on duplicating edges. */
425 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list
*entry
)
427 cgraph_2edge_hook_list
**ptr
= &m_first_edge_duplicated_hook
;
429 while (*ptr
!= entry
)
435 /* Call all edge duplication hooks. */
437 symbol_table::call_edge_duplication_hooks (cgraph_edge
*cs1
, cgraph_edge
*cs2
)
439 cgraph_2edge_hook_list
*entry
= m_first_edge_duplicated_hook
;
442 entry
->hook (cs1
, cs2
, entry
->data
);
447 /* Register HOOK to be called with DATA on each duplicated node. */
448 cgraph_2node_hook_list
*
449 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook
, void *data
)
451 cgraph_2node_hook_list
*entry
;
452 cgraph_2node_hook_list
**ptr
= &m_first_cgraph_duplicated_hook
;
454 entry
= (cgraph_2node_hook_list
*) xmalloc (sizeof (*entry
));
464 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
466 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list
*entry
)
468 cgraph_2node_hook_list
**ptr
= &m_first_cgraph_duplicated_hook
;
470 while (*ptr
!= entry
)
476 /* Call all node duplication hooks. */
478 symbol_table::call_cgraph_duplication_hooks (cgraph_node
*node
,
481 cgraph_2node_hook_list
*entry
= m_first_cgraph_duplicated_hook
;
484 entry
->hook (node
, node2
, entry
->data
);
489 /* Return cgraph node assigned to DECL. Create new one when needed. */
492 cgraph_node::create (tree decl
)
494 cgraph_node
*node
= symtab
->create_empty ();
495 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
500 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl
)))
502 node
->offloadable
= 1;
503 g
->have_offload
= true;
506 node
->register_symbol ();
508 if (DECL_CONTEXT (decl
) && TREE_CODE (DECL_CONTEXT (decl
)) == FUNCTION_DECL
)
510 node
->origin
= cgraph_node::get_create (DECL_CONTEXT (decl
));
511 node
->next_nested
= node
->origin
->nested
;
512 node
->origin
->nested
= node
;
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. */
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
)
528 cgraph_node
*node
= cgraph_node::create (decl
);
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
;
536 fprintf (dump_file
, "Introduced new external node "
537 "(%s/%i) and turned into root of the clone tree.\n",
538 xstrdup (node
->name ()), node
->order
);
541 fprintf (dump_file
, "Introduced new external node "
542 "(%s/%i).\n", xstrdup (node
->name ()),
547 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
548 the function body is associated with (not necessarily cgraph_node (DECL). */
551 cgraph_node::create_alias (tree alias
, tree target
)
553 cgraph_node
*alias_node
;
555 gcc_assert (TREE_CODE (target
) == FUNCTION_DECL
556 || TREE_CODE (target
) == IDENTIFIER_NODE
);
557 gcc_assert (TREE_CODE (alias
) == FUNCTION_DECL
);
558 alias_node
= cgraph_node::get_create (alias
);
559 gcc_assert (!alias_node
->definition
);
560 alias_node
->alias_target
= target
;
561 alias_node
->definition
= true;
562 alias_node
->alias
= true;
563 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias
)) != NULL
)
564 alias_node
->weakref
= true;
568 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
570 Same body aliases are output whenever the body of DECL is output,
571 and cgraph_node::get (ALIAS) transparently returns
572 cgraph_node::get (DECL). */
575 cgraph_node::create_same_body_alias (tree alias
, tree decl
)
578 #ifndef ASM_OUTPUT_DEF
579 /* If aliases aren't supported by the assembler, fail. */
582 /* Langhooks can create same body aliases of symbols not defined.
583 Those are useless. Drop them on the floor. */
584 if (symtab
->global_info_ready
)
587 n
= cgraph_node::create_alias (alias
, decl
);
588 n
->cpp_implicit_alias
= true;
589 if (symtab
->cpp_implicit_aliases_done
)
590 n
->resolve_alias (cgraph_node::get (decl
));
594 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
595 aliases DECL with an adjustments made into the first parameter.
596 See comments in thunk_adjust for detail on the parameters. */
599 cgraph_node::create_thunk (tree alias
, tree
, bool this_adjusting
,
600 HOST_WIDE_INT fixed_offset
,
601 HOST_WIDE_INT virtual_value
,
607 node
= cgraph_node::get (alias
);
611 node
= cgraph_node::create (alias
);
612 gcc_checking_assert (!virtual_offset
613 || wi::eq_p (virtual_offset
, virtual_value
));
614 node
->thunk
.fixed_offset
= fixed_offset
;
615 node
->thunk
.this_adjusting
= this_adjusting
;
616 node
->thunk
.virtual_value
= virtual_value
;
617 node
->thunk
.virtual_offset_p
= virtual_offset
!= NULL
;
618 node
->thunk
.alias
= real_alias
;
619 node
->thunk
.thunk_p
= true;
620 node
->definition
= true;
625 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
626 Return NULL if there's no such node. */
629 cgraph_node::get_for_asmname (tree asmname
)
631 /* We do not want to look at inline clones. */
632 for (symtab_node
*node
= symtab_node::get_for_asmname (asmname
);
634 node
= node
->next_sharing_asm_name
)
636 cgraph_node
*cn
= dyn_cast
<cgraph_node
*> (node
);
637 if (cn
&& !cn
->global
.inlined_to
)
643 /* Returns a hash value for X (which really is a cgraph_edge). */
646 cgraph_edge_hasher::hash (cgraph_edge
*e
)
648 return htab_hash_pointer (e
->call_stmt
);
651 /* Return nonzero if the call_stmt of of cgraph_edge X is stmt *Y. */
654 cgraph_edge_hasher::equal (cgraph_edge
*x
, gimple y
)
656 return x
->call_stmt
== y
;
659 /* Add call graph edge E to call site hash of its caller. */
662 cgraph_update_edge_in_call_site_hash (cgraph_edge
*e
)
664 gimple call
= e
->call_stmt
;
665 *e
->caller
->call_site_hash
->find_slot_with_hash (call
,
666 htab_hash_pointer (call
),
670 /* Add call graph edge E to call site hash of its caller. */
673 cgraph_add_edge_to_call_site_hash (cgraph_edge
*e
)
675 /* There are two speculative edges for every statement (one direct,
676 one indirect); always hash the direct one. */
677 if (e
->speculative
&& e
->indirect_unknown_callee
)
679 cgraph_edge
**slot
= e
->caller
->call_site_hash
->find_slot_with_hash
681 htab_hash_pointer (e
->call_stmt
), INSERT
);
684 gcc_assert (((cgraph_edge
*)*slot
)->speculative
);
689 gcc_assert (!*slot
|| e
->speculative
);
693 /* Return the callgraph edge representing the GIMPLE_CALL statement
697 cgraph_node::get_edge (gimple call_stmt
)
703 return call_site_hash
->find_with_hash (call_stmt
,
704 htab_hash_pointer (call_stmt
));
706 /* This loop may turn out to be performance problem. In such case adding
707 hashtables into call nodes with very many edges is probably best
708 solution. It is not good idea to add pointer into CALL_EXPR itself
709 because we want to make possible having multiple cgraph nodes representing
710 different clones of the same body before the body is actually cloned. */
711 for (e
= callees
; e
; e
= e
->next_callee
)
713 if (e
->call_stmt
== call_stmt
)
719 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
721 if (e
->call_stmt
== call_stmt
)
728 call_site_hash
= hash_table
<cgraph_edge_hasher
>::create_ggc (120);
729 for (e2
= callees
; e2
; e2
= e2
->next_callee
)
730 cgraph_add_edge_to_call_site_hash (e2
);
731 for (e2
= indirect_calls
; e2
; e2
= e2
->next_callee
)
732 cgraph_add_edge_to_call_site_hash (e2
);
739 /* Change field call_stmt of edge to NEW_STMT.
740 If UPDATE_SPECULATIVE and E is any component of speculative
741 edge, then update all components. */
744 cgraph_edge::set_call_stmt (gimple new_stmt
, bool update_speculative
)
748 /* Speculative edges has three component, update all of them
750 if (update_speculative
&& speculative
)
752 cgraph_edge
*direct
, *indirect
;
755 speculative_call_info (direct
, indirect
, ref
);
756 direct
->set_call_stmt (new_stmt
, false);
757 indirect
->set_call_stmt (new_stmt
, false);
758 ref
->stmt
= new_stmt
;
762 /* Only direct speculative edges go to call_site_hash. */
763 if (caller
->call_site_hash
764 && (!speculative
|| !indirect_unknown_callee
))
766 caller
->call_site_hash
->remove_elt_with_hash
767 (call_stmt
, htab_hash_pointer (call_stmt
));
770 cgraph_edge
*e
= this;
772 call_stmt
= new_stmt
;
773 if (indirect_unknown_callee
774 && (decl
= gimple_call_fndecl (new_stmt
)))
776 /* Constant propagation (and possibly also inlining?) can turn an
777 indirect call into a direct one. */
778 cgraph_node
*new_callee
= cgraph_node::get (decl
);
780 gcc_checking_assert (new_callee
);
781 e
= make_direct (new_callee
);
784 push_cfun (DECL_STRUCT_FUNCTION (e
->caller
->decl
));
785 e
->can_throw_external
= stmt_can_throw_external (new_stmt
);
787 if (e
->caller
->call_site_hash
)
788 cgraph_add_edge_to_call_site_hash (e
);
791 /* Allocate a cgraph_edge structure and fill it with data according to the
792 parameters of which only CALLEE can be NULL (when creating an indirect call
796 symbol_table::create_edge (cgraph_node
*caller
, cgraph_node
*callee
,
797 gimple call_stmt
, gcov_type count
, int freq
,
798 bool indir_unknown_callee
)
802 /* LTO does not actually have access to the call_stmt since these
803 have not been loaded yet. */
806 /* This is a rather expensive check possibly triggering
807 construction of call stmt hashtable. */
808 #ifdef ENABLE_CHECKING
810 gcc_checking_assert (
811 !(e
= caller
->get_edge (call_stmt
)) || e
->speculative
);
814 gcc_assert (is_gimple_call (call_stmt
));
820 free_edges
= NEXT_FREE_EDGE (edge
);
824 edge
= ggc_alloc
<cgraph_edge
> ();
825 edge
->uid
= edges_max_uid
++;
831 edge
->caller
= caller
;
832 edge
->callee
= callee
;
833 edge
->prev_caller
= NULL
;
834 edge
->next_caller
= NULL
;
835 edge
->prev_callee
= NULL
;
836 edge
->next_callee
= NULL
;
837 edge
->lto_stmt_uid
= 0;
840 gcc_assert (count
>= 0);
841 edge
->frequency
= freq
;
842 gcc_assert (freq
>= 0);
843 gcc_assert (freq
<= CGRAPH_FREQ_MAX
);
845 edge
->call_stmt
= call_stmt
;
846 push_cfun (DECL_STRUCT_FUNCTION (caller
->decl
));
847 edge
->can_throw_external
848 = call_stmt
? stmt_can_throw_external (call_stmt
) : false;
851 && callee
&& callee
->decl
852 && !gimple_check_call_matching_types (call_stmt
, callee
->decl
,
854 edge
->call_stmt_cannot_inline_p
= true;
856 edge
->call_stmt_cannot_inline_p
= false;
858 edge
->indirect_info
= NULL
;
859 edge
->indirect_inlining_edge
= 0;
860 edge
->speculative
= false;
861 edge
->indirect_unknown_callee
= indir_unknown_callee
;
862 if (flag_devirtualize
&& call_stmt
&& DECL_STRUCT_FUNCTION (caller
->decl
))
863 edge
->in_polymorphic_cdtor
864 = decl_maybe_in_construction_p (NULL
, NULL
, call_stmt
,
867 edge
->in_polymorphic_cdtor
= caller
->thunk
.thunk_p
;
868 if (call_stmt
&& caller
->call_site_hash
)
869 cgraph_add_edge_to_call_site_hash (edge
);
874 /* Create edge from a given function to CALLEE in the cgraph. */
877 cgraph_node::create_edge (cgraph_node
*callee
,
878 gimple call_stmt
, gcov_type count
, int freq
)
880 cgraph_edge
*edge
= symtab
->create_edge (this, callee
, call_stmt
, count
,
883 initialize_inline_failed (edge
);
885 edge
->next_caller
= callee
->callers
;
887 callee
->callers
->prev_caller
= edge
;
888 edge
->next_callee
= callees
;
890 callees
->prev_callee
= edge
;
892 callee
->callers
= edge
;
897 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
899 cgraph_indirect_call_info
*
900 cgraph_allocate_init_indirect_info (void)
902 cgraph_indirect_call_info
*ii
;
904 ii
= ggc_cleared_alloc
<cgraph_indirect_call_info
> ();
905 ii
->param_index
= -1;
909 /* Create an indirect edge with a yet-undetermined callee where the call
910 statement destination is a formal parameter of the caller with index
914 cgraph_node::create_indirect_edge (gimple call_stmt
, int ecf_flags
,
915 gcov_type count
, int freq
,
916 bool compute_indirect_info
)
918 cgraph_edge
*edge
= symtab
->create_edge (this, NULL
, call_stmt
,
922 initialize_inline_failed (edge
);
924 edge
->indirect_info
= cgraph_allocate_init_indirect_info ();
925 edge
->indirect_info
->ecf_flags
= ecf_flags
;
926 edge
->indirect_info
->vptr_changed
= true;
928 /* Record polymorphic call info. */
929 if (compute_indirect_info
931 && (target
= gimple_call_fn (call_stmt
))
932 && virtual_method_call_p (target
))
934 ipa_polymorphic_call_context
context (decl
, target
, call_stmt
);
936 /* Only record types can have virtual calls. */
937 edge
->indirect_info
->polymorphic
= true;
938 edge
->indirect_info
->param_index
= -1;
939 edge
->indirect_info
->otr_token
940 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target
));
941 edge
->indirect_info
->otr_type
= obj_type_ref_class (target
);
942 gcc_assert (TREE_CODE (edge
->indirect_info
->otr_type
) == RECORD_TYPE
);
943 edge
->indirect_info
->context
= context
;
946 edge
->next_callee
= indirect_calls
;
948 indirect_calls
->prev_callee
= edge
;
949 indirect_calls
= edge
;
954 /* Remove the edge from the list of the callers of the callee. */
957 cgraph_edge::remove_callee (void)
959 gcc_assert (!indirect_unknown_callee
);
961 prev_caller
->next_caller
= next_caller
;
963 next_caller
->prev_caller
= prev_caller
;
965 callee
->callers
= next_caller
;
968 /* Remove the edge from the list of the callees of the caller. */
971 cgraph_edge::remove_caller (void)
974 prev_callee
->next_callee
= next_callee
;
976 next_callee
->prev_callee
= prev_callee
;
979 if (indirect_unknown_callee
)
980 caller
->indirect_calls
= next_callee
;
982 caller
->callees
= next_callee
;
984 if (caller
->call_site_hash
)
985 caller
->call_site_hash
->remove_elt_with_hash (call_stmt
,
986 htab_hash_pointer (call_stmt
));
989 /* Put the edge onto the free list. */
992 symbol_table::free_edge (cgraph_edge
*e
)
996 if (e
->indirect_info
)
997 ggc_free (e
->indirect_info
);
999 /* Clear out the edge so we do not dangle pointers. */
1000 memset (e
, 0, sizeof (*e
));
1002 NEXT_FREE_EDGE (e
) = free_edges
;
1007 /* Remove the edge in the cgraph. */
1010 cgraph_edge::remove (void)
1012 /* Call all edge removal hooks. */
1013 symtab
->call_edge_removal_hooks (this);
1015 if (!indirect_unknown_callee
)
1016 /* Remove from callers list of the callee. */
1019 /* Remove from callees list of the callers. */
1022 /* Put the edge onto the free list. */
1023 symtab
->free_edge (this);
1026 /* Set callee of call graph edge E and add it to the corresponding set of
1030 cgraph_set_edge_callee (cgraph_edge
*e
, cgraph_node
*n
)
1032 e
->prev_caller
= NULL
;
1034 n
->callers
->prev_caller
= e
;
1035 e
->next_caller
= n
->callers
;
1040 /* Turn edge into speculative call calling N2. Update
1041 the profile so the direct call is taken COUNT times
1044 At clone materialization time, the indirect call E will
1047 if (call_dest == N2)
1052 At this time the function just creates the direct call,
1053 the referencd representing the if conditional and attaches
1054 them all to the orginal indirect call statement.
1056 Return direct edge created. */
1059 cgraph_edge::make_speculative (cgraph_node
*n2
, gcov_type direct_count
,
1060 int direct_frequency
)
1062 cgraph_node
*n
= caller
;
1063 ipa_ref
*ref
= NULL
;
1068 fprintf (dump_file
, "Indirect call -> speculative call"
1069 " %s/%i => %s/%i\n",
1070 xstrdup (n
->name ()), n
->order
,
1071 xstrdup (n2
->name ()), n2
->order
);
1074 e2
= n
->create_edge (n2
, call_stmt
, direct_count
, direct_frequency
);
1075 initialize_inline_failed (e2
);
1076 e2
->speculative
= true;
1077 if (TREE_NOTHROW (n2
->decl
))
1078 e2
->can_throw_external
= false;
1080 e2
->can_throw_external
= can_throw_external
;
1081 e2
->lto_stmt_uid
= lto_stmt_uid
;
1082 e2
->in_polymorphic_cdtor
= in_polymorphic_cdtor
;
1084 frequency
-= e2
->frequency
;
1085 symtab
->call_edge_duplication_hooks (this, e2
);
1086 ref
= n
->create_reference (n2
, IPA_REF_ADDR
, call_stmt
);
1087 ref
->lto_stmt_uid
= lto_stmt_uid
;
1088 ref
->speculative
= speculative
;
1089 n2
->mark_address_taken ();
1093 /* Speculative call consist of three components:
1094 1) an indirect edge representing the original call
1095 2) an direct edge representing the new call
1096 3) ADDR_EXPR reference representing the speculative check.
1097 All three components are attached to single statement (the indirect
1098 call) and if one of them exists, all of them must exist.
1100 Given speculative call edge, return all three components.
1104 cgraph_edge::speculative_call_info (cgraph_edge
*&direct
,
1105 cgraph_edge
*&indirect
,
1106 ipa_ref
*&reference
)
1111 cgraph_edge
*e
= this;
1113 if (!e
->indirect_unknown_callee
)
1114 for (e2
= e
->caller
->indirect_calls
;
1115 e2
->call_stmt
!= e
->call_stmt
|| e2
->lto_stmt_uid
!= e
->lto_stmt_uid
;
1116 e2
= e2
->next_callee
)
1121 /* We can take advantage of the call stmt hash. */
1124 e
= e
->caller
->get_edge (e2
->call_stmt
);
1125 gcc_assert (e
->speculative
&& !e
->indirect_unknown_callee
);
1128 for (e
= e
->caller
->callees
;
1129 e2
->call_stmt
!= e
->call_stmt
1130 || e2
->lto_stmt_uid
!= e
->lto_stmt_uid
;
1134 gcc_assert (e
->speculative
&& e2
->speculative
);
1139 for (i
= 0; e
->caller
->iterate_reference (i
, ref
); i
++)
1140 if (ref
->speculative
1141 && ((ref
->stmt
&& ref
->stmt
== e
->call_stmt
)
1142 || (!ref
->stmt
&& ref
->lto_stmt_uid
== e
->lto_stmt_uid
)))
1148 /* Speculative edge always consist of all three components - direct edge,
1149 indirect and reference. */
1151 gcc_assert (e
&& e2
&& ref
);
1154 /* Redirect callee of the edge to N. The function does not update underlying
1158 cgraph_edge::redirect_callee (cgraph_node
*n
)
1160 /* Remove from callers list of the current callee. */
1163 /* Insert to callers list of the new callee. */
1164 cgraph_set_edge_callee (this, n
);
1167 /* Speculative call edge turned out to be direct call to CALLE_DECL.
1168 Remove the speculative call sequence and return edge representing the call.
1169 It is up to caller to redirect the call as appropriate. */
1172 cgraph_edge::resolve_speculation (tree callee_decl
)
1174 cgraph_edge
*edge
= this;
1178 gcc_assert (edge
->speculative
);
1179 edge
->speculative_call_info (e2
, edge
, ref
);
1181 || !ref
->referred
->semantically_equivalent_p
1182 (symtab_node::get (callee_decl
)))
1188 fprintf (dump_file
, "Speculative indirect call %s/%i => %s/%i has "
1189 "turned out to have contradicting known target ",
1190 xstrdup (edge
->caller
->name ()), edge
->caller
->order
,
1191 xstrdup (e2
->callee
->name ()), e2
->callee
->order
);
1192 print_generic_expr (dump_file
, callee_decl
, 0);
1193 fprintf (dump_file
, "\n");
1197 fprintf (dump_file
, "Removing speculative call %s/%i => %s/%i\n",
1198 xstrdup (edge
->caller
->name ()), edge
->caller
->order
,
1199 xstrdup (e2
->callee
->name ()), e2
->callee
->order
);
1205 cgraph_edge
*tmp
= edge
;
1207 fprintf (dump_file
, "Speculative call turned into direct call.\n");
1210 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1211 in the functions inlined through it. */
1213 edge
->count
+= e2
->count
;
1214 edge
->frequency
+= e2
->frequency
;
1215 if (edge
->frequency
> CGRAPH_FREQ_MAX
)
1216 edge
->frequency
= CGRAPH_FREQ_MAX
;
1217 edge
->speculative
= false;
1218 e2
->speculative
= false;
1219 ref
->remove_reference ();
1220 if (e2
->indirect_unknown_callee
|| e2
->inline_failed
)
1223 e2
->callee
->remove_symbol_and_inline_clones ();
1224 if (edge
->caller
->call_site_hash
)
1225 cgraph_update_edge_in_call_site_hash (edge
);
1229 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1230 CALLEE. DELTA is an integer constant that is to be added to the this
1231 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1234 cgraph_edge::make_direct (cgraph_node
*callee
)
1236 cgraph_edge
*edge
= this;
1237 gcc_assert (indirect_unknown_callee
);
1239 /* If we are redirecting speculative call, make it non-speculative. */
1240 if (indirect_unknown_callee
&& speculative
)
1242 edge
= edge
->resolve_speculation (callee
->decl
);
1244 /* On successful speculation just return the pre existing direct edge. */
1245 if (!indirect_unknown_callee
)
1249 indirect_unknown_callee
= 0;
1250 ggc_free (indirect_info
);
1251 indirect_info
= NULL
;
1253 /* Get the edge out of the indirect edge list. */
1255 prev_callee
->next_callee
= next_callee
;
1257 next_callee
->prev_callee
= prev_callee
;
1259 caller
->indirect_calls
= next_callee
;
1261 /* Put it into the normal callee list */
1263 next_callee
= caller
->callees
;
1264 if (caller
->callees
)
1265 caller
->callees
->prev_callee
= edge
;
1266 caller
->callees
= edge
;
1268 /* Insert to callers list of the new callee. */
1269 cgraph_set_edge_callee (edge
, callee
);
1272 call_stmt_cannot_inline_p
1273 = !gimple_check_call_matching_types (call_stmt
, callee
->decl
,
1276 /* We need to re-determine the inlining status of the edge. */
1277 initialize_inline_failed (edge
);
1281 /* If necessary, change the function declaration in the call statement
1282 associated with E so that it corresponds to the edge callee. */
1285 cgraph_edge::redirect_call_stmt_to_callee (void)
1287 cgraph_edge
*e
= this;
1289 tree decl
= gimple_call_fndecl (e
->call_stmt
);
1290 tree lhs
= gimple_call_lhs (e
->call_stmt
);
1292 gimple_stmt_iterator gsi
;
1293 #ifdef ENABLE_CHECKING
1303 e
->speculative_call_info (e
, e2
, ref
);
1304 /* If there already is an direct call (i.e. as a result of inliner's
1305 substitution), forget about speculating. */
1307 e
= e
->resolve_speculation (decl
);
1308 /* If types do not match, speculation was likely wrong.
1309 The direct edge was posisbly redirected to the clone with a different
1310 signature. We did not update the call statement yet, so compare it
1311 with the reference that still points to the proper type. */
1312 else if (!gimple_check_call_matching_types (e
->call_stmt
,
1313 ref
->referred
->decl
,
1317 fprintf (dump_file
, "Not expanding speculative call of %s/%i -> %s/%i\n"
1319 xstrdup (e
->caller
->name ()),
1321 xstrdup (e
->callee
->name ()),
1323 e
= e
->resolve_speculation ();
1324 /* We are producing the final function body and will throw away the
1325 callgraph edges really soon. Reset the counts/frequencies to
1326 keep verifier happy in the case of roundoff errors. */
1327 e
->count
= gimple_bb (e
->call_stmt
)->count
;
1328 e
->frequency
= compute_call_stmt_bb_frequency
1329 (e
->caller
->decl
, gimple_bb (e
->call_stmt
));
1331 /* Expand speculation into GIMPLE code. */
1336 "Expanding speculative call of %s/%i -> %s/%i count:"
1338 xstrdup (e
->caller
->name ()),
1340 xstrdup (e
->callee
->name ()),
1343 gcc_assert (e2
->speculative
);
1344 push_cfun (DECL_STRUCT_FUNCTION (e
->caller
->decl
));
1345 new_stmt
= gimple_ic (e
->call_stmt
, dyn_cast
<cgraph_node
*> (ref
->referred
),
1346 e
->count
|| e2
->count
1347 ? RDIV (e
->count
* REG_BR_PROB_BASE
,
1348 e
->count
+ e2
->count
)
1349 : e
->frequency
|| e2
->frequency
1350 ? RDIV (e
->frequency
* REG_BR_PROB_BASE
,
1351 e
->frequency
+ e2
->frequency
)
1352 : REG_BR_PROB_BASE
/ 2,
1353 e
->count
, e
->count
+ e2
->count
);
1354 e
->speculative
= false;
1355 e
->caller
->set_call_stmt_including_clones (e
->call_stmt
, new_stmt
,
1358 /* Fix edges for BUILT_IN_CHKP_BNDRET calls attached to the
1359 processed call stmt. */
1360 if (gimple_call_with_bounds_p (new_stmt
)
1361 && gimple_call_lhs (new_stmt
)
1362 && chkp_retbnd_call_by_val (gimple_call_lhs (e2
->call_stmt
)))
1364 tree dresult
= gimple_call_lhs (new_stmt
);
1365 tree iresult
= gimple_call_lhs (e2
->call_stmt
);
1366 gimple dbndret
= chkp_retbnd_call_by_val (dresult
);
1367 gimple ibndret
= chkp_retbnd_call_by_val (iresult
);
1368 struct cgraph_edge
*iedge
1369 = e2
->caller
->cgraph_node::get_edge (ibndret
);
1370 struct cgraph_edge
*dedge
;
1374 dedge
= iedge
->caller
->create_edge (iedge
->callee
,
1377 dedge
->frequency
= compute_call_stmt_bb_frequency
1378 (dedge
->caller
->decl
, gimple_bb (dedge
->call_stmt
));
1380 iedge
->frequency
= compute_call_stmt_bb_frequency
1381 (iedge
->caller
->decl
, gimple_bb (iedge
->call_stmt
));
1384 e
->frequency
= compute_call_stmt_bb_frequency
1385 (e
->caller
->decl
, gimple_bb (e
->call_stmt
));
1386 e2
->frequency
= compute_call_stmt_bb_frequency
1387 (e2
->caller
->decl
, gimple_bb (e2
->call_stmt
));
1388 e2
->speculative
= false;
1389 ref
->speculative
= false;
1391 /* Indirect edges are not both in the call site hash.
1393 if (e
->caller
->call_site_hash
)
1394 cgraph_update_edge_in_call_site_hash (e2
);
1396 /* Continue redirecting E to proper target. */
1400 if (e
->indirect_unknown_callee
1401 || decl
== e
->callee
->decl
)
1402 return e
->call_stmt
;
1404 #ifdef ENABLE_CHECKING
1407 node
= cgraph_node::get (decl
);
1408 gcc_assert (!node
|| !node
->clone
.combined_args_to_skip
);
1412 if (symtab
->dump_file
)
1414 fprintf (symtab
->dump_file
, "updating call of %s/%i -> %s/%i: ",
1415 xstrdup (e
->caller
->name ()), e
->caller
->order
,
1416 xstrdup (e
->callee
->name ()), e
->callee
->order
);
1417 print_gimple_stmt (symtab
->dump_file
, e
->call_stmt
, 0, dump_flags
);
1418 if (e
->callee
->clone
.combined_args_to_skip
)
1420 fprintf (symtab
->dump_file
, " combined args to skip: ");
1421 dump_bitmap (symtab
->dump_file
,
1422 e
->callee
->clone
.combined_args_to_skip
);
1426 if (e
->callee
->clone
.combined_args_to_skip
)
1431 = gimple_call_copy_skip_args (e
->call_stmt
,
1432 e
->callee
->clone
.combined_args_to_skip
);
1433 gimple_call_set_fndecl (new_stmt
, e
->callee
->decl
);
1434 gimple_call_set_fntype (new_stmt
, gimple_call_fntype (e
->call_stmt
));
1436 if (gimple_vdef (new_stmt
)
1437 && TREE_CODE (gimple_vdef (new_stmt
)) == SSA_NAME
)
1438 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt
)) = new_stmt
;
1440 gsi
= gsi_for_stmt (e
->call_stmt
);
1441 gsi_replace (&gsi
, new_stmt
, false);
1442 /* We need to defer cleaning EH info on the new statement to
1443 fixup-cfg. We may not have dominator information at this point
1444 and thus would end up with unreachable blocks and have no way
1445 to communicate that we need to run CFG cleanup then. */
1446 lp_nr
= lookup_stmt_eh_lp (e
->call_stmt
);
1449 remove_stmt_from_eh_lp (e
->call_stmt
);
1450 add_stmt_to_eh_lp (new_stmt
, lp_nr
);
1455 new_stmt
= e
->call_stmt
;
1456 gimple_call_set_fndecl (new_stmt
, e
->callee
->decl
);
1457 update_stmt_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
), new_stmt
);
1460 /* If the call becomes noreturn, remove the lhs. */
1461 if (lhs
&& (gimple_call_flags (new_stmt
) & ECF_NORETURN
))
1463 if (TREE_CODE (lhs
) == SSA_NAME
)
1465 tree var
= create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
),
1466 TREE_TYPE (lhs
), NULL
);
1467 var
= get_or_create_ssa_default_def
1468 (DECL_STRUCT_FUNCTION (e
->caller
->decl
), var
);
1469 gimple set_stmt
= gimple_build_assign (lhs
, var
);
1470 gsi
= gsi_for_stmt (new_stmt
);
1471 gsi_insert_before_without_update (&gsi
, set_stmt
, GSI_SAME_STMT
);
1472 update_stmt_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
), set_stmt
);
1474 gimple_call_set_lhs (new_stmt
, NULL_TREE
);
1475 update_stmt_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
), new_stmt
);
1478 /* If new callee has no static chain, remove it. */
1479 if (gimple_call_chain (new_stmt
) && !DECL_STATIC_CHAIN (e
->callee
->decl
))
1481 gimple_call_set_chain (new_stmt
, NULL
);
1482 update_stmt_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
), new_stmt
);
1485 e
->caller
->set_call_stmt_including_clones (e
->call_stmt
, new_stmt
, false);
1487 if (symtab
->dump_file
)
1489 fprintf (symtab
->dump_file
, " updated to:");
1490 print_gimple_stmt (symtab
->dump_file
, e
->call_stmt
, 0, dump_flags
);
1495 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1496 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1497 of OLD_STMT if it was previously call statement.
1498 If NEW_STMT is NULL, the call has been dropped without any
1502 cgraph_update_edges_for_call_stmt_node (cgraph_node
*node
,
1503 gimple old_stmt
, tree old_call
,
1506 tree new_call
= (new_stmt
&& is_gimple_call (new_stmt
))
1507 ? gimple_call_fndecl (new_stmt
) : 0;
1509 /* We are seeing indirect calls, then there is nothing to update. */
1510 if (!new_call
&& !old_call
)
1512 /* See if we turned indirect call into direct call or folded call to one builtin
1513 into different builtin. */
1514 if (old_call
!= new_call
)
1516 cgraph_edge
*e
= node
->get_edge (old_stmt
);
1517 cgraph_edge
*ne
= NULL
;
1523 /* See if the edge is already there and has the correct callee. It
1524 might be so because of indirect inlining has already updated
1525 it. We also might've cloned and redirected the edge. */
1526 if (new_call
&& e
->callee
)
1528 cgraph_node
*callee
= e
->callee
;
1531 if (callee
->decl
== new_call
1532 || callee
->former_clone_of
== new_call
)
1534 e
->set_call_stmt (new_stmt
);
1537 callee
= callee
->clone_of
;
1541 /* Otherwise remove edge and create new one; we can't simply redirect
1542 since function has changed, so inline plan and other information
1543 attached to edge is invalid. */
1545 frequency
= e
->frequency
;
1546 if (e
->indirect_unknown_callee
|| e
->inline_failed
)
1549 e
->callee
->remove_symbol_and_inline_clones ();
1553 /* We are seeing new direct call; compute profile info based on BB. */
1554 basic_block bb
= gimple_bb (new_stmt
);
1556 frequency
= compute_call_stmt_bb_frequency (current_function_decl
,
1562 ne
= node
->create_edge (cgraph_node::get_create (new_call
),
1563 new_stmt
, count
, frequency
);
1564 gcc_assert (ne
->inline_failed
);
1567 /* We only updated the call stmt; update pointer in cgraph edge.. */
1568 else if (old_stmt
!= new_stmt
)
1569 node
->get_edge (old_stmt
)->set_call_stmt (new_stmt
);
1572 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1573 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1574 of OLD_STMT before it was updated (updating can happen inplace). */
1577 cgraph_update_edges_for_call_stmt (gimple old_stmt
, tree old_decl
, gimple new_stmt
)
1579 cgraph_node
*orig
= cgraph_node::get (cfun
->decl
);
1582 gcc_checking_assert (orig
);
1583 cgraph_update_edges_for_call_stmt_node (orig
, old_stmt
, old_decl
, new_stmt
);
1585 for (node
= orig
->clones
; node
!= orig
;)
1587 cgraph_update_edges_for_call_stmt_node (node
, old_stmt
, old_decl
, new_stmt
);
1589 node
= node
->clones
;
1590 else if (node
->next_sibling_clone
)
1591 node
= node
->next_sibling_clone
;
1594 while (node
!= orig
&& !node
->next_sibling_clone
)
1595 node
= node
->clone_of
;
1597 node
= node
->next_sibling_clone
;
1603 /* Remove all callees from the node. */
1606 cgraph_node::remove_callees (void)
1610 /* It is sufficient to remove the edges from the lists of callers of
1611 the callees. The callee list of the node can be zapped with one
1613 for (e
= callees
; e
; e
= f
)
1616 symtab
->call_edge_removal_hooks (e
);
1617 if (!e
->indirect_unknown_callee
)
1618 e
->remove_callee ();
1619 symtab
->free_edge (e
);
1621 for (e
= indirect_calls
; e
; e
= f
)
1624 symtab
->call_edge_removal_hooks (e
);
1625 if (!e
->indirect_unknown_callee
)
1626 e
->remove_callee ();
1627 symtab
->free_edge (e
);
1629 indirect_calls
= NULL
;
1633 call_site_hash
->empty ();
1634 call_site_hash
= NULL
;
1638 /* Remove all callers from the node. */
1641 cgraph_node::remove_callers (void)
1645 /* It is sufficient to remove the edges from the lists of callees of
1646 the callers. The caller list of the node can be zapped with one
1648 for (e
= callers
; e
; e
= f
)
1651 symtab
->call_edge_removal_hooks (e
);
1652 e
->remove_caller ();
1653 symtab
->free_edge (e
);
1658 /* Helper function for cgraph_release_function_body and free_lang_data.
1659 It releases body from function DECL without having to inspect its
1660 possibly non-existent symtab node. */
1663 release_function_body (tree decl
)
1665 if (DECL_STRUCT_FUNCTION (decl
))
1667 if (DECL_STRUCT_FUNCTION (decl
)->cfg
1668 || DECL_STRUCT_FUNCTION (decl
)->gimple_df
)
1670 push_cfun (DECL_STRUCT_FUNCTION (decl
));
1674 cfun
->curr_properties
&= ~PROP_loops
;
1675 loop_optimizer_finalize ();
1677 if (cfun
->gimple_df
)
1680 delete_tree_cfg_annotations ();
1685 gcc_assert (!dom_info_available_p (CDI_DOMINATORS
));
1686 gcc_assert (!dom_info_available_p (CDI_POST_DOMINATORS
));
1690 if (cfun
->value_histograms
)
1694 gimple_set_body (decl
, NULL
);
1695 /* Struct function hangs a lot of data that would leak if we didn't
1696 removed all pointers to it. */
1697 ggc_free (DECL_STRUCT_FUNCTION (decl
));
1698 DECL_STRUCT_FUNCTION (decl
) = NULL
;
1700 DECL_SAVED_TREE (decl
) = NULL
;
1703 /* Release memory used to represent body of function.
1704 Use this only for functions that are released before being translated to
1705 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1706 are free'd in final.c via free_after_compilation().
1707 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1710 cgraph_node::release_body (bool keep_arguments
)
1712 ipa_transforms_to_apply
.release ();
1713 if (!used_as_abstract_origin
&& symtab
->state
!= PARSING
)
1715 DECL_RESULT (decl
) = NULL
;
1717 if (!keep_arguments
)
1718 DECL_ARGUMENTS (decl
) = NULL
;
1720 /* If the node is abstract and needed, then do not clear DECL_INITIAL
1721 of its associated function function declaration because it's
1722 needed to emit debug info later. */
1723 if (!used_as_abstract_origin
&& DECL_INITIAL (decl
))
1724 DECL_INITIAL (decl
) = error_mark_node
;
1725 release_function_body (decl
);
1727 lto_free_function_in_decl_state_for_node (this);
1730 /* Remove function from symbol table. */
1733 cgraph_node::remove (void)
1736 int uid
= this->uid
;
1738 symtab
->call_cgraph_removal_hooks (this);
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
)
1752 cgraph_node
**node2
= &origin
->nested
;
1754 while (*node2
!= this)
1755 node2
= &(*node2
)->next_nested
;
1756 *node2
= next_nested
;
1759 if (prev_sibling_clone
)
1760 prev_sibling_clone
->next_sibling_clone
= next_sibling_clone
;
1762 clone_of
->clones
= next_sibling_clone
;
1763 if (next_sibling_clone
)
1764 next_sibling_clone
->prev_sibling_clone
= prev_sibling_clone
;
1767 cgraph_node
*n
, *next
;
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
;
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
;
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
);
1804 || (!n
->clones
&& !n
->clone_of
&& !n
->global
.inlined_to
1805 && (symtab
->global_info_ready
1806 && (TREE_ASM_WRITTEN (n
->decl
)
1807 || DECL_EXTERNAL (n
->decl
)
1809 || (!flag_wpa
&& n
->in_other_partition
)))))
1816 call_site_hash
->empty ();
1817 call_site_hash
= NULL
;
1820 if (instrumented_version
)
1822 instrumented_version
->instrumented_version
= NULL
;
1823 instrumented_version
= NULL
;
1826 symtab
->release_symbol (this, uid
);
1829 /* Likewise indicate that a node is having address taken. */
1832 cgraph_node::mark_address_taken (void)
1834 /* Indirect inlining can figure out that all uses of the address are
1836 if (global
.inlined_to
)
1838 gcc_assert (cfun
->after_inlining
);
1839 gcc_assert (callers
->indirect_inlining_edge
);
1842 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1843 IPA_REF_ADDR reference exists (and thus it should be set on node
1844 representing alias we take address of) and as a test whether address
1845 of the object was taken (and thus it should be set on node alias is
1846 referring to). We should remove the first use and the remove the
1849 cgraph_node
*node
= ultimate_alias_target ();
1850 node
->address_taken
= 1;
1853 /* Return local info for the compiled function. */
1856 cgraph_node::local_info (tree decl
)
1858 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
1859 cgraph_node
*node
= get (decl
);
1862 return &node
->local
;
1865 /* Return global info for the compiled function. */
1867 cgraph_global_info
*
1868 cgraph_node::global_info (tree decl
)
1870 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
1871 && symtab
->global_info_ready
);
1872 cgraph_node
*node
= get (decl
);
1875 return &node
->global
;
1878 /* Return local info for the compiled function. */
1881 cgraph_node::rtl_info (tree decl
)
1883 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
1884 cgraph_node
*node
= get (decl
);
1886 || (decl
!= current_function_decl
1887 && !TREE_ASM_WRITTEN (node
->decl
)))
1892 /* Return a string describing the failure REASON. */
1895 cgraph_inline_failed_string (cgraph_inline_failed_t reason
)
1898 #define DEFCIFCODE(code, type, string) string,
1900 static const char *cif_string_table
[CIF_N_REASONS
] = {
1901 #include "cif-code.def"
1904 /* Signedness of an enum type is implementation defined, so cast it
1905 to unsigned before testing. */
1906 gcc_assert ((unsigned) reason
< CIF_N_REASONS
);
1907 return cif_string_table
[reason
];
1910 /* Return a type describing the failure REASON. */
1912 cgraph_inline_failed_type_t
1913 cgraph_inline_failed_type (cgraph_inline_failed_t reason
)
1916 #define DEFCIFCODE(code, type, string) type,
1918 static cgraph_inline_failed_type_t cif_type_table
[CIF_N_REASONS
] = {
1919 #include "cif-code.def"
1922 /* Signedness of an enum type is implementation defined, so cast it
1923 to unsigned before testing. */
1924 gcc_assert ((unsigned) reason
< CIF_N_REASONS
);
1925 return cif_type_table
[reason
];
1928 /* Names used to print out the availability enum. */
1929 const char * const cgraph_availability_names
[] =
1930 {"unset", "not_available", "overwritable", "available", "local"};
1932 /* Output flags of edge E. */
1935 dump_edge_flags (FILE *f
, struct cgraph_edge
*edge
)
1937 if (edge
->speculative
)
1938 fprintf (f
, "(speculative) ");
1939 if (!edge
->inline_failed
)
1940 fprintf (f
, "(inlined) ");
1941 if (edge
->indirect_inlining_edge
)
1942 fprintf (f
, "(indirect_inlining) ");
1944 fprintf (f
, "(%"PRId64
"x) ",
1945 (int64_t)edge
->count
);
1946 if (edge
->frequency
)
1947 fprintf (f
, "(%.2f per call) ",
1948 edge
->frequency
/ (double)CGRAPH_FREQ_BASE
);
1949 if (edge
->can_throw_external
)
1950 fprintf (f
, "(can throw external) ");
1953 /* Dump call graph node to file F. */
1956 cgraph_node::dump (FILE *f
)
1962 if (global
.inlined_to
)
1963 fprintf (f
, " Function %s/%i is inline copy in %s/%i\n",
1966 xstrdup (global
.inlined_to
->name ()),
1967 global
.inlined_to
->order
);
1969 fprintf (f
, " Clone of %s/%i\n",
1970 clone_of
->asm_name (),
1972 if (symtab
->function_flags_ready
)
1973 fprintf (f
, " Availability: %s\n",
1974 cgraph_availability_names
[get_availability ()]);
1977 fprintf (f
, " Profile id: %i\n",
1979 fprintf (f
, " First run: %i\n", tp_first_run
);
1980 fprintf (f
, " Function flags:");
1982 fprintf (f
, " executed %"PRId64
"x",
1985 fprintf (f
, " nested in: %s", origin
->asm_name ());
1986 if (gimple_has_body_p (decl
))
1987 fprintf (f
, " body");
1989 fprintf (f
, " process");
1991 fprintf (f
, " local");
1992 if (local
.redefined_extern_inline
)
1993 fprintf (f
, " redefined_extern_inline");
1994 if (only_called_at_startup
)
1995 fprintf (f
, " only_called_at_startup");
1996 if (only_called_at_exit
)
1997 fprintf (f
, " only_called_at_exit");
1999 fprintf (f
, " tm_clone");
2001 fprintf (f
, " icf_merged");
2003 fprintf (f
, " nonfreeing_fn");
2004 if (DECL_STATIC_CONSTRUCTOR (decl
))
2005 fprintf (f
," static_constructor (priority:%i)", get_init_priority ());
2006 if (DECL_STATIC_DESTRUCTOR (decl
))
2007 fprintf (f
," static_destructor (priority:%i)", get_fini_priority ());
2013 fprintf (f
, " Thunk");
2015 fprintf (f
, " of %s (asm: %s)",
2016 lang_hooks
.decl_printable_name (thunk
.alias
, 2),
2017 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk
.alias
)));
2018 fprintf (f
, " fixed offset %i virtual value %i has "
2019 "virtual offset %i)\n",
2020 (int)thunk
.fixed_offset
,
2021 (int)thunk
.virtual_value
,
2022 (int)thunk
.virtual_offset_p
);
2024 if (alias
&& thunk
.alias
2025 && DECL_P (thunk
.alias
))
2027 fprintf (f
, " Alias of %s",
2028 lang_hooks
.decl_printable_name (thunk
.alias
, 2));
2029 if (DECL_ASSEMBLER_NAME_SET_P (thunk
.alias
))
2030 fprintf (f
, " (asm: %s)",
2031 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk
.alias
)));
2035 fprintf (f
, " Called by: ");
2037 for (edge
= callers
; edge
; edge
= edge
->next_caller
)
2039 fprintf (f
, "%s/%i ", edge
->caller
->asm_name (),
2040 edge
->caller
->order
);
2041 dump_edge_flags (f
, edge
);
2044 fprintf (f
, "\n Calls: ");
2045 for (edge
= callees
; edge
; edge
= edge
->next_callee
)
2047 fprintf (f
, "%s/%i ", edge
->callee
->asm_name (),
2048 edge
->callee
->order
);
2049 dump_edge_flags (f
, edge
);
2053 for (edge
= indirect_calls
; edge
; edge
= edge
->next_callee
)
2055 if (edge
->indirect_info
->polymorphic
)
2057 fprintf (f
, " Polymorphic indirect call of type ");
2058 print_generic_expr (f
, edge
->indirect_info
->otr_type
, TDF_SLIM
);
2059 fprintf (f
, " token:%i", (int) edge
->indirect_info
->otr_token
);
2062 fprintf (f
, " Indirect call");
2063 dump_edge_flags (f
, edge
);
2064 if (edge
->indirect_info
->param_index
!= -1)
2066 fprintf (f
, " of param:%i", edge
->indirect_info
->param_index
);
2067 if (edge
->indirect_info
->agg_contents
)
2068 fprintf (f
, " loaded from %s %s at offset %i",
2069 edge
->indirect_info
->member_ptr
? "member ptr" : "aggregate",
2070 edge
->indirect_info
->by_ref
? "passed by reference":"",
2071 (int)edge
->indirect_info
->offset
);
2072 if (edge
->indirect_info
->vptr_changed
)
2073 fprintf (f
, " (vptr maybe changed)");
2076 if (edge
->indirect_info
->polymorphic
)
2077 edge
->indirect_info
->context
.dump (f
);
2080 if (instrumentation_clone
)
2081 fprintf (f
, " Is instrumented version.\n");
2082 else if (instrumented_version
)
2083 fprintf (f
, " Has instrumented version.\n");
2086 /* Dump call graph node NODE to stderr. */
2089 cgraph_node::debug (void)
2094 /* Dump the callgraph to file F. */
2097 cgraph_node::dump_cgraph (FILE *f
)
2101 fprintf (f
, "callgraph:\n\n");
2102 FOR_EACH_FUNCTION (node
)
2106 /* Return true when the DECL can possibly be inlined. */
2109 cgraph_function_possibly_inlined_p (tree decl
)
2111 if (!symtab
->global_info_ready
)
2112 return !DECL_UNINLINABLE (decl
);
2113 return DECL_POSSIBLY_INLINED (decl
);
2116 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2118 cgraph_node::unnest (void)
2120 cgraph_node
**node2
= &origin
->nested
;
2121 gcc_assert (origin
);
2123 while (*node2
!= this)
2124 node2
= &(*node2
)->next_nested
;
2125 *node2
= next_nested
;
2129 /* Return function availability. See cgraph.h for description of individual
2132 cgraph_node::get_availability (void)
2134 enum availability avail
;
2136 avail
= AVAIL_NOT_AVAILABLE
;
2137 else if (local
.local
)
2138 avail
= AVAIL_LOCAL
;
2139 else if (alias
&& weakref
)
2140 ultimate_alias_target (&avail
);
2141 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
2142 avail
= AVAIL_INTERPOSABLE
;
2143 else if (!externally_visible
)
2144 avail
= AVAIL_AVAILABLE
;
2145 /* Inline functions are safe to be analyzed even if their symbol can
2146 be overwritten at runtime. It is not meaningful to enforce any sane
2147 behaviour on replacing inline function by different body. */
2148 else if (DECL_DECLARED_INLINE_P (decl
))
2149 avail
= AVAIL_AVAILABLE
;
2151 /* If the function can be overwritten, return OVERWRITABLE. Take
2152 care at least of two notable extensions - the COMDAT functions
2153 used to share template instantiations in C++ (this is symmetric
2154 to code cp_cannot_inline_tree_fn and probably shall be shared and
2155 the inlinability hooks completely eliminated).
2157 ??? Does the C++ one definition rule allow us to always return
2158 AVAIL_AVAILABLE here? That would be good reason to preserve this
2161 else if (decl_replaceable_p (decl
) && !DECL_EXTERNAL (decl
))
2162 avail
= AVAIL_INTERPOSABLE
;
2163 else avail
= AVAIL_AVAILABLE
;
2168 /* Worker for cgraph_node_can_be_local_p. */
2170 cgraph_node_cannot_be_local_p_1 (cgraph_node
*node
, void *)
2172 return !(!node
->force_output
2173 && ((DECL_COMDAT (node
->decl
)
2174 && !node
->forced_by_abi
2175 && !node
->used_from_object_file_p ()
2176 && !node
->same_comdat_group
)
2177 || !node
->externally_visible
));
2180 /* Return true if cgraph_node can be made local for API change.
2181 Extern inline functions and C++ COMDAT functions can be made local
2182 at the expense of possible code size growth if function is used in multiple
2183 compilation units. */
2185 cgraph_node::can_be_local_p (void)
2187 return (!address_taken
2188 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1
,
2192 /* Call calback on cgraph_node, thunks and aliases associated to cgraph_node.
2193 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2197 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback
)
2198 (cgraph_node
*, void *),
2200 bool include_overwritable
)
2205 if (callback (this, data
))
2207 for (e
= callers
; e
; e
= e
->next_caller
)
2208 if (e
->caller
->thunk
.thunk_p
2209 && (include_overwritable
2210 || e
->caller
->get_availability () > AVAIL_INTERPOSABLE
))
2211 if (e
->caller
->call_for_symbol_thunks_and_aliases (callback
, data
,
2212 include_overwritable
))
2215 FOR_EACH_ALIAS (this, ref
)
2217 cgraph_node
*alias
= dyn_cast
<cgraph_node
*> (ref
->referring
);
2218 if (include_overwritable
2219 || alias
->get_availability () > AVAIL_INTERPOSABLE
)
2220 if (alias
->call_for_symbol_thunks_and_aliases (callback
, data
,
2221 include_overwritable
))
2227 /* Call calback on function and aliases associated to the function.
2228 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2232 cgraph_node::call_for_symbol_and_aliases (bool (*callback
) (cgraph_node
*,
2235 bool include_overwritable
)
2239 if (callback (this, data
))
2242 FOR_EACH_ALIAS (this, ref
)
2244 cgraph_node
*alias
= dyn_cast
<cgraph_node
*> (ref
->referring
);
2245 if (include_overwritable
2246 || alias
->get_availability () > AVAIL_INTERPOSABLE
)
2247 if (alias
->call_for_symbol_and_aliases (callback
, data
,
2248 include_overwritable
))
2254 /* Worker to bring NODE local. */
2257 cgraph_node::make_local (cgraph_node
*node
, void *)
2259 gcc_checking_assert (node
->can_be_local_p ());
2260 if (DECL_COMDAT (node
->decl
) || DECL_EXTERNAL (node
->decl
))
2262 node
->make_decl_local ();
2263 node
->set_section (NULL
);
2264 node
->set_comdat_group (NULL
);
2265 node
->externally_visible
= false;
2266 node
->forced_by_abi
= false;
2267 node
->local
.local
= true;
2268 node
->set_section (NULL
);
2269 node
->unique_name
= (node
->resolution
== LDPR_PREVAILING_DEF_IRONLY
2270 || node
->resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
);
2271 node
->resolution
= LDPR_PREVAILING_DEF_IRONLY
;
2272 gcc_assert (node
->get_availability () == AVAIL_LOCAL
);
2277 /* Bring cgraph node local. */
2280 cgraph_node::make_local (void)
2282 call_for_symbol_thunks_and_aliases (cgraph_node::make_local
, NULL
, true);
2285 /* Worker to set nothrow flag. */
2288 cgraph_set_nothrow_flag_1 (cgraph_node
*node
, void *data
)
2292 TREE_NOTHROW (node
->decl
) = data
!= NULL
;
2295 for (e
= node
->callers
; e
; e
= e
->next_caller
)
2296 e
->can_throw_external
= false;
2300 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2301 if any to NOTHROW. */
2304 cgraph_node::set_nothrow_flag (bool nothrow
)
2306 call_for_symbol_thunks_and_aliases (cgraph_set_nothrow_flag_1
,
2307 (void *)(size_t)nothrow
, false);
2310 /* Worker to set const flag. */
2313 cgraph_set_const_flag_1 (cgraph_node
*node
, void *data
)
2315 /* Static constructors and destructors without a side effect can be
2317 if (data
&& !((size_t)data
& 2))
2319 if (DECL_STATIC_CONSTRUCTOR (node
->decl
))
2320 DECL_STATIC_CONSTRUCTOR (node
->decl
) = 0;
2321 if (DECL_STATIC_DESTRUCTOR (node
->decl
))
2322 DECL_STATIC_DESTRUCTOR (node
->decl
) = 0;
2324 TREE_READONLY (node
->decl
) = data
!= NULL
;
2325 DECL_LOOPING_CONST_OR_PURE_P (node
->decl
) = ((size_t)data
& 2) != 0;
2329 /* Set TREE_READONLY on cgraph_node's decl and on aliases of the node
2330 if any to READONLY. */
2333 cgraph_node::set_const_flag (bool readonly
, bool looping
)
2335 call_for_symbol_thunks_and_aliases (cgraph_set_const_flag_1
,
2336 (void *)(size_t)(readonly
+ (int)looping
* 2),
2340 /* Worker to set pure flag. */
2343 cgraph_set_pure_flag_1 (cgraph_node
*node
, void *data
)
2345 /* Static constructors and destructors without a side effect can be
2347 if (data
&& !((size_t)data
& 2))
2349 if (DECL_STATIC_CONSTRUCTOR (node
->decl
))
2350 DECL_STATIC_CONSTRUCTOR (node
->decl
) = 0;
2351 if (DECL_STATIC_DESTRUCTOR (node
->decl
))
2352 DECL_STATIC_DESTRUCTOR (node
->decl
) = 0;
2354 DECL_PURE_P (node
->decl
) = data
!= NULL
;
2355 DECL_LOOPING_CONST_OR_PURE_P (node
->decl
) = ((size_t)data
& 2) != 0;
2359 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2363 cgraph_node::set_pure_flag (bool pure
, bool looping
)
2365 call_for_symbol_thunks_and_aliases (cgraph_set_pure_flag_1
,
2366 (void *)(size_t)(pure
+ (int)looping
* 2),
2370 /* Return true when cgraph_node can not return or throw and thus
2371 it is safe to ignore its side effects for IPA analysis. */
2374 cgraph_node::cannot_return_p (void)
2376 int flags
= flags_from_decl_or_type (decl
);
2377 if (!flag_exceptions
)
2378 return (flags
& ECF_NORETURN
) != 0;
2380 return ((flags
& (ECF_NORETURN
| ECF_NOTHROW
))
2381 == (ECF_NORETURN
| ECF_NOTHROW
));
2384 /* Return true when call of edge can not lead to return from caller
2385 and thus it is safe to ignore its side effects for IPA analysis
2386 when computing side effects of the caller.
2387 FIXME: We could actually mark all edges that have no reaching
2388 patch to the exit block or throw to get better results. */
2390 cgraph_edge::cannot_lead_to_return_p (void)
2392 if (caller
->cannot_return_p ())
2394 if (indirect_unknown_callee
)
2396 int flags
= indirect_info
->ecf_flags
;
2397 if (!flag_exceptions
)
2398 return (flags
& ECF_NORETURN
) != 0;
2400 return ((flags
& (ECF_NORETURN
| ECF_NOTHROW
))
2401 == (ECF_NORETURN
| ECF_NOTHROW
));
2404 return callee
->cannot_return_p ();
2407 /* Return true if the call can be hot. */
2410 cgraph_edge::maybe_hot_p (void)
2412 if (profile_info
&& flag_branch_probabilities
2413 && !maybe_hot_count_p (NULL
, count
))
2415 if (caller
->frequency
== NODE_FREQUENCY_UNLIKELY_EXECUTED
2417 && callee
->frequency
== NODE_FREQUENCY_UNLIKELY_EXECUTED
))
2419 if (caller
->frequency
> NODE_FREQUENCY_UNLIKELY_EXECUTED
2421 && callee
->frequency
<= NODE_FREQUENCY_EXECUTED_ONCE
))
2423 if (optimize_size
) return false;
2424 if (caller
->frequency
== NODE_FREQUENCY_HOT
)
2426 if (caller
->frequency
== NODE_FREQUENCY_EXECUTED_ONCE
2427 && frequency
< CGRAPH_FREQ_BASE
* 3 / 2)
2429 if (flag_guess_branch_prob
)
2431 if (PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION
) == 0
2432 || frequency
<= (CGRAPH_FREQ_BASE
2433 / PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION
)))
2439 /* Return true when function can be removed from callgraph
2440 if all direct calls are eliminated. */
2443 cgraph_node::can_remove_if_no_direct_calls_and_refs_p (void)
2445 gcc_assert (!global
.inlined_to
);
2446 /* Instrumentation clones should not be removed before
2447 instrumentation happens. New callers may appear after
2449 if (instrumentation_clone
2450 && !chkp_function_instrumented_p (decl
))
2452 /* Extern inlines can always go, we will use the external definition. */
2453 if (DECL_EXTERNAL (decl
))
2455 /* When function is needed, we can not remove it. */
2456 if (force_output
|| used_from_other_partition
)
2458 if (DECL_STATIC_CONSTRUCTOR (decl
)
2459 || DECL_STATIC_DESTRUCTOR (decl
))
2461 /* Only COMDAT functions can be removed if externally visible. */
2462 if (externally_visible
2463 && (!DECL_COMDAT (decl
)
2465 || used_from_object_file_p ()))
2470 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2473 nonremovable_p (cgraph_node
*node
, void *)
2475 return !node
->can_remove_if_no_direct_calls_and_refs_p ();
2478 /* Return true when function cgraph_node and its aliases can be removed from
2479 callgraph if all direct calls are eliminated. */
2482 cgraph_node::can_remove_if_no_direct_calls_p (void)
2484 /* Extern inlines can always go, we will use the external definition. */
2485 if (DECL_EXTERNAL (decl
))
2489 return !call_for_symbol_and_aliases (nonremovable_p
, NULL
, true);
2492 /* Return true when function cgraph_node can be expected to be removed
2493 from program when direct calls in this compilation unit are removed.
2495 As a special case COMDAT functions are
2496 cgraph_can_remove_if_no_direct_calls_p while the are not
2497 cgraph_only_called_directly_p (it is possible they are called from other
2500 This function behaves as cgraph_only_called_directly_p because eliminating
2501 all uses of COMDAT function does not make it necessarily disappear from
2502 the program unless we are compiling whole program or we do LTO. In this
2503 case we know we win since dynamic linking will not really discard the
2504 linkonce section. */
2507 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p (void)
2509 gcc_assert (!global
.inlined_to
);
2511 if (call_for_symbol_and_aliases (used_from_object_file_p_worker
,
2514 if (!in_lto_p
&& !flag_whole_program
)
2515 return only_called_directly_p ();
2518 if (DECL_EXTERNAL (decl
))
2520 return can_remove_if_no_direct_calls_p ();
2525 /* Worker for cgraph_only_called_directly_p. */
2528 cgraph_not_only_called_directly_p_1 (cgraph_node
*node
, void *)
2530 return !node
->only_called_directly_or_aliased_p ();
2533 /* Return true when function cgraph_node and all its aliases are only called
2535 i.e. it is not externally visible, address was not taken and
2536 it is not used in any other non-standard way. */
2539 cgraph_node::only_called_directly_p (void)
2541 gcc_assert (ultimate_alias_target () == this);
2542 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1
,
2547 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2550 collect_callers_of_node_1 (cgraph_node
*node
, void *data
)
2552 vec
<cgraph_edge
*> *redirect_callers
= (vec
<cgraph_edge
*> *)data
;
2554 enum availability avail
;
2555 node
->ultimate_alias_target (&avail
);
2557 if (avail
> AVAIL_INTERPOSABLE
)
2558 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
2559 if (!cs
->indirect_inlining_edge
)
2560 redirect_callers
->safe_push (cs
);
2564 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2565 cgraph_node (i.e. are not overwritable). */
2568 cgraph_node::collect_callers (void)
2570 vec
<cgraph_edge
*> redirect_callers
= vNULL
;
2571 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1
,
2572 &redirect_callers
, false);
2573 return redirect_callers
;
2576 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. */
2579 clone_of_p (cgraph_node
*node
, cgraph_node
*node2
)
2581 bool skipped_thunk
= false;
2582 node
= node
->ultimate_alias_target ();
2583 node2
= node2
->ultimate_alias_target ();
2585 /* There are no virtual clones of thunks so check former_clone_of or if we
2586 might have skipped thunks because this adjustments are no longer
2588 while (node
->thunk
.thunk_p
)
2590 if (node2
->former_clone_of
== node
->decl
)
2592 if (!node
->thunk
.this_adjusting
)
2594 node
= node
->callees
->callee
->ultimate_alias_target ();
2595 skipped_thunk
= true;
2600 if (!node2
->clone
.args_to_skip
2601 || !bitmap_bit_p (node2
->clone
.args_to_skip
, 0))
2603 if (node2
->former_clone_of
== node
->decl
)
2605 else if (!node2
->clone_of
)
2609 while (node
!= node2
&& node2
)
2610 node2
= node2
->clone_of
;
2611 return node2
!= NULL
;
2614 /* Verify edge E count and frequency. */
2617 verify_edge_count_and_frequency (cgraph_edge
*e
)
2619 bool error_found
= false;
2622 error ("caller edge count is negative");
2625 if (e
->frequency
< 0)
2627 error ("caller edge frequency is negative");
2630 if (e
->frequency
> CGRAPH_FREQ_MAX
)
2632 error ("caller edge frequency is too large");
2635 if (gimple_has_body_p (e
->caller
->decl
)
2636 && !e
->caller
->global
.inlined_to
2638 /* FIXME: Inline-analysis sets frequency to 0 when edge is optimized out.
2639 Remove this once edges are actually removed from the function at that time. */
2641 || (inline_edge_summary_vec
.exists ()
2642 && ((inline_edge_summary_vec
.length () <= (unsigned) e
->uid
)
2643 || !inline_edge_summary (e
)->predicate
)))
2645 != compute_call_stmt_bb_frequency (e
->caller
->decl
,
2646 gimple_bb (e
->call_stmt
))))
2648 error ("caller edge frequency %i does not match BB frequency %i",
2650 compute_call_stmt_bb_frequency (e
->caller
->decl
,
2651 gimple_bb (e
->call_stmt
)));
2657 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
2659 cgraph_debug_gimple_stmt (function
*this_cfun
, gimple stmt
)
2661 bool fndecl_was_null
= false;
2662 /* debug_gimple_stmt needs correct cfun */
2663 if (cfun
!= this_cfun
)
2664 set_cfun (this_cfun
);
2665 /* ...and an actual current_function_decl */
2666 if (!current_function_decl
)
2668 current_function_decl
= this_cfun
->decl
;
2669 fndecl_was_null
= true;
2671 debug_gimple_stmt (stmt
);
2672 if (fndecl_was_null
)
2673 current_function_decl
= NULL
;
2676 /* Verify that call graph edge E corresponds to DECL from the associated
2677 statement. Return true if the verification should fail. */
2680 verify_edge_corresponds_to_fndecl (cgraph_edge
*e
, tree decl
)
2684 if (!decl
|| e
->callee
->global
.inlined_to
)
2686 if (symtab
->state
== LTO_STREAMING
)
2688 node
= cgraph_node::get (decl
);
2690 /* We do not know if a node from a different partition is an alias or what it
2691 aliases and therefore cannot do the former_clone_of check reliably. When
2692 body_removed is set, we have lost all information about what was alias or
2693 thunk of and also cannot proceed. */
2695 || node
->body_removed
2696 || node
->in_other_partition
2698 || e
->callee
->in_other_partition
)
2701 node
= node
->ultimate_alias_target ();
2703 /* Optimizers can redirect unreachable calls or calls triggering undefined
2704 behaviour to builtin_unreachable. */
2705 if (DECL_BUILT_IN_CLASS (e
->callee
->decl
) == BUILT_IN_NORMAL
2706 && DECL_FUNCTION_CODE (e
->callee
->decl
) == BUILT_IN_UNREACHABLE
)
2709 if (e
->callee
->former_clone_of
!= node
->decl
2710 && (node
!= e
->callee
->ultimate_alias_target ())
2711 && !clone_of_p (node
, e
->callee
))
2717 /* Verify cgraph nodes of given cgraph node. */
2719 cgraph_node::verify_node (void)
2722 function
*this_cfun
= DECL_STRUCT_FUNCTION (decl
);
2723 basic_block this_block
;
2724 gimple_stmt_iterator gsi
;
2725 bool error_found
= false;
2730 timevar_push (TV_CGRAPH_VERIFY
);
2731 error_found
|= verify_base ();
2732 for (e
= callees
; e
; e
= e
->next_callee
)
2735 error ("aux field set for edge %s->%s",
2736 identifier_to_locale (e
->caller
->name ()),
2737 identifier_to_locale (e
->callee
->name ()));
2742 error ("execution count is negative");
2745 if (global
.inlined_to
&& same_comdat_group
)
2747 error ("inline clone in same comdat group list");
2750 if (!definition
&& !in_other_partition
&& local
.local
)
2752 error ("local symbols must be defined");
2755 if (global
.inlined_to
&& externally_visible
)
2757 error ("externally visible inline clone");
2760 if (global
.inlined_to
&& address_taken
)
2762 error ("inline clone with address taken");
2765 if (global
.inlined_to
&& force_output
)
2767 error ("inline clone is forced to output");
2770 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
2774 error ("aux field set for indirect edge from %s",
2775 identifier_to_locale (e
->caller
->name ()));
2778 if (!e
->indirect_unknown_callee
2779 || !e
->indirect_info
)
2781 error ("An indirect edge from %s is not marked as indirect or has "
2782 "associated indirect_info, the corresponding statement is: ",
2783 identifier_to_locale (e
->caller
->name ()));
2784 cgraph_debug_gimple_stmt (this_cfun
, e
->call_stmt
);
2788 bool check_comdat
= comdat_local_p ();
2789 for (e
= callers
; e
; e
= e
->next_caller
)
2791 if (verify_edge_count_and_frequency (e
))
2794 && !in_same_comdat_group_p (e
->caller
))
2796 error ("comdat-local function called by %s outside its comdat",
2797 identifier_to_locale (e
->caller
->name ()));
2800 if (!e
->inline_failed
)
2802 if (global
.inlined_to
2803 != (e
->caller
->global
.inlined_to
2804 ? e
->caller
->global
.inlined_to
: e
->caller
))
2806 error ("inlined_to pointer is wrong");
2809 if (callers
->next_caller
)
2811 error ("multiple inline callers");
2816 if (global
.inlined_to
)
2818 error ("inlined_to pointer set for noninline callers");
2822 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
2823 if (verify_edge_count_and_frequency (e
))
2825 if (!callers
&& global
.inlined_to
)
2827 error ("inlined_to pointer is set but no predecessors found");
2830 if (global
.inlined_to
== this)
2832 error ("inlined_to pointer refers to itself");
2839 for (n
= clone_of
->clones
; n
; n
= n
->next_sibling_clone
)
2844 error ("cgraph_node has wrong clone_of");
2851 for (n
= clones
; n
; n
= n
->next_sibling_clone
)
2852 if (n
->clone_of
!= this)
2856 error ("cgraph_node has wrong clone list");
2860 if ((prev_sibling_clone
|| next_sibling_clone
) && !clone_of
)
2862 error ("cgraph_node is in clone list but it is not clone");
2865 if (!prev_sibling_clone
&& clone_of
&& clone_of
->clones
!= this)
2867 error ("cgraph_node has wrong prev_clone pointer");
2870 if (prev_sibling_clone
&& prev_sibling_clone
->next_sibling_clone
!= this)
2872 error ("double linked list of clones corrupted");
2876 if (analyzed
&& alias
)
2878 bool ref_found
= false;
2880 ipa_ref
*ref
= NULL
;
2884 error ("Alias has call edges");
2887 for (i
= 0; iterate_reference (i
, ref
); i
++)
2888 if (ref
->use
== IPA_REF_CHKP
)
2890 else if (ref
->use
!= IPA_REF_ALIAS
)
2892 error ("Alias has non-alias reference");
2897 error ("Alias has more than one alias reference");
2904 error ("Analyzed alias has no reference");
2909 /* Check instrumented version reference. */
2910 if (instrumented_version
2911 && instrumented_version
->instrumented_version
!= this)
2913 error ("Instrumentation clone does not reference original node");
2917 /* Cannot have orig_decl for not instrumented nodes. */
2918 if (!instrumentation_clone
&& orig_decl
)
2920 error ("Not instrumented node has non-NULL original declaration");
2924 /* If original not instrumented node still exists then we may check
2925 original declaration is set properly. */
2926 if (instrumented_version
2928 && orig_decl
!= instrumented_version
->decl
)
2930 error ("Instrumented node has wrong original declaration");
2934 /* Check all nodes have chkp reference to their instrumented versions. */
2936 && instrumented_version
2937 && !instrumentation_clone
)
2939 bool ref_found
= false;
2941 struct ipa_ref
*ref
;
2943 for (i
= 0; iterate_reference (i
, ref
); i
++)
2944 if (ref
->use
== IPA_REF_CHKP
)
2948 error ("Node has more than one chkp reference");
2951 if (ref
->referred
!= instrumented_version
)
2953 error ("Wrong node is referenced with chkp reference");
2961 error ("Analyzed node has no reference to instrumented version");
2966 if (analyzed
&& thunk
.thunk_p
)
2970 error ("No edge out of thunk node");
2973 else if (callees
->next_callee
)
2975 error ("More than one edge out of thunk node");
2978 if (gimple_has_body_p (decl
))
2980 error ("Thunk is not supposed to have body");
2983 if (thunk
.add_pointer_bounds_args
2984 && !instrumented_version
->semantically_equivalent_p (callees
->callee
))
2986 error ("Instrumentation thunk has wrong edge callee");
2990 else if (analyzed
&& gimple_has_body_p (decl
)
2991 && !TREE_ASM_WRITTEN (decl
)
2992 && (!DECL_EXTERNAL (decl
) || global
.inlined_to
)
2997 hash_set
<gimple
> stmts
;
2999 ipa_ref
*ref
= NULL
;
3001 /* Reach the trees by walking over the CFG, and note the
3002 enclosing basic-blocks in the call edges. */
3003 FOR_EACH_BB_FN (this_block
, this_cfun
)
3005 for (gsi
= gsi_start_phis (this_block
);
3006 !gsi_end_p (gsi
); gsi_next (&gsi
))
3007 stmts
.add (gsi_stmt (gsi
));
3008 for (gsi
= gsi_start_bb (this_block
);
3012 gimple stmt
= gsi_stmt (gsi
);
3014 if (is_gimple_call (stmt
))
3016 cgraph_edge
*e
= get_edge (stmt
);
3017 tree decl
= gimple_call_fndecl (stmt
);
3022 error ("shared call_stmt:");
3023 cgraph_debug_gimple_stmt (this_cfun
, stmt
);
3026 if (!e
->indirect_unknown_callee
)
3028 if (verify_edge_corresponds_to_fndecl (e
, decl
))
3030 error ("edge points to wrong declaration:");
3031 debug_tree (e
->callee
->decl
);
3032 fprintf (stderr
," Instead of:");
3039 error ("an indirect edge with unknown callee "
3040 "corresponding to a call_stmt with "
3041 "a known declaration:");
3043 cgraph_debug_gimple_stmt (this_cfun
, e
->call_stmt
);
3049 error ("missing callgraph edge for call stmt:");
3050 cgraph_debug_gimple_stmt (this_cfun
, stmt
);
3056 for (i
= 0; iterate_reference (i
, ref
); i
++)
3057 if (ref
->stmt
&& !stmts
.contains (ref
->stmt
))
3059 error ("reference to dead statement");
3060 cgraph_debug_gimple_stmt (this_cfun
, ref
->stmt
);
3065 /* No CFG available?! */
3068 for (e
= callees
; e
; e
= e
->next_callee
)
3072 error ("edge %s->%s has no corresponding call_stmt",
3073 identifier_to_locale (e
->caller
->name ()),
3074 identifier_to_locale (e
->callee
->name ()));
3075 cgraph_debug_gimple_stmt (this_cfun
, e
->call_stmt
);
3080 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
3082 if (!e
->aux
&& !e
->speculative
)
3084 error ("an indirect edge from %s has no corresponding call_stmt",
3085 identifier_to_locale (e
->caller
->name ()));
3086 cgraph_debug_gimple_stmt (this_cfun
, e
->call_stmt
);
3095 internal_error ("verify_cgraph_node failed");
3097 timevar_pop (TV_CGRAPH_VERIFY
);
3100 /* Verify whole cgraph structure. */
3102 cgraph_node::verify_cgraph_nodes (void)
3109 FOR_EACH_FUNCTION (node
)
3113 /* Walk the alias chain to return the function cgraph_node is alias of.
3114 Walk through thunk, too.
3115 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
3118 cgraph_node::function_symbol (enum availability
*availability
)
3120 cgraph_node
*node
= this;
3124 node
= node
->ultimate_alias_target (availability
);
3125 if (node
->thunk
.thunk_p
)
3127 node
= node
->callees
->callee
;
3130 enum availability a
;
3131 a
= node
->get_availability ();
3132 if (a
< *availability
)
3135 node
= node
->ultimate_alias_target (availability
);
3137 } while (node
&& node
->thunk
.thunk_p
);
3141 /* When doing LTO, read cgraph_node's body from disk if it is not already
3145 cgraph_node::get_untransformed_body (void)
3147 lto_file_decl_data
*file_data
;
3148 const char *data
, *name
;
3150 tree decl
= this->decl
;
3152 if (DECL_RESULT (decl
))
3155 gcc_assert (in_lto_p
);
3157 timevar_push (TV_IPA_LTO_GIMPLE_IN
);
3159 file_data
= lto_file_data
;
3160 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
3162 /* We may have renamed the declaration, e.g., a static function. */
3163 name
= lto_get_decl_name_mapping (file_data
, name
);
3165 data
= lto_get_section_data (file_data
, LTO_section_function_body
,
3168 fatal_error ("%s: section %s is missing",
3169 file_data
->file_name
,
3172 gcc_assert (DECL_STRUCT_FUNCTION (decl
) == NULL
);
3174 lto_input_function_body (file_data
, this, data
);
3175 lto_stats
.num_function_bodies
++;
3176 lto_free_section_data (file_data
, LTO_section_function_body
, name
,
3178 lto_free_function_in_decl_state_for_node (this);
3180 timevar_pop (TV_IPA_LTO_GIMPLE_IN
);
3185 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3186 if it is not already present. When some IPA transformations are scheduled,
3190 cgraph_node::get_body (void)
3194 updated
= get_untransformed_body ();
3196 /* Getting transformed body makes no sense for inline clones;
3197 we should never use this on real clones becuase they are materialized
3199 TODO: Materializing clones here will likely lead to smaller LTRANS
3201 gcc_assert (!global
.inlined_to
&& !clone_of
);
3202 if (ipa_transforms_to_apply
.exists ())
3204 opt_pass
*saved_current_pass
= current_pass
;
3205 FILE *saved_dump_file
= dump_file
;
3206 int saved_dump_flags
= dump_flags
;
3208 push_cfun (DECL_STRUCT_FUNCTION (decl
));
3209 execute_all_ipa_transforms ();
3210 cgraph_edge::rebuild_edges ();
3211 free_dominance_info (CDI_DOMINATORS
);
3212 free_dominance_info (CDI_POST_DOMINATORS
);
3216 current_pass
= saved_current_pass
;
3217 dump_file
= saved_dump_file
;
3218 dump_flags
= saved_dump_flags
;
3223 /* Return the DECL_STRUCT_FUNCTION of the function. */
3226 cgraph_node::get_fun (void)
3228 cgraph_node
*node
= this;
3229 struct function
*fun
= DECL_STRUCT_FUNCTION (node
->decl
);
3231 while (!fun
&& node
->clone_of
)
3233 node
= node
->clone_of
;
3234 fun
= DECL_STRUCT_FUNCTION (node
->decl
);
3240 /* Verify if the type of the argument matches that of the function
3241 declaration. If we cannot verify this or there is a mismatch,
3245 gimple_check_call_args (gimple stmt
, tree fndecl
, bool args_count_match
)
3248 unsigned int i
, nargs
;
3250 /* Calls to internal functions always match their signature. */
3251 if (gimple_call_internal_p (stmt
))
3254 nargs
= gimple_call_num_args (stmt
);
3256 /* Get argument types for verification. */
3258 parms
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
3260 parms
= TYPE_ARG_TYPES (gimple_call_fntype (stmt
));
3262 /* Verify if the type of the argument matches that of the function
3263 declaration. If we cannot verify this or there is a mismatch,
3265 if (fndecl
&& DECL_ARGUMENTS (fndecl
))
3267 for (i
= 0, p
= DECL_ARGUMENTS (fndecl
);
3269 i
++, p
= DECL_CHAIN (p
))
3272 /* We cannot distinguish a varargs function from the case
3273 of excess parameters, still deferring the inlining decision
3274 to the callee is possible. */
3277 arg
= gimple_call_arg (stmt
, i
);
3278 if (p
== error_mark_node
3279 || DECL_ARG_TYPE (p
) == error_mark_node
3280 || arg
== error_mark_node
3281 || (!types_compatible_p (DECL_ARG_TYPE (p
), TREE_TYPE (arg
))
3282 && !fold_convertible_p (DECL_ARG_TYPE (p
), arg
)))
3285 if (args_count_match
&& p
)
3290 for (i
= 0, p
= parms
; i
< nargs
; i
++, p
= TREE_CHAIN (p
))
3293 /* If this is a varargs function defer inlining decision
3297 arg
= gimple_call_arg (stmt
, i
);
3298 if (TREE_VALUE (p
) == error_mark_node
3299 || arg
== error_mark_node
3300 || TREE_CODE (TREE_VALUE (p
)) == VOID_TYPE
3301 || (!types_compatible_p (TREE_VALUE (p
), TREE_TYPE (arg
))
3302 && !fold_convertible_p (TREE_VALUE (p
), arg
)))
3314 /* Verify if the type of the argument and lhs of CALL_STMT matches
3315 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3316 true, the arg count needs to be the same.
3317 If we cannot verify this or there is a mismatch, return false. */
3320 gimple_check_call_matching_types (gimple call_stmt
, tree callee
,
3321 bool args_count_match
)
3325 if ((DECL_RESULT (callee
)
3326 && !DECL_BY_REFERENCE (DECL_RESULT (callee
))
3327 && (lhs
= gimple_call_lhs (call_stmt
)) != NULL_TREE
3328 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee
)),
3330 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee
)), lhs
))
3331 || !gimple_check_call_args (call_stmt
, callee
, args_count_match
))
3336 /* Reset all state within cgraph.c so that we can rerun the compiler
3337 within the same process. For use by toplev::finalize. */
3340 cgraph_c_finalize (void)
3344 x_cgraph_nodes_queue
= NULL
;
3346 cgraph_fnver_htab
= NULL
;
3347 version_info_node
= NULL
;
3350 #include "gt-cgraph.h"