]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cgraphclones.c
71b9269f984ffd194184e11de163292d88a8d7e1
[thirdparty/gcc.git] / gcc / cgraphclones.c
1 /* Callgraph clones
2 Copyright (C) 2003-2014 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
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.
24
25 To allow whole program optimization without actual presence of function
26 bodies, an additional infrastructure is provided for so-called virtual
27 clones
28
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).
32
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.
38
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.
42
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.
50
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.
54
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.
61
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. */
66
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"
104
105 /* Create clone of edge in the node N represented by CALL_EXPR
106 the callgraph. */
107
108 cgraph_edge *
109 cgraph_edge::clone (cgraph_node *n, gimple call_stmt, unsigned stmt_uid,
110 gcov_type count_scale, int freq_scale, bool update_original)
111 {
112 cgraph_edge *new_edge;
113 gcov_type gcov_count = apply_probability (count, count_scale);
114 gcov_type freq;
115
116 /* We do not want to ignore loop nest after frequency drops to 0. */
117 if (!freq_scale)
118 freq_scale = 1;
119 freq = frequency * (gcov_type) freq_scale / CGRAPH_FREQ_BASE;
120 if (freq > CGRAPH_FREQ_MAX)
121 freq = CGRAPH_FREQ_MAX;
122
123 if (indirect_unknown_callee)
124 {
125 tree decl;
126
127 if (call_stmt && (decl = gimple_call_fndecl (call_stmt))
128 /* When the call is speculative, we need to resolve it
129 via cgraph_resolve_speculation and not here. */
130 && !speculative)
131 {
132 cgraph_node *callee = cgraph_node::get (decl);
133 gcc_checking_assert (callee);
134 new_edge = n->create_edge (callee, call_stmt, gcov_count, freq);
135 }
136 else
137 {
138 new_edge = n->create_indirect_edge (call_stmt,
139 indirect_info->ecf_flags,
140 count, freq, false);
141 *new_edge->indirect_info = *indirect_info;
142 }
143 }
144 else
145 {
146 new_edge = n->create_edge (callee, call_stmt, gcov_count, freq);
147 if (indirect_info)
148 {
149 new_edge->indirect_info
150 = ggc_cleared_alloc<cgraph_indirect_call_info> ();
151 *new_edge->indirect_info = *indirect_info;
152 }
153 }
154
155 new_edge->inline_failed = inline_failed;
156 new_edge->indirect_inlining_edge = indirect_inlining_edge;
157 new_edge->lto_stmt_uid = stmt_uid;
158 /* Clone flags that depend on call_stmt availability manually. */
159 new_edge->can_throw_external = can_throw_external;
160 new_edge->call_stmt_cannot_inline_p = call_stmt_cannot_inline_p;
161 new_edge->speculative = speculative;
162 new_edge->in_polymorphic_cdtor = in_polymorphic_cdtor;
163 if (update_original)
164 {
165 count -= new_edge->count;
166 if (count < 0)
167 count = 0;
168 }
169 symtab->call_edge_duplication_hooks (this, new_edge);
170 return new_edge;
171 }
172
173 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP and the
174 return value if SKIP_RETURN is true. */
175
176 static tree
177 build_function_type_skip_args (tree orig_type, bitmap args_to_skip,
178 bool skip_return)
179 {
180 tree new_type = NULL;
181 tree args, new_args = NULL;
182 tree new_reversed;
183 int i = 0;
184
185 for (args = TYPE_ARG_TYPES (orig_type); args && args != void_list_node;
186 args = TREE_CHAIN (args), i++)
187 if (!args_to_skip || !bitmap_bit_p (args_to_skip, i))
188 new_args = tree_cons (NULL_TREE, TREE_VALUE (args), new_args);
189
190 new_reversed = nreverse (new_args);
191 if (args)
192 {
193 if (new_reversed)
194 TREE_CHAIN (new_args) = void_list_node;
195 else
196 new_reversed = void_list_node;
197 }
198
199 /* Use copy_node to preserve as much as possible from original type
200 (debug info, attribute lists etc.)
201 Exception is METHOD_TYPEs must have THIS argument.
202 When we are asked to remove it, we need to build new FUNCTION_TYPE
203 instead. */
204 if (TREE_CODE (orig_type) != METHOD_TYPE
205 || !args_to_skip
206 || !bitmap_bit_p (args_to_skip, 0))
207 {
208 new_type = build_distinct_type_copy (orig_type);
209 TYPE_ARG_TYPES (new_type) = new_reversed;
210 }
211 else
212 {
213 new_type
214 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type),
215 new_reversed));
216 TYPE_CONTEXT (new_type) = TYPE_CONTEXT (orig_type);
217 }
218
219 if (skip_return)
220 TREE_TYPE (new_type) = void_type_node;
221
222 return new_type;
223 }
224
225 /* Build variant of function decl ORIG_DECL skipping ARGS_TO_SKIP and the
226 return value if SKIP_RETURN is true.
227
228 Arguments from DECL_ARGUMENTS list can't be removed now, since they are
229 linked by TREE_CHAIN directly. The caller is responsible for eliminating
230 them when they are being duplicated (i.e. copy_arguments_for_versioning). */
231
232 static tree
233 build_function_decl_skip_args (tree orig_decl, bitmap args_to_skip,
234 bool skip_return)
235 {
236 tree new_decl = copy_node (orig_decl);
237 tree new_type;
238
239 new_type = TREE_TYPE (orig_decl);
240 if (prototype_p (new_type)
241 || (skip_return && !VOID_TYPE_P (TREE_TYPE (new_type))))
242 new_type
243 = build_function_type_skip_args (new_type, args_to_skip, skip_return);
244 TREE_TYPE (new_decl) = new_type;
245
246 /* For declarations setting DECL_VINDEX (i.e. methods)
247 we expect first argument to be THIS pointer. */
248 if (args_to_skip && bitmap_bit_p (args_to_skip, 0))
249 DECL_VINDEX (new_decl) = NULL_TREE;
250
251 /* When signature changes, we need to clear builtin info. */
252 if (DECL_BUILT_IN (new_decl)
253 && args_to_skip
254 && !bitmap_empty_p (args_to_skip))
255 {
256 DECL_BUILT_IN_CLASS (new_decl) = NOT_BUILT_IN;
257 DECL_FUNCTION_CODE (new_decl) = (enum built_in_function) 0;
258 }
259 /* The FE might have information and assumptions about the other
260 arguments. */
261 DECL_LANG_SPECIFIC (new_decl) = NULL;
262 return new_decl;
263 }
264
265 /* Set flags of NEW_NODE and its decl. NEW_NODE is a newly created private
266 clone or its thunk. */
267
268 static void
269 set_new_clone_decl_and_node_flags (cgraph_node *new_node)
270 {
271 DECL_EXTERNAL (new_node->decl) = 0;
272 TREE_PUBLIC (new_node->decl) = 0;
273 DECL_COMDAT (new_node->decl) = 0;
274 DECL_WEAK (new_node->decl) = 0;
275 DECL_VIRTUAL_P (new_node->decl) = 0;
276 DECL_STATIC_CONSTRUCTOR (new_node->decl) = 0;
277 DECL_STATIC_DESTRUCTOR (new_node->decl) = 0;
278
279 new_node->externally_visible = 0;
280 new_node->local.local = 1;
281 new_node->lowered = true;
282 }
283
284 /* Duplicate thunk THUNK if necessary but make it to refer to NODE.
285 ARGS_TO_SKIP, if non-NULL, determines which parameters should be omitted.
286 Function can return NODE if no thunk is necessary, which can happen when
287 thunk is this_adjusting but we are removing this parameter. */
288
289 static cgraph_node *
290 duplicate_thunk_for_node (cgraph_node *thunk, cgraph_node *node)
291 {
292 cgraph_node *new_thunk, *thunk_of;
293 thunk_of = thunk->callees->callee->ultimate_alias_target ();
294
295 if (thunk_of->thunk.thunk_p)
296 node = duplicate_thunk_for_node (thunk_of, node);
297
298 if (!DECL_ARGUMENTS (thunk->decl))
299 thunk->get_body ();
300
301 cgraph_edge *cs;
302 for (cs = node->callers; cs; cs = cs->next_caller)
303 if (cs->caller->thunk.thunk_p
304 && cs->caller->thunk.this_adjusting == thunk->thunk.this_adjusting
305 && cs->caller->thunk.fixed_offset == thunk->thunk.fixed_offset
306 && cs->caller->thunk.virtual_offset_p == thunk->thunk.virtual_offset_p
307 && cs->caller->thunk.virtual_value == thunk->thunk.virtual_value)
308 return cs->caller;
309
310 tree new_decl;
311 if (!node->clone.args_to_skip)
312 new_decl = copy_node (thunk->decl);
313 else
314 {
315 /* We do not need to duplicate this_adjusting thunks if we have removed
316 this. */
317 if (thunk->thunk.this_adjusting
318 && bitmap_bit_p (node->clone.args_to_skip, 0))
319 return node;
320
321 new_decl = build_function_decl_skip_args (thunk->decl,
322 node->clone.args_to_skip,
323 false);
324 }
325
326 tree *link = &DECL_ARGUMENTS (new_decl);
327 int i = 0;
328 for (tree pd = DECL_ARGUMENTS (thunk->decl); pd; pd = DECL_CHAIN (pd), i++)
329 {
330 if (!node->clone.args_to_skip
331 || !bitmap_bit_p (node->clone.args_to_skip, i))
332 {
333 tree nd = copy_node (pd);
334 DECL_CONTEXT (nd) = new_decl;
335 *link = nd;
336 link = &DECL_CHAIN (nd);
337 }
338 }
339 *link = NULL_TREE;
340
341 gcc_checking_assert (!DECL_STRUCT_FUNCTION (new_decl));
342 gcc_checking_assert (!DECL_INITIAL (new_decl));
343 gcc_checking_assert (!DECL_RESULT (new_decl));
344 gcc_checking_assert (!DECL_RTL_SET_P (new_decl));
345
346 DECL_NAME (new_decl) = clone_function_name (thunk->decl, "artificial_thunk");
347 SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
348
349 new_thunk = cgraph_node::create (new_decl);
350 set_new_clone_decl_and_node_flags (new_thunk);
351 new_thunk->definition = true;
352 new_thunk->thunk = thunk->thunk;
353 new_thunk->unique_name = in_lto_p;
354 new_thunk->former_clone_of = thunk->decl;
355 new_thunk->clone.args_to_skip = node->clone.args_to_skip;
356 new_thunk->clone.combined_args_to_skip = node->clone.combined_args_to_skip;
357
358 cgraph_edge *e = new_thunk->create_edge (node, NULL, 0,
359 CGRAPH_FREQ_BASE);
360 e->call_stmt_cannot_inline_p = true;
361 symtab->call_edge_duplication_hooks (thunk->callees, e);
362 if (new_thunk->expand_thunk (false, false))
363 {
364 new_thunk->thunk.thunk_p = false;
365 new_thunk->analyze ();
366 }
367
368 symtab->call_cgraph_duplication_hooks (thunk, new_thunk);
369 return new_thunk;
370 }
371
372 /* If E does not lead to a thunk, simply redirect it to N. Otherwise create
373 one or more equivalent thunks for N and redirect E to the first in the
374 chain. */
375
376 void
377 redirect_edge_duplicating_thunks (cgraph_edge *e, cgraph_node *n)
378 {
379 cgraph_node *orig_to = e->callee->ultimate_alias_target ();
380 if (orig_to->thunk.thunk_p)
381 n = duplicate_thunk_for_node (orig_to, n);
382
383 e->redirect_callee (n);
384 }
385
386 /* Create node representing clone of N executed COUNT times. Decrease
387 the execution counts from original node too.
388 The new clone will have decl set to DECL that may or may not be the same
389 as decl of N.
390
391 When UPDATE_ORIGINAL is true, the counts are subtracted from the original
392 function's profile to reflect the fact that part of execution is handled
393 by node.
394 When CALL_DUPLICATOIN_HOOK is true, the ipa passes are acknowledged about
395 the new clone. Otherwise the caller is responsible for doing so later.
396
397 If the new node is being inlined into another one, NEW_INLINED_TO should be
398 the outline function the new one is (even indirectly) inlined to. All hooks
399 will see this in node's global.inlined_to, when invoked. Can be NULL if the
400 node is not inlined. */
401
402 cgraph_node *
403 cgraph_node::create_clone (tree decl, gcov_type gcov_count, int freq,
404 bool update_original,
405 vec<cgraph_edge *> redirect_callers,
406 bool call_duplication_hook,
407 cgraph_node *new_inlined_to,
408 bitmap args_to_skip)
409 {
410 cgraph_node *new_node = symtab->create_empty ();
411 cgraph_edge *e;
412 gcov_type count_scale;
413 unsigned i;
414
415 new_node->decl = decl;
416 new_node->register_symbol ();
417 new_node->origin = origin;
418 new_node->lto_file_data = lto_file_data;
419 if (new_node->origin)
420 {
421 new_node->next_nested = new_node->origin->nested;
422 new_node->origin->nested = new_node;
423 }
424 new_node->analyzed = analyzed;
425 new_node->definition = definition;
426 new_node->local = local;
427 new_node->externally_visible = false;
428 new_node->no_reorder = no_reorder;
429 new_node->local.local = true;
430 new_node->global = global;
431 new_node->global.inlined_to = new_inlined_to;
432 new_node->rtl = rtl;
433 new_node->count = count;
434 new_node->frequency = frequency;
435 new_node->tp_first_run = tp_first_run;
436 new_node->tm_clone = tm_clone;
437
438 new_node->clone.tree_map = NULL;
439 new_node->clone.args_to_skip = args_to_skip;
440 if (!args_to_skip)
441 new_node->clone.combined_args_to_skip = clone.combined_args_to_skip;
442 else if (clone.combined_args_to_skip)
443 {
444 new_node->clone.combined_args_to_skip = BITMAP_GGC_ALLOC ();
445 bitmap_ior (new_node->clone.combined_args_to_skip,
446 clone.combined_args_to_skip, args_to_skip);
447 }
448 else
449 new_node->clone.combined_args_to_skip = args_to_skip;
450
451 if (count)
452 {
453 if (new_node->count > count)
454 count_scale = REG_BR_PROB_BASE;
455 else
456 count_scale = GCOV_COMPUTE_SCALE (new_node->count, count);
457 }
458 else
459 count_scale = 0;
460 if (update_original)
461 {
462 count -= gcov_count;
463 if (count < 0)
464 count = 0;
465 }
466
467 FOR_EACH_VEC_ELT (redirect_callers, i, e)
468 {
469 /* Redirect calls to the old version node to point to its new
470 version. The only exception is when the edge was proved to
471 be unreachable during the clonning procedure. */
472 if (!e->callee
473 || DECL_BUILT_IN_CLASS (e->callee->decl) != BUILT_IN_NORMAL
474 || DECL_FUNCTION_CODE (e->callee->decl) != BUILT_IN_UNREACHABLE)
475 redirect_edge_duplicating_thunks (e, new_node);
476 }
477
478 for (e = callees;e; e=e->next_callee)
479 e->clone (new_node, e->call_stmt, e->lto_stmt_uid, count_scale,
480 freq, update_original);
481
482 for (e = indirect_calls; e; e = e->next_callee)
483 e->clone (new_node, e->call_stmt, e->lto_stmt_uid,
484 count_scale, freq, update_original);
485 new_node->clone_references (this);
486
487 new_node->next_sibling_clone = clones;
488 if (clones)
489 clones->prev_sibling_clone = new_node;
490 clones = new_node;
491 new_node->clone_of = this;
492
493 if (call_duplication_hook)
494 symtab->call_cgraph_duplication_hooks (this, new_node);
495 return new_node;
496 }
497
498 /* Return a new assembler name for a clone of DECL with SUFFIX. */
499
500 static GTY(()) unsigned int clone_fn_id_num;
501
502 tree
503 clone_function_name (tree decl, const char *suffix)
504 {
505 tree name = DECL_ASSEMBLER_NAME (decl);
506 size_t len = IDENTIFIER_LENGTH (name);
507 char *tmp_name, *prefix;
508
509 prefix = XALLOCAVEC (char, len + strlen (suffix) + 2);
510 memcpy (prefix, IDENTIFIER_POINTER (name), len);
511 strcpy (prefix + len + 1, suffix);
512 #ifndef NO_DOT_IN_LABEL
513 prefix[len] = '.';
514 #elif !defined NO_DOLLAR_IN_LABEL
515 prefix[len] = '$';
516 #else
517 prefix[len] = '_';
518 #endif
519 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix, clone_fn_id_num++);
520 return get_identifier (tmp_name);
521 }
522
523 /* Create callgraph node clone with new declaration. The actual body will
524 be copied later at compilation stage.
525
526 TODO: after merging in ipa-sra use function call notes instead of args_to_skip
527 bitmap interface.
528 */
529 cgraph_node *
530 cgraph_node::create_virtual_clone (vec<cgraph_edge *> redirect_callers,
531 vec<ipa_replace_map *, va_gc> *tree_map,
532 bitmap args_to_skip, const char * suffix)
533 {
534 tree old_decl = decl;
535 cgraph_node *new_node = NULL;
536 tree new_decl;
537 size_t len, i;
538 ipa_replace_map *map;
539 char *name;
540
541 if (!in_lto_p)
542 gcc_checking_assert (tree_versionable_function_p (old_decl));
543
544 gcc_assert (local.can_change_signature || !args_to_skip);
545
546 /* Make a new FUNCTION_DECL tree node */
547 if (!args_to_skip)
548 new_decl = copy_node (old_decl);
549 else
550 new_decl = build_function_decl_skip_args (old_decl, args_to_skip, false);
551
552 /* These pointers represent function body and will be populated only when clone
553 is materialized. */
554 gcc_assert (new_decl != old_decl);
555 DECL_STRUCT_FUNCTION (new_decl) = NULL;
556 DECL_ARGUMENTS (new_decl) = NULL;
557 DECL_INITIAL (new_decl) = NULL;
558 DECL_RESULT (new_decl) = NULL;
559 /* We can not do DECL_RESULT (new_decl) = NULL; here because of LTO partitioning
560 sometimes storing only clone decl instead of original. */
561
562 /* Generate a new name for the new version. */
563 len = IDENTIFIER_LENGTH (DECL_NAME (old_decl));
564 name = XALLOCAVEC (char, len + strlen (suffix) + 2);
565 memcpy (name, IDENTIFIER_POINTER (DECL_NAME (old_decl)), len);
566 strcpy (name + len + 1, suffix);
567 name[len] = '.';
568 DECL_NAME (new_decl) = get_identifier (name);
569 SET_DECL_ASSEMBLER_NAME (new_decl, clone_function_name (old_decl, suffix));
570 SET_DECL_RTL (new_decl, NULL);
571
572 new_node = create_clone (new_decl, count, CGRAPH_FREQ_BASE, false,
573 redirect_callers, false, NULL, args_to_skip);
574
575 /* Update the properties.
576 Make clone visible only within this translation unit. Make sure
577 that is not weak also.
578 ??? We cannot use COMDAT linkage because there is no
579 ABI support for this. */
580 set_new_clone_decl_and_node_flags (new_node);
581 new_node->clone.tree_map = tree_map;
582
583 /* Clones of global symbols or symbols with unique names are unique. */
584 if ((TREE_PUBLIC (old_decl)
585 && !DECL_EXTERNAL (old_decl)
586 && !DECL_WEAK (old_decl)
587 && !DECL_COMDAT (old_decl))
588 || in_lto_p)
589 new_node->unique_name = true;
590 FOR_EACH_VEC_SAFE_ELT (tree_map, i, map)
591 new_node->maybe_create_reference (map->new_tree, IPA_REF_ADDR, NULL);
592
593 if (ipa_transforms_to_apply.exists ())
594 new_node->ipa_transforms_to_apply
595 = ipa_transforms_to_apply.copy ();
596
597 symtab->call_cgraph_duplication_hooks (this, new_node);
598
599 return new_node;
600 }
601
602 /* callgraph node being removed from symbol table; see if its entry can be
603 replaced by other inline clone. */
604 cgraph_node *
605 cgraph_node::find_replacement (void)
606 {
607 cgraph_node *next_inline_clone, *replacement;
608
609 for (next_inline_clone = clones;
610 next_inline_clone
611 && next_inline_clone->decl != decl;
612 next_inline_clone = next_inline_clone->next_sibling_clone)
613 ;
614
615 /* If there is inline clone of the node being removed, we need
616 to put it into the position of removed node and reorganize all
617 other clones to be based on it. */
618 if (next_inline_clone)
619 {
620 cgraph_node *n;
621 cgraph_node *new_clones;
622
623 replacement = next_inline_clone;
624
625 /* Unlink inline clone from the list of clones of removed node. */
626 if (next_inline_clone->next_sibling_clone)
627 next_inline_clone->next_sibling_clone->prev_sibling_clone
628 = next_inline_clone->prev_sibling_clone;
629 if (next_inline_clone->prev_sibling_clone)
630 {
631 gcc_assert (clones != next_inline_clone);
632 next_inline_clone->prev_sibling_clone->next_sibling_clone
633 = next_inline_clone->next_sibling_clone;
634 }
635 else
636 {
637 gcc_assert (clones == next_inline_clone);
638 clones = next_inline_clone->next_sibling_clone;
639 }
640
641 new_clones = clones;
642 clones = NULL;
643
644 /* Copy clone info. */
645 next_inline_clone->clone = clone;
646
647 /* Now place it into clone tree at same level at NODE. */
648 next_inline_clone->clone_of = clone_of;
649 next_inline_clone->prev_sibling_clone = NULL;
650 next_inline_clone->next_sibling_clone = NULL;
651 if (clone_of)
652 {
653 if (clone_of->clones)
654 clone_of->clones->prev_sibling_clone = next_inline_clone;
655 next_inline_clone->next_sibling_clone = clone_of->clones;
656 clone_of->clones = next_inline_clone;
657 }
658
659 /* Merge the clone list. */
660 if (new_clones)
661 {
662 if (!next_inline_clone->clones)
663 next_inline_clone->clones = new_clones;
664 else
665 {
666 n = next_inline_clone->clones;
667 while (n->next_sibling_clone)
668 n = n->next_sibling_clone;
669 n->next_sibling_clone = new_clones;
670 new_clones->prev_sibling_clone = n;
671 }
672 }
673
674 /* Update clone_of pointers. */
675 n = new_clones;
676 while (n)
677 {
678 n->clone_of = next_inline_clone;
679 n = n->next_sibling_clone;
680 }
681 return replacement;
682 }
683 else
684 return NULL;
685 }
686
687 /* Like cgraph_set_call_stmt but walk the clone tree and update all
688 clones sharing the same function body.
689 When WHOLE_SPECULATIVE_EDGES is true, all three components of
690 speculative edge gets updated. Otherwise we update only direct
691 call. */
692
693 void
694 cgraph_node::set_call_stmt_including_clones (gimple old_stmt, gimple new_stmt,
695 bool update_speculative)
696 {
697 cgraph_node *node;
698 cgraph_edge *edge = get_edge (old_stmt);
699
700 if (edge)
701 edge->set_call_stmt (new_stmt, update_speculative);
702
703 node = clones;
704 if (node)
705 while (node != this)
706 {
707 cgraph_edge *edge = node->get_edge (old_stmt);
708 if (edge)
709 {
710 edge->set_call_stmt (new_stmt, update_speculative);
711 /* If UPDATE_SPECULATIVE is false, it means that we are turning
712 speculative call into a real code sequence. Update the
713 callgraph edges. */
714 if (edge->speculative && !update_speculative)
715 {
716 cgraph_edge *direct, *indirect;
717 ipa_ref *ref;
718
719 gcc_assert (!edge->indirect_unknown_callee);
720 edge->speculative_call_info (direct, indirect, ref);
721 direct->speculative = false;
722 indirect->speculative = false;
723 ref->speculative = false;
724 }
725 }
726 if (node->clones)
727 node = node->clones;
728 else if (node->next_sibling_clone)
729 node = node->next_sibling_clone;
730 else
731 {
732 while (node != this && !node->next_sibling_clone)
733 node = node->clone_of;
734 if (node != this)
735 node = node->next_sibling_clone;
736 }
737 }
738 }
739
740 /* Like cgraph_create_edge walk the clone tree and update all clones sharing
741 same function body. If clones already have edge for OLD_STMT; only
742 update the edge same way as cgraph_set_call_stmt_including_clones does.
743
744 TODO: COUNT and LOOP_DEPTH should be properly distributed based on relative
745 frequencies of the clones. */
746
747 void
748 cgraph_node::create_edge_including_clones (cgraph_node *callee,
749 gimple old_stmt, gimple stmt,
750 gcov_type count,
751 int freq,
752 cgraph_inline_failed_t reason)
753 {
754 cgraph_node *node;
755 cgraph_edge *edge;
756
757 if (!get_edge (stmt))
758 {
759 edge = create_edge (callee, stmt, count, freq);
760 edge->inline_failed = reason;
761 }
762
763 node = clones;
764 if (node)
765 while (node != this)
766 {
767 cgraph_edge *edge = node->get_edge (old_stmt);
768
769 /* It is possible that clones already contain the edge while
770 master didn't. Either we promoted indirect call into direct
771 call in the clone or we are processing clones of unreachable
772 master where edges has been removed. */
773 if (edge)
774 edge->set_call_stmt (stmt);
775 else if (! node->get_edge (stmt))
776 {
777 edge = node->create_edge (callee, stmt, count, freq);
778 edge->inline_failed = reason;
779 }
780
781 if (node->clones)
782 node = node->clones;
783 else if (node->next_sibling_clone)
784 node = node->next_sibling_clone;
785 else
786 {
787 while (node != this && !node->next_sibling_clone)
788 node = node->clone_of;
789 if (node != this)
790 node = node->next_sibling_clone;
791 }
792 }
793 }
794
795 /* Remove the node from cgraph and all inline clones inlined into it.
796 Skip however removal of FORBIDDEN_NODE and return true if it needs to be
797 removed. This allows to call the function from outer loop walking clone
798 tree. */
799
800 bool
801 cgraph_node::remove_symbol_and_inline_clones (cgraph_node *forbidden_node)
802 {
803 cgraph_edge *e, *next;
804 bool found = false;
805
806 if (this == forbidden_node)
807 {
808 callers->remove ();
809 return true;
810 }
811 for (e = callees; e; e = next)
812 {
813 next = e->next_callee;
814 if (!e->inline_failed)
815 found |= e->callee->remove_symbol_and_inline_clones (forbidden_node);
816 }
817 remove ();
818 return found;
819 }
820
821 /* The edges representing the callers of the NEW_VERSION node were
822 fixed by cgraph_function_versioning (), now the call_expr in their
823 respective tree code should be updated to call the NEW_VERSION. */
824
825 static void
826 update_call_expr (cgraph_node *new_version)
827 {
828 cgraph_edge *e;
829
830 gcc_assert (new_version);
831
832 /* Update the call expr on the edges to call the new version. */
833 for (e = new_version->callers; e; e = e->next_caller)
834 {
835 function *inner_function = DECL_STRUCT_FUNCTION (e->caller->decl);
836 gimple_call_set_fndecl (e->call_stmt, new_version->decl);
837 maybe_clean_eh_stmt_fn (inner_function, e->call_stmt);
838 }
839 }
840
841
842 /* Create a new cgraph node which is the new version of
843 callgraph node. REDIRECT_CALLERS holds the callers
844 edges which should be redirected to point to
845 NEW_VERSION. ALL the callees edges of the node
846 are cloned to the new version node. Return the new
847 version node.
848
849 If non-NULL BLOCK_TO_COPY determine what basic blocks
850 was copied to prevent duplications of calls that are dead
851 in the clone. */
852
853 cgraph_node *
854 cgraph_node::create_version_clone (tree new_decl,
855 vec<cgraph_edge *> redirect_callers,
856 bitmap bbs_to_copy)
857 {
858 cgraph_node *new_version;
859 cgraph_edge *e;
860 unsigned i;
861
862 new_version = cgraph_node::create (new_decl);
863
864 new_version->analyzed = analyzed;
865 new_version->definition = definition;
866 new_version->local = local;
867 new_version->externally_visible = false;
868 new_version->no_reorder = no_reorder;
869 new_version->local.local = new_version->definition;
870 new_version->global = global;
871 new_version->rtl = rtl;
872 new_version->count = count;
873
874 for (e = callees; e; e=e->next_callee)
875 if (!bbs_to_copy
876 || bitmap_bit_p (bbs_to_copy, gimple_bb (e->call_stmt)->index))
877 e->clone (new_version, e->call_stmt,
878 e->lto_stmt_uid, REG_BR_PROB_BASE,
879 CGRAPH_FREQ_BASE,
880 true);
881 for (e = indirect_calls; e; e=e->next_callee)
882 if (!bbs_to_copy
883 || bitmap_bit_p (bbs_to_copy, gimple_bb (e->call_stmt)->index))
884 e->clone (new_version, e->call_stmt,
885 e->lto_stmt_uid, REG_BR_PROB_BASE,
886 CGRAPH_FREQ_BASE,
887 true);
888 FOR_EACH_VEC_ELT (redirect_callers, i, e)
889 {
890 /* Redirect calls to the old version node to point to its new
891 version. */
892 e->redirect_callee (new_version);
893 }
894
895 symtab->call_cgraph_duplication_hooks (this, new_version);
896
897 return new_version;
898 }
899
900 /* Perform function versioning.
901 Function versioning includes copying of the tree and
902 a callgraph update (creating a new cgraph node and updating
903 its callees and callers).
904
905 REDIRECT_CALLERS varray includes the edges to be redirected
906 to the new version.
907
908 TREE_MAP is a mapping of tree nodes we want to replace with
909 new ones (according to results of prior analysis).
910
911 If non-NULL ARGS_TO_SKIP determine function parameters to remove
912 from new version.
913 If SKIP_RETURN is true, the new version will return void.
914 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
915 If non_NULL NEW_ENTRY determine new entry BB of the clone.
916
917 Return the new version's cgraph node. */
918
919 cgraph_node *
920 cgraph_node::create_version_clone_with_body
921 (vec<cgraph_edge *> redirect_callers,
922 vec<ipa_replace_map *, va_gc> *tree_map, bitmap args_to_skip,
923 bool skip_return, bitmap bbs_to_copy, basic_block new_entry_block,
924 const char *clone_name)
925 {
926 tree old_decl = decl;
927 cgraph_node *new_version_node = NULL;
928 tree new_decl;
929
930 if (!tree_versionable_function_p (old_decl))
931 return NULL;
932
933 gcc_assert (local.can_change_signature || !args_to_skip);
934
935 /* Make a new FUNCTION_DECL tree node for the new version. */
936 if (!args_to_skip && !skip_return)
937 new_decl = copy_node (old_decl);
938 else
939 new_decl
940 = build_function_decl_skip_args (old_decl, args_to_skip, skip_return);
941
942 /* Generate a new name for the new version. */
943 DECL_NAME (new_decl) = clone_function_name (old_decl, clone_name);
944 SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
945 SET_DECL_RTL (new_decl, NULL);
946
947 /* When the old decl was a con-/destructor make sure the clone isn't. */
948 DECL_STATIC_CONSTRUCTOR (new_decl) = 0;
949 DECL_STATIC_DESTRUCTOR (new_decl) = 0;
950
951 /* Create the new version's call-graph node.
952 and update the edges of the new node. */
953 new_version_node = create_version_clone (new_decl, redirect_callers,
954 bbs_to_copy);
955
956 if (ipa_transforms_to_apply.exists ())
957 new_version_node->ipa_transforms_to_apply
958 = ipa_transforms_to_apply.copy ();
959 /* Copy the OLD_VERSION_NODE function tree to the new version. */
960 tree_function_versioning (old_decl, new_decl, tree_map, false, args_to_skip,
961 skip_return, bbs_to_copy, new_entry_block);
962
963 /* Update the new version's properties.
964 Make The new version visible only within this translation unit. Make sure
965 that is not weak also.
966 ??? We cannot use COMDAT linkage because there is no
967 ABI support for this. */
968 new_version_node->make_decl_local ();
969 DECL_VIRTUAL_P (new_version_node->decl) = 0;
970 new_version_node->externally_visible = 0;
971 new_version_node->local.local = 1;
972 new_version_node->lowered = true;
973 /* Clones of global symbols or symbols with unique names are unique. */
974 if ((TREE_PUBLIC (old_decl)
975 && !DECL_EXTERNAL (old_decl)
976 && !DECL_WEAK (old_decl)
977 && !DECL_COMDAT (old_decl))
978 || in_lto_p)
979 new_version_node->unique_name = true;
980
981 /* Update the call_expr on the edges to call the new version node. */
982 update_call_expr (new_version_node);
983
984 symtab->call_cgraph_insertion_hooks (this);
985 return new_version_node;
986 }
987
988 /* Given virtual clone, turn it into actual clone. */
989
990 static void
991 cgraph_materialize_clone (cgraph_node *node)
992 {
993 bitmap_obstack_initialize (NULL);
994 node->former_clone_of = node->clone_of->decl;
995 if (node->clone_of->former_clone_of)
996 node->former_clone_of = node->clone_of->former_clone_of;
997 /* Copy the OLD_VERSION_NODE function tree to the new version. */
998 tree_function_versioning (node->clone_of->decl, node->decl,
999 node->clone.tree_map, true,
1000 node->clone.args_to_skip, false,
1001 NULL, NULL);
1002 if (symtab->dump_file)
1003 {
1004 dump_function_to_file (node->clone_of->decl, symtab->dump_file,
1005 dump_flags);
1006 dump_function_to_file (node->decl, symtab->dump_file, dump_flags);
1007 }
1008
1009 /* Function is no longer clone. */
1010 if (node->next_sibling_clone)
1011 node->next_sibling_clone->prev_sibling_clone = node->prev_sibling_clone;
1012 if (node->prev_sibling_clone)
1013 node->prev_sibling_clone->next_sibling_clone = node->next_sibling_clone;
1014 else
1015 node->clone_of->clones = node->next_sibling_clone;
1016 node->next_sibling_clone = NULL;
1017 node->prev_sibling_clone = NULL;
1018 if (!node->clone_of->analyzed && !node->clone_of->clones)
1019 {
1020 node->clone_of->release_body ();
1021 node->clone_of->remove_callees ();
1022 node->clone_of->remove_all_references ();
1023 }
1024 node->clone_of = NULL;
1025 bitmap_obstack_release (NULL);
1026 }
1027
1028 /* Once all functions from compilation unit are in memory, produce all clones
1029 and update all calls. We might also do this on demand if we don't want to
1030 bring all functions to memory prior compilation, but current WHOPR
1031 implementation does that and it is is bit easier to keep everything right in
1032 this order. */
1033
1034 void
1035 symbol_table::materialize_all_clones (void)
1036 {
1037 cgraph_node *node;
1038 bool stabilized = false;
1039
1040
1041 if (symtab->dump_file)
1042 fprintf (symtab->dump_file, "Materializing clones\n");
1043 #ifdef ENABLE_CHECKING
1044 cgraph_node::verify_cgraph_nodes ();
1045 #endif
1046
1047 /* We can also do topological order, but number of iterations should be
1048 bounded by number of IPA passes since single IPA pass is probably not
1049 going to create clones of clones it created itself. */
1050 while (!stabilized)
1051 {
1052 stabilized = true;
1053 FOR_EACH_FUNCTION (node)
1054 {
1055 if (node->clone_of && node->decl != node->clone_of->decl
1056 && !gimple_has_body_p (node->decl))
1057 {
1058 if (!node->clone_of->clone_of)
1059 node->clone_of->get_body ();
1060 if (gimple_has_body_p (node->clone_of->decl))
1061 {
1062 if (symtab->dump_file)
1063 {
1064 fprintf (symtab->dump_file, "cloning %s to %s\n",
1065 xstrdup (node->clone_of->name ()),
1066 xstrdup (node->name ()));
1067 if (node->clone.tree_map)
1068 {
1069 unsigned int i;
1070 fprintf (symtab->dump_file, " replace map: ");
1071 for (i = 0;
1072 i < vec_safe_length (node->clone.tree_map);
1073 i++)
1074 {
1075 ipa_replace_map *replace_info;
1076 replace_info = (*node->clone.tree_map)[i];
1077 print_generic_expr (symtab->dump_file, replace_info->old_tree, 0);
1078 fprintf (symtab->dump_file, " -> ");
1079 print_generic_expr (symtab->dump_file, replace_info->new_tree, 0);
1080 fprintf (symtab->dump_file, "%s%s;",
1081 replace_info->replace_p ? "(replace)":"",
1082 replace_info->ref_p ? "(ref)":"");
1083 }
1084 fprintf (symtab->dump_file, "\n");
1085 }
1086 if (node->clone.args_to_skip)
1087 {
1088 fprintf (symtab->dump_file, " args_to_skip: ");
1089 dump_bitmap (symtab->dump_file,
1090 node->clone.args_to_skip);
1091 }
1092 if (node->clone.args_to_skip)
1093 {
1094 fprintf (symtab->dump_file, " combined_args_to_skip:");
1095 dump_bitmap (symtab->dump_file, node->clone.combined_args_to_skip);
1096 }
1097 }
1098 cgraph_materialize_clone (node);
1099 stabilized = false;
1100 }
1101 }
1102 }
1103 }
1104 FOR_EACH_FUNCTION (node)
1105 if (!node->analyzed && node->callees)
1106 {
1107 node->remove_callees ();
1108 node->remove_all_references ();
1109 }
1110 else
1111 node->clear_stmts_in_references ();
1112 if (symtab->dump_file)
1113 fprintf (symtab->dump_file, "Materialization Call site updates done.\n");
1114 #ifdef ENABLE_CHECKING
1115 cgraph_node::verify_cgraph_nodes ();
1116 #endif
1117 symtab->remove_unreachable_nodes (false, symtab->dump_file);
1118 }
1119
1120 #include "gt-cgraphclones.h"