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"
44 #include "tree-ssa-alias.h"
45 #include "internal-fn.h"
47 #include "gimple-expr.h"
49 #include "gimple-iterator.h"
52 #include "gimple-ssa.h"
56 #include "value-prof.h"
58 #include "diagnostic-core.h"
60 #include "ipa-utils.h"
61 #include "lto-streamer.h"
62 #include "ipa-inline.h"
64 #include "gimple-pretty-print.h"
68 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
69 #include "tree-pass.h"
71 /* Queue of cgraph nodes scheduled to be lowered. */
72 symtab_node
*x_cgraph_nodes_queue
;
73 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
75 /* Symbol table global context. */
78 /* List of hooks triggered on cgraph_edge events. */
79 struct cgraph_edge_hook_list
{
80 cgraph_edge_hook hook
;
82 struct cgraph_edge_hook_list
*next
;
85 /* List of hooks triggered on cgraph_node events. */
86 struct cgraph_node_hook_list
{
87 cgraph_node_hook hook
;
89 struct cgraph_node_hook_list
*next
;
92 /* List of hooks triggered on events involving two cgraph_edges. */
93 struct cgraph_2edge_hook_list
{
94 cgraph_2edge_hook hook
;
96 struct cgraph_2edge_hook_list
*next
;
99 /* List of hooks triggered on events involving two cgraph_nodes. */
100 struct cgraph_2node_hook_list
{
101 cgraph_2node_hook hook
;
103 struct cgraph_2node_hook_list
*next
;
106 /* Map a cgraph_node to cgraph_function_version_info using this htab.
107 The cgraph_function_version_info has a THIS_NODE field that is the
108 corresponding cgraph_node.. */
110 static GTY((param_is (cgraph_function_version_info
))) htab_t
111 cgraph_fnver_htab
= NULL
;
113 /* Hash function for cgraph_fnver_htab. */
115 cgraph_fnver_htab_hash (const void *ptr
)
117 int uid
= ((const cgraph_function_version_info
*)ptr
)->this_node
->uid
;
118 return (hashval_t
)(uid
);
121 /* eq function for cgraph_fnver_htab. */
123 cgraph_fnver_htab_eq (const void *p1
, const void *p2
)
125 const cgraph_function_version_info
*n1
126 = (const cgraph_function_version_info
*)p1
;
127 const cgraph_function_version_info
*n2
128 = (const cgraph_function_version_info
*)p2
;
130 return n1
->this_node
->uid
== n2
->this_node
->uid
;
133 /* Mark as GC root all allocated nodes. */
134 static GTY(()) struct cgraph_function_version_info
*
135 version_info_node
= NULL
;
137 /* Get the cgraph_function_version_info node corresponding to node. */
138 cgraph_function_version_info
*
139 cgraph_node::function_version (void)
141 cgraph_function_version_info
*ret
;
142 cgraph_function_version_info key
;
143 key
.this_node
= this;
145 if (cgraph_fnver_htab
== NULL
)
148 ret
= (cgraph_function_version_info
*)
149 htab_find (cgraph_fnver_htab
, &key
);
154 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
155 corresponding to cgraph_node NODE. */
156 cgraph_function_version_info
*
157 cgraph_node::insert_new_function_version (void)
161 version_info_node
= NULL
;
162 version_info_node
= ggc_cleared_alloc
<cgraph_function_version_info
> ();
163 version_info_node
->this_node
= this;
165 if (cgraph_fnver_htab
== NULL
)
166 cgraph_fnver_htab
= htab_create_ggc (2, cgraph_fnver_htab_hash
,
167 cgraph_fnver_htab_eq
, NULL
);
169 slot
= htab_find_slot (cgraph_fnver_htab
, version_info_node
, INSERT
);
170 gcc_assert (slot
!= NULL
);
171 *slot
= version_info_node
;
172 return version_info_node
;
175 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
176 DECL is a duplicate declaration. */
178 cgraph_node::delete_function_version (tree decl
)
180 cgraph_node
*decl_node
= cgraph_node::get (decl
);
181 cgraph_function_version_info
*decl_v
= NULL
;
183 if (decl_node
== NULL
)
186 decl_v
= decl_node
->function_version ();
191 if (decl_v
->prev
!= NULL
)
192 decl_v
->prev
->next
= decl_v
->next
;
194 if (decl_v
->next
!= NULL
)
195 decl_v
->next
->prev
= decl_v
->prev
;
197 if (cgraph_fnver_htab
!= NULL
)
198 htab_remove_elt (cgraph_fnver_htab
, decl_v
);
200 decl_node
->remove ();
203 /* Record that DECL1 and DECL2 are semantically identical function
206 cgraph_node::record_function_versions (tree decl1
, tree decl2
)
208 cgraph_node
*decl1_node
= cgraph_node::get_create (decl1
);
209 cgraph_node
*decl2_node
= cgraph_node::get_create (decl2
);
210 cgraph_function_version_info
*decl1_v
= NULL
;
211 cgraph_function_version_info
*decl2_v
= NULL
;
212 cgraph_function_version_info
*before
;
213 cgraph_function_version_info
*after
;
215 gcc_assert (decl1_node
!= NULL
&& decl2_node
!= NULL
);
216 decl1_v
= decl1_node
->function_version ();
217 decl2_v
= decl2_node
->function_version ();
219 if (decl1_v
!= NULL
&& decl2_v
!= NULL
)
223 decl1_v
= decl1_node
->insert_new_function_version ();
226 decl2_v
= decl2_node
->insert_new_function_version ();
228 /* Chain decl2_v and decl1_v. All semantically identical versions
229 will be chained together. */
234 while (before
->next
!= NULL
)
235 before
= before
->next
;
237 while (after
->prev
!= NULL
)
240 before
->next
= after
;
241 after
->prev
= before
;
244 /* Register HOOK to be called with DATA on each removed edge. */
245 cgraph_edge_hook_list
*
246 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook
, void *data
)
248 cgraph_edge_hook_list
*entry
;
249 cgraph_edge_hook_list
**ptr
= &m_first_edge_removal_hook
;
251 entry
= (cgraph_edge_hook_list
*) xmalloc (sizeof (*entry
));
261 /* Remove ENTRY from the list of hooks called on removing edges. */
263 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list
*entry
)
265 cgraph_edge_hook_list
**ptr
= &m_first_edge_removal_hook
;
267 while (*ptr
!= entry
)
273 /* Call all edge removal hooks. */
275 symbol_table::call_edge_removal_hooks (cgraph_edge
*e
)
277 cgraph_edge_hook_list
*entry
= m_first_edge_removal_hook
;
280 entry
->hook (e
, entry
->data
);
285 /* Register HOOK to be called with DATA on each removed node. */
286 cgraph_node_hook_list
*
287 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook
, void *data
)
289 cgraph_node_hook_list
*entry
;
290 cgraph_node_hook_list
**ptr
= &m_first_cgraph_removal_hook
;
292 entry
= (cgraph_node_hook_list
*) xmalloc (sizeof (*entry
));
302 /* Remove ENTRY from the list of hooks called on removing nodes. */
304 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list
*entry
)
306 cgraph_node_hook_list
**ptr
= &m_first_cgraph_removal_hook
;
308 while (*ptr
!= entry
)
314 /* Call all node removal hooks. */
316 symbol_table::call_cgraph_removal_hooks (cgraph_node
*node
)
318 cgraph_node_hook_list
*entry
= m_first_cgraph_removal_hook
;
321 entry
->hook (node
, entry
->data
);
326 /* Call all node removal hooks. */
328 symbol_table::call_cgraph_insertion_hooks (cgraph_node
*node
)
330 cgraph_node_hook_list
*entry
= m_first_cgraph_insertion_hook
;
333 entry
->hook (node
, entry
->data
);
339 /* Register HOOK to be called with DATA on each inserted node. */
340 cgraph_node_hook_list
*
341 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook
, void *data
)
343 cgraph_node_hook_list
*entry
;
344 cgraph_node_hook_list
**ptr
= &m_first_cgraph_insertion_hook
;
346 entry
= (cgraph_node_hook_list
*) xmalloc (sizeof (*entry
));
356 /* Remove ENTRY from the list of hooks called on inserted nodes. */
358 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list
*entry
)
360 cgraph_node_hook_list
**ptr
= &m_first_cgraph_insertion_hook
;
362 while (*ptr
!= entry
)
368 /* Register HOOK to be called with DATA on each duplicated edge. */
369 cgraph_2edge_hook_list
*
370 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook
, void *data
)
372 cgraph_2edge_hook_list
*entry
;
373 cgraph_2edge_hook_list
**ptr
= &m_first_edge_duplicated_hook
;
375 entry
= (cgraph_2edge_hook_list
*) xmalloc (sizeof (*entry
));
385 /* Remove ENTRY from the list of hooks called on duplicating edges. */
387 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list
*entry
)
389 cgraph_2edge_hook_list
**ptr
= &m_first_edge_duplicated_hook
;
391 while (*ptr
!= entry
)
397 /* Call all edge duplication hooks. */
399 symbol_table::call_edge_duplication_hooks (cgraph_edge
*cs1
, cgraph_edge
*cs2
)
401 cgraph_2edge_hook_list
*entry
= m_first_edge_duplicated_hook
;
404 entry
->hook (cs1
, cs2
, entry
->data
);
409 /* Register HOOK to be called with DATA on each duplicated node. */
410 cgraph_2node_hook_list
*
411 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook
, void *data
)
413 cgraph_2node_hook_list
*entry
;
414 cgraph_2node_hook_list
**ptr
= &m_first_cgraph_duplicated_hook
;
416 entry
= (cgraph_2node_hook_list
*) xmalloc (sizeof (*entry
));
426 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
428 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list
*entry
)
430 cgraph_2node_hook_list
**ptr
= &m_first_cgraph_duplicated_hook
;
432 while (*ptr
!= entry
)
438 /* Call all node duplication hooks. */
440 symbol_table::call_cgraph_duplication_hooks (cgraph_node
*node
,
443 cgraph_2node_hook_list
*entry
= m_first_cgraph_duplicated_hook
;
446 entry
->hook (node
, node2
, entry
->data
);
451 /* Return cgraph node assigned to DECL. Create new one when needed. */
454 cgraph_node::create (tree decl
)
456 cgraph_node
*node
= symtab
->create_empty ();
457 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
460 node
->register_symbol ();
462 if (DECL_CONTEXT (decl
) && TREE_CODE (DECL_CONTEXT (decl
)) == FUNCTION_DECL
)
464 node
->origin
= cgraph_node::get_create (DECL_CONTEXT (decl
));
465 node
->next_nested
= node
->origin
->nested
;
466 node
->origin
->nested
= node
;
471 /* Try to find a call graph node for declaration DECL and if it does not exist
472 or if it corresponds to an inline clone, create a new one. */
475 cgraph_node::get_create (tree decl
)
477 cgraph_node
*first_clone
= cgraph_node::get (decl
);
479 if (first_clone
&& !first_clone
->global
.inlined_to
)
482 cgraph_node
*node
= cgraph_node::create (decl
);
485 first_clone
->clone_of
= node
;
486 node
->clones
= first_clone
;
487 symtab
->symtab_prevail_in_asm_name_hash (node
);
488 node
->decl
->decl_with_vis
.symtab_node
= node
;
490 fprintf (dump_file
, "Introduced new external node "
491 "(%s/%i) and turned into root of the clone tree.\n",
492 xstrdup (node
->name ()), node
->order
);
495 fprintf (dump_file
, "Introduced new external node "
496 "(%s/%i).\n", xstrdup (node
->name ()),
501 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
502 the function body is associated with (not necessarily cgraph_node (DECL). */
505 cgraph_node::create_alias (tree alias
, tree target
)
507 cgraph_node
*alias_node
;
509 gcc_assert (TREE_CODE (target
) == FUNCTION_DECL
510 || TREE_CODE (target
) == IDENTIFIER_NODE
);
511 gcc_assert (TREE_CODE (alias
) == FUNCTION_DECL
);
512 alias_node
= cgraph_node::get_create (alias
);
513 gcc_assert (!alias_node
->definition
);
514 alias_node
->alias_target
= target
;
515 alias_node
->definition
= true;
516 alias_node
->alias
= true;
517 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias
)) != NULL
)
518 alias_node
->weakref
= true;
522 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
524 Same body aliases are output whenever the body of DECL is output,
525 and cgraph_node::get (ALIAS) transparently returns
526 cgraph_node::get (DECL). */
529 cgraph_node::create_same_body_alias (tree alias
, tree decl
)
532 #ifndef ASM_OUTPUT_DEF
533 /* If aliases aren't supported by the assembler, fail. */
536 /* Langhooks can create same body aliases of symbols not defined.
537 Those are useless. Drop them on the floor. */
538 if (symtab
->global_info_ready
)
541 n
= cgraph_node::create_alias (alias
, decl
);
542 n
->cpp_implicit_alias
= true;
543 if (symtab
->cpp_implicit_aliases_done
)
544 n
->resolve_alias (cgraph_node::get (decl
));
548 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
549 aliases DECL with an adjustments made into the first parameter.
550 See comments in thunk_adjust for detail on the parameters. */
553 cgraph_node::create_thunk (tree alias
, tree
, bool this_adjusting
,
554 HOST_WIDE_INT fixed_offset
,
555 HOST_WIDE_INT virtual_value
,
561 node
= cgraph_node::get (alias
);
565 node
= cgraph_node::create (alias
);
566 gcc_checking_assert (!virtual_offset
567 || wi::eq_p (virtual_offset
, virtual_value
));
568 node
->thunk
.fixed_offset
= fixed_offset
;
569 node
->thunk
.this_adjusting
= this_adjusting
;
570 node
->thunk
.virtual_value
= virtual_value
;
571 node
->thunk
.virtual_offset_p
= virtual_offset
!= NULL
;
572 node
->thunk
.alias
= real_alias
;
573 node
->thunk
.thunk_p
= true;
574 node
->definition
= true;
579 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
580 Return NULL if there's no such node. */
583 cgraph_node::get_for_asmname (tree asmname
)
585 /* We do not want to look at inline clones. */
586 for (symtab_node
*node
= symtab_node::get_for_asmname (asmname
);
588 node
= node
->next_sharing_asm_name
)
590 cgraph_node
*cn
= dyn_cast
<cgraph_node
*> (node
);
591 if (cn
&& !cn
->global
.inlined_to
)
597 /* Returns a hash value for X (which really is a cgraph_edge). */
600 edge_hash (const void *x
)
602 return htab_hash_pointer (((const cgraph_edge
*) x
)->call_stmt
);
605 /* Return nonzero if the call_stmt of of cgraph_edge X is stmt *Y. */
608 edge_eq (const void *x
, const void *y
)
610 return ((const cgraph_edge
*) x
)->call_stmt
== y
;
613 /* Add call graph edge E to call site hash of its caller. */
616 cgraph_update_edge_in_call_site_hash (cgraph_edge
*e
)
619 slot
= htab_find_slot_with_hash (e
->caller
->call_site_hash
,
621 htab_hash_pointer (e
->call_stmt
),
626 /* Add call graph edge E to call site hash of its caller. */
629 cgraph_add_edge_to_call_site_hash (cgraph_edge
*e
)
632 /* There are two speculative edges for every statement (one direct,
633 one indirect); always hash the direct one. */
634 if (e
->speculative
&& e
->indirect_unknown_callee
)
636 slot
= htab_find_slot_with_hash (e
->caller
->call_site_hash
,
638 htab_hash_pointer (e
->call_stmt
),
642 gcc_assert (((cgraph_edge
*)*slot
)->speculative
);
647 gcc_assert (!*slot
|| e
->speculative
);
651 /* Return the callgraph edge representing the GIMPLE_CALL statement
655 cgraph_node::get_edge (gimple call_stmt
)
661 return (cgraph_edge
*)
662 htab_find_with_hash (call_site_hash
, call_stmt
,
663 htab_hash_pointer (call_stmt
));
665 /* This loop may turn out to be performance problem. In such case adding
666 hashtables into call nodes with very many edges is probably best
667 solution. It is not good idea to add pointer into CALL_EXPR itself
668 because we want to make possible having multiple cgraph nodes representing
669 different clones of the same body before the body is actually cloned. */
670 for (e
= callees
; e
; e
= e
->next_callee
)
672 if (e
->call_stmt
== call_stmt
)
678 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
680 if (e
->call_stmt
== call_stmt
)
687 call_site_hash
= htab_create_ggc (120, edge_hash
, edge_eq
, NULL
);
688 for (e2
= callees
; e2
; e2
= e2
->next_callee
)
689 cgraph_add_edge_to_call_site_hash (e2
);
690 for (e2
= indirect_calls
; e2
; e2
= e2
->next_callee
)
691 cgraph_add_edge_to_call_site_hash (e2
);
698 /* Change field call_stmt of edge to NEW_STMT.
699 If UPDATE_SPECULATIVE and E is any component of speculative
700 edge, then update all components. */
703 cgraph_edge::set_call_stmt (gimple new_stmt
, bool update_speculative
)
707 /* Speculative edges has three component, update all of them
709 if (update_speculative
&& speculative
)
711 cgraph_edge
*direct
, *indirect
;
714 speculative_call_info (direct
, indirect
, ref
);
715 direct
->set_call_stmt (new_stmt
, false);
716 indirect
->set_call_stmt (new_stmt
, false);
717 ref
->stmt
= new_stmt
;
721 /* Only direct speculative edges go to call_site_hash. */
722 if (caller
->call_site_hash
723 && (!speculative
|| !indirect_unknown_callee
))
725 htab_remove_elt_with_hash (caller
->call_site_hash
,
727 htab_hash_pointer (call_stmt
));
730 cgraph_edge
*e
= this;
732 call_stmt
= new_stmt
;
733 if (indirect_unknown_callee
734 && (decl
= gimple_call_fndecl (new_stmt
)))
736 /* Constant propagation (and possibly also inlining?) can turn an
737 indirect call into a direct one. */
738 cgraph_node
*new_callee
= cgraph_node::get (decl
);
740 gcc_checking_assert (new_callee
);
741 e
= make_direct (new_callee
);
744 push_cfun (DECL_STRUCT_FUNCTION (e
->caller
->decl
));
745 e
->can_throw_external
= stmt_can_throw_external (new_stmt
);
747 if (e
->caller
->call_site_hash
)
748 cgraph_add_edge_to_call_site_hash (e
);
751 /* Allocate a cgraph_edge structure and fill it with data according to the
752 parameters of which only CALLEE can be NULL (when creating an indirect call
756 symbol_table::create_edge (cgraph_node
*caller
, cgraph_node
*callee
,
757 gimple call_stmt
, gcov_type count
, int freq
,
758 bool indir_unknown_callee
)
762 /* LTO does not actually have access to the call_stmt since these
763 have not been loaded yet. */
766 /* This is a rather expensive check possibly triggering
767 construction of call stmt hashtable. */
768 #ifdef ENABLE_CHECKING
770 gcc_checking_assert (
771 !(e
= caller
->get_edge (call_stmt
)) || e
->speculative
);
774 gcc_assert (is_gimple_call (call_stmt
));
780 free_edges
= NEXT_FREE_EDGE (edge
);
784 edge
= ggc_alloc
<cgraph_edge
> ();
785 edge
->uid
= edges_max_uid
++;
791 edge
->caller
= caller
;
792 edge
->callee
= callee
;
793 edge
->prev_caller
= NULL
;
794 edge
->next_caller
= NULL
;
795 edge
->prev_callee
= NULL
;
796 edge
->next_callee
= NULL
;
797 edge
->lto_stmt_uid
= 0;
800 gcc_assert (count
>= 0);
801 edge
->frequency
= freq
;
802 gcc_assert (freq
>= 0);
803 gcc_assert (freq
<= CGRAPH_FREQ_MAX
);
805 edge
->call_stmt
= call_stmt
;
806 push_cfun (DECL_STRUCT_FUNCTION (caller
->decl
));
807 edge
->can_throw_external
808 = call_stmt
? stmt_can_throw_external (call_stmt
) : false;
811 && callee
&& callee
->decl
812 && !gimple_check_call_matching_types (call_stmt
, callee
->decl
,
814 edge
->call_stmt_cannot_inline_p
= true;
816 edge
->call_stmt_cannot_inline_p
= false;
818 edge
->indirect_info
= NULL
;
819 edge
->indirect_inlining_edge
= 0;
820 edge
->speculative
= false;
821 edge
->indirect_unknown_callee
= indir_unknown_callee
;
822 if (call_stmt
&& caller
->call_site_hash
)
823 cgraph_add_edge_to_call_site_hash (edge
);
828 /* Create edge from a given function to CALLEE in the cgraph. */
831 cgraph_node::create_edge (cgraph_node
*callee
,
832 gimple call_stmt
, gcov_type count
, int freq
)
834 cgraph_edge
*edge
= symtab
->create_edge (this, callee
, call_stmt
, count
,
837 initialize_inline_failed (edge
);
839 edge
->next_caller
= callee
->callers
;
841 callee
->callers
->prev_caller
= edge
;
842 edge
->next_callee
= callees
;
844 callees
->prev_callee
= edge
;
846 callee
->callers
= edge
;
851 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
853 cgraph_indirect_call_info
*
854 cgraph_allocate_init_indirect_info (void)
856 cgraph_indirect_call_info
*ii
;
858 ii
= ggc_cleared_alloc
<cgraph_indirect_call_info
> ();
859 ii
->param_index
= -1;
863 /* Create an indirect edge with a yet-undetermined callee where the call
864 statement destination is a formal parameter of the caller with index
868 cgraph_node::create_indirect_edge (gimple call_stmt
, int ecf_flags
,
869 gcov_type count
, int freq
,
870 bool compute_indirect_info
)
872 cgraph_edge
*edge
= symtab
->create_edge (this, NULL
, call_stmt
,
876 initialize_inline_failed (edge
);
878 edge
->indirect_info
= cgraph_allocate_init_indirect_info ();
879 edge
->indirect_info
->ecf_flags
= ecf_flags
;
881 /* Record polymorphic call info. */
882 if (compute_indirect_info
884 && (target
= gimple_call_fn (call_stmt
))
885 && virtual_method_call_p (target
))
888 HOST_WIDE_INT otr_token
;
889 ipa_polymorphic_call_context context
;
891 get_polymorphic_call_info (decl
,
893 &otr_type
, &otr_token
,
894 &context
, call_stmt
);
896 /* Only record types can have virtual calls. */
897 gcc_assert (TREE_CODE (otr_type
) == RECORD_TYPE
);
898 edge
->indirect_info
->polymorphic
= true;
899 edge
->indirect_info
->param_index
= -1;
900 edge
->indirect_info
->otr_token
= otr_token
;
901 edge
->indirect_info
->otr_type
= otr_type
;
902 edge
->indirect_info
->outer_type
= context
.outer_type
;
903 edge
->indirect_info
->speculative_outer_type
904 = context
.speculative_outer_type
;
905 edge
->indirect_info
->offset
= context
.offset
;
906 edge
->indirect_info
->speculative_offset
= context
.speculative_offset
;
907 edge
->indirect_info
->maybe_in_construction
908 = context
.maybe_in_construction
;
909 edge
->indirect_info
->maybe_derived_type
= context
.maybe_derived_type
;
910 edge
->indirect_info
->speculative_maybe_derived_type
911 = context
.speculative_maybe_derived_type
;
914 edge
->next_callee
= indirect_calls
;
916 indirect_calls
->prev_callee
= edge
;
917 indirect_calls
= edge
;
922 /* Remove the edge from the list of the callers of the callee. */
925 cgraph_edge::remove_callee (void)
927 gcc_assert (!indirect_unknown_callee
);
929 prev_caller
->next_caller
= next_caller
;
931 next_caller
->prev_caller
= prev_caller
;
933 callee
->callers
= next_caller
;
936 /* Remove the edge from the list of the callees of the caller. */
939 cgraph_edge::remove_caller (void)
942 prev_callee
->next_callee
= next_callee
;
944 next_callee
->prev_callee
= prev_callee
;
947 if (indirect_unknown_callee
)
948 caller
->indirect_calls
= next_callee
;
950 caller
->callees
= next_callee
;
952 if (caller
->call_site_hash
)
953 htab_remove_elt_with_hash (caller
->call_site_hash
,
955 htab_hash_pointer (call_stmt
));
958 /* Put the edge onto the free list. */
961 symbol_table::free_edge (cgraph_edge
*e
)
965 if (e
->indirect_info
)
966 ggc_free (e
->indirect_info
);
968 /* Clear out the edge so we do not dangle pointers. */
969 memset (e
, 0, sizeof (*e
));
971 NEXT_FREE_EDGE (e
) = free_edges
;
976 /* Remove the edge in the cgraph. */
979 cgraph_edge::remove (void)
981 /* Call all edge removal hooks. */
982 symtab
->call_edge_removal_hooks (this);
984 if (!indirect_unknown_callee
)
985 /* Remove from callers list of the callee. */
988 /* Remove from callees list of the callers. */
991 /* Put the edge onto the free list. */
992 symtab
->free_edge (this);
995 /* Set callee of call graph edge E and add it to the corresponding set of
999 cgraph_set_edge_callee (cgraph_edge
*e
, cgraph_node
*n
)
1001 e
->prev_caller
= NULL
;
1003 n
->callers
->prev_caller
= e
;
1004 e
->next_caller
= n
->callers
;
1009 /* Turn edge into speculative call calling N2. Update
1010 the profile so the direct call is taken COUNT times
1013 At clone materialization time, the indirect call E will
1016 if (call_dest == N2)
1021 At this time the function just creates the direct call,
1022 the referencd representing the if conditional and attaches
1023 them all to the orginal indirect call statement.
1025 Return direct edge created. */
1028 cgraph_edge::make_speculative (cgraph_node
*n2
, gcov_type direct_count
,
1029 int direct_frequency
)
1031 cgraph_node
*n
= caller
;
1032 ipa_ref
*ref
= NULL
;
1037 fprintf (dump_file
, "Indirect call -> speculative call"
1038 " %s/%i => %s/%i\n",
1039 xstrdup (n
->name ()), n
->order
,
1040 xstrdup (n2
->name ()), n2
->order
);
1043 e2
= n
->create_edge (n2
, call_stmt
, direct_count
, direct_frequency
);
1044 initialize_inline_failed (e2
);
1045 e2
->speculative
= true;
1046 if (TREE_NOTHROW (n2
->decl
))
1047 e2
->can_throw_external
= false;
1049 e2
->can_throw_external
= can_throw_external
;
1050 e2
->lto_stmt_uid
= lto_stmt_uid
;
1052 frequency
-= e2
->frequency
;
1053 symtab
->call_edge_duplication_hooks (this, e2
);
1054 ref
= n
->create_reference (n2
, IPA_REF_ADDR
, call_stmt
);
1055 ref
->lto_stmt_uid
= lto_stmt_uid
;
1056 ref
->speculative
= speculative
;
1057 n2
->mark_address_taken ();
1061 /* Speculative call consist of three components:
1062 1) an indirect edge representing the original call
1063 2) an direct edge representing the new call
1064 3) ADDR_EXPR reference representing the speculative check.
1065 All three components are attached to single statement (the indirect
1066 call) and if one of them exists, all of them must exist.
1068 Given speculative call edge, return all three components.
1072 cgraph_edge::speculative_call_info (cgraph_edge
*&direct
,
1073 cgraph_edge
*&indirect
,
1074 ipa_ref
*&reference
)
1079 cgraph_edge
*e
= this;
1081 if (!e
->indirect_unknown_callee
)
1082 for (e2
= e
->caller
->indirect_calls
;
1083 e2
->call_stmt
!= e
->call_stmt
|| e2
->lto_stmt_uid
!= e
->lto_stmt_uid
;
1084 e2
= e2
->next_callee
)
1089 /* We can take advantage of the call stmt hash. */
1092 e
= e
->caller
->get_edge (e2
->call_stmt
);
1093 gcc_assert (e
->speculative
&& !e
->indirect_unknown_callee
);
1096 for (e
= e
->caller
->callees
;
1097 e2
->call_stmt
!= e
->call_stmt
1098 || e2
->lto_stmt_uid
!= e
->lto_stmt_uid
;
1102 gcc_assert (e
->speculative
&& e2
->speculative
);
1107 for (i
= 0; e
->caller
->iterate_reference (i
, ref
); i
++)
1108 if (ref
->speculative
1109 && ((ref
->stmt
&& ref
->stmt
== e
->call_stmt
)
1110 || (!ref
->stmt
&& ref
->lto_stmt_uid
== e
->lto_stmt_uid
)))
1116 /* Speculative edge always consist of all three components - direct edge,
1117 indirect and reference. */
1119 gcc_assert (e
&& e2
&& ref
);
1122 /* Redirect callee of the edge to N. The function does not update underlying
1126 cgraph_edge::redirect_callee (cgraph_node
*n
)
1128 /* Remove from callers list of the current callee. */
1131 /* Insert to callers list of the new callee. */
1132 cgraph_set_edge_callee (this, n
);
1135 /* Speculative call edge turned out to be direct call to CALLE_DECL.
1136 Remove the speculative call sequence and return edge representing the call.
1137 It is up to caller to redirect the call as appropriate. */
1140 cgraph_edge::resolve_speculation (tree callee_decl
)
1142 cgraph_edge
*edge
= this;
1146 gcc_assert (edge
->speculative
);
1147 edge
->speculative_call_info (e2
, edge
, ref
);
1149 || !ref
->referred
->semantically_equivalent_p
1150 (symtab_node::get (callee_decl
)))
1156 fprintf (dump_file
, "Speculative indirect call %s/%i => %s/%i has "
1157 "turned out to have contradicting known target ",
1158 xstrdup (edge
->caller
->name ()), edge
->caller
->order
,
1159 xstrdup (e2
->callee
->name ()), e2
->callee
->order
);
1160 print_generic_expr (dump_file
, callee_decl
, 0);
1161 fprintf (dump_file
, "\n");
1165 fprintf (dump_file
, "Removing speculative call %s/%i => %s/%i\n",
1166 xstrdup (edge
->caller
->name ()), edge
->caller
->order
,
1167 xstrdup (e2
->callee
->name ()), e2
->callee
->order
);
1173 cgraph_edge
*tmp
= edge
;
1175 fprintf (dump_file
, "Speculative call turned into direct call.\n");
1178 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1179 in the functions inlined through it. */
1181 edge
->count
+= e2
->count
;
1182 edge
->frequency
+= e2
->frequency
;
1183 if (edge
->frequency
> CGRAPH_FREQ_MAX
)
1184 edge
->frequency
= CGRAPH_FREQ_MAX
;
1185 edge
->speculative
= false;
1186 e2
->speculative
= false;
1187 ref
->remove_reference ();
1188 if (e2
->indirect_unknown_callee
|| e2
->inline_failed
)
1191 e2
->callee
->remove_symbol_and_inline_clones ();
1192 if (edge
->caller
->call_site_hash
)
1193 cgraph_update_edge_in_call_site_hash (edge
);
1197 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1198 CALLEE. DELTA is an integer constant that is to be added to the this
1199 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1202 cgraph_edge::make_direct (cgraph_node
*callee
)
1204 cgraph_edge
*edge
= this;
1205 gcc_assert (indirect_unknown_callee
);
1207 /* If we are redirecting speculative call, make it non-speculative. */
1208 if (indirect_unknown_callee
&& speculative
)
1210 edge
= edge
->resolve_speculation (callee
->decl
);
1212 /* On successful speculation just return the pre existing direct edge. */
1213 if (!indirect_unknown_callee
)
1217 indirect_unknown_callee
= 0;
1218 ggc_free (indirect_info
);
1219 indirect_info
= NULL
;
1221 /* Get the edge out of the indirect edge list. */
1223 prev_callee
->next_callee
= next_callee
;
1225 next_callee
->prev_callee
= prev_callee
;
1227 caller
->indirect_calls
= next_callee
;
1229 /* Put it into the normal callee list */
1231 next_callee
= caller
->callees
;
1232 if (caller
->callees
)
1233 caller
->callees
->prev_callee
= edge
;
1234 caller
->callees
= edge
;
1236 /* Insert to callers list of the new callee. */
1237 cgraph_set_edge_callee (edge
, callee
);
1240 call_stmt_cannot_inline_p
1241 = !gimple_check_call_matching_types (call_stmt
, callee
->decl
,
1244 /* We need to re-determine the inlining status of the edge. */
1245 initialize_inline_failed (edge
);
1249 /* If necessary, change the function declaration in the call statement
1250 associated with E so that it corresponds to the edge callee. */
1253 cgraph_edge::redirect_call_stmt_to_callee (void)
1255 cgraph_edge
*e
= this;
1257 tree decl
= gimple_call_fndecl (e
->call_stmt
);
1258 tree lhs
= gimple_call_lhs (e
->call_stmt
);
1260 gimple_stmt_iterator gsi
;
1261 #ifdef ENABLE_CHECKING
1271 e
->speculative_call_info (e
, e2
, ref
);
1272 /* If there already is an direct call (i.e. as a result of inliner's
1273 substitution), forget about speculating. */
1275 e
= e
->resolve_speculation (decl
);
1276 /* If types do not match, speculation was likely wrong.
1277 The direct edge was posisbly redirected to the clone with a different
1278 signature. We did not update the call statement yet, so compare it
1279 with the reference that still points to the proper type. */
1280 else if (!gimple_check_call_matching_types (e
->call_stmt
,
1281 ref
->referred
->decl
,
1285 fprintf (dump_file
, "Not expanding speculative call of %s/%i -> %s/%i\n"
1287 xstrdup (e
->caller
->name ()),
1289 xstrdup (e
->callee
->name ()),
1291 e
= e
->resolve_speculation ();
1292 /* We are producing the final function body and will throw away the
1293 callgraph edges really soon. Reset the counts/frequencies to
1294 keep verifier happy in the case of roundoff errors. */
1295 e
->count
= gimple_bb (e
->call_stmt
)->count
;
1296 e
->frequency
= compute_call_stmt_bb_frequency
1297 (e
->caller
->decl
, gimple_bb (e
->call_stmt
));
1299 /* Expand speculation into GIMPLE code. */
1304 "Expanding speculative call of %s/%i -> %s/%i count:"
1306 xstrdup (e
->caller
->name ()),
1308 xstrdup (e
->callee
->name ()),
1311 gcc_assert (e2
->speculative
);
1312 push_cfun (DECL_STRUCT_FUNCTION (e
->caller
->decl
));
1313 new_stmt
= gimple_ic (e
->call_stmt
, dyn_cast
<cgraph_node
*> (ref
->referred
),
1314 e
->count
|| e2
->count
1315 ? RDIV (e
->count
* REG_BR_PROB_BASE
,
1316 e
->count
+ e2
->count
)
1317 : e
->frequency
|| e2
->frequency
1318 ? RDIV (e
->frequency
* REG_BR_PROB_BASE
,
1319 e
->frequency
+ e2
->frequency
)
1320 : REG_BR_PROB_BASE
/ 2,
1321 e
->count
, e
->count
+ e2
->count
);
1322 e
->speculative
= false;
1323 e
->caller
->set_call_stmt_including_clones (e
->call_stmt
, new_stmt
,
1325 e
->frequency
= compute_call_stmt_bb_frequency
1326 (e
->caller
->decl
, gimple_bb (e
->call_stmt
));
1327 e2
->frequency
= compute_call_stmt_bb_frequency
1328 (e2
->caller
->decl
, gimple_bb (e2
->call_stmt
));
1329 e2
->speculative
= false;
1330 ref
->speculative
= false;
1332 /* Indirect edges are not both in the call site hash.
1334 if (e
->caller
->call_site_hash
)
1335 cgraph_update_edge_in_call_site_hash (e2
);
1337 /* Continue redirecting E to proper target. */
1341 if (e
->indirect_unknown_callee
1342 || decl
== e
->callee
->decl
)
1343 return e
->call_stmt
;
1345 #ifdef ENABLE_CHECKING
1348 node
= cgraph_node::get (decl
);
1349 gcc_assert (!node
|| !node
->clone
.combined_args_to_skip
);
1353 if (symtab
->dump_file
)
1355 fprintf (symtab
->dump_file
, "updating call of %s/%i -> %s/%i: ",
1356 xstrdup (e
->caller
->name ()), e
->caller
->order
,
1357 xstrdup (e
->callee
->name ()), e
->callee
->order
);
1358 print_gimple_stmt (symtab
->dump_file
, e
->call_stmt
, 0, dump_flags
);
1359 if (e
->callee
->clone
.combined_args_to_skip
)
1361 fprintf (symtab
->dump_file
, " combined args to skip: ");
1362 dump_bitmap (symtab
->dump_file
,
1363 e
->callee
->clone
.combined_args_to_skip
);
1367 if (e
->callee
->clone
.combined_args_to_skip
)
1372 = gimple_call_copy_skip_args (e
->call_stmt
,
1373 e
->callee
->clone
.combined_args_to_skip
);
1374 gimple_call_set_fndecl (new_stmt
, e
->callee
->decl
);
1375 gimple_call_set_fntype (new_stmt
, gimple_call_fntype (e
->call_stmt
));
1377 if (gimple_vdef (new_stmt
)
1378 && TREE_CODE (gimple_vdef (new_stmt
)) == SSA_NAME
)
1379 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt
)) = new_stmt
;
1381 gsi
= gsi_for_stmt (e
->call_stmt
);
1382 gsi_replace (&gsi
, new_stmt
, false);
1383 /* We need to defer cleaning EH info on the new statement to
1384 fixup-cfg. We may not have dominator information at this point
1385 and thus would end up with unreachable blocks and have no way
1386 to communicate that we need to run CFG cleanup then. */
1387 lp_nr
= lookup_stmt_eh_lp (e
->call_stmt
);
1390 remove_stmt_from_eh_lp (e
->call_stmt
);
1391 add_stmt_to_eh_lp (new_stmt
, lp_nr
);
1396 new_stmt
= e
->call_stmt
;
1397 gimple_call_set_fndecl (new_stmt
, e
->callee
->decl
);
1398 update_stmt_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
), new_stmt
);
1401 /* If the call becomes noreturn, remove the lhs. */
1402 if (lhs
&& (gimple_call_flags (new_stmt
) & ECF_NORETURN
))
1404 if (TREE_CODE (lhs
) == SSA_NAME
)
1406 tree var
= create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
),
1407 TREE_TYPE (lhs
), NULL
);
1408 var
= get_or_create_ssa_default_def
1409 (DECL_STRUCT_FUNCTION (e
->caller
->decl
), var
);
1410 gimple set_stmt
= gimple_build_assign (lhs
, var
);
1411 gsi
= gsi_for_stmt (new_stmt
);
1412 gsi_insert_before_without_update (&gsi
, set_stmt
, GSI_SAME_STMT
);
1413 update_stmt_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
), set_stmt
);
1415 gimple_call_set_lhs (new_stmt
, NULL_TREE
);
1416 update_stmt_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
), new_stmt
);
1419 /* If new callee has no static chain, remove it. */
1420 if (gimple_call_chain (new_stmt
) && !DECL_STATIC_CHAIN (e
->callee
->decl
))
1422 gimple_call_set_chain (new_stmt
, NULL
);
1423 update_stmt_fn (DECL_STRUCT_FUNCTION (e
->caller
->decl
), new_stmt
);
1426 e
->caller
->set_call_stmt_including_clones (e
->call_stmt
, new_stmt
, false);
1428 if (symtab
->dump_file
)
1430 fprintf (symtab
->dump_file
, " updated to:");
1431 print_gimple_stmt (symtab
->dump_file
, e
->call_stmt
, 0, dump_flags
);
1436 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1437 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1438 of OLD_STMT if it was previously call statement.
1439 If NEW_STMT is NULL, the call has been dropped without any
1443 cgraph_update_edges_for_call_stmt_node (cgraph_node
*node
,
1444 gimple old_stmt
, tree old_call
,
1447 tree new_call
= (new_stmt
&& is_gimple_call (new_stmt
))
1448 ? gimple_call_fndecl (new_stmt
) : 0;
1450 /* We are seeing indirect calls, then there is nothing to update. */
1451 if (!new_call
&& !old_call
)
1453 /* See if we turned indirect call into direct call or folded call to one builtin
1454 into different builtin. */
1455 if (old_call
!= new_call
)
1457 cgraph_edge
*e
= node
->get_edge (old_stmt
);
1458 cgraph_edge
*ne
= NULL
;
1464 /* See if the edge is already there and has the correct callee. It
1465 might be so because of indirect inlining has already updated
1466 it. We also might've cloned and redirected the edge. */
1467 if (new_call
&& e
->callee
)
1469 cgraph_node
*callee
= e
->callee
;
1472 if (callee
->decl
== new_call
1473 || callee
->former_clone_of
== new_call
)
1475 e
->set_call_stmt (new_stmt
);
1478 callee
= callee
->clone_of
;
1482 /* Otherwise remove edge and create new one; we can't simply redirect
1483 since function has changed, so inline plan and other information
1484 attached to edge is invalid. */
1486 frequency
= e
->frequency
;
1487 if (e
->indirect_unknown_callee
|| e
->inline_failed
)
1490 e
->callee
->remove_symbol_and_inline_clones ();
1494 /* We are seeing new direct call; compute profile info based on BB. */
1495 basic_block bb
= gimple_bb (new_stmt
);
1497 frequency
= compute_call_stmt_bb_frequency (current_function_decl
,
1503 ne
= node
->create_edge (cgraph_node::get_create (new_call
),
1504 new_stmt
, count
, frequency
);
1505 gcc_assert (ne
->inline_failed
);
1508 /* We only updated the call stmt; update pointer in cgraph edge.. */
1509 else if (old_stmt
!= new_stmt
)
1510 node
->get_edge (old_stmt
)->set_call_stmt (new_stmt
);
1513 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1514 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1515 of OLD_STMT before it was updated (updating can happen inplace). */
1518 cgraph_update_edges_for_call_stmt (gimple old_stmt
, tree old_decl
, gimple new_stmt
)
1520 cgraph_node
*orig
= cgraph_node::get (cfun
->decl
);
1523 gcc_checking_assert (orig
);
1524 cgraph_update_edges_for_call_stmt_node (orig
, old_stmt
, old_decl
, new_stmt
);
1526 for (node
= orig
->clones
; node
!= orig
;)
1528 cgraph_update_edges_for_call_stmt_node (node
, old_stmt
, old_decl
, new_stmt
);
1530 node
= node
->clones
;
1531 else if (node
->next_sibling_clone
)
1532 node
= node
->next_sibling_clone
;
1535 while (node
!= orig
&& !node
->next_sibling_clone
)
1536 node
= node
->clone_of
;
1538 node
= node
->next_sibling_clone
;
1544 /* Remove all callees from the node. */
1547 cgraph_node::remove_callees (void)
1551 /* It is sufficient to remove the edges from the lists of callers of
1552 the callees. The callee list of the node can be zapped with one
1554 for (e
= callees
; e
; e
= f
)
1557 symtab
->call_edge_removal_hooks (e
);
1558 if (!e
->indirect_unknown_callee
)
1559 e
->remove_callee ();
1560 symtab
->free_edge (e
);
1562 for (e
= indirect_calls
; e
; e
= f
)
1565 symtab
->call_edge_removal_hooks (e
);
1566 if (!e
->indirect_unknown_callee
)
1567 e
->remove_callee ();
1568 symtab
->free_edge (e
);
1570 indirect_calls
= NULL
;
1574 htab_delete (call_site_hash
);
1575 call_site_hash
= NULL
;
1579 /* Remove all callers from the node. */
1582 cgraph_node::remove_callers (void)
1586 /* It is sufficient to remove the edges from the lists of callees of
1587 the callers. The caller list of the node can be zapped with one
1589 for (e
= callers
; e
; e
= f
)
1592 symtab
->call_edge_removal_hooks (e
);
1593 e
->remove_caller ();
1594 symtab
->free_edge (e
);
1599 /* Helper function for cgraph_release_function_body and free_lang_data.
1600 It releases body from function DECL without having to inspect its
1601 possibly non-existent symtab node. */
1604 release_function_body (tree decl
)
1606 if (DECL_STRUCT_FUNCTION (decl
))
1608 push_cfun (DECL_STRUCT_FUNCTION (decl
));
1612 cfun
->curr_properties
&= ~PROP_loops
;
1613 loop_optimizer_finalize ();
1615 if (cfun
->gimple_df
)
1618 delete_tree_cfg_annotations ();
1623 gcc_assert (!dom_info_available_p (CDI_DOMINATORS
));
1624 gcc_assert (!dom_info_available_p (CDI_POST_DOMINATORS
));
1628 if (cfun
->value_histograms
)
1631 gimple_set_body (decl
, NULL
);
1632 /* Struct function hangs a lot of data that would leak if we didn't
1633 removed all pointers to it. */
1634 ggc_free (DECL_STRUCT_FUNCTION (decl
));
1635 DECL_STRUCT_FUNCTION (decl
) = NULL
;
1637 DECL_SAVED_TREE (decl
) = NULL
;
1640 /* Release memory used to represent body of function.
1641 Use this only for functions that are released before being translated to
1642 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1643 are free'd in final.c via free_after_compilation(). */
1646 cgraph_node::release_body (void)
1648 ipa_transforms_to_apply
.release ();
1649 if (!used_as_abstract_origin
&& symtab
->state
!= PARSING
)
1651 DECL_RESULT (decl
) = NULL
;
1652 DECL_ARGUMENTS (decl
) = NULL
;
1654 /* If the node is abstract and needed, then do not clear DECL_INITIAL
1655 of its associated function function declaration because it's
1656 needed to emit debug info later. */
1657 if (!used_as_abstract_origin
&& DECL_INITIAL (decl
))
1658 DECL_INITIAL (decl
) = error_mark_node
;
1659 release_function_body (decl
);
1661 lto_free_function_in_decl_state_for_node (this);
1664 /* Remove function from symbol table. */
1667 cgraph_node::remove (void)
1670 int uid
= this->uid
;
1672 symtab
->call_cgraph_removal_hooks (this);
1675 ipa_transforms_to_apply
.release ();
1677 /* Incremental inlining access removed nodes stored in the postorder list.
1679 force_output
= false;
1680 forced_by_abi
= false;
1681 for (n
= nested
; n
; n
= n
->next_nested
)
1686 cgraph_node
**node2
= &origin
->nested
;
1688 while (*node2
!= this)
1689 node2
= &(*node2
)->next_nested
;
1690 *node2
= next_nested
;
1693 if (prev_sibling_clone
)
1694 prev_sibling_clone
->next_sibling_clone
= next_sibling_clone
;
1696 clone_of
->clones
= next_sibling_clone
;
1697 if (next_sibling_clone
)
1698 next_sibling_clone
->prev_sibling_clone
= prev_sibling_clone
;
1701 cgraph_node
*n
, *next
;
1705 for (n
= clones
; n
->next_sibling_clone
; n
= n
->next_sibling_clone
)
1706 n
->clone_of
= clone_of
;
1707 n
->clone_of
= clone_of
;
1708 n
->next_sibling_clone
= clone_of
->clones
;
1709 if (clone_of
->clones
)
1710 clone_of
->clones
->prev_sibling_clone
= n
;
1711 clone_of
->clones
= clones
;
1715 /* We are removing node with clones. This makes clones inconsistent,
1716 but assume they will be removed subsequently and just keep clone
1717 tree intact. This can happen in unreachable function removal since
1718 we remove unreachable functions in random order, not by bottom-up
1719 walk of clone trees. */
1720 for (n
= clones
; n
; n
= next
)
1722 next
= n
->next_sibling_clone
;
1723 n
->next_sibling_clone
= NULL
;
1724 n
->prev_sibling_clone
= NULL
;
1730 /* While all the clones are removed after being proceeded, the function
1731 itself is kept in the cgraph even after it is compiled. Check whether
1732 we are done with this body and reclaim it proactively if this is the case.
1734 if (symtab
->state
!= LTO_STREAMING
)
1736 n
= cgraph_node::get (decl
);
1738 || (!n
->clones
&& !n
->clone_of
&& !n
->global
.inlined_to
1739 && (symtab
->global_info_ready
1740 && (TREE_ASM_WRITTEN (n
->decl
)
1741 || DECL_EXTERNAL (n
->decl
)
1743 || (!flag_wpa
&& n
->in_other_partition
)))))
1750 htab_delete (call_site_hash
);
1751 call_site_hash
= NULL
;
1754 symtab
->release_symbol (this, uid
);
1757 /* Likewise indicate that a node is having address taken. */
1760 cgraph_node::mark_address_taken (void)
1762 /* Indirect inlining can figure out that all uses of the address are
1764 if (global
.inlined_to
)
1766 gcc_assert (cfun
->after_inlining
);
1767 gcc_assert (callers
->indirect_inlining_edge
);
1770 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1771 IPA_REF_ADDR reference exists (and thus it should be set on node
1772 representing alias we take address of) and as a test whether address
1773 of the object was taken (and thus it should be set on node alias is
1774 referring to). We should remove the first use and the remove the
1777 cgraph_node
*node
= ultimate_alias_target ();
1778 node
->address_taken
= 1;
1781 /* Return local info for the compiled function. */
1784 cgraph_node::local_info (tree decl
)
1786 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
1787 cgraph_node
*node
= get (decl
);
1790 return &node
->local
;
1793 /* Return global info for the compiled function. */
1795 cgraph_global_info
*
1796 cgraph_node::global_info (tree decl
)
1798 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
1799 && symtab
->global_info_ready
);
1800 cgraph_node
*node
= get (decl
);
1803 return &node
->global
;
1806 /* Return local info for the compiled function. */
1809 cgraph_node::rtl_info (tree decl
)
1811 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
1812 cgraph_node
*node
= get (decl
);
1814 || (decl
!= current_function_decl
1815 && !TREE_ASM_WRITTEN (node
->decl
)))
1820 /* Return a string describing the failure REASON. */
1823 cgraph_inline_failed_string (cgraph_inline_failed_t reason
)
1826 #define DEFCIFCODE(code, type, string) string,
1828 static const char *cif_string_table
[CIF_N_REASONS
] = {
1829 #include "cif-code.def"
1832 /* Signedness of an enum type is implementation defined, so cast it
1833 to unsigned before testing. */
1834 gcc_assert ((unsigned) reason
< CIF_N_REASONS
);
1835 return cif_string_table
[reason
];
1838 /* Return a type describing the failure REASON. */
1840 cgraph_inline_failed_type_t
1841 cgraph_inline_failed_type (cgraph_inline_failed_t reason
)
1844 #define DEFCIFCODE(code, type, string) type,
1846 static cgraph_inline_failed_type_t cif_type_table
[CIF_N_REASONS
] = {
1847 #include "cif-code.def"
1850 /* Signedness of an enum type is implementation defined, so cast it
1851 to unsigned before testing. */
1852 gcc_assert ((unsigned) reason
< CIF_N_REASONS
);
1853 return cif_type_table
[reason
];
1856 /* Names used to print out the availability enum. */
1857 const char * const cgraph_availability_names
[] =
1858 {"unset", "not_available", "overwritable", "available", "local"};
1861 /* Dump call graph node to file F. */
1864 cgraph_node::dump (FILE *f
)
1867 int indirect_calls_count
= 0;
1871 if (global
.inlined_to
)
1872 fprintf (f
, " Function %s/%i is inline copy in %s/%i\n",
1875 xstrdup (global
.inlined_to
->name ()),
1876 global
.inlined_to
->order
);
1878 fprintf (f
, " Clone of %s/%i\n",
1879 clone_of
->asm_name (),
1881 if (symtab
->function_flags_ready
)
1882 fprintf (f
, " Availability: %s\n",
1883 cgraph_availability_names
[get_availability ()]);
1886 fprintf (f
, " Profile id: %i\n",
1888 fprintf (f
, " First run: %i\n", tp_first_run
);
1889 fprintf (f
, " Function flags:");
1891 fprintf (f
, " executed %"PRId64
"x",
1894 fprintf (f
, " nested in: %s", origin
->asm_name ());
1895 if (gimple_has_body_p (decl
))
1896 fprintf (f
, " body");
1898 fprintf (f
, " process");
1900 fprintf (f
, " local");
1901 if (local
.redefined_extern_inline
)
1902 fprintf (f
, " redefined_extern_inline");
1903 if (only_called_at_startup
)
1904 fprintf (f
, " only_called_at_startup");
1905 if (only_called_at_exit
)
1906 fprintf (f
, " only_called_at_exit");
1908 fprintf (f
, " tm_clone");
1909 if (DECL_STATIC_CONSTRUCTOR (decl
))
1910 fprintf (f
," static_constructor (priority:%i)", get_init_priority ());
1911 if (DECL_STATIC_DESTRUCTOR (decl
))
1912 fprintf (f
," static_destructor (priority:%i)", get_fini_priority ());
1918 fprintf (f
, " Thunk");
1920 fprintf (f
, " of %s (asm: %s)",
1921 lang_hooks
.decl_printable_name (thunk
.alias
, 2),
1922 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk
.alias
)));
1923 fprintf (f
, " fixed offset %i virtual value %i has "
1924 "virtual offset %i)\n",
1925 (int)thunk
.fixed_offset
,
1926 (int)thunk
.virtual_value
,
1927 (int)thunk
.virtual_offset_p
);
1929 if (alias
&& thunk
.alias
1930 && DECL_P (thunk
.alias
))
1932 fprintf (f
, " Alias of %s",
1933 lang_hooks
.decl_printable_name (thunk
.alias
, 2));
1934 if (DECL_ASSEMBLER_NAME_SET_P (thunk
.alias
))
1935 fprintf (f
, " (asm: %s)",
1936 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk
.alias
)));
1940 fprintf (f
, " Called by: ");
1942 for (edge
= callers
; edge
; edge
= edge
->next_caller
)
1944 fprintf (f
, "%s/%i ", edge
->caller
->asm_name (),
1945 edge
->caller
->order
);
1947 fprintf (f
, "(%"PRId64
"x) ",
1950 fprintf (f
, "(%.2f per call) ",
1951 frequency
/ (double)CGRAPH_FREQ_BASE
);
1952 if (edge
->speculative
)
1953 fprintf (f
, "(speculative) ");
1954 if (!edge
->inline_failed
)
1955 fprintf (f
, "(inlined) ");
1956 if (edge
->indirect_inlining_edge
)
1957 fprintf (f
, "(indirect_inlining) ");
1958 if (edge
->can_throw_external
)
1959 fprintf (f
, "(can throw external) ");
1962 fprintf (f
, "\n Calls: ");
1963 for (edge
= callees
; edge
; edge
= edge
->next_callee
)
1965 fprintf (f
, "%s/%i ", edge
->callee
->asm_name (),
1966 edge
->callee
->order
);
1967 if (edge
->speculative
)
1968 fprintf (f
, "(speculative) ");
1969 if (!edge
->inline_failed
)
1970 fprintf (f
, "(inlined) ");
1971 if (edge
->indirect_inlining_edge
)
1972 fprintf (f
, "(indirect_inlining) ");
1974 fprintf (f
, "(%"PRId64
"x) ",
1976 if (edge
->frequency
)
1977 fprintf (f
, "(%.2f per call) ",
1978 frequency
/ (double)CGRAPH_FREQ_BASE
);
1979 if (edge
->can_throw_external
)
1980 fprintf (f
, "(can throw external) ");
1984 for (edge
= indirect_calls
; edge
; edge
= edge
->next_callee
)
1985 indirect_calls_count
++;
1986 if (indirect_calls_count
)
1987 fprintf (f
, " Has %i outgoing edges for indirect calls.\n",
1988 indirect_calls_count
);
1991 /* Dump call graph node NODE to stderr. */
1994 cgraph_node::debug (void)
1999 /* Dump the callgraph to file F. */
2002 cgraph_node::dump_cgraph (FILE *f
)
2006 fprintf (f
, "callgraph:\n\n");
2007 FOR_EACH_FUNCTION (node
)
2011 /* Return true when the DECL can possibly be inlined. */
2014 cgraph_function_possibly_inlined_p (tree decl
)
2016 if (!symtab
->global_info_ready
)
2017 return !DECL_UNINLINABLE (decl
);
2018 return DECL_POSSIBLY_INLINED (decl
);
2021 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2023 cgraph_node::unnest (void)
2025 cgraph_node
**node2
= &origin
->nested
;
2026 gcc_assert (origin
);
2028 while (*node2
!= this)
2029 node2
= &(*node2
)->next_nested
;
2030 *node2
= next_nested
;
2034 /* Return function availability. See cgraph.h for description of individual
2037 cgraph_node::get_availability (void)
2039 enum availability avail
;
2041 avail
= AVAIL_NOT_AVAILABLE
;
2042 else if (local
.local
)
2043 avail
= AVAIL_LOCAL
;
2044 else if (alias
&& weakref
)
2045 ultimate_alias_target (&avail
);
2046 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
2047 avail
= AVAIL_INTERPOSABLE
;
2048 else if (!externally_visible
)
2049 avail
= AVAIL_AVAILABLE
;
2050 /* Inline functions are safe to be analyzed even if their symbol can
2051 be overwritten at runtime. It is not meaningful to enforce any sane
2052 behaviour on replacing inline function by different body. */
2053 else if (DECL_DECLARED_INLINE_P (decl
))
2054 avail
= AVAIL_AVAILABLE
;
2056 /* If the function can be overwritten, return OVERWRITABLE. Take
2057 care at least of two notable extensions - the COMDAT functions
2058 used to share template instantiations in C++ (this is symmetric
2059 to code cp_cannot_inline_tree_fn and probably shall be shared and
2060 the inlinability hooks completely eliminated).
2062 ??? Does the C++ one definition rule allow us to always return
2063 AVAIL_AVAILABLE here? That would be good reason to preserve this
2066 else if (decl_replaceable_p (decl
) && !DECL_EXTERNAL (decl
))
2067 avail
= AVAIL_INTERPOSABLE
;
2068 else avail
= AVAIL_AVAILABLE
;
2073 /* Worker for cgraph_node_can_be_local_p. */
2075 cgraph_node_cannot_be_local_p_1 (cgraph_node
*node
, void *)
2077 return !(!node
->force_output
2078 && ((DECL_COMDAT (node
->decl
)
2079 && !node
->forced_by_abi
2080 && !node
->used_from_object_file_p ()
2081 && !node
->same_comdat_group
)
2082 || !node
->externally_visible
));
2085 /* Return true if cgraph_node can be made local for API change.
2086 Extern inline functions and C++ COMDAT functions can be made local
2087 at the expense of possible code size growth if function is used in multiple
2088 compilation units. */
2090 cgraph_node::can_be_local_p (void)
2092 return (!address_taken
2093 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1
,
2097 /* Call calback on cgraph_node, thunks and aliases associated to cgraph_node.
2098 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2102 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback
)
2103 (cgraph_node
*, void *),
2105 bool include_overwritable
)
2110 if (callback (this, data
))
2112 for (e
= callers
; e
; e
= e
->next_caller
)
2113 if (e
->caller
->thunk
.thunk_p
2114 && (include_overwritable
2115 || e
->caller
->get_availability () > AVAIL_INTERPOSABLE
))
2116 if (e
->caller
->call_for_symbol_thunks_and_aliases (callback
, data
,
2117 include_overwritable
))
2120 FOR_EACH_ALIAS (this, ref
)
2122 cgraph_node
*alias
= dyn_cast
<cgraph_node
*> (ref
->referring
);
2123 if (include_overwritable
2124 || alias
->get_availability () > AVAIL_INTERPOSABLE
)
2125 if (alias
->call_for_symbol_thunks_and_aliases (callback
, data
,
2126 include_overwritable
))
2132 /* Call calback on function and aliases associated to the function.
2133 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2137 cgraph_node::call_for_symbol_and_aliases (bool (*callback
) (cgraph_node
*,
2140 bool include_overwritable
)
2144 if (callback (this, data
))
2147 FOR_EACH_ALIAS (this, ref
)
2149 cgraph_node
*alias
= dyn_cast
<cgraph_node
*> (ref
->referring
);
2150 if (include_overwritable
2151 || alias
->get_availability () > AVAIL_INTERPOSABLE
)
2152 if (alias
->call_for_symbol_and_aliases (callback
, data
,
2153 include_overwritable
))
2159 /* Worker to bring NODE local. */
2162 cgraph_node::make_local (cgraph_node
*node
, void *)
2164 gcc_checking_assert (node
->can_be_local_p ());
2165 if (DECL_COMDAT (node
->decl
) || DECL_EXTERNAL (node
->decl
))
2167 node
->make_decl_local ();
2168 node
->set_section (NULL
);
2169 node
->set_comdat_group (NULL
);
2170 node
->externally_visible
= false;
2171 node
->forced_by_abi
= false;
2172 node
->local
.local
= true;
2173 node
->set_section (NULL
);
2174 node
->unique_name
= (node
->resolution
== LDPR_PREVAILING_DEF_IRONLY
2175 || node
->resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
);
2176 node
->resolution
= LDPR_PREVAILING_DEF_IRONLY
;
2177 gcc_assert (node
->get_availability () == AVAIL_LOCAL
);
2182 /* Bring cgraph node local. */
2185 cgraph_node::make_local (void)
2187 call_for_symbol_thunks_and_aliases (cgraph_node::make_local
, NULL
, true);
2190 /* Worker to set nothrow flag. */
2193 cgraph_set_nothrow_flag_1 (cgraph_node
*node
, void *data
)
2197 TREE_NOTHROW (node
->decl
) = data
!= NULL
;
2200 for (e
= node
->callers
; e
; e
= e
->next_caller
)
2201 e
->can_throw_external
= false;
2205 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2206 if any to NOTHROW. */
2209 cgraph_node::set_nothrow_flag (bool nothrow
)
2211 call_for_symbol_thunks_and_aliases (cgraph_set_nothrow_flag_1
,
2212 (void *)(size_t)nothrow
, false);
2215 /* Worker to set const flag. */
2218 cgraph_set_const_flag_1 (cgraph_node
*node
, void *data
)
2220 /* Static constructors and destructors without a side effect can be
2222 if (data
&& !((size_t)data
& 2))
2224 if (DECL_STATIC_CONSTRUCTOR (node
->decl
))
2225 DECL_STATIC_CONSTRUCTOR (node
->decl
) = 0;
2226 if (DECL_STATIC_DESTRUCTOR (node
->decl
))
2227 DECL_STATIC_DESTRUCTOR (node
->decl
) = 0;
2229 TREE_READONLY (node
->decl
) = data
!= NULL
;
2230 DECL_LOOPING_CONST_OR_PURE_P (node
->decl
) = ((size_t)data
& 2) != 0;
2234 /* Set TREE_READONLY on cgraph_node's decl and on aliases of the node
2235 if any to READONLY. */
2238 cgraph_node::set_const_flag (bool readonly
, bool looping
)
2240 call_for_symbol_thunks_and_aliases (cgraph_set_const_flag_1
,
2241 (void *)(size_t)(readonly
+ (int)looping
* 2),
2245 /* Worker to set pure flag. */
2248 cgraph_set_pure_flag_1 (cgraph_node
*node
, void *data
)
2250 /* Static constructors and destructors without a side effect can be
2252 if (data
&& !((size_t)data
& 2))
2254 if (DECL_STATIC_CONSTRUCTOR (node
->decl
))
2255 DECL_STATIC_CONSTRUCTOR (node
->decl
) = 0;
2256 if (DECL_STATIC_DESTRUCTOR (node
->decl
))
2257 DECL_STATIC_DESTRUCTOR (node
->decl
) = 0;
2259 DECL_PURE_P (node
->decl
) = data
!= NULL
;
2260 DECL_LOOPING_CONST_OR_PURE_P (node
->decl
) = ((size_t)data
& 2) != 0;
2264 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2268 cgraph_node::set_pure_flag (bool pure
, bool looping
)
2270 call_for_symbol_thunks_and_aliases (cgraph_set_pure_flag_1
,
2271 (void *)(size_t)(pure
+ (int)looping
* 2),
2275 /* Return true when cgraph_node can not return or throw and thus
2276 it is safe to ignore its side effects for IPA analysis. */
2279 cgraph_node::cannot_return_p (void)
2281 int flags
= flags_from_decl_or_type (decl
);
2282 if (!flag_exceptions
)
2283 return (flags
& ECF_NORETURN
) != 0;
2285 return ((flags
& (ECF_NORETURN
| ECF_NOTHROW
))
2286 == (ECF_NORETURN
| ECF_NOTHROW
));
2289 /* Return true when call of edge can not lead to return from caller
2290 and thus it is safe to ignore its side effects for IPA analysis
2291 when computing side effects of the caller.
2292 FIXME: We could actually mark all edges that have no reaching
2293 patch to the exit block or throw to get better results. */
2295 cgraph_edge::cannot_lead_to_return_p (void)
2297 if (caller
->cannot_return_p ())
2299 if (indirect_unknown_callee
)
2301 int flags
= indirect_info
->ecf_flags
;
2302 if (!flag_exceptions
)
2303 return (flags
& ECF_NORETURN
) != 0;
2305 return ((flags
& (ECF_NORETURN
| ECF_NOTHROW
))
2306 == (ECF_NORETURN
| ECF_NOTHROW
));
2309 return callee
->cannot_return_p ();
2312 /* Return true when function can be removed from callgraph
2313 if all direct calls are eliminated. */
2316 cgraph_node::can_remove_if_no_direct_calls_and_refs_p (void)
2318 gcc_assert (!global
.inlined_to
);
2319 /* Extern inlines can always go, we will use the external definition. */
2320 if (DECL_EXTERNAL (decl
))
2322 /* When function is needed, we can not remove it. */
2323 if (force_output
|| used_from_other_partition
)
2325 if (DECL_STATIC_CONSTRUCTOR (decl
)
2326 || DECL_STATIC_DESTRUCTOR (decl
))
2328 /* Only COMDAT functions can be removed if externally visible. */
2329 if (externally_visible
2330 && (!DECL_COMDAT (decl
)
2332 || used_from_object_file_p ()))
2337 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2340 nonremovable_p (cgraph_node
*node
, void *)
2342 return !node
->can_remove_if_no_direct_calls_and_refs_p ();
2345 /* Return true when function cgraph_node and its aliases can be removed from
2346 callgraph if all direct calls are eliminated. */
2349 cgraph_node::can_remove_if_no_direct_calls_p (void)
2351 /* Extern inlines can always go, we will use the external definition. */
2352 if (DECL_EXTERNAL (decl
))
2356 return !call_for_symbol_and_aliases (nonremovable_p
, NULL
, true);
2359 /* Return true when function cgraph_node can be expected to be removed
2360 from program when direct calls in this compilation unit are removed.
2362 As a special case COMDAT functions are
2363 cgraph_can_remove_if_no_direct_calls_p while the are not
2364 cgraph_only_called_directly_p (it is possible they are called from other
2367 This function behaves as cgraph_only_called_directly_p because eliminating
2368 all uses of COMDAT function does not make it necessarily disappear from
2369 the program unless we are compiling whole program or we do LTO. In this
2370 case we know we win since dynamic linking will not really discard the
2371 linkonce section. */
2374 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p (void)
2376 gcc_assert (!global
.inlined_to
);
2378 if (call_for_symbol_and_aliases (used_from_object_file_p_worker
,
2381 if (!in_lto_p
&& !flag_whole_program
)
2382 return only_called_directly_p ();
2385 if (DECL_EXTERNAL (decl
))
2387 return can_remove_if_no_direct_calls_p ();
2392 /* Worker for cgraph_only_called_directly_p. */
2395 cgraph_not_only_called_directly_p_1 (cgraph_node
*node
, void *)
2397 return !node
->only_called_directly_or_aliased_p ();
2400 /* Return true when function cgraph_node and all its aliases are only called
2402 i.e. it is not externally visible, address was not taken and
2403 it is not used in any other non-standard way. */
2406 cgraph_node::only_called_directly_p (void)
2408 gcc_assert (ultimate_alias_target () == this);
2409 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1
,
2414 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2417 collect_callers_of_node_1 (cgraph_node
*node
, void *data
)
2419 vec
<cgraph_edge
*> *redirect_callers
= (vec
<cgraph_edge
*> *)data
;
2421 enum availability avail
;
2422 node
->ultimate_alias_target (&avail
);
2424 if (avail
> AVAIL_INTERPOSABLE
)
2425 for (cs
= node
->callers
; cs
!= NULL
; cs
= cs
->next_caller
)
2426 if (!cs
->indirect_inlining_edge
)
2427 redirect_callers
->safe_push (cs
);
2431 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2432 cgraph_node (i.e. are not overwritable). */
2435 cgraph_node::collect_callers (void)
2437 vec
<cgraph_edge
*> redirect_callers
= vNULL
;
2438 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1
,
2439 &redirect_callers
, false);
2440 return redirect_callers
;
2443 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. */
2446 clone_of_p (cgraph_node
*node
, cgraph_node
*node2
)
2448 bool skipped_thunk
= false;
2449 node
= node
->ultimate_alias_target ();
2450 node2
= node2
->ultimate_alias_target ();
2452 /* There are no virtual clones of thunks so check former_clone_of or if we
2453 might have skipped thunks because this adjustments are no longer
2455 while (node
->thunk
.thunk_p
)
2457 if (node2
->former_clone_of
== node
->decl
)
2459 if (!node
->thunk
.this_adjusting
)
2461 node
= node
->callees
->callee
->ultimate_alias_target ();
2462 skipped_thunk
= true;
2467 if (!node2
->clone
.args_to_skip
2468 || !bitmap_bit_p (node2
->clone
.args_to_skip
, 0))
2470 if (node2
->former_clone_of
== node
->decl
)
2472 else if (!node2
->clone_of
)
2476 while (node
!= node2
&& node2
)
2477 node2
= node2
->clone_of
;
2478 return node2
!= NULL
;
2481 /* Verify edge E count and frequency. */
2484 verify_edge_count_and_frequency (cgraph_edge
*e
)
2486 bool error_found
= false;
2489 error ("caller edge count is negative");
2492 if (e
->frequency
< 0)
2494 error ("caller edge frequency is negative");
2497 if (e
->frequency
> CGRAPH_FREQ_MAX
)
2499 error ("caller edge frequency is too large");
2502 if (gimple_has_body_p (e
->caller
->decl
)
2503 && !e
->caller
->global
.inlined_to
2505 /* FIXME: Inline-analysis sets frequency to 0 when edge is optimized out.
2506 Remove this once edges are actually removed from the function at that time. */
2508 || (inline_edge_summary_vec
.exists ()
2509 && ((inline_edge_summary_vec
.length () <= (unsigned) e
->uid
)
2510 || !inline_edge_summary (e
)->predicate
)))
2512 != compute_call_stmt_bb_frequency (e
->caller
->decl
,
2513 gimple_bb (e
->call_stmt
))))
2515 error ("caller edge frequency %i does not match BB frequency %i",
2517 compute_call_stmt_bb_frequency (e
->caller
->decl
,
2518 gimple_bb (e
->call_stmt
)));
2524 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
2526 cgraph_debug_gimple_stmt (function
*this_cfun
, gimple stmt
)
2528 bool fndecl_was_null
= false;
2529 /* debug_gimple_stmt needs correct cfun */
2530 if (cfun
!= this_cfun
)
2531 set_cfun (this_cfun
);
2532 /* ...and an actual current_function_decl */
2533 if (!current_function_decl
)
2535 current_function_decl
= this_cfun
->decl
;
2536 fndecl_was_null
= true;
2538 debug_gimple_stmt (stmt
);
2539 if (fndecl_was_null
)
2540 current_function_decl
= NULL
;
2543 /* Verify that call graph edge E corresponds to DECL from the associated
2544 statement. Return true if the verification should fail. */
2547 verify_edge_corresponds_to_fndecl (cgraph_edge
*e
, tree decl
)
2551 if (!decl
|| e
->callee
->global
.inlined_to
)
2553 if (symtab
->state
== LTO_STREAMING
)
2555 node
= cgraph_node::get (decl
);
2557 /* We do not know if a node from a different partition is an alias or what it
2558 aliases and therefore cannot do the former_clone_of check reliably. When
2559 body_removed is set, we have lost all information about what was alias or
2560 thunk of and also cannot proceed. */
2562 || node
->body_removed
2563 || node
->in_other_partition
2564 || e
->callee
->in_other_partition
)
2567 node
= node
->ultimate_alias_target ();
2569 /* Optimizers can redirect unreachable calls or calls triggering undefined
2570 behaviour to builtin_unreachable. */
2571 if (DECL_BUILT_IN_CLASS (e
->callee
->decl
) == BUILT_IN_NORMAL
2572 && DECL_FUNCTION_CODE (e
->callee
->decl
) == BUILT_IN_UNREACHABLE
)
2575 if (e
->callee
->former_clone_of
!= node
->decl
2576 && (node
!= e
->callee
->ultimate_alias_target ())
2577 && !clone_of_p (node
, e
->callee
))
2583 /* Verify cgraph nodes of given cgraph node. */
2585 cgraph_node::verify_node (void)
2588 function
*this_cfun
= DECL_STRUCT_FUNCTION (decl
);
2589 basic_block this_block
;
2590 gimple_stmt_iterator gsi
;
2591 bool error_found
= false;
2596 timevar_push (TV_CGRAPH_VERIFY
);
2597 error_found
|= verify_base ();
2598 for (e
= callees
; e
; e
= e
->next_callee
)
2601 error ("aux field set for edge %s->%s",
2602 identifier_to_locale (e
->caller
->name ()),
2603 identifier_to_locale (e
->callee
->name ()));
2608 error ("execution count is negative");
2611 if (global
.inlined_to
&& same_comdat_group
)
2613 error ("inline clone in same comdat group list");
2616 if (!definition
&& !in_other_partition
&& local
.local
)
2618 error ("local symbols must be defined");
2621 if (global
.inlined_to
&& externally_visible
)
2623 error ("externally visible inline clone");
2626 if (global
.inlined_to
&& address_taken
)
2628 error ("inline clone with address taken");
2631 if (global
.inlined_to
&& force_output
)
2633 error ("inline clone is forced to output");
2636 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
2640 error ("aux field set for indirect edge from %s",
2641 identifier_to_locale (e
->caller
->name ()));
2644 if (!e
->indirect_unknown_callee
2645 || !e
->indirect_info
)
2647 error ("An indirect edge from %s is not marked as indirect or has "
2648 "associated indirect_info, the corresponding statement is: ",
2649 identifier_to_locale (e
->caller
->name ()));
2650 cgraph_debug_gimple_stmt (this_cfun
, e
->call_stmt
);
2654 bool check_comdat
= comdat_local_p ();
2655 for (e
= callers
; e
; e
= e
->next_caller
)
2657 if (verify_edge_count_and_frequency (e
))
2660 && !in_same_comdat_group_p (e
->caller
))
2662 error ("comdat-local function called by %s outside its comdat",
2663 identifier_to_locale (e
->caller
->name ()));
2666 if (!e
->inline_failed
)
2668 if (global
.inlined_to
2669 != (e
->caller
->global
.inlined_to
2670 ? e
->caller
->global
.inlined_to
: e
->caller
))
2672 error ("inlined_to pointer is wrong");
2675 if (callers
->next_caller
)
2677 error ("multiple inline callers");
2682 if (global
.inlined_to
)
2684 error ("inlined_to pointer set for noninline callers");
2688 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
2689 if (verify_edge_count_and_frequency (e
))
2691 if (!callers
&& global
.inlined_to
)
2693 error ("inlined_to pointer is set but no predecessors found");
2696 if (global
.inlined_to
== this)
2698 error ("inlined_to pointer refers to itself");
2705 for (n
= clone_of
->clones
; n
; n
= n
->next_sibling_clone
)
2710 error ("cgraph_node has wrong clone_of");
2717 for (n
= clones
; n
; n
= n
->next_sibling_clone
)
2718 if (n
->clone_of
!= this)
2722 error ("cgraph_node has wrong clone list");
2726 if ((prev_sibling_clone
|| next_sibling_clone
) && !clone_of
)
2728 error ("cgraph_node is in clone list but it is not clone");
2731 if (!prev_sibling_clone
&& clone_of
&& clone_of
->clones
!= this)
2733 error ("cgraph_node has wrong prev_clone pointer");
2736 if (prev_sibling_clone
&& prev_sibling_clone
->next_sibling_clone
!= this)
2738 error ("double linked list of clones corrupted");
2742 if (analyzed
&& alias
)
2744 bool ref_found
= false;
2746 ipa_ref
*ref
= NULL
;
2750 error ("Alias has call edges");
2753 for (i
= 0; iterate_reference (i
, ref
); i
++)
2754 if (ref
->use
!= IPA_REF_ALIAS
)
2756 error ("Alias has non-alias reference");
2761 error ("Alias has more than one alias reference");
2768 error ("Analyzed alias has no reference");
2772 if (analyzed
&& thunk
.thunk_p
)
2776 error ("No edge out of thunk node");
2779 else if (callees
->next_callee
)
2781 error ("More than one edge out of thunk node");
2784 if (gimple_has_body_p (decl
))
2786 error ("Thunk is not supposed to have body");
2790 else if (analyzed
&& gimple_has_body_p (decl
)
2791 && !TREE_ASM_WRITTEN (decl
)
2792 && (!DECL_EXTERNAL (decl
) || global
.inlined_to
)
2797 hash_set
<gimple
> stmts
;
2799 ipa_ref
*ref
= NULL
;
2801 /* Reach the trees by walking over the CFG, and note the
2802 enclosing basic-blocks in the call edges. */
2803 FOR_EACH_BB_FN (this_block
, this_cfun
)
2805 for (gsi
= gsi_start_phis (this_block
);
2806 !gsi_end_p (gsi
); gsi_next (&gsi
))
2807 stmts
.add (gsi_stmt (gsi
));
2808 for (gsi
= gsi_start_bb (this_block
);
2812 gimple stmt
= gsi_stmt (gsi
);
2814 if (is_gimple_call (stmt
))
2816 cgraph_edge
*e
= get_edge (stmt
);
2817 tree decl
= gimple_call_fndecl (stmt
);
2822 error ("shared call_stmt:");
2823 cgraph_debug_gimple_stmt (this_cfun
, stmt
);
2826 if (!e
->indirect_unknown_callee
)
2828 if (verify_edge_corresponds_to_fndecl (e
, decl
))
2830 error ("edge points to wrong declaration:");
2831 debug_tree (e
->callee
->decl
);
2832 fprintf (stderr
," Instead of:");
2839 error ("an indirect edge with unknown callee "
2840 "corresponding to a call_stmt with "
2841 "a known declaration:");
2843 cgraph_debug_gimple_stmt (this_cfun
, e
->call_stmt
);
2849 error ("missing callgraph edge for call stmt:");
2850 cgraph_debug_gimple_stmt (this_cfun
, stmt
);
2856 for (i
= 0; iterate_reference (i
, ref
); i
++)
2857 if (ref
->stmt
&& !stmts
.contains (ref
->stmt
))
2859 error ("reference to dead statement");
2860 cgraph_debug_gimple_stmt (this_cfun
, ref
->stmt
);
2865 /* No CFG available?! */
2868 for (e
= callees
; e
; e
= e
->next_callee
)
2872 error ("edge %s->%s has no corresponding call_stmt",
2873 identifier_to_locale (e
->caller
->name ()),
2874 identifier_to_locale (e
->callee
->name ()));
2875 cgraph_debug_gimple_stmt (this_cfun
, e
->call_stmt
);
2880 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
2882 if (!e
->aux
&& !e
->speculative
)
2884 error ("an indirect edge from %s has no corresponding call_stmt",
2885 identifier_to_locale (e
->caller
->name ()));
2886 cgraph_debug_gimple_stmt (this_cfun
, e
->call_stmt
);
2895 internal_error ("verify_cgraph_node failed");
2897 timevar_pop (TV_CGRAPH_VERIFY
);
2900 /* Verify whole cgraph structure. */
2902 cgraph_node::verify_cgraph_nodes (void)
2909 FOR_EACH_FUNCTION (node
)
2913 /* Walk the alias chain to return the function cgraph_node is alias of.
2914 Walk through thunk, too.
2915 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
2918 cgraph_node::function_symbol (enum availability
*availability
)
2920 cgraph_node
*node
= this;
2924 node
= node
->ultimate_alias_target (availability
);
2925 if (node
->thunk
.thunk_p
)
2927 node
= node
->callees
->callee
;
2930 enum availability a
;
2931 a
= node
->get_availability ();
2932 if (a
< *availability
)
2935 node
= node
->ultimate_alias_target (availability
);
2937 } while (node
&& node
->thunk
.thunk_p
);
2941 /* When doing LTO, read cgraph_node's body from disk if it is not already
2945 cgraph_node::get_body (void)
2947 lto_file_decl_data
*file_data
;
2948 const char *data
, *name
;
2950 tree decl
= this->decl
;
2952 if (DECL_RESULT (decl
))
2955 gcc_assert (in_lto_p
);
2957 timevar_push (TV_IPA_LTO_GIMPLE_IN
);
2959 file_data
= lto_file_data
;
2960 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
2962 /* We may have renamed the declaration, e.g., a static function. */
2963 name
= lto_get_decl_name_mapping (file_data
, name
);
2965 data
= lto_get_section_data (file_data
, LTO_section_function_body
,
2968 fatal_error ("%s: section %s is missing",
2969 file_data
->file_name
,
2972 gcc_assert (DECL_STRUCT_FUNCTION (decl
) == NULL
);
2974 lto_input_function_body (file_data
, this, data
);
2975 lto_stats
.num_function_bodies
++;
2976 lto_free_section_data (file_data
, LTO_section_function_body
, name
,
2978 lto_free_function_in_decl_state_for_node (this);
2980 timevar_pop (TV_IPA_LTO_GIMPLE_IN
);
2985 /* Verify if the type of the argument matches that of the function
2986 declaration. If we cannot verify this or there is a mismatch,
2990 gimple_check_call_args (gimple stmt
, tree fndecl
, bool args_count_match
)
2993 unsigned int i
, nargs
;
2995 /* Calls to internal functions always match their signature. */
2996 if (gimple_call_internal_p (stmt
))
2999 nargs
= gimple_call_num_args (stmt
);
3001 /* Get argument types for verification. */
3003 parms
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
3005 parms
= TYPE_ARG_TYPES (gimple_call_fntype (stmt
));
3007 /* Verify if the type of the argument matches that of the function
3008 declaration. If we cannot verify this or there is a mismatch,
3010 if (fndecl
&& DECL_ARGUMENTS (fndecl
))
3012 for (i
= 0, p
= DECL_ARGUMENTS (fndecl
);
3014 i
++, p
= DECL_CHAIN (p
))
3017 /* We cannot distinguish a varargs function from the case
3018 of excess parameters, still deferring the inlining decision
3019 to the callee is possible. */
3022 arg
= gimple_call_arg (stmt
, i
);
3023 if (p
== error_mark_node
3024 || DECL_ARG_TYPE (p
) == error_mark_node
3025 || arg
== error_mark_node
3026 || (!types_compatible_p (DECL_ARG_TYPE (p
), TREE_TYPE (arg
))
3027 && !fold_convertible_p (DECL_ARG_TYPE (p
), arg
)))
3030 if (args_count_match
&& p
)
3035 for (i
= 0, p
= parms
; i
< nargs
; i
++, p
= TREE_CHAIN (p
))
3038 /* If this is a varargs function defer inlining decision
3042 arg
= gimple_call_arg (stmt
, i
);
3043 if (TREE_VALUE (p
) == error_mark_node
3044 || arg
== error_mark_node
3045 || TREE_CODE (TREE_VALUE (p
)) == VOID_TYPE
3046 || (!types_compatible_p (TREE_VALUE (p
), TREE_TYPE (arg
))
3047 && !fold_convertible_p (TREE_VALUE (p
), arg
)))
3059 /* Verify if the type of the argument and lhs of CALL_STMT matches
3060 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3061 true, the arg count needs to be the same.
3062 If we cannot verify this or there is a mismatch, return false. */
3065 gimple_check_call_matching_types (gimple call_stmt
, tree callee
,
3066 bool args_count_match
)
3070 if ((DECL_RESULT (callee
)
3071 && !DECL_BY_REFERENCE (DECL_RESULT (callee
))
3072 && (lhs
= gimple_call_lhs (call_stmt
)) != NULL_TREE
3073 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee
)),
3075 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee
)), lhs
))
3076 || !gimple_check_call_args (call_stmt
, callee
, args_count_match
))
3081 #include "gt-cgraph.h"