Small ChangeLog tweak.
[official-gcc.git] / gcc / ipa-inline-transform.c
blob01a6833349359a7d57a1c33385557a62a915f506
1 /* Callgraph transformations to handle inlining
2 Copyright (C) 2003-2017 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 /* The inline decisions are stored in callgraph in "inline plan" and
22 applied later.
24 To mark given call inline, use inline_call function.
25 The function marks the edge inlinable and, if necessary, produces
26 virtual clone in the callgraph representing the new copy of callee's
27 function body.
29 The inline plan is applied on given function body by inline_transform. */
31 #include "config.h"
32 #include "system.h"
33 #include "coretypes.h"
34 #include "tm.h"
35 #include "function.h"
36 #include "tree.h"
37 #include "alloc-pool.h"
38 #include "tree-pass.h"
39 #include "cgraph.h"
40 #include "tree-cfg.h"
41 #include "symbol-summary.h"
42 #include "tree-vrp.h"
43 #include "ipa-prop.h"
44 #include "ipa-fnsummary.h"
45 #include "ipa-inline.h"
46 #include "tree-inline.h"
48 int ncalls_inlined;
49 int nfunctions_inlined;
51 /* Scale frequency of NODE edges by FREQ_SCALE. */
53 static void
54 update_noncloned_frequencies (struct cgraph_node *node,
55 int freq_scale)
57 struct cgraph_edge *e;
59 /* We do not want to ignore high loop nest after freq drops to 0. */
60 if (!freq_scale)
61 freq_scale = 1;
62 for (e = node->callees; e; e = e->next_callee)
64 e->frequency = e->frequency * (gcov_type) freq_scale / CGRAPH_FREQ_BASE;
65 if (e->frequency > CGRAPH_FREQ_MAX)
66 e->frequency = CGRAPH_FREQ_MAX;
67 if (!e->inline_failed)
68 update_noncloned_frequencies (e->callee, freq_scale);
70 for (e = node->indirect_calls; e; e = e->next_callee)
72 e->frequency = e->frequency * (gcov_type) freq_scale / CGRAPH_FREQ_BASE;
73 if (e->frequency > CGRAPH_FREQ_MAX)
74 e->frequency = CGRAPH_FREQ_MAX;
78 /* We removed or are going to remove the last call to NODE.
79 Return true if we can and want proactively remove the NODE now.
80 This is important to do, since we want inliner to know when offline
81 copy of function was removed. */
83 static bool
84 can_remove_node_now_p_1 (struct cgraph_node *node, struct cgraph_edge *e)
86 ipa_ref *ref;
88 FOR_EACH_ALIAS (node, ref)
90 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
91 if ((alias->callers && alias->callers != e)
92 || !can_remove_node_now_p_1 (alias, e))
93 return false;
95 /* FIXME: When address is taken of DECL_EXTERNAL function we still
96 can remove its offline copy, but we would need to keep unanalyzed node in
97 the callgraph so references can point to it.
99 Also for comdat group we can ignore references inside a group as we
100 want to prove the group as a whole to be dead. */
101 return (!node->address_taken
102 && node->can_remove_if_no_direct_calls_and_refs_p ()
103 /* Inlining might enable more devirtualizing, so we want to remove
104 those only after all devirtualizable virtual calls are processed.
105 Lacking may edges in callgraph we just preserve them post
106 inlining. */
107 && (!DECL_VIRTUAL_P (node->decl)
108 || !opt_for_fn (node->decl, flag_devirtualize))
109 /* During early inlining some unanalyzed cgraph nodes might be in the
110 callgraph and they might reffer the function in question. */
111 && !cgraph_new_nodes.exists ());
114 /* We are going to eliminate last direct call to NODE (or alias of it) via edge E.
115 Verify that the NODE can be removed from unit and if it is contained in comdat
116 group that the whole comdat group is removable. */
118 static bool
119 can_remove_node_now_p (struct cgraph_node *node, struct cgraph_edge *e)
121 struct cgraph_node *next;
122 if (!can_remove_node_now_p_1 (node, e))
123 return false;
125 /* When we see same comdat group, we need to be sure that all
126 items can be removed. */
127 if (!node->same_comdat_group || !node->externally_visible)
128 return true;
129 for (next = dyn_cast<cgraph_node *> (node->same_comdat_group);
130 next != node; next = dyn_cast<cgraph_node *> (next->same_comdat_group))
132 if (next->alias)
133 continue;
134 if ((next->callers && next->callers != e)
135 || !can_remove_node_now_p_1 (next, e))
136 return false;
138 return true;
141 /* Return true if NODE is a master clone with non-inline clones. */
143 static bool
144 master_clone_with_noninline_clones_p (struct cgraph_node *node)
146 if (node->clone_of)
147 return false;
149 for (struct cgraph_node *n = node->clones; n; n = n->next_sibling_clone)
150 if (n->decl != node->decl)
151 return true;
153 return false;
156 /* E is expected to be an edge being inlined. Clone destination node of
157 the edge and redirect it to the new clone.
158 DUPLICATE is used for bookkeeping on whether we are actually creating new
159 clones or re-using node originally representing out-of-line function call.
160 By default the offline copy is removed, when it appears dead after inlining.
161 UPDATE_ORIGINAL prevents this transformation.
162 If OVERALL_SIZE is non-NULL, the size is updated to reflect the
163 transformation.
164 FREQ_SCALE specify the scaling of frequencies of call sites. */
166 void
167 clone_inlined_nodes (struct cgraph_edge *e, bool duplicate,
168 bool update_original, int *overall_size, int freq_scale)
170 struct cgraph_node *inlining_into;
171 struct cgraph_edge *next;
173 if (e->caller->global.inlined_to)
174 inlining_into = e->caller->global.inlined_to;
175 else
176 inlining_into = e->caller;
178 if (duplicate)
180 /* We may eliminate the need for out-of-line copy to be output.
181 In that case just go ahead and re-use it. This is not just an
182 memory optimization. Making offline copy of fuction disappear
183 from the program will improve future decisions on inlining. */
184 if (!e->callee->callers->next_caller
185 /* Recursive inlining never wants the master clone to
186 be overwritten. */
187 && update_original
188 && can_remove_node_now_p (e->callee, e)
189 /* We cannot overwrite a master clone with non-inline clones
190 until after these clones are materialized. */
191 && !master_clone_with_noninline_clones_p (e->callee))
193 /* TODO: When callee is in a comdat group, we could remove all of it,
194 including all inline clones inlined into it. That would however
195 need small function inlining to register edge removal hook to
196 maintain the priority queue.
198 For now we keep the ohter functions in the group in program until
199 cgraph_remove_unreachable_functions gets rid of them. */
200 gcc_assert (!e->callee->global.inlined_to);
201 e->callee->remove_from_same_comdat_group ();
202 if (e->callee->definition
203 && inline_account_function_p (e->callee))
205 gcc_assert (!e->callee->alias);
206 if (overall_size)
207 *overall_size -= ipa_fn_summaries->get (e->callee)->size;
208 nfunctions_inlined++;
210 duplicate = false;
211 e->callee->externally_visible = false;
212 update_noncloned_frequencies (e->callee, e->frequency);
214 dump_callgraph_transformation (e->callee, inlining_into,
215 "inlining to");
217 else
219 struct cgraph_node *n;
221 if (freq_scale == -1)
222 freq_scale = e->frequency;
223 n = e->callee->create_clone (e->callee->decl,
224 MIN (e->count, e->callee->count),
225 freq_scale,
226 update_original, vNULL, true,
227 inlining_into,
228 NULL);
229 n->used_as_abstract_origin = e->callee->used_as_abstract_origin;
230 e->redirect_callee (n);
233 else
234 e->callee->remove_from_same_comdat_group ();
236 e->callee->global.inlined_to = inlining_into;
238 /* Recursively clone all bodies. */
239 for (e = e->callee->callees; e; e = next)
241 next = e->next_callee;
242 if (!e->inline_failed)
243 clone_inlined_nodes (e, duplicate, update_original, overall_size, freq_scale);
247 /* Check all speculations in N and resolve them if they seems useless. */
249 static bool
250 check_speculations (cgraph_node *n)
252 bool speculation_removed = false;
253 cgraph_edge *next;
255 for (cgraph_edge *e = n->callees; e; e = next)
257 next = e->next_callee;
258 if (e->speculative && !speculation_useful_p (e, true))
260 e->resolve_speculation (NULL);
261 speculation_removed = true;
263 else if (!e->inline_failed)
264 speculation_removed |= check_speculations (e->callee);
266 return speculation_removed;
269 /* Mark all call graph edges coming out of NODE and all nodes that have been
270 inlined to it as in_polymorphic_cdtor. */
272 static void
273 mark_all_inlined_calls_cdtor (cgraph_node *node)
275 for (cgraph_edge *cs = node->callees; cs; cs = cs->next_callee)
277 cs->in_polymorphic_cdtor = true;
278 if (!cs->inline_failed)
279 mark_all_inlined_calls_cdtor (cs->callee);
281 for (cgraph_edge *cs = node->indirect_calls; cs; cs = cs->next_callee)
282 cs->in_polymorphic_cdtor = true;
286 /* Mark edge E as inlined and update callgraph accordingly. UPDATE_ORIGINAL
287 specify whether profile of original function should be updated. If any new
288 indirect edges are discovered in the process, add them to NEW_EDGES, unless
289 it is NULL. If UPDATE_OVERALL_SUMMARY is false, do not bother to recompute overall
290 size of caller after inlining. Caller is required to eventually do it via
291 ipa_update_overall_fn_summary.
292 If callee_removed is non-NULL, set it to true if we removed callee node.
294 Return true iff any new callgraph edges were discovered as a
295 result of inlining. */
297 bool
298 inline_call (struct cgraph_edge *e, bool update_original,
299 vec<cgraph_edge *> *new_edges,
300 int *overall_size, bool update_overall_summary,
301 bool *callee_removed)
303 int old_size = 0, new_size = 0;
304 struct cgraph_node *to = NULL;
305 struct cgraph_edge *curr = e;
306 struct cgraph_node *callee = e->callee->ultimate_alias_target ();
307 bool new_edges_found = false;
309 int estimated_growth = 0;
310 if (! update_overall_summary)
311 estimated_growth = estimate_edge_growth (e);
312 /* This is used only for assert bellow. */
313 #if 0
314 bool predicated = inline_edge_summary (e)->predicate != NULL;
315 #endif
317 /* Don't inline inlined edges. */
318 gcc_assert (e->inline_failed);
319 /* Don't even think of inlining inline clone. */
320 gcc_assert (!callee->global.inlined_to);
322 to = e->caller;
323 if (to->global.inlined_to)
324 to = to->global.inlined_to;
325 if (to->thunk.thunk_p)
327 struct cgraph_node *target = to->callees->callee;
328 if (in_lto_p)
329 to->get_untransformed_body ();
330 to->expand_thunk (false, true);
331 /* When thunk is instrumented we may have multiple callees. */
332 for (e = to->callees; e && e->callee != target; e = e->next_callee)
334 gcc_assert (e);
338 e->inline_failed = CIF_OK;
339 DECL_POSSIBLY_INLINED (callee->decl) = true;
341 if (DECL_FUNCTION_PERSONALITY (callee->decl))
342 DECL_FUNCTION_PERSONALITY (to->decl)
343 = DECL_FUNCTION_PERSONALITY (callee->decl);
345 bool reload_optimization_node = false;
346 if (!opt_for_fn (callee->decl, flag_strict_aliasing)
347 && opt_for_fn (to->decl, flag_strict_aliasing))
349 struct gcc_options opts = global_options;
351 cl_optimization_restore (&opts, opts_for_fn (to->decl));
352 opts.x_flag_strict_aliasing = false;
353 if (dump_file)
354 fprintf (dump_file, "Dropping flag_strict_aliasing on %s\n",
355 to->dump_name ());
356 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (to->decl)
357 = build_optimization_node (&opts);
358 reload_optimization_node = true;
361 ipa_fn_summary *caller_info = ipa_fn_summaries->get (to);
362 ipa_fn_summary *callee_info = ipa_fn_summaries->get (callee);
363 if (!caller_info->fp_expressions && callee_info->fp_expressions)
365 caller_info->fp_expressions = true;
366 if (opt_for_fn (callee->decl, flag_rounding_math)
367 != opt_for_fn (to->decl, flag_rounding_math)
368 || opt_for_fn (callee->decl, flag_trapping_math)
369 != opt_for_fn (to->decl, flag_trapping_math)
370 || opt_for_fn (callee->decl, flag_unsafe_math_optimizations)
371 != opt_for_fn (to->decl, flag_unsafe_math_optimizations)
372 || opt_for_fn (callee->decl, flag_finite_math_only)
373 != opt_for_fn (to->decl, flag_finite_math_only)
374 || opt_for_fn (callee->decl, flag_signaling_nans)
375 != opt_for_fn (to->decl, flag_signaling_nans)
376 || opt_for_fn (callee->decl, flag_cx_limited_range)
377 != opt_for_fn (to->decl, flag_cx_limited_range)
378 || opt_for_fn (callee->decl, flag_signed_zeros)
379 != opt_for_fn (to->decl, flag_signed_zeros)
380 || opt_for_fn (callee->decl, flag_associative_math)
381 != opt_for_fn (to->decl, flag_associative_math)
382 || opt_for_fn (callee->decl, flag_reciprocal_math)
383 != opt_for_fn (to->decl, flag_reciprocal_math)
384 || opt_for_fn (callee->decl, flag_fp_int_builtin_inexact)
385 != opt_for_fn (to->decl, flag_fp_int_builtin_inexact)
386 || opt_for_fn (callee->decl, flag_errno_math)
387 != opt_for_fn (to->decl, flag_errno_math))
389 struct gcc_options opts = global_options;
391 cl_optimization_restore (&opts, opts_for_fn (to->decl));
392 opts.x_flag_rounding_math
393 = opt_for_fn (callee->decl, flag_rounding_math);
394 opts.x_flag_trapping_math
395 = opt_for_fn (callee->decl, flag_trapping_math);
396 opts.x_flag_unsafe_math_optimizations
397 = opt_for_fn (callee->decl, flag_unsafe_math_optimizations);
398 opts.x_flag_finite_math_only
399 = opt_for_fn (callee->decl, flag_finite_math_only);
400 opts.x_flag_signaling_nans
401 = opt_for_fn (callee->decl, flag_signaling_nans);
402 opts.x_flag_cx_limited_range
403 = opt_for_fn (callee->decl, flag_cx_limited_range);
404 opts.x_flag_signed_zeros
405 = opt_for_fn (callee->decl, flag_signed_zeros);
406 opts.x_flag_associative_math
407 = opt_for_fn (callee->decl, flag_associative_math);
408 opts.x_flag_reciprocal_math
409 = opt_for_fn (callee->decl, flag_reciprocal_math);
410 opts.x_flag_fp_int_builtin_inexact
411 = opt_for_fn (callee->decl, flag_fp_int_builtin_inexact);
412 opts.x_flag_errno_math
413 = opt_for_fn (callee->decl, flag_errno_math);
414 if (dump_file)
415 fprintf (dump_file, "Copying FP flags from %s to %s\n",
416 callee->dump_name (), to->dump_name ());
417 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (to->decl)
418 = build_optimization_node (&opts);
419 reload_optimization_node = true;
423 /* Reload global optimization flags. */
424 if (reload_optimization_node && DECL_STRUCT_FUNCTION (to->decl) == cfun)
425 set_cfun (cfun, true);
427 /* If aliases are involved, redirect edge to the actual destination and
428 possibly remove the aliases. */
429 if (e->callee != callee)
431 struct cgraph_node *alias = e->callee, *next_alias;
432 e->redirect_callee (callee);
433 while (alias && alias != callee)
435 if (!alias->callers
436 && can_remove_node_now_p (alias,
437 !e->next_caller && !e->prev_caller ? e : NULL))
439 next_alias = alias->get_alias_target ();
440 alias->remove ();
441 if (callee_removed)
442 *callee_removed = true;
443 alias = next_alias;
445 else
446 break;
450 clone_inlined_nodes (e, true, update_original, overall_size, e->frequency);
452 gcc_assert (curr->callee->global.inlined_to == to);
454 old_size = ipa_fn_summaries->get (to)->size;
455 ipa_merge_fn_summary_after_inlining (e);
456 if (e->in_polymorphic_cdtor)
457 mark_all_inlined_calls_cdtor (e->callee);
458 if (opt_for_fn (e->caller->decl, optimize))
459 new_edges_found = ipa_propagate_indirect_call_infos (curr, new_edges);
460 check_speculations (e->callee);
461 if (update_overall_summary)
462 ipa_update_overall_fn_summary (to);
463 else
464 /* Update self size by the estimate so overall function growth limits
465 work for further inlining into this function. Before inlining
466 the function we inlined to again we expect the caller to update
467 the overall summary. */
468 ipa_fn_summaries->get (to)->size += estimated_growth;
469 new_size = ipa_fn_summaries->get (to)->size;
471 if (callee->calls_comdat_local)
472 to->calls_comdat_local = true;
473 else if (to->calls_comdat_local && callee->comdat_local_p ())
475 struct cgraph_edge *se = to->callees;
476 for (; se; se = se->next_callee)
477 if (se->inline_failed && se->callee->comdat_local_p ())
478 break;
479 if (se == NULL)
480 to->calls_comdat_local = false;
483 /* FIXME: This assert suffers from roundoff errors, disable it for GCC 5
484 and revisit it after conversion to sreals in GCC 6.
485 See PR 65654. */
486 #if 0
487 /* Verify that estimated growth match real growth. Allow off-by-one
488 error due to ipa_fn_summary::size_scale roudoff errors. */
489 gcc_assert (!update_overall_summary || !overall_size || new_edges_found
490 || abs (estimated_growth - (new_size - old_size)) <= 1
491 || speculation_removed
492 /* FIXME: a hack. Edges with false predicate are accounted
493 wrong, we should remove them from callgraph. */
494 || predicated);
495 #endif
497 /* Account the change of overall unit size; external functions will be
498 removed and are thus not accounted. */
499 if (overall_size && inline_account_function_p (to))
500 *overall_size += new_size - old_size;
501 ncalls_inlined++;
503 /* This must happen after ipa_merge_fn_summary_after_inlining that rely on jump
504 functions of callee to not be updated. */
505 return new_edges_found;
509 /* Copy function body of NODE and redirect all inline clones to it.
510 This is done before inline plan is applied to NODE when there are
511 still some inline clones if it.
513 This is necessary because inline decisions are not really transitive
514 and the other inline clones may have different bodies. */
516 static struct cgraph_node *
517 save_inline_function_body (struct cgraph_node *node)
519 struct cgraph_node *first_clone, *n;
521 if (dump_file)
522 fprintf (dump_file, "\nSaving body of %s for later reuse\n",
523 node->name ());
525 gcc_assert (node == cgraph_node::get (node->decl));
527 /* first_clone will be turned into real function. */
528 first_clone = node->clones;
530 /* Arrange first clone to not be thunk as those do not have bodies. */
531 if (first_clone->thunk.thunk_p)
533 while (first_clone->thunk.thunk_p)
534 first_clone = first_clone->next_sibling_clone;
535 first_clone->prev_sibling_clone->next_sibling_clone
536 = first_clone->next_sibling_clone;
537 if (first_clone->next_sibling_clone)
538 first_clone->next_sibling_clone->prev_sibling_clone
539 = first_clone->prev_sibling_clone;
540 first_clone->next_sibling_clone = node->clones;
541 first_clone->prev_sibling_clone = NULL;
542 node->clones->prev_sibling_clone = first_clone;
543 node->clones = first_clone;
545 first_clone->decl = copy_node (node->decl);
546 first_clone->decl->decl_with_vis.symtab_node = first_clone;
547 gcc_assert (first_clone == cgraph_node::get (first_clone->decl));
549 /* Now reshape the clone tree, so all other clones descends from
550 first_clone. */
551 if (first_clone->next_sibling_clone)
553 for (n = first_clone->next_sibling_clone; n->next_sibling_clone;
554 n = n->next_sibling_clone)
555 n->clone_of = first_clone;
556 n->clone_of = first_clone;
557 n->next_sibling_clone = first_clone->clones;
558 if (first_clone->clones)
559 first_clone->clones->prev_sibling_clone = n;
560 first_clone->clones = first_clone->next_sibling_clone;
561 first_clone->next_sibling_clone->prev_sibling_clone = NULL;
562 first_clone->next_sibling_clone = NULL;
563 gcc_assert (!first_clone->prev_sibling_clone);
565 first_clone->clone_of = NULL;
567 /* Now node in question has no clones. */
568 node->clones = NULL;
570 /* Inline clones share decl with the function they are cloned
571 from. Walk the whole clone tree and redirect them all to the
572 new decl. */
573 if (first_clone->clones)
574 for (n = first_clone->clones; n != first_clone;)
576 gcc_assert (n->decl == node->decl);
577 n->decl = first_clone->decl;
578 if (n->clones)
579 n = n->clones;
580 else if (n->next_sibling_clone)
581 n = n->next_sibling_clone;
582 else
584 while (n != first_clone && !n->next_sibling_clone)
585 n = n->clone_of;
586 if (n != first_clone)
587 n = n->next_sibling_clone;
591 /* Copy the OLD_VERSION_NODE function tree to the new version. */
592 tree_function_versioning (node->decl, first_clone->decl,
593 NULL, true, NULL, false,
594 NULL, NULL);
596 /* The function will be short lived and removed after we inline all the clones,
597 but make it internal so we won't confuse ourself. */
598 DECL_EXTERNAL (first_clone->decl) = 0;
599 TREE_PUBLIC (first_clone->decl) = 0;
600 DECL_COMDAT (first_clone->decl) = 0;
601 first_clone->ipa_transforms_to_apply.release ();
603 /* When doing recursive inlining, the clone may become unnecessary.
604 This is possible i.e. in the case when the recursive function is proved to be
605 non-throwing and the recursion happens only in the EH landing pad.
606 We can not remove the clone until we are done with saving the body.
607 Remove it now. */
608 if (!first_clone->callers)
610 first_clone->remove_symbol_and_inline_clones ();
611 first_clone = NULL;
613 else if (flag_checking)
614 first_clone->verify ();
616 return first_clone;
619 /* Return true when function body of DECL still needs to be kept around
620 for later re-use. */
621 static bool
622 preserve_function_body_p (struct cgraph_node *node)
624 gcc_assert (symtab->global_info_ready);
625 gcc_assert (!node->alias && !node->thunk.thunk_p);
627 /* Look if there is any non-thunk clone around. */
628 for (node = node->clones; node; node = node->next_sibling_clone)
629 if (!node->thunk.thunk_p)
630 return true;
631 return false;
634 /* Apply inline plan to function. */
636 unsigned int
637 inline_transform (struct cgraph_node *node)
639 unsigned int todo = 0;
640 struct cgraph_edge *e, *next;
641 bool has_inline = false;
643 /* FIXME: Currently the pass manager is adding inline transform more than
644 once to some clones. This needs revisiting after WPA cleanups. */
645 if (cfun->after_inlining)
646 return 0;
648 /* We might need the body of this function so that we can expand
649 it inline somewhere else. */
650 if (preserve_function_body_p (node))
651 save_inline_function_body (node);
653 for (e = node->callees; e; e = next)
655 if (!e->inline_failed)
656 has_inline = true;
657 next = e->next_callee;
658 e->redirect_call_stmt_to_callee ();
660 node->remove_all_references ();
662 timevar_push (TV_INTEGRATION);
663 if (node->callees && (opt_for_fn (node->decl, optimize) || has_inline))
664 todo = optimize_inline_calls (current_function_decl);
665 timevar_pop (TV_INTEGRATION);
667 cfun->always_inline_functions_inlined = true;
668 cfun->after_inlining = true;
669 todo |= execute_fixup_cfg ();
671 if (!(todo & TODO_update_ssa_any))
672 /* Redirecting edges might lead to a need for vops to be recomputed. */
673 todo |= TODO_update_ssa_only_virtuals;
675 return todo;