2 Copyright (C) 2003-2024 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 module provide facilities for cloning functions. I.e. creating
22 new functions based on existing functions with simple modifications,
23 such as replacement of parameters.
25 To allow whole program optimization without actual presence of function
26 bodies, an additional infrastructure is provided for so-called virtual
29 A virtual clone in the callgraph is a function that has no
30 associated body, just a description of how to create its body based
31 on a different function (which itself may be a virtual clone).
33 The description of function modifications includes adjustments to
34 the function's signature (which allows, for example, removing or
35 adding function arguments), substitutions to perform on the
36 function body, and, for inlined functions, a pointer to the
37 function that it will be inlined into.
39 It is also possible to redirect any edge of the callgraph from a
40 function to its virtual clone. This implies updating of the call
41 site to adjust for the new function signature.
43 Most of the transformations performed by inter-procedural
44 optimizations can be represented via virtual clones. For
45 instance, a constant propagation pass can produce a virtual clone
46 of the function which replaces one of its arguments by a
47 constant. The inliner can represent its decisions by producing a
48 clone of a function whose body will be later integrated into
51 Using virtual clones, the program can be easily updated
52 during the Execute stage, solving most of pass interactions
53 problems that would otherwise occur during Transform.
55 Virtual clones are later materialized in the LTRANS stage and
56 turned into real functions. Passes executed after the virtual
57 clone were introduced also perform their Transform stage
58 on new functions, so for a pass there is no significant
59 difference between operating on a real function or a virtual
60 clone introduced before its Execute stage.
62 Optimization passes then work on virtual clones introduced before
63 their Execute stage as if they were real functions. The
64 only difference is that clones are not visible during the
65 Generate Summary stage. */
67 #define INCLUDE_MEMORY
70 #include "coretypes.h"
76 #include "stringpool.h"
78 #include "lto-streamer.h"
81 #include "tree-inline.h"
84 #include "gimple-pretty-print.h"
85 #include "alloc-pool.h"
86 #include "symbol-summary.h"
91 #include "ipa-fnsummary.h"
92 #include "symtab-thunks.h"
93 #include "symtab-clones.h"
95 /* Create clone of edge in the node N represented by CALL_EXPR
99 cgraph_edge::clone (cgraph_node
*n
, gcall
*call_stmt
, unsigned stmt_uid
,
100 profile_count num
, profile_count den
,
101 bool update_original
)
103 cgraph_edge
*new_edge
;
104 profile_count::adjust_for_ipa_scaling (&num
, &den
);
105 profile_count prof_count
= count
.apply_scale (num
, den
);
107 if (indirect_unknown_callee
)
111 if (call_stmt
&& (decl
= gimple_call_fndecl (call_stmt
))
112 /* When the call is speculative, we need to resolve it
113 via cgraph_resolve_speculation and not here. */
116 cgraph_node
*callee
= cgraph_node::get (decl
);
117 gcc_checking_assert (callee
);
118 new_edge
= n
->create_edge (callee
, call_stmt
, prof_count
, true);
122 new_edge
= n
->create_indirect_edge (call_stmt
,
123 indirect_info
->ecf_flags
,
125 *new_edge
->indirect_info
= *indirect_info
;
130 new_edge
= n
->create_edge (callee
, call_stmt
, prof_count
, true);
133 new_edge
->indirect_info
134 = ggc_cleared_alloc
<cgraph_indirect_call_info
> ();
135 *new_edge
->indirect_info
= *indirect_info
;
139 new_edge
->inline_failed
= inline_failed
;
140 new_edge
->indirect_inlining_edge
= indirect_inlining_edge
;
142 new_edge
->lto_stmt_uid
= stmt_uid
;
143 new_edge
->speculative_id
= speculative_id
;
144 /* Clone flags that depend on call_stmt availability manually. */
145 new_edge
->can_throw_external
= can_throw_external
;
146 new_edge
->call_stmt_cannot_inline_p
= call_stmt_cannot_inline_p
;
147 new_edge
->speculative
= speculative
;
148 new_edge
->in_polymorphic_cdtor
= in_polymorphic_cdtor
;
150 /* Update IPA profile. Local profiles need no updating in original. */
152 count
= count
.combine_with_ipa_count_within (count
.ipa ()
153 - new_edge
->count
.ipa (),
155 symtab
->call_edge_duplication_hooks (this, new_edge
);
159 /* Set flags of NEW_NODE and its decl. NEW_NODE is a newly created private
160 clone or its thunk. */
163 set_new_clone_decl_and_node_flags (cgraph_node
*new_node
)
165 DECL_EXTERNAL (new_node
->decl
) = 0;
166 TREE_PUBLIC (new_node
->decl
) = 0;
167 DECL_COMDAT (new_node
->decl
) = 0;
168 DECL_WEAK (new_node
->decl
) = 0;
169 DECL_VIRTUAL_P (new_node
->decl
) = 0;
170 DECL_STATIC_CONSTRUCTOR (new_node
->decl
) = 0;
171 DECL_STATIC_DESTRUCTOR (new_node
->decl
) = 0;
172 DECL_SET_IS_OPERATOR_NEW (new_node
->decl
, 0);
173 DECL_SET_IS_OPERATOR_DELETE (new_node
->decl
, 0);
174 DECL_IS_REPLACEABLE_OPERATOR (new_node
->decl
) = 0;
176 new_node
->externally_visible
= 0;
178 new_node
->lowered
= true;
179 new_node
->semantic_interposition
= 0;
182 /* Duplicate thunk THUNK if necessary but make it to refer to NODE.
183 ARGS_TO_SKIP, if non-NULL, determines which parameters should be omitted.
184 Function can return NODE if no thunk is necessary, which can happen when
185 thunk is this_adjusting but we are removing this parameter. */
188 duplicate_thunk_for_node (cgraph_node
*thunk
, cgraph_node
*node
)
190 cgraph_node
*new_thunk
, *thunk_of
;
191 thunk_of
= thunk
->callees
->callee
->ultimate_alias_target ();
194 node
= duplicate_thunk_for_node (thunk_of
, node
);
196 if (!DECL_ARGUMENTS (thunk
->decl
))
197 thunk
->get_untransformed_body ();
199 thunk_info
*i
= thunk_info::get (thunk
);
201 for (cs
= node
->callers
; cs
; cs
= cs
->next_caller
)
202 if (cs
->caller
->thunk
)
204 thunk_info
*i2
= thunk_info::get (cs
->caller
);
210 clone_info
*info
= clone_info::get (node
);
211 if (info
&& info
->param_adjustments
)
213 /* We do not need to duplicate this_adjusting thunks if we have removed
215 if (i
->this_adjusting
216 && !info
->param_adjustments
->first_param_intact_p ())
219 new_decl
= copy_node (thunk
->decl
);
220 ipa_param_body_adjustments
body_adj (info
->param_adjustments
,
222 body_adj
.modify_formal_parameters ();
226 new_decl
= copy_node (thunk
->decl
);
227 for (tree
*arg
= &DECL_ARGUMENTS (new_decl
);
228 *arg
; arg
= &DECL_CHAIN (*arg
))
230 tree next
= DECL_CHAIN (*arg
);
231 *arg
= copy_node (*arg
);
232 DECL_CONTEXT (*arg
) = new_decl
;
233 DECL_CHAIN (*arg
) = next
;
237 gcc_checking_assert (!DECL_STRUCT_FUNCTION (new_decl
));
238 gcc_checking_assert (!DECL_INITIAL (new_decl
));
239 gcc_checking_assert (!DECL_RESULT (new_decl
));
240 gcc_checking_assert (!DECL_RTL_SET_P (new_decl
));
242 DECL_NAME (new_decl
) = clone_function_name_numbered (thunk
->decl
,
244 SET_DECL_ASSEMBLER_NAME (new_decl
, DECL_NAME (new_decl
));
246 /* We need to force DECL_IGNORED_P because the new thunk is created after
247 early debug was run. */
248 DECL_IGNORED_P (new_decl
) = 1;
250 new_thunk
= cgraph_node::create (new_decl
);
251 set_new_clone_decl_and_node_flags (new_thunk
);
252 new_thunk
->definition
= true;
253 new_thunk
->can_change_signature
= node
->can_change_signature
;
254 new_thunk
->thunk
= thunk
->thunk
;
255 new_thunk
->unique_name
= in_lto_p
;
256 new_thunk
->former_clone_of
= thunk
->decl
;
257 if (info
&& info
->param_adjustments
)
258 clone_info::get_create (new_thunk
)->param_adjustments
259 = info
->param_adjustments
;
260 new_thunk
->unit_id
= thunk
->unit_id
;
261 new_thunk
->merged_comdat
= thunk
->merged_comdat
;
262 new_thunk
->merged_extern_inline
= thunk
->merged_extern_inline
;
264 cgraph_edge
*e
= new_thunk
->create_edge (node
, NULL
, new_thunk
->count
);
265 symtab
->call_edge_duplication_hooks (thunk
->callees
, e
);
266 symtab
->call_cgraph_duplication_hooks (thunk
, new_thunk
);
270 /* If E does not lead to a thunk, simply redirect it to N. Otherwise create
271 one or more equivalent thunks for N and redirect E to the first in the
272 chain. Note that it is then necessary to call
273 n->expand_all_artificial_thunks once all callers are redirected. */
276 cgraph_edge::redirect_callee_duplicating_thunks (cgraph_node
*n
)
278 cgraph_node
*orig_to
= callee
->ultimate_alias_target ();
280 n
= duplicate_thunk_for_node (orig_to
, n
);
285 /* Call expand_thunk on all callers that are thunks and if analyze those nodes
286 that were expanded. */
289 cgraph_node::expand_all_artificial_thunks ()
292 for (e
= callers
; e
;)
293 if (e
->caller
->thunk
)
295 cgraph_node
*thunk
= e
->caller
;
298 if (expand_thunk (thunk
, false, false))
300 thunk
->thunk
= false;
302 ipa_analyze_node (thunk
);
303 inline_analyze_function (thunk
);
305 thunk
->expand_all_artificial_thunks ();
312 dump_callgraph_transformation (const cgraph_node
*original
,
313 const cgraph_node
*clone
,
316 if (symtab
->ipa_clones_dump_file
)
318 fprintf (symtab
->ipa_clones_dump_file
,
319 "Callgraph clone;%s;%d;%s;%d;%d;%s;%d;%s;%d;%d;%s\n",
320 original
->asm_name (), original
->order
,
321 DECL_SOURCE_FILE (original
->decl
),
322 DECL_SOURCE_LINE (original
->decl
),
323 DECL_SOURCE_COLUMN (original
->decl
), clone
->asm_name (),
324 clone
->order
, DECL_SOURCE_FILE (clone
->decl
),
325 DECL_SOURCE_LINE (clone
->decl
), DECL_SOURCE_COLUMN (clone
->decl
),
328 symtab
->cloned_nodes
.add (original
);
329 symtab
->cloned_nodes
.add (clone
);
333 /* Turn profile of N to local profile. */
336 localize_profile (cgraph_node
*n
)
338 n
->count
= n
->count
.guessed_local ();
339 for (cgraph_edge
*e
= n
->callees
; e
; e
=e
->next_callee
)
341 e
->count
= e
->count
.guessed_local ();
342 if (!e
->inline_failed
)
343 localize_profile (e
->callee
);
345 for (cgraph_edge
*e
= n
->indirect_calls
; e
; e
=e
->next_callee
)
346 e
->count
= e
->count
.guessed_local ();
349 /* Create node representing clone of N executed COUNT times. Decrease
350 the execution counts from original node too.
351 The new clone will have decl set to DECL that may or may not be the same
354 When UPDATE_ORIGINAL is true, the counts are subtracted from the original
355 function's profile to reflect the fact that part of execution is handled
357 When CALL_DUPLICATION_HOOK is true, the ipa passes are acknowledged about
358 the new clone. Otherwise the caller is responsible for doing so later.
360 If the new node is being inlined into another one, NEW_INLINED_TO should be
361 the outline function the new one is (even indirectly) inlined to. All hooks
362 will see this in node's inlined_to, when invoked. Can be NULL if the
365 If PARAM_ADJUSTMENTS is non-NULL, the parameter manipulation information
366 will be overwritten by the new structure. Otherwise the new node will
367 share parameter manipulation information with the original node. */
370 cgraph_node::create_clone (tree new_decl
, profile_count prof_count
,
371 bool update_original
,
372 vec
<cgraph_edge
*> redirect_callers
,
373 bool call_duplication_hook
,
374 cgraph_node
*new_inlined_to
,
375 ipa_param_adjustments
*param_adjustments
,
378 cgraph_node
*new_node
= symtab
->create_empty ();
381 profile_count old_count
= count
;
382 bool nonzero
= count
.ipa ().nonzero_p ();
385 dump_callgraph_transformation (this, new_inlined_to
, "inlining to");
387 /* When inlining we scale precisely to prof_count, when cloning we can
388 preserve local profile. */
390 prof_count
= count
.combine_with_ipa_count (prof_count
);
391 new_node
->count
= prof_count
;
392 new_node
->calls_declare_variant_alt
= this->calls_declare_variant_alt
;
394 /* Update IPA profile. Local profiles need no updating in original. */
398 count
= count
.combine_with_ipa_count_within (count
.ipa ()
402 count
= count
.combine_with_ipa_count (count
.ipa () - prof_count
.ipa ());
404 new_node
->decl
= new_decl
;
405 new_node
->register_symbol ();
406 new_node
->lto_file_data
= lto_file_data
;
407 new_node
->analyzed
= analyzed
;
408 new_node
->definition
= definition
;
409 new_node
->versionable
= versionable
;
410 new_node
->can_change_signature
= can_change_signature
;
411 new_node
->redefined_extern_inline
= redefined_extern_inline
;
412 new_node
->semantic_interposition
= semantic_interposition
;
413 new_node
->tm_may_enter_irr
= tm_may_enter_irr
;
414 new_node
->externally_visible
= false;
415 new_node
->no_reorder
= no_reorder
;
416 new_node
->local
= true;
417 new_node
->inlined_to
= new_inlined_to
;
419 new_node
->frequency
= frequency
;
420 new_node
->tp_first_run
= tp_first_run
;
421 new_node
->tm_clone
= tm_clone
;
422 new_node
->icf_merged
= icf_merged
;
423 new_node
->thunk
= thunk
;
424 new_node
->unit_id
= unit_id
;
425 new_node
->merged_comdat
= merged_comdat
;
426 new_node
->merged_extern_inline
= merged_extern_inline
;
427 clone_info
*info
= clone_info::get (this);
429 if (param_adjustments
)
430 clone_info::get_create (new_node
)->param_adjustments
= param_adjustments
;
431 else if (info
&& info
->param_adjustments
)
432 clone_info::get_create (new_node
)->param_adjustments
433 = info
->param_adjustments
;
434 new_node
->split_part
= split_part
;
436 FOR_EACH_VEC_ELT (redirect_callers
, i
, e
)
438 /* Redirect calls to the old version node to point to its new
439 version. The only exception is when the edge was proved to
440 be unreachable during the cloning procedure. */
442 || !fndecl_built_in_p (e
->callee
->decl
, BUILT_IN_UNREACHABLE
,
443 BUILT_IN_UNREACHABLE_TRAP
))
444 e
->redirect_callee_duplicating_thunks (new_node
);
446 new_node
->expand_all_artificial_thunks ();
448 for (e
= callees
;e
; e
=e
->next_callee
)
449 e
->clone (new_node
, e
->call_stmt
, e
->lto_stmt_uid
, new_node
->count
, old_count
,
452 for (e
= indirect_calls
; e
; e
= e
->next_callee
)
453 e
->clone (new_node
, e
->call_stmt
, e
->lto_stmt_uid
,
454 new_node
->count
, old_count
, update_original
);
455 new_node
->clone_references (this);
457 new_node
->next_sibling_clone
= clones
;
459 clones
->prev_sibling_clone
= new_node
;
461 new_node
->clone_of
= this;
463 if (call_duplication_hook
)
464 symtab
->call_cgraph_duplication_hooks (this, new_node
);
465 /* With partial train run we do not want to assume that original's
466 count is zero whenever we redurect all executed edges to clone.
467 Simply drop profile to local one in this case. */
469 && opt_for_fn (decl
, flag_profile_partial_training
)
472 && !count
.ipa ().nonzero_p ()
474 localize_profile (this);
477 dump_callgraph_transformation (this, new_node
, suffix
);
482 static GTY(()) hash_map
<const char *, unsigned> *clone_fn_ids
;
484 /* Return a new assembler name for a clone of decl named NAME. Apart
485 from the string SUFFIX, the new name will end with a unique (for
486 each NAME) unspecified number. If clone numbering is not needed
487 then the two argument clone_function_name should be used instead.
488 Should not be called directly except for by
489 lto-partition.cc:privatize_symbol_name_1. */
492 clone_function_name_numbered (const char *name
, const char *suffix
)
494 /* Initialize the function->counter mapping the first time it's
497 clone_fn_ids
= hash_map
<const char *, unsigned int>::create_ggc (64);
498 unsigned int &suffix_counter
= clone_fn_ids
->get_or_insert (
499 IDENTIFIER_POINTER (get_identifier (name
)));
500 return clone_function_name (name
, suffix
, suffix_counter
++);
503 /* Return a new assembler name for a clone of DECL. Apart from string
504 SUFFIX, the new name will end with a unique (for each DECL
505 assembler name) unspecified number. If clone numbering is not
506 needed then the two argument clone_function_name should be used
510 clone_function_name_numbered (tree decl
, const char *suffix
)
512 tree name
= DECL_ASSEMBLER_NAME (decl
);
513 return clone_function_name_numbered (IDENTIFIER_POINTER (name
),
517 /* Return a new assembler name for a clone of decl named NAME. Apart
518 from the string SUFFIX, the new name will end with the specified
519 NUMBER. If clone numbering is not needed then the two argument
520 clone_function_name should be used instead. */
523 clone_function_name (const char *name
, const char *suffix
,
524 unsigned long number
)
526 size_t len
= strlen (name
);
527 char *tmp_name
, *prefix
;
529 prefix
= XALLOCAVEC (char, len
+ strlen (suffix
) + 2);
530 memcpy (prefix
, name
, len
);
531 strcpy (prefix
+ len
+ 1, suffix
);
532 prefix
[len
] = symbol_table::symbol_suffix_separator ();
533 ASM_FORMAT_PRIVATE_NAME (tmp_name
, prefix
, number
);
534 return get_identifier (tmp_name
);
537 /* Return a new assembler name for a clone of DECL. Apart from the
538 string SUFFIX, the new name will end with the specified NUMBER. If
539 clone numbering is not needed then the two argument
540 clone_function_name should be used instead. */
543 clone_function_name (tree decl
, const char *suffix
,
544 unsigned long number
)
546 return clone_function_name (
547 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)), suffix
, number
);
550 /* Return a new assembler name ending with the string SUFFIX for a
554 clone_function_name (tree decl
, const char *suffix
)
556 tree identifier
= DECL_ASSEMBLER_NAME (decl
);
557 /* For consistency this needs to behave the same way as
558 ASM_FORMAT_PRIVATE_NAME does, but without the final number
560 char *separator
= XALLOCAVEC (char, 2);
561 separator
[0] = symbol_table::symbol_suffix_separator ();
563 #if defined (NO_DOT_IN_LABEL) && defined (NO_DOLLAR_IN_LABEL)
564 const char *prefix
= "__";
566 const char *prefix
= "";
568 char *result
= ACONCAT ((prefix
,
569 IDENTIFIER_POINTER (identifier
),
573 return get_identifier (result
);
577 /* Create callgraph node clone with new declaration. The actual body will be
578 copied later at compilation stage. The name of the new clone will be
579 constructed from the name of the original node, SUFFIX and NUM_SUFFIX.
581 TODO: after merging in ipa-sra use function call notes instead of args_to_skip
585 cgraph_node::create_virtual_clone (const vec
<cgraph_edge
*> &redirect_callers
,
586 vec
<ipa_replace_map
*, va_gc
> *tree_map
,
587 ipa_param_adjustments
*param_adjustments
,
588 const char * suffix
, unsigned num_suffix
)
590 tree old_decl
= decl
;
591 cgraph_node
*new_node
= NULL
;
594 ipa_replace_map
*map
;
597 gcc_checking_assert (versionable
);
598 /* TODO: It would be nice if we could recognize that param_adjustments do not
599 actually perform any changes, but at the moment let's require it simply
601 gcc_assert (can_change_signature
|| !param_adjustments
);
603 /* Make a new FUNCTION_DECL tree node */
604 if (!param_adjustments
)
605 new_decl
= copy_node (old_decl
);
607 new_decl
= param_adjustments
->adjust_decl (old_decl
);
609 /* These pointers represent function body and will be populated only when clone
611 gcc_assert (new_decl
!= old_decl
);
612 DECL_STRUCT_FUNCTION (new_decl
) = NULL
;
613 DECL_ARGUMENTS (new_decl
) = NULL
;
614 DECL_INITIAL (new_decl
) = NULL
;
615 DECL_RESULT (new_decl
) = NULL
;
616 /* We cannot do DECL_RESULT (new_decl) = NULL; here because of LTO partitioning
617 sometimes storing only clone decl instead of original. */
619 /* Generate a new name for the new version. */
620 len
= IDENTIFIER_LENGTH (DECL_NAME (old_decl
));
621 name
= XALLOCAVEC (char, len
+ strlen (suffix
) + 2);
622 memcpy (name
, IDENTIFIER_POINTER (DECL_NAME (old_decl
)), len
);
623 strcpy (name
+ len
+ 1, suffix
);
625 DECL_NAME (new_decl
) = get_identifier (name
);
626 SET_DECL_ASSEMBLER_NAME (new_decl
,
627 clone_function_name (old_decl
, suffix
, num_suffix
));
628 SET_DECL_RTL (new_decl
, NULL
);
630 new_node
= create_clone (new_decl
, count
, false,
631 redirect_callers
, false, NULL
, param_adjustments
,
634 /* Update the properties.
635 Make clone visible only within this translation unit. Make sure
636 that is not weak also.
637 ??? We cannot use COMDAT linkage because there is no
638 ABI support for this. */
639 set_new_clone_decl_and_node_flags (new_node
);
640 new_node
->ipcp_clone
= ipcp_clone
;
642 clone_info::get_create (new_node
)->tree_map
= tree_map
;
643 if (!implicit_section
)
644 new_node
->set_section (*this);
646 /* Clones of global symbols or symbols with unique names are unique. */
647 if ((TREE_PUBLIC (old_decl
)
648 && !DECL_EXTERNAL (old_decl
)
649 && !DECL_WEAK (old_decl
)
650 && !DECL_COMDAT (old_decl
))
652 new_node
->unique_name
= true;
653 FOR_EACH_VEC_SAFE_ELT (tree_map
, i
, map
)
655 tree repl
= map
->new_tree
;
656 if (map
->force_load_ref
)
658 gcc_assert (TREE_CODE (repl
) == ADDR_EXPR
);
659 repl
= get_base_address (TREE_OPERAND (repl
, 0));
661 new_node
->maybe_create_reference (repl
, NULL
);
664 if (ipa_transforms_to_apply
.exists ())
665 new_node
->ipa_transforms_to_apply
666 = ipa_transforms_to_apply
.copy ();
668 symtab
->call_cgraph_duplication_hooks (this, new_node
);
673 /* callgraph node being removed from symbol table; see if its entry can be
674 replaced by other inline clone.
675 INFO is clone info to attach to the new root. */
677 cgraph_node::find_replacement (clone_info
*info
)
679 cgraph_node
*next_inline_clone
, *replacement
;
681 for (next_inline_clone
= clones
;
683 && next_inline_clone
->decl
!= decl
;
684 next_inline_clone
= next_inline_clone
->next_sibling_clone
)
687 /* If there is inline clone of the node being removed, we need
688 to put it into the position of removed node and reorganize all
689 other clones to be based on it. */
690 if (next_inline_clone
)
693 cgraph_node
*new_clones
;
695 replacement
= next_inline_clone
;
697 /* Unlink inline clone from the list of clones of removed node. */
698 if (next_inline_clone
->next_sibling_clone
)
699 next_inline_clone
->next_sibling_clone
->prev_sibling_clone
700 = next_inline_clone
->prev_sibling_clone
;
701 if (next_inline_clone
->prev_sibling_clone
)
703 gcc_assert (clones
!= next_inline_clone
);
704 next_inline_clone
->prev_sibling_clone
->next_sibling_clone
705 = next_inline_clone
->next_sibling_clone
;
709 gcc_assert (clones
== next_inline_clone
);
710 clones
= next_inline_clone
->next_sibling_clone
;
716 /* Copy clone info. */
718 *clone_info::get_create (next_inline_clone
) = *info
;
720 /* Now place it into clone tree at same level at NODE. */
721 next_inline_clone
->clone_of
= clone_of
;
722 next_inline_clone
->prev_sibling_clone
= NULL
;
723 next_inline_clone
->next_sibling_clone
= NULL
;
726 if (clone_of
->clones
)
727 clone_of
->clones
->prev_sibling_clone
= next_inline_clone
;
728 next_inline_clone
->next_sibling_clone
= clone_of
->clones
;
729 clone_of
->clones
= next_inline_clone
;
732 /* Merge the clone list. */
735 if (!next_inline_clone
->clones
)
736 next_inline_clone
->clones
= new_clones
;
739 n
= next_inline_clone
->clones
;
740 while (n
->next_sibling_clone
)
741 n
= n
->next_sibling_clone
;
742 n
->next_sibling_clone
= new_clones
;
743 new_clones
->prev_sibling_clone
= n
;
747 /* Update clone_of pointers. */
751 n
->clone_of
= next_inline_clone
;
752 n
= n
->next_sibling_clone
;
755 /* Update order in order to be able to find a LTO section
756 with function body. */
757 replacement
->order
= order
;
765 /* Like cgraph_set_call_stmt but walk the clone tree and update all
766 clones sharing the same function body.
767 When WHOLE_SPECULATIVE_EDGES is true, all three components of
768 speculative edge gets updated. Otherwise we update only direct
772 cgraph_node::set_call_stmt_including_clones (gimple
*old_stmt
,
774 bool update_speculative
)
777 cgraph_edge
*master_edge
= get_edge (old_stmt
);
780 cgraph_edge::set_call_stmt (master_edge
, new_stmt
, update_speculative
);
786 cgraph_edge
*edge
= node
->get_edge (old_stmt
);
789 edge
= cgraph_edge::set_call_stmt (edge
, new_stmt
,
791 /* If UPDATE_SPECULATIVE is false, it means that we are turning
792 speculative call into a real code sequence. Update the
794 if (edge
->speculative
&& !update_speculative
)
796 cgraph_edge
*indirect
= edge
->speculative_call_indirect_edge ();
798 for (cgraph_edge
*next
, *direct
799 = edge
->first_speculative_call_target ();
803 next
= direct
->next_speculative_call_target ();
804 direct
->speculative_call_target_ref ()->speculative
= false;
805 direct
->speculative
= false;
807 indirect
->speculative
= false;
812 else if (node
->next_sibling_clone
)
813 node
= node
->next_sibling_clone
;
816 while (node
!= this && !node
->next_sibling_clone
)
817 node
= node
->clone_of
;
819 node
= node
->next_sibling_clone
;
824 /* Like cgraph_create_edge walk the clone tree and update all clones sharing
825 same function body. If clones already have edge for OLD_STMT; only
826 update the edge same way as cgraph_set_call_stmt_including_clones does.
828 TODO: COUNT and LOOP_DEPTH should be properly distributed based on relative
829 frequencies of the clones. */
832 cgraph_node::create_edge_including_clones (cgraph_node
*callee
,
833 gimple
*old_stmt
, gcall
*stmt
,
835 cgraph_inline_failed_t reason
)
839 if (!get_edge (stmt
))
841 cgraph_edge
*edge
= create_edge (callee
, stmt
, count
);
842 edge
->inline_failed
= reason
;
848 /* Thunk clones do not get updated while copying inline function body. */
851 cgraph_edge
*edge
= node
->get_edge (old_stmt
);
853 /* It is possible that clones already contain the edge while
854 master didn't. Either we promoted indirect call into direct
855 call in the clone or we are processing clones of unreachable
856 master where edges has been removed. */
858 edge
= cgraph_edge::set_call_stmt (edge
, stmt
);
859 else if (! node
->get_edge (stmt
))
861 edge
= node
->create_edge (callee
, stmt
, count
);
862 edge
->inline_failed
= reason
;
867 else if (node
->next_sibling_clone
)
868 node
= node
->next_sibling_clone
;
871 while (node
!= this && !node
->next_sibling_clone
)
872 node
= node
->clone_of
;
874 node
= node
->next_sibling_clone
;
879 /* Remove the node from cgraph and all inline clones inlined into it.
880 Skip however removal of FORBIDDEN_NODE and return true if it needs to be
881 removed. This allows to call the function from outer loop walking clone
885 cgraph_node::remove_symbol_and_inline_clones (cgraph_node
*forbidden_node
)
887 cgraph_edge
*e
, *next
;
890 if (this == forbidden_node
)
892 cgraph_edge::remove (callers
);
895 for (e
= callees
; e
; e
= next
)
897 next
= e
->next_callee
;
898 if (!e
->inline_failed
)
899 found
|= e
->callee
->remove_symbol_and_inline_clones (forbidden_node
);
905 /* The edges representing the callers of the NEW_VERSION node were
906 fixed by cgraph_function_versioning (), now the call_expr in their
907 respective tree code should be updated to call the NEW_VERSION. */
910 update_call_expr (cgraph_node
*new_version
)
914 gcc_assert (new_version
);
916 /* Update the call expr on the edges to call the new version. */
917 for (e
= new_version
->callers
; e
; e
= e
->next_caller
)
919 function
*inner_function
= DECL_STRUCT_FUNCTION (e
->caller
->decl
);
920 gimple_call_set_fndecl (e
->call_stmt
, new_version
->decl
);
921 maybe_clean_eh_stmt_fn (inner_function
, e
->call_stmt
);
926 /* Create a new cgraph node which is the new version of
927 callgraph node. REDIRECT_CALLERS holds the callers
928 edges which should be redirected to point to
929 NEW_VERSION. ALL the callees edges of the node
930 are cloned to the new version node. Return the new
933 If non-NULL BLOCK_TO_COPY determine what basic blocks
934 was copied to prevent duplications of calls that are dead
938 cgraph_node::create_version_clone (tree new_decl
,
939 vec
<cgraph_edge
*> redirect_callers
,
943 cgraph_node
*new_version
;
947 new_version
= cgraph_node::create (new_decl
);
949 new_version
->analyzed
= analyzed
;
950 new_version
->definition
= definition
;
951 new_version
->local
= local
;
952 new_version
->externally_visible
= false;
953 new_version
->no_reorder
= no_reorder
;
954 new_version
->local
= new_version
->definition
;
955 new_version
->inlined_to
= inlined_to
;
956 new_version
->rtl
= rtl
;
957 new_version
->count
= count
;
958 new_version
->unit_id
= unit_id
;
959 new_version
->merged_comdat
= merged_comdat
;
960 new_version
->merged_extern_inline
= merged_extern_inline
;
962 for (e
= callees
; e
; e
=e
->next_callee
)
964 || bitmap_bit_p (bbs_to_copy
, gimple_bb (e
->call_stmt
)->index
))
965 e
->clone (new_version
, e
->call_stmt
,
966 e
->lto_stmt_uid
, count
, count
,
968 for (e
= indirect_calls
; e
; e
=e
->next_callee
)
970 || bitmap_bit_p (bbs_to_copy
, gimple_bb (e
->call_stmt
)->index
))
971 e
->clone (new_version
, e
->call_stmt
,
972 e
->lto_stmt_uid
, count
, count
,
974 FOR_EACH_VEC_ELT (redirect_callers
, i
, e
)
976 /* Redirect calls to the old version node to point to its new
978 e
->redirect_callee (new_version
);
981 dump_callgraph_transformation (this, new_version
, suffix
);
986 /* Perform function versioning.
987 Function versioning includes copying of the tree and
988 a callgraph update (creating a new cgraph node and updating
989 its callees and callers).
991 REDIRECT_CALLERS varray includes the edges to be redirected
994 TREE_MAP is a mapping of tree nodes we want to replace with
995 new ones (according to results of prior analysis).
997 If non-NULL ARGS_TO_SKIP determine function parameters to remove
999 If SKIP_RETURN is true, the new version will return void.
1000 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
1001 If non_NULL NEW_ENTRY determine new entry BB of the clone.
1003 If TARGET_ATTRIBUTES is non-null, when creating a new declaration,
1004 add the attributes to DECL_ATTRIBUTES. And call valid_attribute_p
1005 that will promote value of the attribute DECL_FUNCTION_SPECIFIC_TARGET
1008 If VERSION_DECL is set true, use clone_function_name_numbered for the
1009 function clone. Otherwise, use clone_function_name.
1011 Return the new version's cgraph node. */
1014 cgraph_node::create_version_clone_with_body
1015 (vec
<cgraph_edge
*> redirect_callers
,
1016 vec
<ipa_replace_map
*, va_gc
> *tree_map
,
1017 ipa_param_adjustments
*param_adjustments
,
1018 bitmap bbs_to_copy
, basic_block new_entry_block
, const char *suffix
,
1019 tree target_attributes
, bool version_decl
)
1021 tree old_decl
= decl
;
1022 cgraph_node
*new_version_node
= NULL
;
1025 if (!tree_versionable_function_p (old_decl
))
1028 /* TODO: Restore an assert that we do not change signature if
1029 can_change_signature is false. We cannot just check that
1030 param_adjustments is NULL because unfortunately ipa-split removes return
1031 values from such functions. */
1033 /* Make a new FUNCTION_DECL tree node for the new version. */
1034 if (param_adjustments
)
1035 new_decl
= param_adjustments
->adjust_decl (old_decl
);
1037 new_decl
= copy_node (old_decl
);
1039 /* Generate a new name for the new version. */
1040 tree fnname
= (version_decl
? clone_function_name_numbered (old_decl
, suffix
)
1041 : clone_function_name (old_decl
, suffix
));
1042 DECL_NAME (new_decl
) = fnname
;
1043 SET_DECL_ASSEMBLER_NAME (new_decl
, fnname
);
1044 SET_DECL_RTL (new_decl
, NULL
);
1046 DECL_VIRTUAL_P (new_decl
) = 0;
1048 if (target_attributes
)
1050 DECL_ATTRIBUTES (new_decl
) = target_attributes
;
1052 location_t saved_loc
= input_location
;
1053 tree v
= TREE_VALUE (target_attributes
);
1054 input_location
= DECL_SOURCE_LOCATION (new_decl
);
1056 tree name_id
= get_attribute_name (target_attributes
);
1057 const char *name_str
= IDENTIFIER_POINTER (name_id
);
1058 if (strcmp (name_str
, "target") == 0)
1059 r
= targetm
.target_option
.valid_attribute_p (new_decl
, name_id
, v
, 1);
1060 else if (strcmp (name_str
, "target_version") == 0)
1061 r
= targetm
.target_option
.valid_version_attribute_p (new_decl
, name_id
,
1066 input_location
= saved_loc
;
1071 /* When the old decl was a con-/destructor make sure the clone isn't. */
1072 DECL_STATIC_CONSTRUCTOR (new_decl
) = 0;
1073 DECL_STATIC_DESTRUCTOR (new_decl
) = 0;
1074 DECL_SET_IS_OPERATOR_NEW (new_decl
, 0);
1075 DECL_SET_IS_OPERATOR_DELETE (new_decl
, 0);
1076 DECL_IS_REPLACEABLE_OPERATOR (new_decl
) = 0;
1078 /* Create the new version's call-graph node.
1079 and update the edges of the new node. */
1080 new_version_node
= create_version_clone (new_decl
, redirect_callers
,
1081 bbs_to_copy
, suffix
);
1083 if (ipa_transforms_to_apply
.exists ())
1084 new_version_node
->ipa_transforms_to_apply
1085 = ipa_transforms_to_apply
.copy ();
1086 /* Copy the OLD_VERSION_NODE function tree to the new version. */
1087 tree_function_versioning (old_decl
, new_decl
, tree_map
, param_adjustments
,
1088 false, bbs_to_copy
, new_entry_block
);
1090 /* Update the new version's properties.
1091 Make The new version visible only within this translation unit. Make sure
1092 that is not weak also.
1093 ??? We cannot use COMDAT linkage because there is no
1094 ABI support for this. */
1095 new_version_node
->make_decl_local ();
1096 DECL_VIRTUAL_P (new_version_node
->decl
) = 0;
1097 new_version_node
->externally_visible
= 0;
1098 new_version_node
->local
= 1;
1099 new_version_node
->lowered
= true;
1100 if (!implicit_section
)
1101 new_version_node
->set_section (*this);
1102 /* Clones of global symbols or symbols with unique names are unique. */
1103 if ((TREE_PUBLIC (old_decl
)
1104 && !DECL_EXTERNAL (old_decl
)
1105 && !DECL_WEAK (old_decl
)
1106 && !DECL_COMDAT (old_decl
))
1108 new_version_node
->unique_name
= true;
1110 /* Update the call_expr on the edges to call the new version node. */
1111 update_call_expr (new_version_node
);
1113 symtab
->call_cgraph_insertion_hooks (new_version_node
);
1114 return new_version_node
;
1117 /* Remove the node from the tree of virtual and inline clones and make it a
1118 standalone node - not a clone any more. */
1120 void cgraph_node::remove_from_clone_tree ()
1122 if (next_sibling_clone
)
1123 next_sibling_clone
->prev_sibling_clone
= prev_sibling_clone
;
1124 if (prev_sibling_clone
)
1125 prev_sibling_clone
->next_sibling_clone
= next_sibling_clone
;
1127 clone_of
->clones
= next_sibling_clone
;
1128 next_sibling_clone
= NULL
;
1129 prev_sibling_clone
= NULL
;
1133 /* Given virtual clone, turn it into actual clone. */
1136 cgraph_node::materialize_clone ()
1138 clone_info
*info
= clone_info::get (this);
1139 clone_of
->get_untransformed_body ();
1140 former_clone_of
= clone_of
->decl
;
1141 if (clone_of
->former_clone_of
)
1142 former_clone_of
= clone_of
->former_clone_of
;
1143 if (symtab
->dump_file
)
1145 fprintf (symtab
->dump_file
, "cloning %s to %s\n",
1146 clone_of
->dump_name (),
1148 if (info
&& info
->tree_map
)
1150 fprintf (symtab
->dump_file
, " replace map:");
1151 for (unsigned int i
= 0;
1152 i
< vec_safe_length (info
->tree_map
);
1155 ipa_replace_map
*replace_info
;
1156 replace_info
= (*info
->tree_map
)[i
];
1157 fprintf (symtab
->dump_file
, "%s %i -> ",
1158 i
? "," : "", replace_info
->parm_num
);
1159 print_generic_expr (symtab
->dump_file
,
1160 replace_info
->new_tree
);
1162 fprintf (symtab
->dump_file
, "\n");
1164 if (info
&& info
->param_adjustments
)
1165 info
->param_adjustments
->dump (symtab
->dump_file
);
1167 clear_stmts_in_references ();
1168 /* Copy the OLD_VERSION_NODE function tree to the new version. */
1169 tree_function_versioning (clone_of
->decl
, decl
,
1170 info
? info
->tree_map
: NULL
,
1171 info
? info
->param_adjustments
: NULL
,
1173 if (symtab
->dump_file
)
1175 dump_function_to_file (clone_of
->decl
, symtab
->dump_file
,
1177 dump_function_to_file (decl
, symtab
->dump_file
, dump_flags
);
1180 cgraph_node
*this_clone_of
= clone_of
;
1181 /* Function is no longer clone. */
1182 remove_from_clone_tree ();
1183 if (!this_clone_of
->analyzed
&& !this_clone_of
->clones
)
1184 this_clone_of
->release_body ();
1187 #include "gt-cgraphclones.h"