* gcc.target/i386/387-3.c, gcc.target/i386/387-4.c,
[official-gcc.git] / gcc / cgraphclones.c
blobb2eb8ab5ce9aff3ec004839eb09de716292b9a19
1 /* Callgraph clones
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
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This module provide facilities for clonning 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
27 clones
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
49 a given function.
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 #include "config.h"
68 #include "system.h"
69 #include "coretypes.h"
70 #include "tm.h"
71 #include "rtl.h"
72 #include "tree.h"
73 #include "stringpool.h"
74 #include "function.h"
75 #include "emit-rtl.h"
76 #include "basic-block.h"
77 #include "tree-ssa-alias.h"
78 #include "internal-fn.h"
79 #include "tree-eh.h"
80 #include "gimple-expr.h"
81 #include "is-a.h"
82 #include "gimple.h"
83 #include "bitmap.h"
84 #include "tree-cfg.h"
85 #include "tree-inline.h"
86 #include "langhooks.h"
87 #include "toplev.h"
88 #include "flags.h"
89 #include "debug.h"
90 #include "target.h"
91 #include "diagnostic.h"
92 #include "params.h"
93 #include "intl.h"
94 #include "function.h"
95 #include "ipa-prop.h"
96 #include "tree-iterator.h"
97 #include "tree-dump.h"
98 #include "gimple-pretty-print.h"
99 #include "coverage.h"
100 #include "ipa-inline.h"
101 #include "ipa-utils.h"
102 #include "lto-streamer.h"
103 #include "except.h"
105 /* Create clone of E in the node N represented by CALL_EXPR the callgraph. */
106 struct cgraph_edge *
107 cgraph_clone_edge (struct cgraph_edge *e, struct cgraph_node *n,
108 gimple call_stmt, unsigned stmt_uid, gcov_type count_scale,
109 int freq_scale, bool update_original)
111 struct cgraph_edge *new_edge;
112 gcov_type count = apply_probability (e->count, count_scale);
113 gcov_type freq;
115 /* We do not want to ignore loop nest after frequency drops to 0. */
116 if (!freq_scale)
117 freq_scale = 1;
118 freq = e->frequency * (gcov_type) freq_scale / CGRAPH_FREQ_BASE;
119 if (freq > CGRAPH_FREQ_MAX)
120 freq = CGRAPH_FREQ_MAX;
122 if (e->indirect_unknown_callee)
124 tree decl;
126 if (call_stmt && (decl = gimple_call_fndecl (call_stmt))
127 /* When the call is speculative, we need to resolve it
128 via cgraph_resolve_speculation and not here. */
129 && !e->speculative)
131 struct cgraph_node *callee = cgraph_get_node (decl);
132 gcc_checking_assert (callee);
133 new_edge = cgraph_create_edge (n, callee, call_stmt, count, freq);
135 else
137 new_edge = cgraph_create_indirect_edge (n, call_stmt,
138 e->indirect_info->ecf_flags,
139 count, freq);
140 *new_edge->indirect_info = *e->indirect_info;
143 else
145 new_edge = cgraph_create_edge (n, e->callee, call_stmt, count, freq);
146 if (e->indirect_info)
148 new_edge->indirect_info
149 = ggc_alloc_cleared_cgraph_indirect_call_info ();
150 *new_edge->indirect_info = *e->indirect_info;
154 new_edge->inline_failed = e->inline_failed;
155 new_edge->indirect_inlining_edge = e->indirect_inlining_edge;
156 new_edge->lto_stmt_uid = stmt_uid;
157 /* Clone flags that depend on call_stmt availability manually. */
158 new_edge->can_throw_external = e->can_throw_external;
159 new_edge->call_stmt_cannot_inline_p = e->call_stmt_cannot_inline_p;
160 new_edge->speculative = e->speculative;
161 if (update_original)
163 e->count -= new_edge->count;
164 if (e->count < 0)
165 e->count = 0;
167 cgraph_call_edge_duplication_hooks (e, new_edge);
168 return new_edge;
172 /* Create node representing clone of N executed COUNT times. Decrease
173 the execution counts from original node too.
174 The new clone will have decl set to DECL that may or may not be the same
175 as decl of N.
177 When UPDATE_ORIGINAL is true, the counts are subtracted from the original
178 function's profile to reflect the fact that part of execution is handled
179 by node.
180 When CALL_DUPLICATOIN_HOOK is true, the ipa passes are acknowledged about
181 the new clone. Otherwise the caller is responsible for doing so later.
183 If the new node is being inlined into another one, NEW_INLINED_TO should be
184 the outline function the new one is (even indirectly) inlined to. All hooks
185 will see this in node's global.inlined_to, when invoked. Can be NULL if the
186 node is not inlined. */
188 struct cgraph_node *
189 cgraph_clone_node (struct cgraph_node *n, tree decl, gcov_type count, int freq,
190 bool update_original,
191 vec<cgraph_edge_p> redirect_callers,
192 bool call_duplication_hook,
193 struct cgraph_node *new_inlined_to)
195 struct cgraph_node *new_node = cgraph_create_empty_node ();
196 struct cgraph_edge *e;
197 gcov_type count_scale;
198 unsigned i;
200 new_node->decl = decl;
201 symtab_register_node (new_node);
202 new_node->origin = n->origin;
203 new_node->lto_file_data = n->lto_file_data;
204 if (new_node->origin)
206 new_node->next_nested = new_node->origin->nested;
207 new_node->origin->nested = new_node;
209 new_node->analyzed = n->analyzed;
210 new_node->definition = n->definition;
211 new_node->local = n->local;
212 new_node->externally_visible = false;
213 new_node->local.local = true;
214 new_node->global = n->global;
215 new_node->global.inlined_to = new_inlined_to;
216 new_node->rtl = n->rtl;
217 new_node->count = count;
218 new_node->frequency = n->frequency;
219 new_node->clone = n->clone;
220 new_node->clone.tree_map = NULL;
221 new_node->tp_first_run = n->tp_first_run;
222 if (n->count)
224 if (new_node->count > n->count)
225 count_scale = REG_BR_PROB_BASE;
226 else
227 count_scale = GCOV_COMPUTE_SCALE (new_node->count, n->count);
229 else
230 count_scale = 0;
231 if (update_original)
233 n->count -= count;
234 if (n->count < 0)
235 n->count = 0;
238 FOR_EACH_VEC_ELT (redirect_callers, i, e)
240 /* Redirect calls to the old version node to point to its new
241 version. The only exception is when the edge was proved to
242 be unreachable during the clonning procedure. */
243 if (!e->callee
244 || DECL_BUILT_IN_CLASS (e->callee->decl) != BUILT_IN_NORMAL
245 || DECL_FUNCTION_CODE (e->callee->decl) != BUILT_IN_UNREACHABLE)
246 cgraph_redirect_edge_callee (e, new_node);
250 for (e = n->callees;e; e=e->next_callee)
251 cgraph_clone_edge (e, new_node, e->call_stmt, e->lto_stmt_uid,
252 count_scale, freq, update_original);
254 for (e = n->indirect_calls; e; e = e->next_callee)
255 cgraph_clone_edge (e, new_node, e->call_stmt, e->lto_stmt_uid,
256 count_scale, freq, update_original);
257 ipa_clone_references (new_node, &n->ref_list);
259 new_node->next_sibling_clone = n->clones;
260 if (n->clones)
261 n->clones->prev_sibling_clone = new_node;
262 n->clones = new_node;
263 new_node->clone_of = n;
265 if (call_duplication_hook)
266 cgraph_call_node_duplication_hooks (n, new_node);
267 return new_node;
270 /* Return a new assembler name for a clone of DECL with SUFFIX. */
272 static GTY(()) unsigned int clone_fn_id_num;
274 tree
275 clone_function_name (tree decl, const char *suffix)
277 tree name = DECL_ASSEMBLER_NAME (decl);
278 size_t len = IDENTIFIER_LENGTH (name);
279 char *tmp_name, *prefix;
281 prefix = XALLOCAVEC (char, len + strlen (suffix) + 2);
282 memcpy (prefix, IDENTIFIER_POINTER (name), len);
283 strcpy (prefix + len + 1, suffix);
284 #ifndef NO_DOT_IN_LABEL
285 prefix[len] = '.';
286 #elif !defined NO_DOLLAR_IN_LABEL
287 prefix[len] = '$';
288 #else
289 prefix[len] = '_';
290 #endif
291 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix, clone_fn_id_num++);
292 return get_identifier (tmp_name);
295 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP and the
296 return value if SKIP_RETURN is true. */
298 static tree
299 build_function_type_skip_args (tree orig_type, bitmap args_to_skip,
300 bool skip_return)
302 tree new_type = NULL;
303 tree args, new_args = NULL, t;
304 tree new_reversed;
305 int i = 0;
307 for (args = TYPE_ARG_TYPES (orig_type); args && args != void_list_node;
308 args = TREE_CHAIN (args), i++)
309 if (!args_to_skip || !bitmap_bit_p (args_to_skip, i))
310 new_args = tree_cons (NULL_TREE, TREE_VALUE (args), new_args);
312 new_reversed = nreverse (new_args);
313 if (args)
315 if (new_reversed)
316 TREE_CHAIN (new_args) = void_list_node;
317 else
318 new_reversed = void_list_node;
321 /* Use copy_node to preserve as much as possible from original type
322 (debug info, attribute lists etc.)
323 Exception is METHOD_TYPEs must have THIS argument.
324 When we are asked to remove it, we need to build new FUNCTION_TYPE
325 instead. */
326 if (TREE_CODE (orig_type) != METHOD_TYPE
327 || !args_to_skip
328 || !bitmap_bit_p (args_to_skip, 0))
330 new_type = build_distinct_type_copy (orig_type);
331 TYPE_ARG_TYPES (new_type) = new_reversed;
333 else
335 new_type
336 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type),
337 new_reversed));
338 TYPE_CONTEXT (new_type) = TYPE_CONTEXT (orig_type);
341 if (skip_return)
342 TREE_TYPE (new_type) = void_type_node;
344 /* This is a new type, not a copy of an old type. Need to reassociate
345 variants. We can handle everything except the main variant lazily. */
346 t = TYPE_MAIN_VARIANT (orig_type);
347 if (t != orig_type)
349 t = build_function_type_skip_args (t, args_to_skip, skip_return);
350 TYPE_MAIN_VARIANT (new_type) = t;
351 TYPE_NEXT_VARIANT (new_type) = TYPE_NEXT_VARIANT (t);
352 TYPE_NEXT_VARIANT (t) = new_type;
354 else
356 TYPE_MAIN_VARIANT (new_type) = new_type;
357 TYPE_NEXT_VARIANT (new_type) = NULL;
360 return new_type;
363 /* Build variant of function decl ORIG_DECL skipping ARGS_TO_SKIP and the
364 return value if SKIP_RETURN is true.
366 Arguments from DECL_ARGUMENTS list can't be removed now, since they are
367 linked by TREE_CHAIN directly. The caller is responsible for eliminating
368 them when they are being duplicated (i.e. copy_arguments_for_versioning). */
370 static tree
371 build_function_decl_skip_args (tree orig_decl, bitmap args_to_skip,
372 bool skip_return)
374 tree new_decl = copy_node (orig_decl);
375 tree new_type;
377 new_type = TREE_TYPE (orig_decl);
378 if (prototype_p (new_type)
379 || (skip_return && !VOID_TYPE_P (TREE_TYPE (new_type))))
380 new_type
381 = build_function_type_skip_args (new_type, args_to_skip, skip_return);
382 TREE_TYPE (new_decl) = new_type;
384 /* For declarations setting DECL_VINDEX (i.e. methods)
385 we expect first argument to be THIS pointer. */
386 if (args_to_skip && bitmap_bit_p (args_to_skip, 0))
387 DECL_VINDEX (new_decl) = NULL_TREE;
389 /* When signature changes, we need to clear builtin info. */
390 if (DECL_BUILT_IN (new_decl)
391 && args_to_skip
392 && !bitmap_empty_p (args_to_skip))
394 DECL_BUILT_IN_CLASS (new_decl) = NOT_BUILT_IN;
395 DECL_FUNCTION_CODE (new_decl) = (enum built_in_function) 0;
397 /* The FE might have information and assumptions about the other
398 arguments. */
399 DECL_LANG_SPECIFIC (new_decl) = NULL;
400 return new_decl;
403 /* Create callgraph node clone with new declaration. The actual body will
404 be copied later at compilation stage.
406 TODO: after merging in ipa-sra use function call notes instead of args_to_skip
407 bitmap interface.
409 struct cgraph_node *
410 cgraph_create_virtual_clone (struct cgraph_node *old_node,
411 vec<cgraph_edge_p> redirect_callers,
412 vec<ipa_replace_map_p, va_gc> *tree_map,
413 bitmap args_to_skip,
414 const char * suffix)
416 tree old_decl = old_node->decl;
417 struct cgraph_node *new_node = NULL;
418 tree new_decl;
419 size_t len, i;
420 struct ipa_replace_map *map;
421 char *name;
423 if (!in_lto_p)
424 gcc_checking_assert (tree_versionable_function_p (old_decl));
426 gcc_assert (old_node->local.can_change_signature || !args_to_skip);
428 /* Make a new FUNCTION_DECL tree node */
429 if (!args_to_skip)
430 new_decl = copy_node (old_decl);
431 else
432 new_decl = build_function_decl_skip_args (old_decl, args_to_skip, false);
434 /* These pointers represent function body and will be populated only when clone
435 is materialized. */
436 gcc_assert (new_decl != old_decl);
437 DECL_STRUCT_FUNCTION (new_decl) = NULL;
438 DECL_ARGUMENTS (new_decl) = NULL;
439 DECL_INITIAL (new_decl) = NULL;
440 DECL_RESULT (new_decl) = NULL;
441 /* We can not do DECL_RESULT (new_decl) = NULL; here because of LTO partitioning
442 sometimes storing only clone decl instead of original. */
444 /* Generate a new name for the new version. */
445 len = IDENTIFIER_LENGTH (DECL_NAME (old_decl));
446 name = XALLOCAVEC (char, len + strlen (suffix) + 2);
447 memcpy (name, IDENTIFIER_POINTER (DECL_NAME (old_decl)), len);
448 strcpy (name + len + 1, suffix);
449 name[len] = '.';
450 DECL_NAME (new_decl) = get_identifier (name);
451 SET_DECL_ASSEMBLER_NAME (new_decl, clone_function_name (old_decl, suffix));
452 SET_DECL_RTL (new_decl, NULL);
454 new_node = cgraph_clone_node (old_node, new_decl, old_node->count,
455 CGRAPH_FREQ_BASE, false,
456 redirect_callers, false, NULL);
457 /* Update the properties.
458 Make clone visible only within this translation unit. Make sure
459 that is not weak also.
460 ??? We cannot use COMDAT linkage because there is no
461 ABI support for this. */
462 DECL_EXTERNAL (new_node->decl) = 0;
463 if (DECL_ONE_ONLY (old_decl))
464 DECL_SECTION_NAME (new_node->decl) = NULL;
465 DECL_COMDAT_GROUP (new_node->decl) = 0;
466 TREE_PUBLIC (new_node->decl) = 0;
467 DECL_COMDAT (new_node->decl) = 0;
468 DECL_WEAK (new_node->decl) = 0;
469 DECL_VIRTUAL_P (new_node->decl) = 0;
470 DECL_STATIC_CONSTRUCTOR (new_node->decl) = 0;
471 DECL_STATIC_DESTRUCTOR (new_node->decl) = 0;
472 new_node->clone.tree_map = tree_map;
473 new_node->clone.args_to_skip = args_to_skip;
475 /* Clones of global symbols or symbols with unique names are unique. */
476 if ((TREE_PUBLIC (old_decl)
477 && !DECL_EXTERNAL (old_decl)
478 && !DECL_WEAK (old_decl)
479 && !DECL_COMDAT (old_decl))
480 || in_lto_p)
481 new_node->unique_name = true;
482 FOR_EACH_VEC_SAFE_ELT (tree_map, i, map)
483 ipa_maybe_record_reference (new_node, map->new_tree,
484 IPA_REF_ADDR, NULL);
485 if (!args_to_skip)
486 new_node->clone.combined_args_to_skip = old_node->clone.combined_args_to_skip;
487 else if (old_node->clone.combined_args_to_skip)
489 int newi = 0, oldi = 0;
490 tree arg;
491 bitmap new_args_to_skip = BITMAP_GGC_ALLOC ();
492 struct cgraph_node *orig_node;
493 for (orig_node = old_node; orig_node->clone_of; orig_node = orig_node->clone_of)
495 for (arg = DECL_ARGUMENTS (orig_node->decl);
496 arg; arg = DECL_CHAIN (arg), oldi++)
498 if (bitmap_bit_p (old_node->clone.combined_args_to_skip, oldi))
500 bitmap_set_bit (new_args_to_skip, oldi);
501 continue;
503 if (bitmap_bit_p (args_to_skip, newi))
504 bitmap_set_bit (new_args_to_skip, oldi);
505 newi++;
507 new_node->clone.combined_args_to_skip = new_args_to_skip;
509 else
510 new_node->clone.combined_args_to_skip = args_to_skip;
511 new_node->externally_visible = 0;
512 new_node->local.local = 1;
513 new_node->lowered = true;
515 cgraph_call_node_duplication_hooks (old_node, new_node);
518 return new_node;
521 /* NODE is being removed from symbol table; see if its entry can be replaced by
522 other inline clone. */
523 struct cgraph_node *
524 cgraph_find_replacement_node (struct cgraph_node *node)
526 struct cgraph_node *next_inline_clone, *replacement;
528 for (next_inline_clone = node->clones;
529 next_inline_clone
530 && next_inline_clone->decl != node->decl;
531 next_inline_clone = next_inline_clone->next_sibling_clone)
534 /* If there is inline clone of the node being removed, we need
535 to put it into the position of removed node and reorganize all
536 other clones to be based on it. */
537 if (next_inline_clone)
539 struct cgraph_node *n;
540 struct cgraph_node *new_clones;
542 replacement = next_inline_clone;
544 /* Unlink inline clone from the list of clones of removed node. */
545 if (next_inline_clone->next_sibling_clone)
546 next_inline_clone->next_sibling_clone->prev_sibling_clone
547 = next_inline_clone->prev_sibling_clone;
548 if (next_inline_clone->prev_sibling_clone)
550 gcc_assert (node->clones != next_inline_clone);
551 next_inline_clone->prev_sibling_clone->next_sibling_clone
552 = next_inline_clone->next_sibling_clone;
554 else
556 gcc_assert (node->clones == next_inline_clone);
557 node->clones = next_inline_clone->next_sibling_clone;
560 new_clones = node->clones;
561 node->clones = NULL;
563 /* Copy clone info. */
564 next_inline_clone->clone = node->clone;
566 /* Now place it into clone tree at same level at NODE. */
567 next_inline_clone->clone_of = node->clone_of;
568 next_inline_clone->prev_sibling_clone = NULL;
569 next_inline_clone->next_sibling_clone = NULL;
570 if (node->clone_of)
572 if (node->clone_of->clones)
573 node->clone_of->clones->prev_sibling_clone = next_inline_clone;
574 next_inline_clone->next_sibling_clone = node->clone_of->clones;
575 node->clone_of->clones = next_inline_clone;
578 /* Merge the clone list. */
579 if (new_clones)
581 if (!next_inline_clone->clones)
582 next_inline_clone->clones = new_clones;
583 else
585 n = next_inline_clone->clones;
586 while (n->next_sibling_clone)
587 n = n->next_sibling_clone;
588 n->next_sibling_clone = new_clones;
589 new_clones->prev_sibling_clone = n;
593 /* Update clone_of pointers. */
594 n = new_clones;
595 while (n)
597 n->clone_of = next_inline_clone;
598 n = n->next_sibling_clone;
600 return replacement;
602 else
603 return NULL;
606 /* Like cgraph_set_call_stmt but walk the clone tree and update all
607 clones sharing the same function body.
608 When WHOLE_SPECULATIVE_EDGES is true, all three components of
609 speculative edge gets updated. Otherwise we update only direct
610 call. */
612 void
613 cgraph_set_call_stmt_including_clones (struct cgraph_node *orig,
614 gimple old_stmt, gimple new_stmt,
615 bool update_speculative)
617 struct cgraph_node *node;
618 struct cgraph_edge *edge = cgraph_edge (orig, old_stmt);
620 if (edge)
621 cgraph_set_call_stmt (edge, new_stmt, update_speculative);
623 node = orig->clones;
624 if (node)
625 while (node != orig)
627 struct cgraph_edge *edge = cgraph_edge (node, old_stmt);
628 if (edge)
630 cgraph_set_call_stmt (edge, new_stmt, update_speculative);
631 /* If UPDATE_SPECULATIVE is false, it means that we are turning
632 speculative call into a real code sequence. Update the
633 callgraph edges. */
634 if (edge->speculative && !update_speculative)
636 struct cgraph_edge *direct, *indirect;
637 struct ipa_ref *ref;
639 gcc_assert (!edge->indirect_unknown_callee);
640 cgraph_speculative_call_info (edge, direct, indirect, ref);
641 direct->speculative = false;
642 indirect->speculative = false;
643 ref->speculative = false;
646 if (node->clones)
647 node = node->clones;
648 else if (node->next_sibling_clone)
649 node = node->next_sibling_clone;
650 else
652 while (node != orig && !node->next_sibling_clone)
653 node = node->clone_of;
654 if (node != orig)
655 node = node->next_sibling_clone;
660 /* Like cgraph_create_edge walk the clone tree and update all clones sharing
661 same function body. If clones already have edge for OLD_STMT; only
662 update the edge same way as cgraph_set_call_stmt_including_clones does.
664 TODO: COUNT and LOOP_DEPTH should be properly distributed based on relative
665 frequencies of the clones. */
667 void
668 cgraph_create_edge_including_clones (struct cgraph_node *orig,
669 struct cgraph_node *callee,
670 gimple old_stmt,
671 gimple stmt, gcov_type count,
672 int freq,
673 cgraph_inline_failed_t reason)
675 struct cgraph_node *node;
676 struct cgraph_edge *edge;
678 if (!cgraph_edge (orig, stmt))
680 edge = cgraph_create_edge (orig, callee, stmt, count, freq);
681 edge->inline_failed = reason;
684 node = orig->clones;
685 if (node)
686 while (node != orig)
688 struct cgraph_edge *edge = cgraph_edge (node, old_stmt);
690 /* It is possible that clones already contain the edge while
691 master didn't. Either we promoted indirect call into direct
692 call in the clone or we are processing clones of unreachable
693 master where edges has been removed. */
694 if (edge)
695 cgraph_set_call_stmt (edge, stmt);
696 else if (!cgraph_edge (node, stmt))
698 edge = cgraph_create_edge (node, callee, stmt, count,
699 freq);
700 edge->inline_failed = reason;
703 if (node->clones)
704 node = node->clones;
705 else if (node->next_sibling_clone)
706 node = node->next_sibling_clone;
707 else
709 while (node != orig && !node->next_sibling_clone)
710 node = node->clone_of;
711 if (node != orig)
712 node = node->next_sibling_clone;
717 /* Remove the node from cgraph and all inline clones inlined into it.
718 Skip however removal of FORBIDDEN_NODE and return true if it needs to be
719 removed. This allows to call the function from outer loop walking clone
720 tree. */
722 bool
723 cgraph_remove_node_and_inline_clones (struct cgraph_node *node, struct cgraph_node *forbidden_node)
725 struct cgraph_edge *e, *next;
726 bool found = false;
728 if (node == forbidden_node)
730 cgraph_remove_edge (node->callers);
731 return true;
733 for (e = node->callees; e; e = next)
735 next = e->next_callee;
736 if (!e->inline_failed)
737 found |= cgraph_remove_node_and_inline_clones (e->callee, forbidden_node);
739 cgraph_remove_node (node);
740 return found;
743 /* The edges representing the callers of the NEW_VERSION node were
744 fixed by cgraph_function_versioning (), now the call_expr in their
745 respective tree code should be updated to call the NEW_VERSION. */
747 static void
748 update_call_expr (struct cgraph_node *new_version)
750 struct cgraph_edge *e;
752 gcc_assert (new_version);
754 /* Update the call expr on the edges to call the new version. */
755 for (e = new_version->callers; e; e = e->next_caller)
757 struct function *inner_function = DECL_STRUCT_FUNCTION (e->caller->decl);
758 gimple_call_set_fndecl (e->call_stmt, new_version->decl);
759 maybe_clean_eh_stmt_fn (inner_function, e->call_stmt);
764 /* Create a new cgraph node which is the new version of
765 OLD_VERSION node. REDIRECT_CALLERS holds the callers
766 edges which should be redirected to point to
767 NEW_VERSION. ALL the callees edges of OLD_VERSION
768 are cloned to the new version node. Return the new
769 version node.
771 If non-NULL BLOCK_TO_COPY determine what basic blocks
772 was copied to prevent duplications of calls that are dead
773 in the clone. */
775 struct cgraph_node *
776 cgraph_copy_node_for_versioning (struct cgraph_node *old_version,
777 tree new_decl,
778 vec<cgraph_edge_p> redirect_callers,
779 bitmap bbs_to_copy)
781 struct cgraph_node *new_version;
782 struct cgraph_edge *e;
783 unsigned i;
785 gcc_assert (old_version);
787 new_version = cgraph_create_node (new_decl);
789 new_version->analyzed = old_version->analyzed;
790 new_version->definition = old_version->definition;
791 new_version->local = old_version->local;
792 new_version->externally_visible = false;
793 new_version->local.local = new_version->definition;
794 new_version->global = old_version->global;
795 new_version->rtl = old_version->rtl;
796 new_version->count = old_version->count;
798 for (e = old_version->callees; e; e=e->next_callee)
799 if (!bbs_to_copy
800 || bitmap_bit_p (bbs_to_copy, gimple_bb (e->call_stmt)->index))
801 cgraph_clone_edge (e, new_version, e->call_stmt,
802 e->lto_stmt_uid, REG_BR_PROB_BASE,
803 CGRAPH_FREQ_BASE,
804 true);
805 for (e = old_version->indirect_calls; e; e=e->next_callee)
806 if (!bbs_to_copy
807 || bitmap_bit_p (bbs_to_copy, gimple_bb (e->call_stmt)->index))
808 cgraph_clone_edge (e, new_version, e->call_stmt,
809 e->lto_stmt_uid, REG_BR_PROB_BASE,
810 CGRAPH_FREQ_BASE,
811 true);
812 FOR_EACH_VEC_ELT (redirect_callers, i, e)
814 /* Redirect calls to the old version node to point to its new
815 version. */
816 cgraph_redirect_edge_callee (e, new_version);
819 cgraph_call_node_duplication_hooks (old_version, new_version);
821 return new_version;
824 /* Perform function versioning.
825 Function versioning includes copying of the tree and
826 a callgraph update (creating a new cgraph node and updating
827 its callees and callers).
829 REDIRECT_CALLERS varray includes the edges to be redirected
830 to the new version.
832 TREE_MAP is a mapping of tree nodes we want to replace with
833 new ones (according to results of prior analysis).
834 OLD_VERSION_NODE is the node that is versioned.
836 If non-NULL ARGS_TO_SKIP determine function parameters to remove
837 from new version.
838 If SKIP_RETURN is true, the new version will return void.
839 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
840 If non_NULL NEW_ENTRY determine new entry BB of the clone.
842 Return the new version's cgraph node. */
844 struct cgraph_node *
845 cgraph_function_versioning (struct cgraph_node *old_version_node,
846 vec<cgraph_edge_p> redirect_callers,
847 vec<ipa_replace_map_p, va_gc> *tree_map,
848 bitmap args_to_skip,
849 bool skip_return,
850 bitmap bbs_to_copy,
851 basic_block new_entry_block,
852 const char *clone_name)
854 tree old_decl = old_version_node->decl;
855 struct cgraph_node *new_version_node = NULL;
856 tree new_decl;
858 if (!tree_versionable_function_p (old_decl))
859 return NULL;
861 gcc_assert (old_version_node->local.can_change_signature || !args_to_skip);
863 /* Make a new FUNCTION_DECL tree node for the new version. */
864 if (!args_to_skip && !skip_return)
865 new_decl = copy_node (old_decl);
866 else
867 new_decl
868 = build_function_decl_skip_args (old_decl, args_to_skip, skip_return);
870 /* Generate a new name for the new version. */
871 DECL_NAME (new_decl) = clone_function_name (old_decl, clone_name);
872 SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
873 SET_DECL_RTL (new_decl, NULL);
875 /* When the old decl was a con-/destructor make sure the clone isn't. */
876 DECL_STATIC_CONSTRUCTOR (new_decl) = 0;
877 DECL_STATIC_DESTRUCTOR (new_decl) = 0;
879 /* Create the new version's call-graph node.
880 and update the edges of the new node. */
881 new_version_node =
882 cgraph_copy_node_for_versioning (old_version_node, new_decl,
883 redirect_callers, bbs_to_copy);
885 /* Copy the OLD_VERSION_NODE function tree to the new version. */
886 tree_function_versioning (old_decl, new_decl, tree_map, false, args_to_skip,
887 skip_return, bbs_to_copy, new_entry_block);
889 /* Update the new version's properties.
890 Make The new version visible only within this translation unit. Make sure
891 that is not weak also.
892 ??? We cannot use COMDAT linkage because there is no
893 ABI support for this. */
894 symtab_make_decl_local (new_version_node->decl);
895 DECL_VIRTUAL_P (new_version_node->decl) = 0;
896 new_version_node->externally_visible = 0;
897 new_version_node->local.local = 1;
898 new_version_node->lowered = true;
899 /* Clones of global symbols or symbols with unique names are unique. */
900 if ((TREE_PUBLIC (old_decl)
901 && !DECL_EXTERNAL (old_decl)
902 && !DECL_WEAK (old_decl)
903 && !DECL_COMDAT (old_decl))
904 || in_lto_p)
905 new_version_node->unique_name = true;
907 /* Update the call_expr on the edges to call the new version node. */
908 update_call_expr (new_version_node);
910 cgraph_call_function_insertion_hooks (new_version_node);
911 return new_version_node;
914 /* Given virtual clone, turn it into actual clone. */
916 static void
917 cgraph_materialize_clone (struct cgraph_node *node)
919 bitmap_obstack_initialize (NULL);
920 node->former_clone_of = node->clone_of->decl;
921 if (node->clone_of->former_clone_of)
922 node->former_clone_of = node->clone_of->former_clone_of;
923 /* Copy the OLD_VERSION_NODE function tree to the new version. */
924 tree_function_versioning (node->clone_of->decl, node->decl,
925 node->clone.tree_map, true,
926 node->clone.args_to_skip, false,
927 NULL, NULL);
928 if (cgraph_dump_file)
930 dump_function_to_file (node->clone_of->decl, cgraph_dump_file, dump_flags);
931 dump_function_to_file (node->decl, cgraph_dump_file, dump_flags);
934 /* Function is no longer clone. */
935 if (node->next_sibling_clone)
936 node->next_sibling_clone->prev_sibling_clone = node->prev_sibling_clone;
937 if (node->prev_sibling_clone)
938 node->prev_sibling_clone->next_sibling_clone = node->next_sibling_clone;
939 else
940 node->clone_of->clones = node->next_sibling_clone;
941 node->next_sibling_clone = NULL;
942 node->prev_sibling_clone = NULL;
943 if (!node->clone_of->analyzed && !node->clone_of->clones)
945 cgraph_release_function_body (node->clone_of);
946 cgraph_node_remove_callees (node->clone_of);
947 ipa_remove_all_references (&node->clone_of->ref_list);
949 node->clone_of = NULL;
950 bitmap_obstack_release (NULL);
953 /* Once all functions from compilation unit are in memory, produce all clones
954 and update all calls. We might also do this on demand if we don't want to
955 bring all functions to memory prior compilation, but current WHOPR
956 implementation does that and it is is bit easier to keep everything right in
957 this order. */
959 void
960 cgraph_materialize_all_clones (void)
962 struct cgraph_node *node;
963 bool stabilized = false;
966 if (cgraph_dump_file)
967 fprintf (cgraph_dump_file, "Materializing clones\n");
968 #ifdef ENABLE_CHECKING
969 verify_cgraph ();
970 #endif
972 /* We can also do topological order, but number of iterations should be
973 bounded by number of IPA passes since single IPA pass is probably not
974 going to create clones of clones it created itself. */
975 while (!stabilized)
977 stabilized = true;
978 FOR_EACH_FUNCTION (node)
980 if (node->clone_of && node->decl != node->clone_of->decl
981 && !gimple_has_body_p (node->decl))
983 if (!node->clone_of->clone_of)
984 cgraph_get_body (node->clone_of);
985 if (gimple_has_body_p (node->clone_of->decl))
987 if (cgraph_dump_file)
989 fprintf (cgraph_dump_file, "cloning %s to %s\n",
990 xstrdup (node->clone_of->name ()),
991 xstrdup (node->name ()));
992 if (node->clone.tree_map)
994 unsigned int i;
995 fprintf (cgraph_dump_file, " replace map: ");
996 for (i = 0;
997 i < vec_safe_length (node->clone.tree_map);
998 i++)
1000 struct ipa_replace_map *replace_info;
1001 replace_info = (*node->clone.tree_map)[i];
1002 print_generic_expr (cgraph_dump_file, replace_info->old_tree, 0);
1003 fprintf (cgraph_dump_file, " -> ");
1004 print_generic_expr (cgraph_dump_file, replace_info->new_tree, 0);
1005 fprintf (cgraph_dump_file, "%s%s;",
1006 replace_info->replace_p ? "(replace)":"",
1007 replace_info->ref_p ? "(ref)":"");
1009 fprintf (cgraph_dump_file, "\n");
1011 if (node->clone.args_to_skip)
1013 fprintf (cgraph_dump_file, " args_to_skip: ");
1014 dump_bitmap (cgraph_dump_file, node->clone.args_to_skip);
1016 if (node->clone.args_to_skip)
1018 fprintf (cgraph_dump_file, " combined_args_to_skip:");
1019 dump_bitmap (cgraph_dump_file, node->clone.combined_args_to_skip);
1022 cgraph_materialize_clone (node);
1023 stabilized = false;
1028 FOR_EACH_FUNCTION (node)
1029 if (!node->analyzed && node->callees)
1031 cgraph_node_remove_callees (node);
1032 ipa_remove_all_references (&node->ref_list);
1034 else
1035 ipa_clear_stmts_in_references (node);
1036 if (cgraph_dump_file)
1037 fprintf (cgraph_dump_file, "Materialization Call site updates done.\n");
1038 #ifdef ENABLE_CHECKING
1039 verify_cgraph ();
1040 #endif
1041 symtab_remove_unreachable_nodes (false, cgraph_dump_file);
1044 #include "gt-cgraphclones.h"