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
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 "double-int.h"
40 #include "fold-const.h"
43 #include "print-tree.h"
44 #include "tree-inline.h"
45 #include "langhooks.h"
52 #include "dominance.h"
54 #include "basic-block.h"
57 #include "plugin-api.h"
58 #include "hard-reg-set.h"
63 #include "tree-ssa-alias.h"
64 #include "internal-fn.h"
66 #include "gimple-expr.h"
68 #include "gimple-iterator.h"
71 #include "gimple-ssa.h"
74 #include "value-prof.h"
76 #include "diagnostic-core.h"
78 #include "ipa-utils.h"
79 #include "lto-streamer.h"
80 #include "alloc-pool.h"
81 #include "symbol-summary.h"
83 #include "ipa-inline.h"
85 #include "gimple-pretty-print.h"
86 #include "statistics.h"
88 #include "fixed-value.h"
89 #include "insn-config.h"
99 #include "tree-chkp.h"
102 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
103 #include "tree-pass.h"
105 /* Queue of cgraph nodes scheduled to be lowered. */
106 symtab_node
*x_cgraph_nodes_queue
;
107 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
109 /* Symbol table global context. */
110 symbol_table
*symtab
;
112 /* List of hooks triggered on cgraph_edge events. */
113 struct cgraph_edge_hook_list
{
114 cgraph_edge_hook hook
;
116 struct cgraph_edge_hook_list
*next
;
119 /* List of hooks triggered on cgraph_node events. */
120 struct cgraph_node_hook_list
{
121 cgraph_node_hook hook
;
123 struct cgraph_node_hook_list
*next
;
126 /* List of hooks triggered on events involving two cgraph_edges. */
127 struct cgraph_2edge_hook_list
{
128 cgraph_2edge_hook hook
;
130 struct cgraph_2edge_hook_list
*next
;
133 /* List of hooks triggered on events involving two cgraph_nodes. */
134 struct cgraph_2node_hook_list
{
135 cgraph_2node_hook hook
;
137 struct cgraph_2node_hook_list
*next
;
140 /* Hash descriptor for cgraph_function_version_info. */
142 struct function_version_hasher
: ggc_hasher
<cgraph_function_version_info
*>
144 static hashval_t
hash (cgraph_function_version_info
*);
145 static bool equal (cgraph_function_version_info
*,
146 cgraph_function_version_info
*);
149 /* Map a cgraph_node to cgraph_function_version_info using this htab.
150 The cgraph_function_version_info has a THIS_NODE field that is the
151 corresponding cgraph_node.. */
153 static GTY(()) hash_table
<function_version_hasher
> *cgraph_fnver_htab
= NULL
;
155 /* Hash function for cgraph_fnver_htab. */
157 function_version_hasher::hash (cgraph_function_version_info
*ptr
)
159 int uid
= ptr
->this_node
->uid
;
160 return (hashval_t
)(uid
);
163 /* eq function for cgraph_fnver_htab. */
165 function_version_hasher::equal (cgraph_function_version_info
*n1
,
166 cgraph_function_version_info
*n2
)
168 return n1
->this_node
->uid
== n2
->this_node
->uid
;
171 /* Mark as GC root all allocated nodes. */
172 static GTY(()) struct cgraph_function_version_info
*
173 version_info_node
= NULL
;
175 /* Get the cgraph_function_version_info node corresponding to node. */
176 cgraph_function_version_info
*
177 cgraph_node::function_version (void)
179 cgraph_function_version_info key
;
180 key
.this_node
= this;
182 if (cgraph_fnver_htab
== NULL
)
185 return cgraph_fnver_htab
->find (&key
);
188 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
189 corresponding to cgraph_node NODE. */
190 cgraph_function_version_info
*
191 cgraph_node::insert_new_function_version (void)
193 version_info_node
= NULL
;
194 version_info_node
= ggc_cleared_alloc
<cgraph_function_version_info
> ();
195 version_info_node
->this_node
= this;
197 if (cgraph_fnver_htab
== NULL
)
198 cgraph_fnver_htab
= hash_table
<function_version_hasher
>::create_ggc (2);
200 *cgraph_fnver_htab
->find_slot (version_info_node
, INSERT
)
202 return version_info_node
;
205 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
206 DECL is a duplicate declaration. */
208 cgraph_node::delete_function_version (tree decl
)
210 cgraph_node
*decl_node
= cgraph_node::get (decl
);
211 cgraph_function_version_info
*decl_v
= NULL
;
213 if (decl_node
== NULL
)
216 decl_v
= decl_node
->function_version ();
221 if (decl_v
->prev
!= NULL
)
222 decl_v
->prev
->next
= decl_v
->next
;
224 if (decl_v
->next
!= NULL
)
225 decl_v
->next
->prev
= decl_v
->prev
;
227 if (cgraph_fnver_htab
!= NULL
)
228 cgraph_fnver_htab
->remove_elt (decl_v
);
230 decl_node
->remove ();
233 /* Record that DECL1 and DECL2 are semantically identical function
236 cgraph_node::record_function_versions (tree decl1
, tree decl2
)
238 cgraph_node
*decl1_node
= cgraph_node::get_create (decl1
);
239 cgraph_node
*decl2_node
= cgraph_node::get_create (decl2
);
240 cgraph_function_version_info
*decl1_v
= NULL
;
241 cgraph_function_version_info
*decl2_v
= NULL
;
242 cgraph_function_version_info
*before
;
243 cgraph_function_version_info
*after
;
245 gcc_assert (decl1_node
!= NULL
&& decl2_node
!= NULL
);
246 decl1_v
= decl1_node
->function_version ();
247 decl2_v
= decl2_node
->function_version ();
249 if (decl1_v
!= NULL
&& decl2_v
!= NULL
)
253 decl1_v
= decl1_node
->insert_new_function_version ();
256 decl2_v
= decl2_node
->insert_new_function_version ();
258 /* Chain decl2_v and decl1_v. All semantically identical versions
259 will be chained together. */
264 while (before
->next
!= NULL
)
265 before
= before
->next
;
267 while (after
->prev
!= NULL
)
270 before
->next
= after
;
271 after
->prev
= before
;
274 /* Initialize callgraph dump file. */
277 symbol_table::initialize (void)
280 dump_file
= dump_begin (TDI_cgraph
, NULL
);
283 /* Allocate new callgraph node and insert it into basic data structures. */
286 symbol_table::create_empty (void)
288 cgraph_node
*node
= allocate_cgraph_symbol ();
290 node
->type
= SYMTAB_FUNCTION
;
291 node
->frequency
= NODE_FREQUENCY_NORMAL
;
292 node
->count_materialization_scale
= REG_BR_PROB_BASE
;
298 /* Register HOOK to be called with DATA on each removed edge. */
299 cgraph_edge_hook_list
*
300 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook
, void *data
)
302 cgraph_edge_hook_list
*entry
;
303 cgraph_edge_hook_list
**ptr
= &m_first_edge_removal_hook
;
305 entry
= (cgraph_edge_hook_list
*) xmalloc (sizeof (*entry
));
315 /* Remove ENTRY from the list of hooks called on removing edges. */
317 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list
*entry
)
319 cgraph_edge_hook_list
**ptr
= &m_first_edge_removal_hook
;
321 while (*ptr
!= entry
)
327 /* Call all edge removal hooks. */
329 symbol_table::call_edge_removal_hooks (cgraph_edge
*e
)
331 cgraph_edge_hook_list
*entry
= m_first_edge_removal_hook
;
334 entry
->hook (e
, entry
->data
);
339 /* Register HOOK to be called with DATA on each removed node. */
340 cgraph_node_hook_list
*
341 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook
, void *data
)
343 cgraph_node_hook_list
*entry
;
344 cgraph_node_hook_list
**ptr
= &m_first_cgraph_removal_hook
;
346 entry
= (cgraph_node_hook_list
*) xmalloc (sizeof (*entry
));
356 /* Remove ENTRY from the list of hooks called on removing nodes. */
358 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list
*entry
)
360 cgraph_node_hook_list
**ptr
= &m_first_cgraph_removal_hook
;
362 while (*ptr
!= entry
)
368 /* Call all node removal hooks. */
370 symbol_table::call_cgraph_removal_hooks (cgraph_node
*node
)
372 cgraph_node_hook_list
*entry
= m_first_cgraph_removal_hook
;
375 entry
->hook (node
, entry
->data
);
380 /* Call all node removal hooks. */
382 symbol_table::call_cgraph_insertion_hooks (cgraph_node
*node
)
384 cgraph_node_hook_list
*entry
= m_first_cgraph_insertion_hook
;
387 entry
->hook (node
, entry
->data
);
393 /* Register HOOK to be called with DATA on each inserted node. */
394 cgraph_node_hook_list
*
395 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook
, void *data
)
397 cgraph_node_hook_list
*entry
;
398 cgraph_node_hook_list
**ptr
= &m_first_cgraph_insertion_hook
;
400 entry
= (cgraph_node_hook_list
*) xmalloc (sizeof (*entry
));
410 /* Remove ENTRY from the list of hooks called on inserted nodes. */
412 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list
*entry
)
414 cgraph_node_hook_list
**ptr
= &m_first_cgraph_insertion_hook
;
416 while (*ptr
!= entry
)
422 /* Register HOOK to be called with DATA on each duplicated edge. */
423 cgraph_2edge_hook_list
*
424 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook
, void *data
)
426 cgraph_2edge_hook_list
*entry
;
427 cgraph_2edge_hook_list
**ptr
= &m_first_edge_duplicated_hook
;
429 entry
= (cgraph_2edge_hook_list
*) xmalloc (sizeof (*entry
));
439 /* Remove ENTRY from the list of hooks called on duplicating edges. */
441 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list
*entry
)
443 cgraph_2edge_hook_list
**ptr
= &m_first_edge_duplicated_hook
;
445 while (*ptr
!= entry
)
451 /* Call all edge duplication hooks. */
453 symbol_table::call_edge_duplication_hooks (cgraph_edge
*cs1
, cgraph_edge
*cs2
)
455 cgraph_2edge_hook_list
*entry
= m_first_edge_duplicated_hook
;
458 entry
->hook (cs1
, cs2
, entry
->data
);
463 /* Register HOOK to be called with DATA on each duplicated node. */
464 cgraph_2node_hook_list
*
465 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook
, void *data
)
467 cgraph_2node_hook_list
*entry
;
468 cgraph_2node_hook_list
**ptr
= &m_first_cgraph_duplicated_hook
;
470 entry
= (cgraph_2node_hook_list
*) xmalloc (sizeof (*entry
));
480 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
482 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list
*entry
)
484 cgraph_2node_hook_list
**ptr
= &m_first_cgraph_duplicated_hook
;
486 while (*ptr
!= entry
)
492 /* Call all node duplication hooks. */
494 symbol_table::call_cgraph_duplication_hooks (cgraph_node
*node
,
497 cgraph_2node_hook_list
*entry
= m_first_cgraph_duplicated_hook
;
500 entry
->hook (node
, node2
, entry
->data
);
505 /* Return cgraph node assigned to DECL. Create new one when needed. */
508 cgraph_node::create (tree decl
)
510 cgraph_node
*node
= symtab
->create_empty ();
511 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
515 if ((flag_openacc
|| flag_openmp
)
516 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl
)))
518 node
->offloadable
= 1;
519 #ifdef ENABLE_OFFLOADING
520 g
->have_offload
= true;
524 node
->register_symbol ();
526 if (DECL_CONTEXT (decl
) && TREE_CODE (DECL_CONTEXT (decl
)) == FUNCTION_DECL
)
528 node
->origin
= cgraph_node::get_create (DECL_CONTEXT (decl
));
529 node
->next_nested
= node
->origin
->nested
;
530 node
->origin
->nested
= node
;
535 /* Try to find a call graph node for declaration DECL and if it does not exist
536 or if it corresponds to an inline clone, create a new one. */
539 cgraph_node::get_create (tree decl
)
541 cgraph_node
*first_clone
= cgraph_node::get (decl
);
543 if (first_clone
&& !first_clone
->global
.inlined_to
)
546 cgraph_node
*node
= cgraph_node::create (decl
);
549 first_clone
->clone_of
= node
;
550 node
->clones
= first_clone
;
551 symtab
->symtab_prevail_in_asm_name_hash (node
);
552 node
->decl
->decl_with_vis
.symtab_node
= node
;
554 fprintf (dump_file
, "Introduced new external node "
555 "(%s/%i) and turned into root of the clone tree.\n",
556 xstrdup_for_dump (node
->name ()), node
->order
);
559 fprintf (dump_file
, "Introduced new external node "
560 "(%s/%i).\n", xstrdup_for_dump (node
->name ()),
565 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
566 the function body is associated with (not necessarily cgraph_node (DECL). */
569 cgraph_node::create_alias (tree alias
, tree target
)
571 cgraph_node
*alias_node
;
573 gcc_assert (TREE_CODE (target
) == FUNCTION_DECL
574 || TREE_CODE (target
) == IDENTIFIER_NODE
);
575 gcc_assert (TREE_CODE (alias
) == FUNCTION_DECL
);
576 alias_node
= cgraph_node::get_create (alias
);
577 gcc_assert (!alias_node
->definition
);
578 alias_node
->alias_target
= target
;
579 alias_node
->definition
= true;
580 alias_node
->alias
= true;
581 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias
)) != NULL
)
582 alias_node
->weakref
= true;
586 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
588 Same body aliases are output whenever the body of DECL is output,
589 and cgraph_node::get (ALIAS) transparently returns
590 cgraph_node::get (DECL). */
593 cgraph_node::create_same_body_alias (tree alias
, tree decl
)
596 #ifndef ASM_OUTPUT_DEF
597 /* If aliases aren't supported by the assembler, fail. */
600 /* Langhooks can create same body aliases of symbols not defined.
601 Those are useless. Drop them on the floor. */
602 if (symtab
->global_info_ready
)
605 n
= cgraph_node::create_alias (alias
, decl
);
606 n
->cpp_implicit_alias
= true;
607 if (symtab
->cpp_implicit_aliases_done
)
608 n
->resolve_alias (cgraph_node::get (decl
));
612 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
613 aliases DECL with an adjustments made into the first parameter.
614 See comments in thunk_adjust for detail on the parameters. */
617 cgraph_node::create_thunk (tree alias
, tree
, bool this_adjusting
,
618 HOST_WIDE_INT fixed_offset
,
619 HOST_WIDE_INT virtual_value
,
625 node
= cgraph_node::get (alias
);
629 node
= cgraph_node::create (alias
);
630 gcc_checking_assert (!virtual_offset
631 || wi::eq_p (virtual_offset
, virtual_value
));
632 node
->thunk
.fixed_offset
= fixed_offset
;
633 node
->thunk
.this_adjusting
= this_adjusting
;
634 node
->thunk
.virtual_value
= virtual_value
;
635 node
->thunk
.virtual_offset_p
= virtual_offset
!= NULL
;
636 node
->thunk
.alias
= real_alias
;
637 node
->thunk
.thunk_p
= true;
638 node
->definition
= true;
643 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
644 Return NULL if there's no such node. */
647 cgraph_node::get_for_asmname (tree asmname
)
649 /* We do not want to look at inline clones. */
650 for (symtab_node
*node
= symtab_node::get_for_asmname (asmname
);
652 node
= node
->next_sharing_asm_name
)
654 cgraph_node
*cn
= dyn_cast
<cgraph_node
*> (node
);
655 if (cn
&& !cn
->global
.inlined_to
)
661 /* Returns a hash value for X (which really is a cgraph_edge). */
664 cgraph_edge_hasher::hash (cgraph_edge
*e
)
666 return htab_hash_pointer (e
->call_stmt
);
669 /* Return nonzero if the call_stmt of of cgraph_edge X is stmt *Y. */
672 cgraph_edge_hasher::equal (cgraph_edge
*x
, gimple y
)
674 return x
->call_stmt
== y
;
677 /* Add call graph edge E to call site hash of its caller. */
680 cgraph_update_edge_in_call_site_hash (cgraph_edge
*e
)
682 gimple call
= e
->call_stmt
;
683 *e
->caller
->call_site_hash
->find_slot_with_hash (call
,
684 htab_hash_pointer (call
),
688 /* Add call graph edge E to call site hash of its caller. */
691 cgraph_add_edge_to_call_site_hash (cgraph_edge
*e
)
693 /* There are two speculative edges for every statement (one direct,
694 one indirect); always hash the direct one. */
695 if (e
->speculative
&& e
->indirect_unknown_callee
)
697 cgraph_edge
**slot
= e
->caller
->call_site_hash
->find_slot_with_hash
699 htab_hash_pointer (e
->call_stmt
), INSERT
);
702 gcc_assert (((cgraph_edge
*)*slot
)->speculative
);
707 gcc_assert (!*slot
|| e
->speculative
);
711 /* Return the callgraph edge representing the GIMPLE_CALL statement
715 cgraph_node::get_edge (gimple call_stmt
)
721 return call_site_hash
->find_with_hash (call_stmt
,
722 htab_hash_pointer (call_stmt
));
724 /* This loop may turn out to be performance problem. In such case adding
725 hashtables into call nodes with very many edges is probably best
726 solution. It is not good idea to add pointer into CALL_EXPR itself
727 because we want to make possible having multiple cgraph nodes representing
728 different clones of the same body before the body is actually cloned. */
729 for (e
= callees
; e
; e
= e
->next_callee
)
731 if (e
->call_stmt
== call_stmt
)
737 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
739 if (e
->call_stmt
== call_stmt
)
746 call_site_hash
= hash_table
<cgraph_edge_hasher
>::create_ggc (120);
747 for (e2
= callees
; e2
; e2
= e2
->next_callee
)
748 cgraph_add_edge_to_call_site_hash (e2
);
749 for (e2
= indirect_calls
; e2
; e2
= e2
->next_callee
)
750 cgraph_add_edge_to_call_site_hash (e2
);
757 /* Change field call_stmt of edge to NEW_STMT.
758 If UPDATE_SPECULATIVE and E is any component of speculative
759 edge, then update all components. */
762 cgraph_edge::set_call_stmt (gcall
*new_stmt
, bool update_speculative
)
766 /* Speculative edges has three component, update all of them
768 if (update_speculative
&& speculative
)
770 cgraph_edge
*direct
, *indirect
;
773 speculative_call_info (direct
, indirect
, ref
);
774 direct
->set_call_stmt (new_stmt
, false);
775 indirect
->set_call_stmt (new_stmt
, false);
776 ref
->stmt
= new_stmt
;
780 /* Only direct speculative edges go to call_site_hash. */
781 if (caller
->call_site_hash
782 && (!speculative
|| !indirect_unknown_callee
))
784 caller
->call_site_hash
->remove_elt_with_hash
785 (call_stmt
, htab_hash_pointer (call_stmt
));
788 cgraph_edge
*e
= this;
790 call_stmt
= new_stmt
;
791 if (indirect_unknown_callee
792 && (decl
= gimple_call_fndecl (new_stmt
)))
794 /* Constant propagation (and possibly also inlining?) can turn an
795 indirect call into a direct one. */
796 cgraph_node
*new_callee
= cgraph_node::get (decl
);
798 gcc_checking_assert (new_callee
);
799 e
= make_direct (new_callee
);
802 push_cfun (DECL_STRUCT_FUNCTION (e
->caller
->decl
));
803 e
->can_throw_external
= stmt_can_throw_external (new_stmt
);
805 if (e
->caller
->call_site_hash
)
806 cgraph_add_edge_to_call_site_hash (e
);
809 /* Allocate a cgraph_edge structure and fill it with data according to the
810 parameters of which only CALLEE can be NULL (when creating an indirect call
814 symbol_table::create_edge (cgraph_node
*caller
, cgraph_node
*callee
,
815 gcall
*call_stmt
, gcov_type count
, int freq
,
816 bool indir_unknown_callee
)
820 /* LTO does not actually have access to the call_stmt since these
821 have not been loaded yet. */
824 /* This is a rather expensive check possibly triggering
825 construction of call stmt hashtable. */
826 #ifdef ENABLE_CHECKING
828 gcc_checking_assert (
829 !(e
= caller
->get_edge (call_stmt
)) || e
->speculative
);
832 gcc_assert (is_gimple_call (call_stmt
));
838 free_edges
= NEXT_FREE_EDGE (edge
);
842 edge
= ggc_alloc
<cgraph_edge
> ();
843 edge
->uid
= edges_max_uid
++;
849 edge
->caller
= caller
;
850 edge
->callee
= callee
;
851 edge
->prev_caller
= NULL
;
852 edge
->next_caller
= NULL
;
853 edge
->prev_callee
= NULL
;
854 edge
->next_callee
= NULL
;
855 edge
->lto_stmt_uid
= 0;
858 gcc_assert (count
>= 0);
859 edge
->frequency
= freq
;
860 gcc_assert (freq
>= 0);
861 gcc_assert (freq
<= CGRAPH_FREQ_MAX
);
863 edge
->call_stmt
= call_stmt
;
864 push_cfun (DECL_STRUCT_FUNCTION (caller
->decl
));
865 edge
->can_throw_external
866 = call_stmt
? stmt_can_throw_external (call_stmt
) : false;
869 && callee
&& callee
->decl
870 && !gimple_check_call_matching_types (call_stmt
, callee
->decl
,
872 edge
->call_stmt_cannot_inline_p
= true;
874 edge
->call_stmt_cannot_inline_p
= false;
876 edge
->indirect_info
= NULL
;
877 edge
->indirect_inlining_edge
= 0;
878 edge
->speculative
= false;
879 edge
->indirect_unknown_callee
= indir_unknown_callee
;
880 if (opt_for_fn (edge
->caller
->decl
, flag_devirtualize
)
881 && call_stmt
&& DECL_STRUCT_FUNCTION (caller
->decl
))
882 edge
->in_polymorphic_cdtor
883 = decl_maybe_in_construction_p (NULL
, NULL
, call_stmt
,
886 edge
->in_polymorphic_cdtor
= caller
->thunk
.thunk_p
;
887 if (call_stmt
&& caller
->call_site_hash
)
888 cgraph_add_edge_to_call_site_hash (edge
);
893 /* Create edge from a given function to CALLEE in the cgraph. */
896 cgraph_node::create_edge (cgraph_node
*callee
,
897 gcall
*call_stmt
, gcov_type count
, int freq
)
899 cgraph_edge
*edge
= symtab
->create_edge (this, callee
, call_stmt
, count
,
902 initialize_inline_failed (edge
);
904 edge
->next_caller
= callee
->callers
;
906 callee
->callers
->prev_caller
= edge
;
907 edge
->next_callee
= callees
;
909 callees
->prev_callee
= edge
;
911 callee
->callers
= edge
;
916 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
918 cgraph_indirect_call_info
*
919 cgraph_allocate_init_indirect_info (void)
921 cgraph_indirect_call_info
*ii
;
923 ii
= ggc_cleared_alloc
<cgraph_indirect_call_info
> ();
924 ii
->param_index
= -1;
928 /* Create an indirect edge with a yet-undetermined callee where the call
929 statement destination is a formal parameter of the caller with index
933 cgraph_node::create_indirect_edge (gcall
*call_stmt
, int ecf_flags
,
934 gcov_type count
, int freq
,
935 bool compute_indirect_info
)
937 cgraph_edge
*edge
= symtab
->create_edge (this, NULL
, call_stmt
,
941 initialize_inline_failed (edge
);
943 edge
->indirect_info
= cgraph_allocate_init_indirect_info ();
944 edge
->indirect_info
->ecf_flags
= ecf_flags
;
945 edge
->indirect_info
->vptr_changed
= true;
947 /* Record polymorphic call info. */
948 if (compute_indirect_info
950 && (target
= gimple_call_fn (call_stmt
))
951 && virtual_method_call_p (target
))
953 ipa_polymorphic_call_context
context (decl
, target
, call_stmt
);
955 /* Only record types can have virtual calls. */
956 edge
->indirect_info
->polymorphic
= true;
957 edge
->indirect_info
->param_index
= -1;
958 edge
->indirect_info
->otr_token
959 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target
));
960 edge
->indirect_info
->otr_type
= obj_type_ref_class (target
);
961 gcc_assert (TREE_CODE (edge
->indirect_info
->otr_type
) == RECORD_TYPE
);
962 edge
->indirect_info
->context
= context
;
965 edge
->next_callee
= indirect_calls
;
967 indirect_calls
->prev_callee
= edge
;
968 indirect_calls
= edge
;
973 /* Remove the edge from the list of the callees of the caller. */
976 cgraph_edge::remove_caller (void)
979 prev_callee
->next_callee
= next_callee
;
981 next_callee
->prev_callee
= prev_callee
;
984 if (indirect_unknown_callee
)
985 caller
->indirect_calls
= next_callee
;
987 caller
->callees
= next_callee
;
989 if (caller
->call_site_hash
)
990 caller
->call_site_hash
->remove_elt_with_hash (call_stmt
,
991 htab_hash_pointer (call_stmt
));
994 /* Put the edge onto the free list. */
997 symbol_table::free_edge (cgraph_edge
*e
)
1001 if (e
->indirect_info
)
1002 ggc_free (e
->indirect_info
);
1004 /* Clear out the edge so we do not dangle pointers. */
1005 memset (e
, 0, sizeof (*e
));
1007 NEXT_FREE_EDGE (e
) = free_edges
;
1012 /* Remove the edge in the cgraph. */
1015 cgraph_edge::remove (void)
1017 /* Call all edge removal hooks. */
1018 symtab
->call_edge_removal_hooks (this);
1020 if (!indirect_unknown_callee
)
1021 /* Remove from callers list of the callee. */
1024 /* Remove from callees list of the callers. */
1027 /* Put the edge onto the free list. */
1028 symtab
->free_edge (this);
1031 /* Turn edge into speculative call calling N2. Update
1032 the profile so the direct call is taken COUNT times
1035 At clone materialization time, the indirect call E will
1038 if (call_dest == N2)
1043 At this time the function just creates the direct call,
1044 the referencd representing the if conditional and attaches
1045 them all to the orginal indirect call statement.
1047 Return direct edge created. */
1050 cgraph_edge::make_speculative (cgraph_node
*n2
, gcov_type direct_count
,
1051 int direct_frequency
)
1053 cgraph_node
*n
= caller
;
1054 ipa_ref
*ref
= NULL
;
1059 fprintf (dump_file
, "Indirect call -> speculative call"
1060 " %s/%i => %s/%i\n",
1061 xstrdup_for_dump (n
->name ()), n
->order
,
1062 xstrdup_for_dump (n2
->name ()), n2
->order
);
1065 e2
= n
->create_edge (n2
, call_stmt
, direct_count
, direct_frequency
);
1066 initialize_inline_failed (e2
);
1067 e2
->speculative
= true;
1068 if (TREE_NOTHROW (n2
->decl
))
1069 e2
->can_throw_external
= false;
1071 e2
->can_throw_external
= can_throw_external
;
1072 e2
->lto_stmt_uid
= lto_stmt_uid
;
1073 e2
->in_polymorphic_cdtor
= in_polymorphic_cdtor
;
1075 frequency
-= e2
->frequency
;
1076 symtab
->call_edge_duplication_hooks (this, e2
);
1077 ref
= n
->create_reference (n2
, IPA_REF_ADDR
, call_stmt
);
1078 ref
->lto_stmt_uid
= lto_stmt_uid
;
1079 ref
->speculative
= speculative
;
1080 n2
->mark_address_taken ();
1084 /* Speculative call consist of three components:
1085 1) an indirect edge representing the original call
1086 2) an direct edge representing the new call
1087 3) ADDR_EXPR reference representing the speculative check.
1088 All three components are attached to single statement (the indirect
1089 call) and if one of them exists, all of them must exist.
1091 Given speculative call edge, return all three components.
1095 cgraph_edge::speculative_call_info (cgraph_edge
*&direct
,
1096 cgraph_edge
*&indirect
,
1097 ipa_ref
*&reference
)
1102 cgraph_edge
*e
= this;
1104 if (!e
->indirect_unknown_callee
)
1105 for (e2
= e
->caller
->indirect_calls
;
1106 e2
->call_stmt
!= e
->call_stmt
|| e2
->lto_stmt_uid
!= e
->lto_stmt_uid
;
1107 e2
= e2
->next_callee
)
1112 /* We can take advantage of the call stmt hash. */
1115 e
= e
->caller
->get_edge (e2
->call_stmt
);
1116 gcc_assert (e
->speculative
&& !e
->indirect_unknown_callee
);
1119 for (e
= e
->caller
->callees
;
1120 e2
->call_stmt
!= e
->call_stmt
1121 || e2
->lto_stmt_uid
!= e
->lto_stmt_uid
;
1125 gcc_assert (e
->speculative
&& e2
->speculative
);
1130 for (i
= 0; e
->caller
->iterate_reference (i
, ref
); i
++)
1131 if (ref
->speculative
1132 && ((ref
->stmt
&& ref
->stmt
== e
->call_stmt
)
1133 || (!ref
->stmt
&& ref
->lto_stmt_uid
== e
->lto_stmt_uid
)))
1139 /* Speculative edge always consist of all three components - direct edge,
1140 indirect and reference. */
1142 gcc_assert (e
&& e2
&& ref
);
1145 /* Speculative call edge turned out to be direct call to CALLE_DECL.
1146 Remove the speculative call sequence and return edge representing the call.
1147 It is up to caller to redirect the call as appropriate. */
1150 cgraph_edge::resolve_speculation (tree callee_decl
)
1152 cgraph_edge
*edge
= this;
1156 gcc_assert (edge
->speculative
);
1157 edge
->speculative_call_info (e2
, edge
, ref
);
1159 || !ref
->referred
->semantically_equivalent_p
1160 (symtab_node::get (callee_decl
)))
1166 fprintf (dump_file
, "Speculative indirect call %s/%i => %s/%i has "
1167 "turned out to have contradicting known target ",
1168 xstrdup_for_dump (edge
->caller
->name ()),
1169 edge
->caller
->order
,
1170 xstrdup_for_dump (e2
->callee
->name ()),
1172 print_generic_expr (dump_file
, callee_decl
, 0);
1173 fprintf (dump_file
, "\n");
1177 fprintf (dump_file
, "Removing speculative call %s/%i => %s/%i\n",
1178 xstrdup_for_dump (edge
->caller
->name ()),
1179 edge
->caller
->order
,
1180 xstrdup_for_dump (e2
->callee
->name ()),
1187 cgraph_edge
*tmp
= edge
;
1189 fprintf (dump_file
, "Speculative call turned into direct call.\n");
1192 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1193 in the functions inlined through it. */
1195 edge
->count
+= e2
->count
;
1196 edge
->frequency
+= e2
->frequency
;
1197 if (edge
->frequency
> CGRAPH_FREQ_MAX
)
1198 edge
->frequency
= CGRAPH_FREQ_MAX
;
1199 edge
->speculative
= false;
1200 e2
->speculative
= false;
1201 ref
->remove_reference ();
1202 if (e2
->indirect_unknown_callee
|| e2
->inline_failed
)
1205 e2
->callee
->remove_symbol_and_inline_clones ();
1206 if (edge
->caller
->call_site_hash
)
1207 cgraph_update_edge_in_call_site_hash (edge
);
1211 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1212 CALLEE. DELTA is an integer constant that is to be added to the this
1213 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1216 cgraph_edge::make_direct (cgraph_node
*callee
)
1218 cgraph_edge
*edge
= this;
1219 gcc_assert (indirect_unknown_callee
);
1221 /* If we are redirecting speculative call, make it non-speculative. */
1222 if (indirect_unknown_callee
&& speculative
)
1224 edge
= edge
->resolve_speculation (callee
->decl
);
1226 /* On successful speculation just return the pre existing direct edge. */
1227 if (!indirect_unknown_callee
)
1231 indirect_unknown_callee
= 0;
1232 ggc_free (indirect_info
);
1233 indirect_info
= NULL
;
1235 /* Get the edge out of the indirect edge list. */
1237 prev_callee
->next_callee
= next_callee
;
1239 next_callee
->prev_callee
= prev_callee
;
1241 caller
->indirect_calls
= next_callee
;
1243 /* Put it into the normal callee list */
1245 next_callee
= caller
->callees
;
1246 if (caller
->callees
)
1247 caller
->callees
->prev_callee
= edge
;
1248 caller
->callees
= edge
;
1250 /* Insert to callers list of the new callee. */
1251 edge
->set_callee (callee
);
1254 call_stmt_cannot_inline_p
1255 = !gimple_check_call_matching_types (call_stmt
, callee
->decl
,
1258 /* We need to re-determine the inlining status of the edge. */
1259 initialize_inline_failed (edge
);
1263 /* If necessary, change the function declaration in the call statement
1264 associated with E so that it corresponds to the edge callee. */
1267 cgraph_edge::redirect_call_stmt_to_callee (void)
1269 cgraph_edge
*e
= this;
1271 tree decl
= gimple_call_fndecl (e
->call_stmt
);
1272 tree lhs
= gimple_call_lhs (e
->call_stmt
);
1274 gimple_stmt_iterator gsi
;
1275 #ifdef ENABLE_CHECKING
1285 e
->speculative_call_info (e
, e2
, ref
);
1286 /* If there already is an direct call (i.e. as a result of inliner's
1287 substitution), forget about speculating. */
1289 e
= e
->resolve_speculation (decl
);
1290 /* If types do not match, speculation was likely wrong.
1291 The direct edge was posisbly redirected to the clone with a different
1292 signature. We did not update the call statement yet, so compare it
1293 with the reference that still points to the proper type. */
1294 else if (!gimple_check_call_matching_types (e
->call_stmt
,
1295 ref
->referred
->decl
,
1299 fprintf (dump_file
, "Not expanding speculative call of %s/%i -> %s/%i\n"
1301 xstrdup_for_dump (e
->caller
->name ()),
1303 xstrdup_for_dump (e
->callee
->name ()),
1305 e
= e
->resolve_speculation ();
1306 /* We are producing the final function body and will throw away the
1307 callgraph edges really soon. Reset the counts/frequencies to
1308 keep verifier happy in the case of roundoff errors. */
1309 e
->count
= gimple_bb (e
->call_stmt
)->count
;
1310 e
->frequency
= compute_call_stmt_bb_frequency
1311 (e
->caller
->decl
, gimple_bb (e
->call_stmt
));
1313 /* Expand speculation into GIMPLE code. */
1318 "Expanding speculative call of %s/%i -> %s/%i count:"
1320 xstrdup_for_dump (e
->caller
->name ()),
1322 xstrdup_for_dump (e
->callee
->name ()),
1325 gcc_assert (e2
->speculative
);
1326 push_cfun (DECL_STRUCT_FUNCTION (e
->caller
->decl
));
1327 new_stmt
= gimple_ic (e
->call_stmt
, dyn_cast
<cgraph_node
*> (ref
->referred
),
1328 e
->count
|| e2
->count
1329 ? RDIV (e
->count
* REG_BR_PROB_BASE
,
1330 e
->count
+ e2
->count
)
1331 : e
->frequency
|| e2
->frequency
1332 ? RDIV (e
->frequency
* REG_BR_PROB_BASE
,
1333 e
->frequency
+ e2
->frequency
)
1334 : REG_BR_PROB_BASE
/ 2,
1335 e
->count
, e
->count
+ e2
->count
);
1336 e
->speculative
= false;
1337 e
->caller
->set_call_stmt_including_clones (e
->call_stmt
, new_stmt
,
1340 /* Fix edges for BUILT_IN_CHKP_BNDRET calls attached to the
1341 processed call stmt. */
1342 if (gimple_call_with_bounds_p (new_stmt
)
1343 && gimple_call_lhs (new_stmt
)
1344 && chkp_retbnd_call_by_val (gimple_call_lhs (e2
->call_stmt
)))
1346 tree dresult
= gimple_call_lhs (new_stmt
);
1347 tree iresult
= gimple_call_lhs (e2
->call_stmt
);
1348 gcall
*dbndret
= chkp_retbnd_call_by_val (dresult
);
1349 gcall
*ibndret
= chkp_retbnd_call_by_val (iresult
);
1350 struct cgraph_edge
*iedge
1351 = e2
->caller
->cgraph_node::get_edge (ibndret
);
1352 struct cgraph_edge
*dedge
;
1356 dedge
= iedge
->caller
->create_edge (iedge
->callee
,
1359 dedge
->frequency
= compute_call_stmt_bb_frequency
1360 (dedge
->caller
->decl
, gimple_bb (dedge
->call_stmt
));
1362 iedge
->frequency
= compute_call_stmt_bb_frequency
1363 (iedge
->caller
->decl
, gimple_bb (iedge
->call_stmt
));
1366 e
->frequency
= compute_call_stmt_bb_frequency
1367 (e
->caller
->decl
, gimple_bb (e
->call_stmt
));
1368 e2
->frequency
= compute_call_stmt_bb_frequency
1369 (e2
->caller
->decl
, gimple_bb (e2
->call_stmt
));
1370 e2
->speculative
= false;
1371 ref
->speculative
= false;
1373 /* Indirect edges are not both in the call site hash.
1375 if (e
->caller
->call_site_hash
)
1376 cgraph_update_edge_in_call_site_hash (e2
);
1378 /* Continue redirecting E to proper target. */
1382 if (e
->indirect_unknown_callee
1383 || decl
== e
->callee
->decl
)
1384 return e
->call_stmt
;
1386 #ifdef ENABLE_CHECKING
1389 node
= cgraph_node::get (decl
);
1390 gcc_assert (!node
|| !node
->clone
.combined_args_to_skip
);
1394 if (symtab
->dump_file
)
1396 fprintf (symtab
->dump_file
, "updating call of %s/%i -> %s/%i: ",
1397 xstrdup_for_dump (e
->caller
->name ()), e
->caller
->order
,
1398 xstrdup_for_dump (e
->callee
->name ()), e
->callee
->order
);
1399 print_gimple_stmt (symtab
->dump_file
, e
->call_stmt
, 0, dump_flags
);
1400 if (e
->callee
->clone
.combined_args_to_skip
)
1402 fprintf (symtab
->dump_file
, " combined args to skip: ");
1403 dump_bitmap (symtab
->dump_file
,
1404 e
->callee
->clone
.combined_args_to_skip
);
1408 if (e
->callee
->clone
.combined_args_to_skip
)
1413 = gimple_call_copy_skip_args (e
->call_stmt
,
1414 e
->callee
->clone
.combined_args_to_skip
);
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
);
1431 remove_stmt_from_eh_lp (e
->call_stmt
);
1432 add_stmt_to_eh_lp (new_stmt
, lp_nr
);
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. */
1443 if (lhs
&& (gimple_call_flags (new_stmt
) & ECF_NORETURN
))
1445 if (TREE_CODE (lhs
) == SSA_NAME
)
1447 tree var
= create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
),
1448 TREE_TYPE (lhs
), NULL
);
1449 var
= get_or_create_ssa_default_def
1450 (DECL_STRUCT_FUNCTION (e
->caller
->decl
), var
);
1451 gimple set_stmt
= gimple_build_assign (lhs
, var
);
1452 gsi
= gsi_for_stmt (new_stmt
);
1453 gsi_insert_before_without_update (&gsi
, set_stmt
, GSI_SAME_STMT
);
1454 update_stmt_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
), set_stmt
);
1456 gimple_call_set_lhs (new_stmt
, NULL_TREE
);
1457 update_stmt_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
), new_stmt
);
1460 /* If new callee has no static chain, remove it. */
1461 if (gimple_call_chain (new_stmt
) && !DECL_STATIC_CHAIN (e
->callee
->decl
))
1463 gimple_call_set_chain (new_stmt
, NULL
);
1464 update_stmt_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
), new_stmt
);
1467 e
->caller
->set_call_stmt_including_clones (e
->call_stmt
, new_stmt
, false);
1469 if (symtab
->dump_file
)
1471 fprintf (symtab
->dump_file
, " updated to:");
1472 print_gimple_stmt (symtab
->dump_file
, e
->call_stmt
, 0, dump_flags
);
1477 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1478 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1479 of OLD_STMT if it was previously call statement.
1480 If NEW_STMT is NULL, the call has been dropped without any
1484 cgraph_update_edges_for_call_stmt_node (cgraph_node
*node
,
1485 gimple old_stmt
, tree old_call
,
1488 tree new_call
= (new_stmt
&& is_gimple_call (new_stmt
))
1489 ? gimple_call_fndecl (new_stmt
) : 0;
1491 /* We are seeing indirect calls, then there is nothing to update. */
1492 if (!new_call
&& !old_call
)
1494 /* See if we turned indirect call into direct call or folded call to one builtin
1495 into different builtin. */
1496 if (old_call
!= new_call
)
1498 cgraph_edge
*e
= node
->get_edge (old_stmt
);
1499 cgraph_edge
*ne
= NULL
;
1505 /* See if the edge is already there and has the correct callee. It
1506 might be so because of indirect inlining has already updated
1507 it. We also might've cloned and redirected the edge. */
1508 if (new_call
&& e
->callee
)
1510 cgraph_node
*callee
= e
->callee
;
1513 if (callee
->decl
== new_call
1514 || callee
->former_clone_of
== new_call
)
1516 e
->set_call_stmt (as_a
<gcall
*> (new_stmt
));
1519 callee
= callee
->clone_of
;
1523 /* Otherwise remove edge and create new one; we can't simply redirect
1524 since function has changed, so inline plan and other information
1525 attached to edge is invalid. */
1527 frequency
= e
->frequency
;
1528 if (e
->indirect_unknown_callee
|| e
->inline_failed
)
1531 e
->callee
->remove_symbol_and_inline_clones ();
1535 /* We are seeing new direct call; compute profile info based on BB. */
1536 basic_block bb
= gimple_bb (new_stmt
);
1538 frequency
= compute_call_stmt_bb_frequency (current_function_decl
,
1544 ne
= node
->create_edge (cgraph_node::get_create (new_call
),
1545 as_a
<gcall
*> (new_stmt
), count
,
1547 gcc_assert (ne
->inline_failed
);
1550 /* We only updated the call stmt; update pointer in cgraph edge.. */
1551 else if (old_stmt
!= new_stmt
)
1552 node
->get_edge (old_stmt
)->set_call_stmt (as_a
<gcall
*> (new_stmt
));
1555 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1556 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1557 of OLD_STMT before it was updated (updating can happen inplace). */
1560 cgraph_update_edges_for_call_stmt (gimple old_stmt
, tree old_decl
, gimple new_stmt
)
1562 cgraph_node
*orig
= cgraph_node::get (cfun
->decl
);
1565 gcc_checking_assert (orig
);
1566 cgraph_update_edges_for_call_stmt_node (orig
, old_stmt
, old_decl
, new_stmt
);
1568 for (node
= orig
->clones
; node
!= orig
;)
1570 cgraph_update_edges_for_call_stmt_node (node
, old_stmt
, old_decl
, new_stmt
);
1572 node
= node
->clones
;
1573 else if (node
->next_sibling_clone
)
1574 node
= node
->next_sibling_clone
;
1577 while (node
!= orig
&& !node
->next_sibling_clone
)
1578 node
= node
->clone_of
;
1580 node
= node
->next_sibling_clone
;
1586 /* Remove all callees from the node. */
1589 cgraph_node::remove_callees (void)
1593 /* It is sufficient to remove the edges from the lists of callers of
1594 the callees. The callee list of the node can be zapped with one
1596 for (e
= callees
; e
; e
= f
)
1599 symtab
->call_edge_removal_hooks (e
);
1600 if (!e
->indirect_unknown_callee
)
1601 e
->remove_callee ();
1602 symtab
->free_edge (e
);
1604 for (e
= indirect_calls
; e
; e
= f
)
1607 symtab
->call_edge_removal_hooks (e
);
1608 if (!e
->indirect_unknown_callee
)
1609 e
->remove_callee ();
1610 symtab
->free_edge (e
);
1612 indirect_calls
= NULL
;
1616 call_site_hash
->empty ();
1617 call_site_hash
= NULL
;
1621 /* Remove all callers from the node. */
1624 cgraph_node::remove_callers (void)
1628 /* It is sufficient to remove the edges from the lists of callees of
1629 the callers. The caller list of the node can be zapped with one
1631 for (e
= callers
; e
; e
= f
)
1634 symtab
->call_edge_removal_hooks (e
);
1635 e
->remove_caller ();
1636 symtab
->free_edge (e
);
1641 /* Helper function for cgraph_release_function_body and free_lang_data.
1642 It releases body from function DECL without having to inspect its
1643 possibly non-existent symtab node. */
1646 release_function_body (tree decl
)
1648 if (DECL_STRUCT_FUNCTION (decl
))
1650 if (DECL_STRUCT_FUNCTION (decl
)->cfg
1651 || DECL_STRUCT_FUNCTION (decl
)->gimple_df
)
1653 push_cfun (DECL_STRUCT_FUNCTION (decl
));
1657 cfun
->curr_properties
&= ~PROP_loops
;
1658 loop_optimizer_finalize ();
1660 if (cfun
->gimple_df
)
1663 delete_tree_cfg_annotations ();
1668 gcc_assert (!dom_info_available_p (CDI_DOMINATORS
));
1669 gcc_assert (!dom_info_available_p (CDI_POST_DOMINATORS
));
1673 if (cfun
->value_histograms
)
1677 gimple_set_body (decl
, NULL
);
1678 /* Struct function hangs a lot of data that would leak if we didn't
1679 removed all pointers to it. */
1680 ggc_free (DECL_STRUCT_FUNCTION (decl
));
1681 DECL_STRUCT_FUNCTION (decl
) = NULL
;
1683 DECL_SAVED_TREE (decl
) = NULL
;
1686 /* Release memory used to represent body of function.
1687 Use this only for functions that are released before being translated to
1688 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1689 are free'd in final.c via free_after_compilation().
1690 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1693 cgraph_node::release_body (bool keep_arguments
)
1695 ipa_transforms_to_apply
.release ();
1696 if (!used_as_abstract_origin
&& symtab
->state
!= PARSING
)
1698 DECL_RESULT (decl
) = NULL
;
1700 if (!keep_arguments
)
1701 DECL_ARGUMENTS (decl
) = NULL
;
1703 /* If the node is abstract and needed, then do not clear DECL_INITIAL
1704 of its associated function function declaration because it's
1705 needed to emit debug info later. */
1706 if (!used_as_abstract_origin
&& DECL_INITIAL (decl
))
1707 DECL_INITIAL (decl
) = error_mark_node
;
1708 release_function_body (decl
);
1710 lto_free_function_in_decl_state_for_node (this);
1713 /* Remove function from symbol table. */
1716 cgraph_node::remove (void)
1719 int uid
= this->uid
;
1721 symtab
->call_cgraph_removal_hooks (this);
1724 ipa_transforms_to_apply
.release ();
1726 /* Incremental inlining access removed nodes stored in the postorder list.
1728 force_output
= false;
1729 forced_by_abi
= false;
1730 for (n
= nested
; n
; n
= n
->next_nested
)
1735 cgraph_node
**node2
= &origin
->nested
;
1737 while (*node2
!= this)
1738 node2
= &(*node2
)->next_nested
;
1739 *node2
= next_nested
;
1742 if (prev_sibling_clone
)
1743 prev_sibling_clone
->next_sibling_clone
= next_sibling_clone
;
1745 clone_of
->clones
= next_sibling_clone
;
1746 if (next_sibling_clone
)
1747 next_sibling_clone
->prev_sibling_clone
= prev_sibling_clone
;
1750 cgraph_node
*n
, *next
;
1754 for (n
= clones
; n
->next_sibling_clone
; n
= n
->next_sibling_clone
)
1755 n
->clone_of
= clone_of
;
1756 n
->clone_of
= clone_of
;
1757 n
->next_sibling_clone
= clone_of
->clones
;
1758 if (clone_of
->clones
)
1759 clone_of
->clones
->prev_sibling_clone
= n
;
1760 clone_of
->clones
= clones
;
1764 /* We are removing node with clones. This makes clones inconsistent,
1765 but assume they will be removed subsequently and just keep clone
1766 tree intact. This can happen in unreachable function removal since
1767 we remove unreachable functions in random order, not by bottom-up
1768 walk of clone trees. */
1769 for (n
= clones
; n
; n
= next
)
1771 next
= n
->next_sibling_clone
;
1772 n
->next_sibling_clone
= NULL
;
1773 n
->prev_sibling_clone
= NULL
;
1779 /* While all the clones are removed after being proceeded, the function
1780 itself is kept in the cgraph even after it is compiled. Check whether
1781 we are done with this body and reclaim it proactively if this is the case.
1783 if (symtab
->state
!= LTO_STREAMING
)
1785 n
= cgraph_node::get (decl
);
1787 || (!n
->clones
&& !n
->clone_of
&& !n
->global
.inlined_to
1788 && (symtab
->global_info_ready
1789 && (TREE_ASM_WRITTEN (n
->decl
)
1790 || DECL_EXTERNAL (n
->decl
)
1792 || (!flag_wpa
&& n
->in_other_partition
)))))
1799 call_site_hash
->empty ();
1800 call_site_hash
= NULL
;
1803 if (instrumented_version
)
1805 instrumented_version
->instrumented_version
= NULL
;
1806 instrumented_version
= NULL
;
1809 symtab
->release_symbol (this, uid
);
1812 /* Likewise indicate that a node is having address taken. */
1815 cgraph_node::mark_address_taken (void)
1817 /* Indirect inlining can figure out that all uses of the address are
1819 if (global
.inlined_to
)
1821 gcc_assert (cfun
->after_inlining
);
1822 gcc_assert (callers
->indirect_inlining_edge
);
1825 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1826 IPA_REF_ADDR reference exists (and thus it should be set on node
1827 representing alias we take address of) and as a test whether address
1828 of the object was taken (and thus it should be set on node alias is
1829 referring to). We should remove the first use and the remove the
1832 cgraph_node
*node
= ultimate_alias_target ();
1833 node
->address_taken
= 1;
1836 /* Return local info for the compiled function. */
1839 cgraph_node::local_info (tree decl
)
1841 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
1842 cgraph_node
*node
= get (decl
);
1845 return &node
->local
;
1848 /* Return global info for the compiled function. */
1850 cgraph_global_info
*
1851 cgraph_node::global_info (tree decl
)
1853 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
1854 && symtab
->global_info_ready
);
1855 cgraph_node
*node
= get (decl
);
1858 return &node
->global
;
1861 /* Return local info for the compiled function. */
1864 cgraph_node::rtl_info (tree decl
)
1866 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
1867 cgraph_node
*node
= get (decl
);
1869 || (decl
!= current_function_decl
1870 && !TREE_ASM_WRITTEN (node
->decl
)))
1875 /* Return a string describing the failure REASON. */
1878 cgraph_inline_failed_string (cgraph_inline_failed_t reason
)
1881 #define DEFCIFCODE(code, type, string) string,
1883 static const char *cif_string_table
[CIF_N_REASONS
] = {
1884 #include "cif-code.def"
1887 /* Signedness of an enum type is implementation defined, so cast it
1888 to unsigned before testing. */
1889 gcc_assert ((unsigned) reason
< CIF_N_REASONS
);
1890 return cif_string_table
[reason
];
1893 /* Return a type describing the failure REASON. */
1895 cgraph_inline_failed_type_t
1896 cgraph_inline_failed_type (cgraph_inline_failed_t reason
)
1899 #define DEFCIFCODE(code, type, string) type,
1901 static cgraph_inline_failed_type_t cif_type_table
[CIF_N_REASONS
] = {
1902 #include "cif-code.def"
1905 /* Signedness of an enum type is implementation defined, so cast it
1906 to unsigned before testing. */
1907 gcc_assert ((unsigned) reason
< CIF_N_REASONS
);
1908 return cif_type_table
[reason
];
1911 /* Names used to print out the availability enum. */
1912 const char * const cgraph_availability_names
[] =
1913 {"unset", "not_available", "overwritable", "available", "local"};
1915 /* Output flags of edge to a file F. */
1918 cgraph_edge::dump_edge_flags (FILE *f
)
1921 fprintf (f
, "(speculative) ");
1923 fprintf (f
, "(inlined) ");
1924 if (indirect_inlining_edge
)
1925 fprintf (f
, "(indirect_inlining) ");
1927 fprintf (f
, "(%"PRId64
"x) ", (int64_t)count
);
1929 fprintf (f
, "(%.2f per call) ", frequency
/ (double)CGRAPH_FREQ_BASE
);
1930 if (can_throw_external
)
1931 fprintf (f
, "(can throw external) ");
1934 /* Dump call graph node to file F. */
1937 cgraph_node::dump (FILE *f
)
1943 if (global
.inlined_to
)
1944 fprintf (f
, " Function %s/%i is inline copy in %s/%i\n",
1945 xstrdup_for_dump (name ()),
1947 xstrdup_for_dump (global
.inlined_to
->name ()),
1948 global
.inlined_to
->order
);
1950 fprintf (f
, " Clone of %s/%i\n",
1951 clone_of
->asm_name (),
1953 if (symtab
->function_flags_ready
)
1954 fprintf (f
, " Availability: %s\n",
1955 cgraph_availability_names
[get_availability ()]);
1958 fprintf (f
, " Profile id: %i\n",
1960 fprintf (f
, " First run: %i\n", tp_first_run
);
1961 fprintf (f
, " Function flags:");
1963 fprintf (f
, " executed %"PRId64
"x",
1966 fprintf (f
, " nested in: %s", origin
->asm_name ());
1967 if (gimple_has_body_p (decl
))
1968 fprintf (f
, " body");
1970 fprintf (f
, " process");
1972 fprintf (f
, " local");
1973 if (local
.redefined_extern_inline
)
1974 fprintf (f
, " redefined_extern_inline");
1975 if (only_called_at_startup
)
1976 fprintf (f
, " only_called_at_startup");
1977 if (only_called_at_exit
)
1978 fprintf (f
, " only_called_at_exit");
1980 fprintf (f
, " tm_clone");
1982 fprintf (f
, " icf_merged");
1984 fprintf (f
, " nonfreeing_fn");
1985 if (DECL_STATIC_CONSTRUCTOR (decl
))
1986 fprintf (f
," static_constructor (priority:%i)", get_init_priority ());
1987 if (DECL_STATIC_DESTRUCTOR (decl
))
1988 fprintf (f
," static_destructor (priority:%i)", get_fini_priority ());
1994 fprintf (f
, " Thunk");
1996 fprintf (f
, " of %s (asm: %s)",
1997 lang_hooks
.decl_printable_name (thunk
.alias
, 2),
1998 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk
.alias
)));
1999 fprintf (f
, " fixed offset %i virtual value %i has "
2000 "virtual offset %i)\n",
2001 (int)thunk
.fixed_offset
,
2002 (int)thunk
.virtual_value
,
2003 (int)thunk
.virtual_offset_p
);
2005 if (alias
&& thunk
.alias
2006 && DECL_P (thunk
.alias
))
2008 fprintf (f
, " Alias of %s",
2009 lang_hooks
.decl_printable_name (thunk
.alias
, 2));
2010 if (DECL_ASSEMBLER_NAME_SET_P (thunk
.alias
))
2011 fprintf (f
, " (asm: %s)",
2012 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk
.alias
)));
2016 fprintf (f
, " Called by: ");
2018 for (edge
= callers
; edge
; edge
= edge
->next_caller
)
2020 fprintf (f
, "%s/%i ", edge
->caller
->asm_name (),
2021 edge
->caller
->order
);
2022 edge
->dump_edge_flags (f
);
2025 fprintf (f
, "\n Calls: ");
2026 for (edge
= callees
; edge
; edge
= edge
->next_callee
)
2028 fprintf (f
, "%s/%i ", edge
->callee
->asm_name (),
2029 edge
->callee
->order
);
2030 edge
->dump_edge_flags (f
);
2034 for (edge
= indirect_calls
; edge
; edge
= edge
->next_callee
)
2036 if (edge
->indirect_info
->polymorphic
)
2038 fprintf (f
, " Polymorphic indirect call of type ");
2039 print_generic_expr (f
, edge
->indirect_info
->otr_type
, TDF_SLIM
);
2040 fprintf (f
, " token:%i", (int) edge
->indirect_info
->otr_token
);
2043 fprintf (f
, " Indirect call");
2044 edge
->dump_edge_flags (f
);
2045 if (edge
->indirect_info
->param_index
!= -1)
2047 fprintf (f
, " of param:%i", edge
->indirect_info
->param_index
);
2048 if (edge
->indirect_info
->agg_contents
)
2049 fprintf (f
, " loaded from %s %s at offset %i",
2050 edge
->indirect_info
->member_ptr
? "member ptr" : "aggregate",
2051 edge
->indirect_info
->by_ref
? "passed by reference":"",
2052 (int)edge
->indirect_info
->offset
);
2053 if (edge
->indirect_info
->vptr_changed
)
2054 fprintf (f
, " (vptr maybe changed)");
2057 if (edge
->indirect_info
->polymorphic
)
2058 edge
->indirect_info
->context
.dump (f
);
2061 if (instrumentation_clone
)
2062 fprintf (f
, " Is instrumented version.\n");
2063 else if (instrumented_version
)
2064 fprintf (f
, " Has instrumented version.\n");
2067 /* Dump call graph node NODE to stderr. */
2070 cgraph_node::debug (void)
2075 /* Dump the callgraph to file F. */
2078 cgraph_node::dump_cgraph (FILE *f
)
2082 fprintf (f
, "callgraph:\n\n");
2083 FOR_EACH_FUNCTION (node
)
2087 /* Return true when the DECL can possibly be inlined. */
2090 cgraph_function_possibly_inlined_p (tree decl
)
2092 if (!symtab
->global_info_ready
)
2093 return !DECL_UNINLINABLE (decl
);
2094 return DECL_POSSIBLY_INLINED (decl
);
2097 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2099 cgraph_node::unnest (void)
2101 cgraph_node
**node2
= &origin
->nested
;
2102 gcc_assert (origin
);
2104 while (*node2
!= this)
2105 node2
= &(*node2
)->next_nested
;
2106 *node2
= next_nested
;
2110 /* Return function availability. See cgraph.h for description of individual
2113 cgraph_node::get_availability (void)
2115 enum availability avail
;
2117 avail
= AVAIL_NOT_AVAILABLE
;
2118 else if (local
.local
)
2119 avail
= AVAIL_LOCAL
;
2120 else if (alias
&& weakref
)
2121 ultimate_alias_target (&avail
);
2122 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
2123 avail
= AVAIL_INTERPOSABLE
;
2124 else if (!externally_visible
)
2125 avail
= AVAIL_AVAILABLE
;
2126 /* Inline functions are safe to be analyzed even if their symbol can
2127 be overwritten at runtime. It is not meaningful to enforce any sane
2128 behaviour on replacing inline function by different body. */
2129 else if (DECL_DECLARED_INLINE_P (decl
))
2130 avail
= AVAIL_AVAILABLE
;
2132 /* If the function can be overwritten, return OVERWRITABLE. Take
2133 care at least of two notable extensions - the COMDAT functions
2134 used to share template instantiations in C++ (this is symmetric
2135 to code cp_cannot_inline_tree_fn and probably shall be shared and
2136 the inlinability hooks completely eliminated).
2138 ??? Does the C++ one definition rule allow us to always return
2139 AVAIL_AVAILABLE here? That would be good reason to preserve this
2142 else if (decl_replaceable_p (decl
) && !DECL_EXTERNAL (decl
))
2143 avail
= AVAIL_INTERPOSABLE
;
2144 else avail
= AVAIL_AVAILABLE
;
2149 /* Worker for cgraph_node_can_be_local_p. */
2151 cgraph_node_cannot_be_local_p_1 (cgraph_node
*node
, void *)
2153 return !(!node
->force_output
2154 && ((DECL_COMDAT (node
->decl
)
2155 && !node
->forced_by_abi
2156 && !node
->used_from_object_file_p ()
2157 && !node
->same_comdat_group
)
2158 || !node
->externally_visible
));
2161 /* Return true if cgraph_node can be made local for API change.
2162 Extern inline functions and C++ COMDAT functions can be made local
2163 at the expense of possible code size growth if function is used in multiple
2164 compilation units. */
2166 cgraph_node::can_be_local_p (void)
2168 return (!address_taken
2169 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1
,
2173 /* Call callback on cgraph_node, thunks and aliases associated to cgraph_node.
2174 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2175 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
2178 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback
)
2179 (cgraph_node
*, void *),
2181 bool include_overwritable
,
2182 bool exclude_virtual_thunks
)
2187 if (callback (this, data
))
2189 for (e
= callers
; e
; e
= e
->next_caller
)
2190 if (e
->caller
->thunk
.thunk_p
2191 && (include_overwritable
2192 || e
->caller
->get_availability () > AVAIL_INTERPOSABLE
)
2193 && !(exclude_virtual_thunks
2194 && e
->caller
->thunk
.virtual_offset_p
))
2195 if (e
->caller
->call_for_symbol_thunks_and_aliases (callback
, data
,
2196 include_overwritable
,
2197 exclude_virtual_thunks
))
2200 FOR_EACH_ALIAS (this, ref
)
2202 cgraph_node
*alias
= dyn_cast
<cgraph_node
*> (ref
->referring
);
2203 if (include_overwritable
2204 || alias
->get_availability () > AVAIL_INTERPOSABLE
)
2205 if (alias
->call_for_symbol_thunks_and_aliases (callback
, data
,
2206 include_overwritable
,
2207 exclude_virtual_thunks
))
2213 /* Call callback on function and aliases associated to the function.
2214 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2218 cgraph_node::call_for_symbol_and_aliases (bool (*callback
) (cgraph_node
*,
2221 bool include_overwritable
)
2225 if (callback (this, data
))
2228 FOR_EACH_ALIAS (this, ref
)
2230 cgraph_node
*alias
= dyn_cast
<cgraph_node
*> (ref
->referring
);
2231 if (include_overwritable
2232 || alias
->get_availability () > AVAIL_INTERPOSABLE
)
2233 if (alias
->call_for_symbol_and_aliases (callback
, data
,
2234 include_overwritable
))
2240 /* Worker to bring NODE local. */
2243 cgraph_node::make_local (cgraph_node
*node
, void *)
2245 gcc_checking_assert (node
->can_be_local_p ());
2246 if (DECL_COMDAT (node
->decl
) || DECL_EXTERNAL (node
->decl
))
2248 node
->make_decl_local ();
2249 node
->set_section (NULL
);
2250 node
->set_comdat_group (NULL
);
2251 node
->externally_visible
= false;
2252 node
->forced_by_abi
= false;
2253 node
->local
.local
= true;
2254 node
->set_section (NULL
);
2255 node
->unique_name
= (node
->resolution
== LDPR_PREVAILING_DEF_IRONLY
2256 || node
->resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
);
2257 node
->resolution
= LDPR_PREVAILING_DEF_IRONLY
;
2258 gcc_assert (node
->get_availability () == AVAIL_LOCAL
);
2263 /* Bring cgraph node local. */
2266 cgraph_node::make_local (void)
2268 call_for_symbol_thunks_and_aliases (cgraph_node::make_local
, NULL
, true);
2271 /* Worker to set nothrow flag. */
2274 cgraph_set_nothrow_flag_1 (cgraph_node
*node
, void *data
)
2278 TREE_NOTHROW (node
->decl
) = data
!= NULL
;
2281 for (e
= node
->callers
; e
; e
= e
->next_caller
)
2282 e
->can_throw_external
= false;
2286 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2287 if any to NOTHROW. */
2290 cgraph_node::set_nothrow_flag (bool nothrow
)
2292 call_for_symbol_thunks_and_aliases (cgraph_set_nothrow_flag_1
,
2293 (void *)(size_t)nothrow
, false);
2296 /* Worker to set const flag. */
2299 cgraph_set_const_flag_1 (cgraph_node
*node
, void *data
)
2301 /* Static constructors and destructors without a side effect can be
2303 if (data
&& !((size_t)data
& 2))
2305 if (DECL_STATIC_CONSTRUCTOR (node
->decl
))
2306 DECL_STATIC_CONSTRUCTOR (node
->decl
) = 0;
2307 if (DECL_STATIC_DESTRUCTOR (node
->decl
))
2308 DECL_STATIC_DESTRUCTOR (node
->decl
) = 0;
2310 TREE_READONLY (node
->decl
) = data
!= NULL
;
2311 DECL_LOOPING_CONST_OR_PURE_P (node
->decl
) = ((size_t)data
& 2) != 0;
2315 /* Set TREE_READONLY on cgraph_node's decl and on aliases of the node
2316 if any to READONLY. */
2319 cgraph_node::set_const_flag (bool readonly
, bool looping
)
2321 call_for_symbol_thunks_and_aliases (cgraph_set_const_flag_1
,
2322 (void *)(size_t)(readonly
+ (int)looping
* 2),
2326 /* Worker to set pure flag. */
2329 cgraph_set_pure_flag_1 (cgraph_node
*node
, void *data
)
2331 /* Static constructors and destructors without a side effect can be
2333 if (data
&& !((size_t)data
& 2))
2335 if (DECL_STATIC_CONSTRUCTOR (node
->decl
))
2336 DECL_STATIC_CONSTRUCTOR (node
->decl
) = 0;
2337 if (DECL_STATIC_DESTRUCTOR (node
->decl
))
2338 DECL_STATIC_DESTRUCTOR (node
->decl
) = 0;
2340 DECL_PURE_P (node
->decl
) = data
!= NULL
;
2341 DECL_LOOPING_CONST_OR_PURE_P (node
->decl
) = ((size_t)data
& 2) != 0;
2345 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2349 cgraph_node::set_pure_flag (bool pure
, bool looping
)
2351 call_for_symbol_thunks_and_aliases (cgraph_set_pure_flag_1
,
2352 (void *)(size_t)(pure
+ (int)looping
* 2),
2356 /* Return true when cgraph_node can not return or throw and thus
2357 it is safe to ignore its side effects for IPA analysis. */
2360 cgraph_node::cannot_return_p (void)
2362 int flags
= flags_from_decl_or_type (decl
);
2363 if (!opt_for_fn (decl
, flag_exceptions
))
2364 return (flags
& ECF_NORETURN
) != 0;
2366 return ((flags
& (ECF_NORETURN
| ECF_NOTHROW
))
2367 == (ECF_NORETURN
| ECF_NOTHROW
));
2370 /* Return true when call of edge can not lead to return from caller
2371 and thus it is safe to ignore its side effects for IPA analysis
2372 when computing side effects of the caller.
2373 FIXME: We could actually mark all edges that have no reaching
2374 patch to the exit block or throw to get better results. */
2376 cgraph_edge::cannot_lead_to_return_p (void)
2378 if (caller
->cannot_return_p ())
2380 if (indirect_unknown_callee
)
2382 int flags
= indirect_info
->ecf_flags
;
2383 if (!opt_for_fn (caller
->decl
, flag_exceptions
))
2384 return (flags
& ECF_NORETURN
) != 0;
2386 return ((flags
& (ECF_NORETURN
| ECF_NOTHROW
))
2387 == (ECF_NORETURN
| ECF_NOTHROW
));
2390 return callee
->cannot_return_p ();
2393 /* Return true if the call can be hot. */
2396 cgraph_edge::maybe_hot_p (void)
2398 /* TODO: Export profile_status from cfun->cfg to cgraph_node. */
2400 && opt_for_fn (caller
->decl
, flag_branch_probabilities
)
2401 && !maybe_hot_count_p (NULL
, count
))
2403 if (caller
->frequency
== NODE_FREQUENCY_UNLIKELY_EXECUTED
2405 && callee
->frequency
== NODE_FREQUENCY_UNLIKELY_EXECUTED
))
2407 if (caller
->frequency
> NODE_FREQUENCY_UNLIKELY_EXECUTED
2409 && callee
->frequency
<= NODE_FREQUENCY_EXECUTED_ONCE
))
2411 if (opt_for_fn (caller
->decl
, optimize_size
))
2413 if (caller
->frequency
== NODE_FREQUENCY_HOT
)
2415 if (caller
->frequency
== NODE_FREQUENCY_EXECUTED_ONCE
2416 && frequency
< CGRAPH_FREQ_BASE
* 3 / 2)
2418 if (opt_for_fn (caller
->decl
, flag_guess_branch_prob
))
2420 if (PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION
) == 0
2421 || frequency
<= (CGRAPH_FREQ_BASE
2422 / PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION
)))
2428 /* Return true when function can be removed from callgraph
2429 if all direct calls are eliminated. */
2432 cgraph_node::can_remove_if_no_direct_calls_and_refs_p (void)
2434 gcc_assert (!global
.inlined_to
);
2435 /* Instrumentation clones should not be removed before
2436 instrumentation happens. New callers may appear after
2438 if (instrumentation_clone
2439 && !chkp_function_instrumented_p (decl
))
2441 /* Extern inlines can always go, we will use the external definition. */
2442 if (DECL_EXTERNAL (decl
))
2444 /* When function is needed, we can not remove it. */
2445 if (force_output
|| used_from_other_partition
)
2447 if (DECL_STATIC_CONSTRUCTOR (decl
)
2448 || DECL_STATIC_DESTRUCTOR (decl
))
2450 /* Only COMDAT functions can be removed if externally visible. */
2451 if (externally_visible
2452 && (!DECL_COMDAT (decl
)
2454 || used_from_object_file_p ()))
2459 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2462 nonremovable_p (cgraph_node
*node
, void *)
2464 return !node
->can_remove_if_no_direct_calls_and_refs_p ();
2467 /* Return true when function cgraph_node and its aliases can be removed from
2468 callgraph if all direct calls are eliminated. */
2471 cgraph_node::can_remove_if_no_direct_calls_p (void)
2473 /* Extern inlines can always go, we will use the external definition. */
2474 if (DECL_EXTERNAL (decl
))
2478 return !call_for_symbol_and_aliases (nonremovable_p
, NULL
, true);
2481 /* Return true when function cgraph_node can be expected to be removed
2482 from program when direct calls in this compilation unit are removed.
2484 As a special case COMDAT functions are
2485 cgraph_can_remove_if_no_direct_calls_p while the are not
2486 cgraph_only_called_directly_p (it is possible they are called from other
2489 This function behaves as cgraph_only_called_directly_p because eliminating
2490 all uses of COMDAT function does not make it necessarily disappear from
2491 the program unless we are compiling whole program or we do LTO. In this
2492 case we know we win since dynamic linking will not really discard the
2493 linkonce section. */
2496 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p (void)
2498 gcc_assert (!global
.inlined_to
);
2500 if (call_for_symbol_and_aliases (used_from_object_file_p_worker
,
2503 if (!in_lto_p
&& !flag_whole_program
)
2504 return only_called_directly_p ();
2507 if (DECL_EXTERNAL (decl
))
2509 return can_remove_if_no_direct_calls_p ();
2514 /* Worker for cgraph_only_called_directly_p. */
2517 cgraph_not_only_called_directly_p_1 (cgraph_node
*node
, void *)
2519 return !node
->only_called_directly_or_aliased_p ();
2522 /* Return true when function cgraph_node and all its aliases are only called
2524 i.e. it is not externally visible, address was not taken and
2525 it is not used in any other non-standard way. */
2528 cgraph_node::only_called_directly_p (void)
2530 gcc_assert (ultimate_alias_target () == this);
2531 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1
,
2536 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2539 collect_callers_of_node_1 (cgraph_node
*node
, void *data
)
2541 vec
<cgraph_edge
*> *redirect_callers
= (vec
<cgraph_edge
*> *)data
;
2543 enum availability avail
;
2544 node
->ultimate_alias_target (&avail
);
2546 if (avail
> AVAIL_INTERPOSABLE
)
2547 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
2548 if (!cs
->indirect_inlining_edge
)
2549 redirect_callers
->safe_push (cs
);
2553 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2554 cgraph_node (i.e. are not overwritable). */
2557 cgraph_node::collect_callers (void)
2559 vec
<cgraph_edge
*> redirect_callers
= vNULL
;
2560 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1
,
2561 &redirect_callers
, false);
2562 return redirect_callers
;
2565 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. */
2568 clone_of_p (cgraph_node
*node
, cgraph_node
*node2
)
2570 bool skipped_thunk
= false;
2571 node
= node
->ultimate_alias_target ();
2572 node2
= node2
->ultimate_alias_target ();
2574 /* There are no virtual clones of thunks so check former_clone_of or if we
2575 might have skipped thunks because this adjustments are no longer
2577 while (node
->thunk
.thunk_p
)
2579 if (node2
->former_clone_of
== node
->decl
)
2581 if (!node
->thunk
.this_adjusting
)
2583 node
= node
->callees
->callee
->ultimate_alias_target ();
2584 skipped_thunk
= true;
2589 if (!node2
->clone
.args_to_skip
2590 || !bitmap_bit_p (node2
->clone
.args_to_skip
, 0))
2592 if (node2
->former_clone_of
== node
->decl
)
2594 else if (!node2
->clone_of
)
2598 while (node
!= node2
&& node2
)
2599 node2
= node2
->clone_of
;
2600 return node2
!= NULL
;
2603 /* Verify edge count and frequency. */
2606 cgraph_edge::verify_count_and_frequency ()
2608 bool error_found
= false;
2611 error ("caller edge count is negative");
2616 error ("caller edge frequency is negative");
2619 if (frequency
> CGRAPH_FREQ_MAX
)
2621 error ("caller edge frequency is too large");
2624 if (gimple_has_body_p (caller
->decl
)
2625 && !caller
->global
.inlined_to
2627 /* FIXME: Inline-analysis sets frequency to 0 when edge is optimized out.
2628 Remove this once edges are actually removed from the function at that time. */
2630 || (inline_edge_summary_vec
.exists ()
2631 && ((inline_edge_summary_vec
.length () <= (unsigned) uid
)
2632 || !inline_edge_summary (this)->predicate
)))
2634 != compute_call_stmt_bb_frequency (caller
->decl
,
2635 gimple_bb (call_stmt
))))
2637 error ("caller edge frequency %i does not match BB frequency %i",
2639 compute_call_stmt_bb_frequency (caller
->decl
,
2640 gimple_bb (call_stmt
)));
2646 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
2648 cgraph_debug_gimple_stmt (function
*this_cfun
, gimple stmt
)
2650 bool fndecl_was_null
= false;
2651 /* debug_gimple_stmt needs correct cfun */
2652 if (cfun
!= this_cfun
)
2653 set_cfun (this_cfun
);
2654 /* ...and an actual current_function_decl */
2655 if (!current_function_decl
)
2657 current_function_decl
= this_cfun
->decl
;
2658 fndecl_was_null
= true;
2660 debug_gimple_stmt (stmt
);
2661 if (fndecl_was_null
)
2662 current_function_decl
= NULL
;
2665 /* Verify that call graph edge corresponds to DECL from the associated
2666 statement. Return true if the verification should fail. */
2669 cgraph_edge::verify_corresponds_to_fndecl (tree decl
)
2673 if (!decl
|| callee
->global
.inlined_to
)
2675 if (symtab
->state
== LTO_STREAMING
)
2677 node
= cgraph_node::get (decl
);
2679 /* We do not know if a node from a different partition is an alias or what it
2680 aliases and therefore cannot do the former_clone_of check reliably. When
2681 body_removed is set, we have lost all information about what was alias or
2682 thunk of and also cannot proceed. */
2684 || node
->body_removed
2685 || node
->in_other_partition
2687 || callee
->in_other_partition
)
2690 node
= node
->ultimate_alias_target ();
2692 /* Optimizers can redirect unreachable calls or calls triggering undefined
2693 behaviour to builtin_unreachable. */
2694 if (DECL_BUILT_IN_CLASS (callee
->decl
) == BUILT_IN_NORMAL
2695 && DECL_FUNCTION_CODE (callee
->decl
) == BUILT_IN_UNREACHABLE
)
2698 if (callee
->former_clone_of
!= node
->decl
2699 && (node
!= callee
->ultimate_alias_target ())
2700 && !clone_of_p (node
, callee
))
2706 /* Verify cgraph nodes of given cgraph node. */
2708 cgraph_node::verify_node (void)
2711 function
*this_cfun
= DECL_STRUCT_FUNCTION (decl
);
2712 basic_block this_block
;
2713 gimple_stmt_iterator gsi
;
2714 bool error_found
= false;
2719 timevar_push (TV_CGRAPH_VERIFY
);
2720 error_found
|= verify_base ();
2721 for (e
= callees
; e
; e
= e
->next_callee
)
2724 error ("aux field set for edge %s->%s",
2725 identifier_to_locale (e
->caller
->name ()),
2726 identifier_to_locale (e
->callee
->name ()));
2731 error ("execution count is negative");
2734 if (global
.inlined_to
&& same_comdat_group
)
2736 error ("inline clone in same comdat group list");
2739 if (!definition
&& !in_other_partition
&& local
.local
)
2741 error ("local symbols must be defined");
2744 if (global
.inlined_to
&& externally_visible
)
2746 error ("externally visible inline clone");
2749 if (global
.inlined_to
&& address_taken
)
2751 error ("inline clone with address taken");
2754 if (global
.inlined_to
&& force_output
)
2756 error ("inline clone is forced to output");
2759 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
2763 error ("aux field set for indirect edge from %s",
2764 identifier_to_locale (e
->caller
->name ()));
2767 if (!e
->indirect_unknown_callee
2768 || !e
->indirect_info
)
2770 error ("An indirect edge from %s is not marked as indirect or has "
2771 "associated indirect_info, the corresponding statement is: ",
2772 identifier_to_locale (e
->caller
->name ()));
2773 cgraph_debug_gimple_stmt (this_cfun
, e
->call_stmt
);
2777 bool check_comdat
= comdat_local_p ();
2778 for (e
= callers
; e
; e
= e
->next_caller
)
2780 if (e
->verify_count_and_frequency ())
2783 && !in_same_comdat_group_p (e
->caller
))
2785 error ("comdat-local function called by %s outside its comdat",
2786 identifier_to_locale (e
->caller
->name ()));
2789 if (!e
->inline_failed
)
2791 if (global
.inlined_to
2792 != (e
->caller
->global
.inlined_to
2793 ? e
->caller
->global
.inlined_to
: e
->caller
))
2795 error ("inlined_to pointer is wrong");
2798 if (callers
->next_caller
)
2800 error ("multiple inline callers");
2805 if (global
.inlined_to
)
2807 error ("inlined_to pointer set for noninline callers");
2811 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
2812 if (e
->verify_count_and_frequency ())
2814 if (!callers
&& global
.inlined_to
)
2816 error ("inlined_to pointer is set but no predecessors found");
2819 if (global
.inlined_to
== this)
2821 error ("inlined_to pointer refers to itself");
2828 for (n
= clone_of
->clones
; n
; n
= n
->next_sibling_clone
)
2833 error ("cgraph_node has wrong clone_of");
2840 for (n
= clones
; n
; n
= n
->next_sibling_clone
)
2841 if (n
->clone_of
!= this)
2845 error ("cgraph_node has wrong clone list");
2849 if ((prev_sibling_clone
|| next_sibling_clone
) && !clone_of
)
2851 error ("cgraph_node is in clone list but it is not clone");
2854 if (!prev_sibling_clone
&& clone_of
&& clone_of
->clones
!= this)
2856 error ("cgraph_node has wrong prev_clone pointer");
2859 if (prev_sibling_clone
&& prev_sibling_clone
->next_sibling_clone
!= this)
2861 error ("double linked list of clones corrupted");
2865 if (analyzed
&& alias
)
2867 bool ref_found
= false;
2869 ipa_ref
*ref
= NULL
;
2873 error ("Alias has call edges");
2876 for (i
= 0; iterate_reference (i
, ref
); i
++)
2877 if (ref
->use
== IPA_REF_CHKP
)
2879 else if (ref
->use
!= IPA_REF_ALIAS
)
2881 error ("Alias has non-alias reference");
2886 error ("Alias has more than one alias reference");
2893 error ("Analyzed alias has no reference");
2898 /* Check instrumented version reference. */
2899 if (instrumented_version
2900 && instrumented_version
->instrumented_version
!= this)
2902 error ("Instrumentation clone does not reference original node");
2906 /* Cannot have orig_decl for not instrumented nodes. */
2907 if (!instrumentation_clone
&& orig_decl
)
2909 error ("Not instrumented node has non-NULL original declaration");
2913 /* If original not instrumented node still exists then we may check
2914 original declaration is set properly. */
2915 if (instrumented_version
2917 && orig_decl
!= instrumented_version
->decl
)
2919 error ("Instrumented node has wrong original declaration");
2923 /* Check all nodes have chkp reference to their instrumented versions. */
2925 && instrumented_version
2926 && !instrumentation_clone
)
2928 bool ref_found
= false;
2930 struct ipa_ref
*ref
;
2932 for (i
= 0; iterate_reference (i
, ref
); i
++)
2933 if (ref
->use
== IPA_REF_CHKP
)
2937 error ("Node has more than one chkp reference");
2940 if (ref
->referred
!= instrumented_version
)
2942 error ("Wrong node is referenced with chkp reference");
2950 error ("Analyzed node has no reference to instrumented version");
2955 if (analyzed
&& thunk
.thunk_p
)
2959 error ("No edge out of thunk node");
2962 else if (callees
->next_callee
)
2964 error ("More than one edge out of thunk node");
2967 if (gimple_has_body_p (decl
))
2969 error ("Thunk is not supposed to have body");
2972 if (thunk
.add_pointer_bounds_args
2973 && !instrumented_version
->semantically_equivalent_p (callees
->callee
))
2975 error ("Instrumentation thunk has wrong edge callee");
2979 else if (analyzed
&& gimple_has_body_p (decl
)
2980 && !TREE_ASM_WRITTEN (decl
)
2981 && (!DECL_EXTERNAL (decl
) || global
.inlined_to
)
2986 hash_set
<gimple
> stmts
;
2988 ipa_ref
*ref
= NULL
;
2990 /* Reach the trees by walking over the CFG, and note the
2991 enclosing basic-blocks in the call edges. */
2992 FOR_EACH_BB_FN (this_block
, this_cfun
)
2994 for (gsi
= gsi_start_phis (this_block
);
2995 !gsi_end_p (gsi
); gsi_next (&gsi
))
2996 stmts
.add (gsi_stmt (gsi
));
2997 for (gsi
= gsi_start_bb (this_block
);
3001 gimple stmt
= gsi_stmt (gsi
);
3003 if (is_gimple_call (stmt
))
3005 cgraph_edge
*e
= get_edge (stmt
);
3006 tree decl
= gimple_call_fndecl (stmt
);
3011 error ("shared call_stmt:");
3012 cgraph_debug_gimple_stmt (this_cfun
, stmt
);
3015 if (!e
->indirect_unknown_callee
)
3017 if (e
->verify_corresponds_to_fndecl (decl
))
3019 error ("edge points to wrong declaration:");
3020 debug_tree (e
->callee
->decl
);
3021 fprintf (stderr
," Instead of:");
3028 error ("an indirect edge with unknown callee "
3029 "corresponding to a call_stmt with "
3030 "a known declaration:");
3032 cgraph_debug_gimple_stmt (this_cfun
, e
->call_stmt
);
3038 error ("missing callgraph edge for call stmt:");
3039 cgraph_debug_gimple_stmt (this_cfun
, stmt
);
3045 for (i
= 0; iterate_reference (i
, ref
); i
++)
3046 if (ref
->stmt
&& !stmts
.contains (ref
->stmt
))
3048 error ("reference to dead statement");
3049 cgraph_debug_gimple_stmt (this_cfun
, ref
->stmt
);
3054 /* No CFG available?! */
3057 for (e
= callees
; e
; e
= e
->next_callee
)
3061 error ("edge %s->%s has no corresponding call_stmt",
3062 identifier_to_locale (e
->caller
->name ()),
3063 identifier_to_locale (e
->callee
->name ()));
3064 cgraph_debug_gimple_stmt (this_cfun
, e
->call_stmt
);
3069 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
3071 if (!e
->aux
&& !e
->speculative
)
3073 error ("an indirect edge from %s has no corresponding call_stmt",
3074 identifier_to_locale (e
->caller
->name ()));
3075 cgraph_debug_gimple_stmt (this_cfun
, e
->call_stmt
);
3084 internal_error ("verify_cgraph_node failed");
3086 timevar_pop (TV_CGRAPH_VERIFY
);
3089 /* Verify whole cgraph structure. */
3091 cgraph_node::verify_cgraph_nodes (void)
3098 FOR_EACH_FUNCTION (node
)
3102 /* Walk the alias chain to return the function cgraph_node is alias of.
3103 Walk through thunks, too.
3104 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
3107 cgraph_node::function_symbol (enum availability
*availability
)
3109 cgraph_node
*node
= ultimate_alias_target (availability
);
3111 while (node
->thunk
.thunk_p
)
3113 node
= node
->callees
->callee
;
3116 enum availability a
;
3117 a
= node
->get_availability ();
3118 if (a
< *availability
)
3121 node
= node
->ultimate_alias_target (availability
);
3126 /* Walk the alias chain to return the function cgraph_node is alias of.
3127 Walk through non virtual thunks, too. Thus we return either a function
3128 or a virtual thunk node.
3129 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
3132 cgraph_node::function_or_virtual_thunk_symbol
3133 (enum availability
*availability
)
3135 cgraph_node
*node
= ultimate_alias_target (availability
);
3137 while (node
->thunk
.thunk_p
&& !node
->thunk
.virtual_offset_p
)
3139 node
= node
->callees
->callee
;
3142 enum availability a
;
3143 a
= node
->get_availability ();
3144 if (a
< *availability
)
3147 node
= node
->ultimate_alias_target (availability
);
3152 /* When doing LTO, read cgraph_node's body from disk if it is not already
3156 cgraph_node::get_untransformed_body (void)
3158 lto_file_decl_data
*file_data
;
3159 const char *data
, *name
;
3161 tree decl
= this->decl
;
3163 if (DECL_RESULT (decl
))
3166 gcc_assert (in_lto_p
);
3168 timevar_push (TV_IPA_LTO_GIMPLE_IN
);
3170 file_data
= lto_file_data
;
3171 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
3173 /* We may have renamed the declaration, e.g., a static function. */
3174 name
= lto_get_decl_name_mapping (file_data
, name
);
3176 data
= lto_get_section_data (file_data
, LTO_section_function_body
,
3179 fatal_error ("%s: section %s is missing",
3180 file_data
->file_name
,
3183 gcc_assert (DECL_STRUCT_FUNCTION (decl
) == NULL
);
3185 lto_input_function_body (file_data
, this, data
);
3186 lto_stats
.num_function_bodies
++;
3187 lto_free_section_data (file_data
, LTO_section_function_body
, name
,
3189 lto_free_function_in_decl_state_for_node (this);
3191 timevar_pop (TV_IPA_LTO_GIMPLE_IN
);
3196 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3197 if it is not already present. When some IPA transformations are scheduled,
3201 cgraph_node::get_body (void)
3205 updated
= get_untransformed_body ();
3207 /* Getting transformed body makes no sense for inline clones;
3208 we should never use this on real clones becuase they are materialized
3210 TODO: Materializing clones here will likely lead to smaller LTRANS
3212 gcc_assert (!global
.inlined_to
&& !clone_of
);
3213 if (ipa_transforms_to_apply
.exists ())
3215 opt_pass
*saved_current_pass
= current_pass
;
3216 FILE *saved_dump_file
= dump_file
;
3217 int saved_dump_flags
= dump_flags
;
3219 push_cfun (DECL_STRUCT_FUNCTION (decl
));
3220 execute_all_ipa_transforms ();
3221 cgraph_edge::rebuild_edges ();
3222 free_dominance_info (CDI_DOMINATORS
);
3223 free_dominance_info (CDI_POST_DOMINATORS
);
3227 current_pass
= saved_current_pass
;
3228 dump_file
= saved_dump_file
;
3229 dump_flags
= saved_dump_flags
;
3234 /* Return the DECL_STRUCT_FUNCTION of the function. */
3237 cgraph_node::get_fun (void)
3239 cgraph_node
*node
= this;
3240 struct function
*fun
= DECL_STRUCT_FUNCTION (node
->decl
);
3242 while (!fun
&& node
->clone_of
)
3244 node
= node
->clone_of
;
3245 fun
= DECL_STRUCT_FUNCTION (node
->decl
);
3251 /* Verify if the type of the argument matches that of the function
3252 declaration. If we cannot verify this or there is a mismatch,
3256 gimple_check_call_args (gimple stmt
, tree fndecl
, bool args_count_match
)
3259 unsigned int i
, nargs
;
3261 /* Calls to internal functions always match their signature. */
3262 if (gimple_call_internal_p (stmt
))
3265 nargs
= gimple_call_num_args (stmt
);
3267 /* Get argument types for verification. */
3269 parms
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
3271 parms
= TYPE_ARG_TYPES (gimple_call_fntype (stmt
));
3273 /* Verify if the type of the argument matches that of the function
3274 declaration. If we cannot verify this or there is a mismatch,
3276 if (fndecl
&& DECL_ARGUMENTS (fndecl
))
3278 for (i
= 0, p
= DECL_ARGUMENTS (fndecl
);
3280 i
++, p
= DECL_CHAIN (p
))
3283 /* We cannot distinguish a varargs function from the case
3284 of excess parameters, still deferring the inlining decision
3285 to the callee is possible. */
3288 arg
= gimple_call_arg (stmt
, i
);
3289 if (p
== error_mark_node
3290 || DECL_ARG_TYPE (p
) == error_mark_node
3291 || arg
== error_mark_node
3292 || (!types_compatible_p (DECL_ARG_TYPE (p
), TREE_TYPE (arg
))
3293 && !fold_convertible_p (DECL_ARG_TYPE (p
), arg
)))
3296 if (args_count_match
&& p
)
3301 for (i
= 0, p
= parms
; i
< nargs
; i
++, p
= TREE_CHAIN (p
))
3304 /* If this is a varargs function defer inlining decision
3308 arg
= gimple_call_arg (stmt
, i
);
3309 if (TREE_VALUE (p
) == error_mark_node
3310 || arg
== error_mark_node
3311 || TREE_CODE (TREE_VALUE (p
)) == VOID_TYPE
3312 || (!types_compatible_p (TREE_VALUE (p
), TREE_TYPE (arg
))
3313 && !fold_convertible_p (TREE_VALUE (p
), arg
)))
3325 /* Verify if the type of the argument and lhs of CALL_STMT matches
3326 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3327 true, the arg count needs to be the same.
3328 If we cannot verify this or there is a mismatch, return false. */
3331 gimple_check_call_matching_types (gimple call_stmt
, tree callee
,
3332 bool args_count_match
)
3336 if ((DECL_RESULT (callee
)
3337 && !DECL_BY_REFERENCE (DECL_RESULT (callee
))
3338 && (lhs
= gimple_call_lhs (call_stmt
)) != NULL_TREE
3339 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee
)),
3341 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee
)), lhs
))
3342 || !gimple_check_call_args (call_stmt
, callee
, args_count_match
))
3347 /* Reset all state within cgraph.c so that we can rerun the compiler
3348 within the same process. For use by toplev::finalize. */
3351 cgraph_c_finalize (void)
3355 x_cgraph_nodes_queue
= NULL
;
3357 cgraph_fnver_htab
= NULL
;
3358 version_info_node
= NULL
;
3361 #include "gt-cgraph.h"