1 /* Inlining decision heuristics.
2 Copyright (C) 2003, 2004 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 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
22 /* Inlining decision heuristics
24 We separate inlining decisions from the inliner itself and store it
25 inside callgraph as so called inline plan. Refer to cgraph.c
26 documentation about particular representation of inline plans in the
29 There are three major parts of this file:
31 cgraph_mark_inline implementation
33 This function allows to mark given call inline and performs necessary
34 modifications of cgraph (production of the clones and updating overall
37 inlining heuristics limits
39 These functions allow to check that particular inlining is allowed
40 by the limits specified by user (allowed function growth, overall unit
45 This is implementation of IPA pass aiming to get as much of benefit
46 from inlining obeying the limits checked above.
48 The implementation of particular heuristics is separated from
49 the rest of code to make it easier to replace it with more complicated
50 implementation in the future. The rest of inlining code acts as a
51 library aimed to modify the callgraph and verify that the parameters
52 on code size growth fits.
54 To mark given call inline, use cgraph_mark_inline function, the
55 verification is performed by cgraph_default_inline_p and
56 cgraph_check_inline_limits.
58 The heuristics implements simple knapsack style algorithm ordering
59 all functions by their "profitability" (estimated by code size growth)
60 and inlining them in priority order.
62 cgraph_decide_inlining implements heuristics taking whole callgraph
63 into account, while cgraph_decide_inlining_incrementally considers
64 only one function at a time and is used in non-unit-at-a-time mode. */
68 #include "coretypes.h"
71 #include "tree-inline.h"
72 #include "langhooks.h"
75 #include "diagnostic.h"
80 #include "tree-pass.h"
85 /* Statistics we collect about inlining algorithm. */
86 static int ncalls_inlined
;
87 static int nfunctions_inlined
;
88 static int initial_insns
;
89 static int overall_insns
;
91 static gcov_type max_count
;
93 /* Estimate size of the function after inlining WHAT into TO. */
96 cgraph_estimate_size_after_inlining (int times
, struct cgraph_node
*to
,
97 struct cgraph_node
*what
)
100 tree fndecl
= what
->decl
, arg
;
101 int call_insns
= PARAM_VALUE (PARAM_INLINE_CALL_COST
);
103 for (arg
= DECL_ARGUMENTS (fndecl
); arg
; arg
= TREE_CHAIN (arg
))
104 call_insns
+= estimate_move_cost (TREE_TYPE (arg
));
105 size
= (what
->global
.insns
- call_insns
) * times
+ to
->global
.insns
;
106 gcc_assert (size
>= 0);
110 /* E is expected to be an edge being inlined. Clone destination node of
111 the edge and redirect it to the new clone.
112 DUPLICATE is used for bookkeeping on whether we are actually creating new
113 clones or re-using node originally representing out-of-line function call.
116 cgraph_clone_inlined_nodes (struct cgraph_edge
*e
, bool duplicate
, bool update_original
)
121 /* We may eliminate the need for out-of-line copy to be output.
122 In that case just go ahead and re-use it. */
123 if (!e
->callee
->callers
->next_caller
124 && !e
->callee
->needed
125 && flag_unit_at_a_time
)
127 gcc_assert (!e
->callee
->global
.inlined_to
);
128 if (DECL_SAVED_TREE (e
->callee
->decl
))
129 overall_insns
-= e
->callee
->global
.insns
, nfunctions_inlined
++;
134 struct cgraph_node
*n
;
135 n
= cgraph_clone_node (e
->callee
, e
->count
, e
->loop_nest
,
137 cgraph_redirect_edge_callee (e
, n
);
141 if (e
->caller
->global
.inlined_to
)
142 e
->callee
->global
.inlined_to
= e
->caller
->global
.inlined_to
;
144 e
->callee
->global
.inlined_to
= e
->caller
;
145 e
->callee
->global
.stack_frame_offset
146 = e
->caller
->global
.stack_frame_offset
+ e
->caller
->local
.estimated_self_stack_size
;
147 peak
= e
->callee
->global
.stack_frame_offset
+ e
->callee
->local
.estimated_self_stack_size
;
148 if (e
->callee
->global
.inlined_to
->global
.estimated_stack_size
< peak
)
149 e
->callee
->global
.inlined_to
->global
.estimated_stack_size
= peak
;
151 /* Recursively clone all bodies. */
152 for (e
= e
->callee
->callees
; e
; e
= e
->next_callee
)
153 if (!e
->inline_failed
)
154 cgraph_clone_inlined_nodes (e
, duplicate
, update_original
);
157 /* Mark edge E as inlined and update callgraph accordingly.
158 UPDATE_ORIGINAL specify whether profile of original function should be
162 cgraph_mark_inline_edge (struct cgraph_edge
*e
, bool update_original
)
164 int old_insns
= 0, new_insns
= 0;
165 struct cgraph_node
*to
= NULL
, *what
;
167 if (e
->callee
->inline_decl
)
168 cgraph_redirect_edge_callee (e
, cgraph_node (e
->callee
->inline_decl
));
170 gcc_assert (e
->inline_failed
);
171 e
->inline_failed
= NULL
;
173 if (!e
->callee
->global
.inlined
&& flag_unit_at_a_time
)
174 DECL_POSSIBLY_INLINED (e
->callee
->decl
) = true;
175 e
->callee
->global
.inlined
= true;
177 cgraph_clone_inlined_nodes (e
, true, update_original
);
181 /* Now update size of caller and all functions caller is inlined into. */
182 for (;e
&& !e
->inline_failed
; e
= e
->caller
->callers
)
184 old_insns
= e
->caller
->global
.insns
;
185 new_insns
= cgraph_estimate_size_after_inlining (1, e
->caller
,
187 gcc_assert (new_insns
>= 0);
189 to
->global
.insns
= new_insns
;
191 gcc_assert (what
->global
.inlined_to
== to
);
192 if (new_insns
> old_insns
)
193 overall_insns
+= new_insns
- old_insns
;
197 /* Mark all calls of EDGE->CALLEE inlined into EDGE->CALLER.
198 Return following unredirected edge in the list of callers
201 static struct cgraph_edge
*
202 cgraph_mark_inline (struct cgraph_edge
*edge
)
204 struct cgraph_node
*to
= edge
->caller
;
205 struct cgraph_node
*what
= edge
->callee
;
206 struct cgraph_edge
*e
, *next
;
209 /* Look for all calls, mark them inline and clone recursively
210 all inlined functions. */
211 for (e
= what
->callers
; e
; e
= next
)
213 next
= e
->next_caller
;
214 if (e
->caller
== to
&& e
->inline_failed
)
216 cgraph_mark_inline_edge (e
, true);
226 /* Estimate the growth caused by inlining NODE into all callees. */
229 cgraph_estimate_growth (struct cgraph_node
*node
)
232 struct cgraph_edge
*e
;
233 if (node
->global
.estimated_growth
!= INT_MIN
)
234 return node
->global
.estimated_growth
;
236 for (e
= node
->callers
; e
; e
= e
->next_caller
)
237 if (e
->inline_failed
)
238 growth
+= (cgraph_estimate_size_after_inlining (1, e
->caller
, node
)
239 - e
->caller
->global
.insns
);
241 /* ??? Wrong for self recursive functions or cases where we decide to not
242 inline for different reasons, but it is not big deal as in that case
243 we will keep the body around, but we will also avoid some inlining. */
244 if (!node
->needed
&& !DECL_EXTERNAL (node
->decl
))
245 growth
-= node
->global
.insns
;
247 node
->global
.estimated_growth
= growth
;
251 /* Return false when inlining WHAT into TO is not good idea
252 as it would cause too large growth of function bodies.
253 When ONE_ONLY is true, assume that only one call site is going
254 to be inlined, otherwise figure out how many call sites in
255 TO calls WHAT and verify that all can be inlined.
259 cgraph_check_inline_limits (struct cgraph_node
*to
, struct cgraph_node
*what
,
260 const char **reason
, bool one_only
)
263 struct cgraph_edge
*e
;
266 HOST_WIDE_INT stack_size_limit
, inlined_stack
;
271 for (e
= to
->callees
; e
; e
= e
->next_callee
)
272 if (e
->callee
== what
)
275 if (to
->global
.inlined_to
)
276 to
= to
->global
.inlined_to
;
278 /* When inlining large function body called once into small function,
279 take the inlined function as base for limiting the growth. */
280 if (to
->local
.self_insns
> what
->local
.self_insns
)
281 limit
= to
->local
.self_insns
;
283 limit
= what
->local
.self_insns
;
285 limit
+= limit
* PARAM_VALUE (PARAM_LARGE_FUNCTION_GROWTH
) / 100;
287 /* Check the size after inlining against the function limits. But allow
288 the function to shrink if it went over the limits by forced inlining. */
289 newsize
= cgraph_estimate_size_after_inlining (times
, to
, what
);
290 if (newsize
>= to
->global
.insns
291 && newsize
> PARAM_VALUE (PARAM_LARGE_FUNCTION_INSNS
)
295 *reason
= N_("--param large-function-growth limit reached");
299 stack_size_limit
= to
->local
.estimated_self_stack_size
;
301 stack_size_limit
+= stack_size_limit
* PARAM_VALUE (PARAM_STACK_FRAME_GROWTH
) / 100;
303 inlined_stack
= (to
->global
.stack_frame_offset
304 + to
->local
.estimated_self_stack_size
305 + what
->global
.estimated_stack_size
);
306 if (inlined_stack
> stack_size_limit
307 && inlined_stack
> PARAM_VALUE (PARAM_LARGE_STACK_FRAME
))
310 *reason
= N_("--param large-stack-frame-growth limit reached");
316 /* Return true when function N is small enough to be inlined. */
319 cgraph_default_inline_p (struct cgraph_node
*n
, const char **reason
)
324 decl
= n
->inline_decl
;
325 if (!DECL_INLINE (decl
))
328 *reason
= N_("function not inlinable");
332 if (!DECL_STRUCT_FUNCTION (decl
)->cfg
)
335 *reason
= N_("function body not available");
339 if (DECL_DECLARED_INLINE_P (decl
))
341 if (n
->global
.insns
>= MAX_INLINE_INSNS_SINGLE
)
344 *reason
= N_("--param max-inline-insns-single limit reached");
350 if (n
->global
.insns
>= MAX_INLINE_INSNS_AUTO
)
353 *reason
= N_("--param max-inline-insns-auto limit reached");
361 /* Return true when inlining WHAT would create recursive inlining.
362 We call recursive inlining all cases where same function appears more than
363 once in the single recursion nest path in the inline graph. */
366 cgraph_recursive_inlining_p (struct cgraph_node
*to
,
367 struct cgraph_node
*what
,
371 if (to
->global
.inlined_to
)
372 recursive
= what
->decl
== to
->global
.inlined_to
->decl
;
374 recursive
= what
->decl
== to
->decl
;
375 /* Marking recursive function inline has sane semantic and thus we should
377 if (recursive
&& reason
)
378 *reason
= (what
->local
.disregard_inline_limits
379 ? N_("recursive inlining") : "");
383 /* Return true if the call can be hot. */
385 cgraph_maybe_hot_edge_p (struct cgraph_edge
*edge
)
387 if (profile_info
&& flag_branch_probabilities
389 <= profile_info
->sum_max
/ PARAM_VALUE (HOT_BB_COUNT_FRACTION
)))
394 /* A cost model driving the inlining heuristics in a way so the edges with
395 smallest badness are inlined first. After each inlining is performed
396 the costs of all caller edges of nodes affected are recomputed so the
397 metrics may accurately depend on values such as number of inlinable callers
398 of the function or function body size.
400 With profiling we use number of executions of each edge to drive the cost.
401 We also should distinguish hot and cold calls where the cold calls are
402 inlined into only when code size is overall improved.
406 cgraph_edge_badness (struct cgraph_edge
*edge
)
411 cgraph_estimate_size_after_inlining (1, edge
->caller
, edge
->callee
);
412 growth
-= edge
->caller
->global
.insns
;
414 /* Always prefer inlining saving code size. */
416 return INT_MIN
- growth
;
417 return ((int)((double)edge
->count
* INT_MIN
/ max_count
)) / growth
;
421 int nest
= MIN (edge
->loop_nest
, 8);
422 int badness
= cgraph_estimate_growth (edge
->callee
) * 256;
424 /* Decrease badness if call is nested. */
430 /* Make recursive inlining happen always after other inlining is done. */
431 if (cgraph_recursive_inlining_p (edge
->caller
, edge
->callee
, NULL
))
438 /* Recompute heap nodes for each of caller edge. */
441 update_caller_keys (fibheap_t heap
, struct cgraph_node
*node
,
442 bitmap updated_nodes
)
444 struct cgraph_edge
*edge
;
445 const char *failed_reason
;
447 if (!node
->local
.inlinable
|| node
->local
.disregard_inline_limits
448 || node
->global
.inlined_to
)
450 if (bitmap_bit_p (updated_nodes
, node
->uid
))
452 bitmap_set_bit (updated_nodes
, node
->uid
);
453 node
->global
.estimated_growth
= INT_MIN
;
455 if (!node
->local
.inlinable
)
457 /* Prune out edges we won't inline into anymore. */
458 if (!cgraph_default_inline_p (node
, &failed_reason
))
460 for (edge
= node
->callers
; edge
; edge
= edge
->next_caller
)
463 fibheap_delete_node (heap
, edge
->aux
);
465 if (edge
->inline_failed
)
466 edge
->inline_failed
= failed_reason
;
471 for (edge
= node
->callers
; edge
; edge
= edge
->next_caller
)
472 if (edge
->inline_failed
)
474 int badness
= cgraph_edge_badness (edge
);
477 fibnode_t n
= edge
->aux
;
478 gcc_assert (n
->data
== edge
);
479 if (n
->key
== badness
)
482 /* fibheap_replace_key only increase the keys. */
483 if (fibheap_replace_key (heap
, n
, badness
))
485 fibheap_delete_node (heap
, edge
->aux
);
487 edge
->aux
= fibheap_insert (heap
, badness
, edge
);
491 /* Recompute heap nodes for each of caller edges of each of callees. */
494 update_callee_keys (fibheap_t heap
, struct cgraph_node
*node
,
495 bitmap updated_nodes
)
497 struct cgraph_edge
*e
;
498 node
->global
.estimated_growth
= INT_MIN
;
500 for (e
= node
->callees
; e
; e
= e
->next_callee
)
501 if (e
->inline_failed
)
502 update_caller_keys (heap
, e
->callee
, updated_nodes
);
503 else if (!e
->inline_failed
)
504 update_callee_keys (heap
, e
->callee
, updated_nodes
);
507 /* Enqueue all recursive calls from NODE into priority queue depending on
508 how likely we want to recursively inline the call. */
511 lookup_recursive_calls (struct cgraph_node
*node
, struct cgraph_node
*where
,
515 struct cgraph_edge
*e
;
516 for (e
= where
->callees
; e
; e
= e
->next_callee
)
517 if (e
->callee
== node
)
519 /* When profile feedback is available, prioritize by expected number
520 of calls. Without profile feedback we maintain simple queue
521 to order candidates via recursive depths. */
522 fibheap_insert (heap
,
523 !max_count
? priority
++
524 : -(e
->count
/ ((max_count
+ (1<<24) - 1) / (1<<24))),
527 for (e
= where
->callees
; e
; e
= e
->next_callee
)
528 if (!e
->inline_failed
)
529 lookup_recursive_calls (node
, e
->callee
, heap
);
532 /* Find callgraph nodes closing a circle in the graph. The
533 resulting hashtab can be used to avoid walking the circles.
534 Uses the cgraph nodes ->aux field which needs to be zero
535 before and will be zero after operation. */
538 cgraph_find_cycles (struct cgraph_node
*node
, htab_t cycles
)
540 struct cgraph_edge
*e
;
545 slot
= htab_find_slot (cycles
, node
, INSERT
);
549 fprintf (dump_file
, "Cycle contains %s\n", cgraph_node_name (node
));
556 for (e
= node
->callees
; e
; e
= e
->next_callee
)
557 cgraph_find_cycles (e
->callee
, cycles
);
561 /* Flatten the cgraph node. We have to be careful in recursing
562 as to not run endlessly in circles of the callgraph.
563 We do so by using a hashtab of cycle entering nodes as generated
564 by cgraph_find_cycles. */
567 cgraph_flatten_node (struct cgraph_node
*node
, htab_t cycles
)
569 struct cgraph_edge
*e
;
571 for (e
= node
->callees
; e
; e
= e
->next_callee
)
573 /* Inline call, if possible, and recurse. Be sure we are not
574 entering callgraph circles here. */
576 && e
->callee
->local
.inlinable
577 && !cgraph_recursive_inlining_p (node
, e
->callee
,
579 && !htab_find (cycles
, e
->callee
))
582 fprintf (dump_file
, " inlining %s", cgraph_node_name (e
->callee
));
583 cgraph_mark_inline_edge (e
, true);
584 cgraph_flatten_node (e
->callee
, cycles
);
587 fprintf (dump_file
, " !inlining %s", cgraph_node_name (e
->callee
));
591 /* Decide on recursive inlining: in the case function has recursive calls,
592 inline until body size reaches given argument. */
595 cgraph_decide_recursive_inlining (struct cgraph_node
*node
)
597 int limit
= PARAM_VALUE (PARAM_MAX_INLINE_INSNS_RECURSIVE_AUTO
);
598 int max_depth
= PARAM_VALUE (PARAM_MAX_INLINE_RECURSIVE_DEPTH_AUTO
);
599 int probability
= PARAM_VALUE (PARAM_MIN_INLINE_RECURSIVE_PROBABILITY
);
601 struct cgraph_edge
*e
;
602 struct cgraph_node
*master_clone
, *next
;
606 if (DECL_DECLARED_INLINE_P (node
->decl
))
608 limit
= PARAM_VALUE (PARAM_MAX_INLINE_INSNS_RECURSIVE
);
609 max_depth
= PARAM_VALUE (PARAM_MAX_INLINE_RECURSIVE_DEPTH
);
612 /* Make sure that function is small enough to be considered for inlining. */
614 || cgraph_estimate_size_after_inlining (1, node
, node
) >= limit
)
616 heap
= fibheap_new ();
617 lookup_recursive_calls (node
, node
, heap
);
618 if (fibheap_empty (heap
))
620 fibheap_delete (heap
);
626 " Performing recursive inlining on %s\n",
627 cgraph_node_name (node
));
629 /* We need original clone to copy around. */
630 master_clone
= cgraph_clone_node (node
, node
->count
, 1, false);
631 master_clone
->needed
= true;
632 for (e
= master_clone
->callees
; e
; e
= e
->next_callee
)
633 if (!e
->inline_failed
)
634 cgraph_clone_inlined_nodes (e
, true, false);
636 /* Do the inlining and update list of recursive call during process. */
637 while (!fibheap_empty (heap
)
638 && (cgraph_estimate_size_after_inlining (1, node
, master_clone
)
641 struct cgraph_edge
*curr
= fibheap_extract_min (heap
);
642 struct cgraph_node
*cnode
;
645 for (cnode
= curr
->caller
;
646 cnode
->global
.inlined_to
; cnode
= cnode
->callers
->caller
)
647 if (node
->decl
== curr
->callee
->decl
)
649 if (depth
> max_depth
)
653 " maxmal depth reached\n");
659 if (!cgraph_maybe_hot_edge_p (curr
))
662 fprintf (dump_file
, " Not inlining cold call\n");
665 if (curr
->count
* 100 / node
->count
< probability
)
669 " Probability of edge is too small\n");
677 " Inlining call of depth %i", depth
);
680 fprintf (dump_file
, " called approx. %.2f times per call",
681 (double)curr
->count
/ node
->count
);
683 fprintf (dump_file
, "\n");
685 cgraph_redirect_edge_callee (curr
, master_clone
);
686 cgraph_mark_inline_edge (curr
, false);
687 lookup_recursive_calls (node
, curr
->callee
, heap
);
690 if (!fibheap_empty (heap
) && dump_file
)
691 fprintf (dump_file
, " Recursive inlining growth limit met.\n");
693 fibheap_delete (heap
);
696 "\n Inlined %i times, body grown from %i to %i insns\n", n
,
697 master_clone
->global
.insns
, node
->global
.insns
);
699 /* Remove master clone we used for inlining. We rely that clones inlined
700 into master clone gets queued just before master clone so we don't
702 for (node
= cgraph_nodes
; node
!= master_clone
;
706 if (node
->global
.inlined_to
== master_clone
)
707 cgraph_remove_node (node
);
709 cgraph_remove_node (master_clone
);
710 /* FIXME: Recursive inlining actually reduces number of calls of the
711 function. At this place we should probably walk the function and
712 inline clones and compensate the counts accordingly. This probably
713 doesn't matter much in practice. */
717 /* Set inline_failed for all callers of given function to REASON. */
720 cgraph_set_inline_failed (struct cgraph_node
*node
, const char *reason
)
722 struct cgraph_edge
*e
;
725 fprintf (dump_file
, "Inlining failed: %s\n", reason
);
726 for (e
= node
->callers
; e
; e
= e
->next_caller
)
727 if (e
->inline_failed
)
728 e
->inline_failed
= reason
;
731 /* We use greedy algorithm for inlining of small functions:
732 All inline candidates are put into prioritized heap based on estimated
733 growth of the overall number of instructions and then update the estimates.
735 INLINED and INLINED_CALEES are just pointers to arrays large enough
736 to be passed to cgraph_inlined_into and cgraph_inlined_callees. */
739 cgraph_decide_inlining_of_small_functions (void)
741 struct cgraph_node
*node
;
742 struct cgraph_edge
*edge
;
743 const char *failed_reason
;
744 fibheap_t heap
= fibheap_new ();
745 bitmap updated_nodes
= BITMAP_ALLOC (NULL
);
748 fprintf (dump_file
, "\nDeciding on smaller functions:\n");
750 /* Put all inline candidates into the heap. */
752 for (node
= cgraph_nodes
; node
; node
= node
->next
)
754 if (!node
->local
.inlinable
|| !node
->callers
755 || node
->local
.disregard_inline_limits
)
758 fprintf (dump_file
, "Considering inline candidate %s.\n", cgraph_node_name (node
));
760 node
->global
.estimated_growth
= INT_MIN
;
761 if (!cgraph_default_inline_p (node
, &failed_reason
))
763 cgraph_set_inline_failed (node
, failed_reason
);
767 for (edge
= node
->callers
; edge
; edge
= edge
->next_caller
)
768 if (edge
->inline_failed
)
770 gcc_assert (!edge
->aux
);
771 edge
->aux
= fibheap_insert (heap
, cgraph_edge_badness (edge
), edge
);
774 while (overall_insns
<= max_insns
&& (edge
= fibheap_extract_min (heap
)))
776 int old_insns
= overall_insns
;
777 struct cgraph_node
*where
;
779 cgraph_estimate_size_after_inlining (1, edge
->caller
, edge
->callee
);
781 growth
-= edge
->caller
->global
.insns
;
786 "\nConsidering %s with %i insns\n",
787 cgraph_node_name (edge
->callee
),
788 edge
->callee
->global
.insns
);
790 " to be inlined into %s\n"
791 " Estimated growth after inlined into all callees is %+i insns.\n"
792 " Estimated badness is %i.\n",
793 cgraph_node_name (edge
->caller
),
794 cgraph_estimate_growth (edge
->callee
),
795 cgraph_edge_badness (edge
));
797 fprintf (dump_file
," Called "HOST_WIDEST_INT_PRINT_DEC
"x\n", edge
->count
);
799 gcc_assert (edge
->aux
);
801 if (!edge
->inline_failed
)
804 /* When not having profile info ready we don't weight by any way the
805 position of call in procedure itself. This means if call of
806 function A from function B seems profitable to inline, the recursive
807 call of function A in inline copy of A in B will look profitable too
808 and we end up inlining until reaching maximal function growth. This
809 is not good idea so prohibit the recursive inlining.
811 ??? When the frequencies are taken into account we might not need this
815 where
= edge
->caller
;
816 while (where
->global
.inlined_to
)
818 if (where
->decl
== edge
->callee
->decl
)
820 where
= where
->callers
->caller
;
822 if (where
->global
.inlined_to
)
825 = (edge
->callee
->local
.disregard_inline_limits
? N_("recursive inlining") : "");
827 fprintf (dump_file
, " inline_failed:Recursive inlining performed only for function itself.\n");
832 if (!cgraph_maybe_hot_edge_p (edge
) && growth
> 0)
834 if (!cgraph_recursive_inlining_p (edge
->caller
, edge
->callee
,
835 &edge
->inline_failed
))
837 edge
->inline_failed
=
838 N_("call is unlikely");
840 fprintf (dump_file
, " inline_failed:%s.\n", edge
->inline_failed
);
844 if (!cgraph_default_inline_p (edge
->callee
, &edge
->inline_failed
))
846 if (!cgraph_recursive_inlining_p (edge
->caller
, edge
->callee
,
847 &edge
->inline_failed
))
850 fprintf (dump_file
, " inline_failed:%s.\n", edge
->inline_failed
);
854 if (cgraph_recursive_inlining_p (edge
->caller
, edge
->callee
,
855 &edge
->inline_failed
))
857 where
= edge
->caller
;
858 if (where
->global
.inlined_to
)
859 where
= where
->global
.inlined_to
;
860 if (!cgraph_decide_recursive_inlining (where
))
862 update_callee_keys (heap
, where
, updated_nodes
);
866 struct cgraph_node
*callee
;
867 if (!cgraph_check_inline_limits (edge
->caller
, edge
->callee
,
868 &edge
->inline_failed
, true))
871 fprintf (dump_file
, " Not inlining into %s:%s.\n",
872 cgraph_node_name (edge
->caller
), edge
->inline_failed
);
875 callee
= edge
->callee
;
876 cgraph_mark_inline_edge (edge
, true);
877 update_callee_keys (heap
, callee
, updated_nodes
);
879 where
= edge
->caller
;
880 if (where
->global
.inlined_to
)
881 where
= where
->global
.inlined_to
;
883 /* Our profitability metric can depend on local properties
884 such as number of inlinable calls and size of the function body.
885 After inlining these properties might change for the function we
886 inlined into (since it's body size changed) and for the functions
887 called by function we inlined (since number of it inlinable callers
889 update_caller_keys (heap
, where
, updated_nodes
);
890 bitmap_clear (updated_nodes
);
895 " Inlined into %s which now has %i insns,"
896 "net change of %+i insns.\n",
897 cgraph_node_name (edge
->caller
),
898 edge
->caller
->global
.insns
,
899 overall_insns
- old_insns
);
902 while ((edge
= fibheap_extract_min (heap
)) != NULL
)
904 gcc_assert (edge
->aux
);
906 if (!edge
->callee
->local
.disregard_inline_limits
&& edge
->inline_failed
907 && !cgraph_recursive_inlining_p (edge
->caller
, edge
->callee
,
908 &edge
->inline_failed
))
909 edge
->inline_failed
= N_("--param inline-unit-growth limit reached");
911 fibheap_delete (heap
);
912 BITMAP_FREE (updated_nodes
);
915 /* Decide on the inlining. We do so in the topological order to avoid
916 expenses on updating data structures. */
919 cgraph_decide_inlining (void)
921 struct cgraph_node
*node
;
923 struct cgraph_node
**order
=
924 XCNEWVEC (struct cgraph_node
*, cgraph_n_nodes
);
929 for (node
= cgraph_nodes
; node
; node
= node
->next
)
930 if (node
->analyzed
&& (node
->needed
|| node
->reachable
))
932 struct cgraph_edge
*e
;
934 /* At the moment, no IPA passes change function bodies before inlining.
935 Save some time by not recomputing function body sizes if early inlining
937 if (!flag_early_inlining
)
938 node
->local
.self_insns
= node
->global
.insns
939 = estimate_num_insns (node
->decl
);
941 initial_insns
+= node
->local
.self_insns
;
942 gcc_assert (node
->local
.self_insns
== node
->global
.insns
);
943 for (e
= node
->callees
; e
; e
= e
->next_callee
)
944 if (max_count
< e
->count
)
945 max_count
= e
->count
;
947 overall_insns
= initial_insns
;
948 gcc_assert (!max_count
|| (profile_info
&& flag_branch_probabilities
));
950 max_insns
= overall_insns
;
951 if (max_insns
< PARAM_VALUE (PARAM_LARGE_UNIT_INSNS
))
952 max_insns
= PARAM_VALUE (PARAM_LARGE_UNIT_INSNS
);
954 max_insns
= ((HOST_WIDEST_INT
) max_insns
955 * (100 + PARAM_VALUE (PARAM_INLINE_UNIT_GROWTH
)) / 100);
957 nnodes
= cgraph_postorder (order
);
961 "\nDeciding on inlining. Starting with %i insns.\n",
964 for (node
= cgraph_nodes
; node
; node
= node
->next
)
968 fprintf (dump_file
, "\nInlining always_inline functions:\n");
970 /* In the first pass mark all always_inline edges. Do this with a priority
971 so none of our later choices will make this impossible. */
972 for (i
= nnodes
- 1; i
>= 0; i
--)
974 struct cgraph_edge
*e
, *next
;
978 /* Handle nodes to be flattened, but don't update overall unit size. */
979 if (lookup_attribute ("flatten", DECL_ATTRIBUTES (node
->decl
)) != NULL
)
981 int old_overall_insns
= overall_insns
;
985 "Flattening %s\n", cgraph_node_name (node
));
986 cycles
= htab_create (7, htab_hash_pointer
, htab_eq_pointer
, NULL
);
987 cgraph_find_cycles (node
, cycles
);
988 cgraph_flatten_node (node
, cycles
);
989 htab_delete (cycles
);
990 overall_insns
= old_overall_insns
;
991 /* We don't need to consider always_inline functions inside the flattened
996 if (!node
->local
.disregard_inline_limits
)
1000 "\nConsidering %s %i insns (always inline)\n",
1001 cgraph_node_name (node
), node
->global
.insns
);
1002 old_insns
= overall_insns
;
1003 for (e
= node
->callers
; e
; e
= next
)
1005 next
= e
->next_caller
;
1006 if (!e
->inline_failed
)
1008 if (cgraph_recursive_inlining_p (e
->caller
, e
->callee
,
1011 cgraph_mark_inline_edge (e
, true);
1014 " Inlined into %s which now has %i insns.\n",
1015 cgraph_node_name (e
->caller
),
1016 e
->caller
->global
.insns
);
1020 " Inlined for a net change of %+i insns.\n",
1021 overall_insns
- old_insns
);
1024 if (!flag_really_no_inline
)
1025 cgraph_decide_inlining_of_small_functions ();
1027 if (!flag_really_no_inline
1028 && flag_inline_functions_called_once
)
1031 fprintf (dump_file
, "\nDeciding on functions called once:\n");
1033 /* And finally decide what functions are called once. */
1035 for (i
= nnodes
- 1; i
>= 0; i
--)
1039 if (node
->callers
&& !node
->callers
->next_caller
&& !node
->needed
1040 && node
->local
.inlinable
&& node
->callers
->inline_failed
1041 && !DECL_EXTERNAL (node
->decl
) && !DECL_COMDAT (node
->decl
))
1046 "\nConsidering %s %i insns.\n",
1047 cgraph_node_name (node
), node
->global
.insns
);
1049 " Called once from %s %i insns.\n",
1050 cgraph_node_name (node
->callers
->caller
),
1051 node
->callers
->caller
->global
.insns
);
1054 old_insns
= overall_insns
;
1056 if (cgraph_check_inline_limits (node
->callers
->caller
, node
,
1059 cgraph_mark_inline (node
->callers
);
1062 " Inlined into %s which now has %i insns"
1063 " for a net change of %+i insns.\n",
1064 cgraph_node_name (node
->callers
->caller
),
1065 node
->callers
->caller
->global
.insns
,
1066 overall_insns
- old_insns
);
1072 " Inline limit reached, not inlined.\n");
1080 "\nInlined %i calls, eliminated %i functions, "
1081 "%i insns turned to %i insns.\n\n",
1082 ncalls_inlined
, nfunctions_inlined
, initial_insns
,
1088 /* Decide on the inlining. We do so in the topological order to avoid
1089 expenses on updating data structures. */
1092 cgraph_decide_inlining_incrementally (struct cgraph_node
*node
, bool early
)
1094 struct cgraph_edge
*e
;
1095 bool inlined
= false;
1096 const char *failed_reason
;
1098 /* First of all look for always inline functions. */
1099 for (e
= node
->callees
; e
; e
= e
->next_callee
)
1100 if (e
->callee
->local
.disregard_inline_limits
1102 && !cgraph_recursive_inlining_p (node
, e
->callee
, &e
->inline_failed
)
1103 /* ??? It is possible that renaming variable removed the function body
1104 in duplicate_decls. See gcc.c-torture/compile/20011119-2.c */
1105 && (DECL_SAVED_TREE (e
->callee
->decl
) || e
->callee
->inline_decl
))
1107 if (dump_file
&& early
)
1109 fprintf (dump_file
, " Early inlining %s",
1110 cgraph_node_name (e
->callee
));
1111 fprintf (dump_file
, " into %s\n", cgraph_node_name (node
));
1113 cgraph_mark_inline (e
);
1117 /* Now do the automatic inlining. */
1118 if (!flag_really_no_inline
)
1119 for (e
= node
->callees
; e
; e
= e
->next_callee
)
1120 if (e
->callee
->local
.inlinable
1122 && !e
->callee
->local
.disregard_inline_limits
1123 && !cgraph_recursive_inlining_p (node
, e
->callee
, &e
->inline_failed
)
1125 || (cgraph_estimate_size_after_inlining (1, e
->caller
, e
->callee
)
1126 <= e
->caller
->global
.insns
))
1127 && cgraph_check_inline_limits (node
, e
->callee
, &e
->inline_failed
,
1129 && (DECL_SAVED_TREE (e
->callee
->decl
) || e
->callee
->inline_decl
))
1131 if (cgraph_default_inline_p (e
->callee
, &failed_reason
))
1133 if (dump_file
&& early
)
1135 fprintf (dump_file
, " Early inlining %s",
1136 cgraph_node_name (e
->callee
));
1137 fprintf (dump_file
, " into %s\n", cgraph_node_name (node
));
1139 cgraph_mark_inline (e
);
1143 e
->inline_failed
= failed_reason
;
1145 if (early
&& inlined
)
1147 timevar_push (TV_INTEGRATION
);
1148 push_cfun (DECL_STRUCT_FUNCTION (node
->decl
));
1149 tree_register_cfg_hooks ();
1150 current_function_decl
= node
->decl
;
1151 optimize_inline_calls (current_function_decl
);
1152 node
->local
.self_insns
= node
->global
.insns
;
1153 current_function_decl
= NULL
;
1155 timevar_pop (TV_INTEGRATION
);
1160 /* When inlining shall be performed. */
1162 cgraph_gate_inlining (void)
1164 return flag_inline_trees
;
1167 struct tree_opt_pass pass_ipa_inline
=
1169 "inline", /* name */
1170 cgraph_gate_inlining
, /* gate */
1171 cgraph_decide_inlining
, /* execute */
1174 0, /* static_pass_number */
1175 TV_INLINE_HEURISTICS
, /* tv_id */
1176 0, /* properties_required */
1177 PROP_cfg
, /* properties_provided */
1178 0, /* properties_destroyed */
1179 0, /* todo_flags_start */
1180 TODO_dump_cgraph
| TODO_dump_func
1181 | TODO_remove_functions
, /* todo_flags_finish */
1185 /* Because inlining might remove no-longer reachable nodes, we need to
1186 keep the array visible to garbage collector to avoid reading collected
1189 static GTY ((length ("nnodes"))) struct cgraph_node
**order
;
1191 /* Do inlining of small functions. Doing so early helps profiling and other
1192 passes to be somewhat more effective and avoids some code duplication in
1193 later real inlining pass for testcases with very many function calls. */
1195 cgraph_early_inlining (void)
1197 struct cgraph_node
*node
;
1200 if (sorrycount
|| errorcount
)
1202 #ifdef ENABLE_CHECKING
1203 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1204 gcc_assert (!node
->aux
);
1207 order
= ggc_alloc (sizeof (*order
) * cgraph_n_nodes
);
1208 nnodes
= cgraph_postorder (order
);
1209 for (i
= nnodes
- 1; i
>= 0; i
--)
1212 if (node
->analyzed
&& (node
->needed
|| node
->reachable
))
1213 node
->local
.self_insns
= node
->global
.insns
1214 = estimate_num_insns (node
->decl
);
1216 for (i
= nnodes
- 1; i
>= 0; i
--)
1219 if (node
->analyzed
&& node
->local
.inlinable
1220 && (node
->needed
|| node
->reachable
)
1223 if (cgraph_decide_inlining_incrementally (node
, true))
1227 #ifdef ENABLE_CHECKING
1228 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1229 gcc_assert (!node
->global
.inlined_to
);
1237 /* When inlining shall be performed. */
1239 cgraph_gate_early_inlining (void)
1241 return flag_inline_trees
&& flag_early_inlining
;
1244 struct tree_opt_pass pass_early_ipa_inline
=
1246 "einline", /* name */
1247 cgraph_gate_early_inlining
, /* gate */
1248 cgraph_early_inlining
, /* execute */
1251 0, /* static_pass_number */
1252 TV_INLINE_HEURISTICS
, /* tv_id */
1253 0, /* properties_required */
1254 PROP_cfg
, /* properties_provided */
1255 0, /* properties_destroyed */
1256 0, /* todo_flags_start */
1257 TODO_dump_cgraph
| TODO_dump_func
1258 | TODO_remove_functions
, /* todo_flags_finish */
1262 #include "gt-ipa-inline.h"