1 /* Tail call optimization on trees.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License 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/>. */
23 #include "coretypes.h"
27 #include "basic-block.h"
29 #include "tree-flow.h"
30 #include "tree-dump.h"
31 #include "gimple-pretty-print.h"
33 #include "tree-pass.h"
35 #include "langhooks.h"
38 /* The file implements the tail recursion elimination. It is also used to
39 analyze the tail calls in general, passing the results to the rtl level
40 where they are used for sibcall optimization.
42 In addition to the standard tail recursion elimination, we handle the most
43 trivial cases of making the call tail recursive by creating accumulators.
44 For example the following function
49 return n + sum (n - 1);
66 To do this, we maintain two accumulators (a_acc and m_acc) that indicate
67 when we reach the return x statement, we should return a_acc + x * m_acc
68 instead. They are initially initialized to 0 and 1, respectively,
69 so the semantics of the function is obviously preserved. If we are
70 guaranteed that the value of the accumulator never change, we
73 There are three cases how the function may exit. The first one is
74 handled in adjust_return_value, the other two in adjust_accumulator_values
75 (the second case is actually a special case of the third one and we
76 present it separately just for clarity):
78 1) Just return x, where x is not in any of the remaining special shapes.
79 We rewrite this to a gimple equivalent of return m_acc * x + a_acc.
81 2) return f (...), where f is the current function, is rewritten in a
82 classical tail-recursion elimination way, into assignment of arguments
83 and jump to the start of the function. Values of the accumulators
86 3) return a + m * f(...), where a and m do not depend on call to f.
87 To preserve the semantics described before we want this to be rewritten
88 in such a way that we finally return
90 a_acc + (a + m * f(...)) * m_acc = (a_acc + a * m_acc) + (m * m_acc) * f(...).
92 I.e. we increase a_acc by a * m_acc, multiply m_acc by m and
93 eliminate the tail call to f. Special cases when the value is just
94 added or just multiplied are obtained by setting a = 0 or m = 1.
96 TODO -- it is possible to do similar tricks for other operations. */
98 /* A structure that describes the tailcall. */
102 /* The iterator pointing to the call statement. */
103 gimple_stmt_iterator call_gsi
;
105 /* True if it is a call to the current function. */
108 /* The return value of the caller is mult * f + add, where f is the return
109 value of the call. */
112 /* Next tailcall in the chain. */
113 struct tailcall
*next
;
116 /* The variables holding the value of multiplicative and additive
118 static tree m_acc
, a_acc
;
120 static bool suitable_for_tail_opt_p (void);
121 static bool optimize_tail_call (struct tailcall
*, bool);
122 static void eliminate_tail_call (struct tailcall
*);
123 static void find_tail_calls (basic_block
, struct tailcall
**);
125 /* Returns false when the function is not suitable for tail call optimization
126 from some reason (e.g. if it takes variable number of arguments). */
129 suitable_for_tail_opt_p (void)
136 /* Returns false when the function is not suitable for tail call optimization
137 from some reason (e.g. if it takes variable number of arguments).
138 This test must pass in addition to suitable_for_tail_opt_p in order to make
139 tail call discovery happen. */
142 suitable_for_tail_call_opt_p (void)
146 /* alloca (until we have stack slot life analysis) inhibits
147 sibling call optimizations, but not tail recursion. */
148 if (cfun
->calls_alloca
)
151 /* If we are using sjlj exceptions, we may need to add a call to
152 _Unwind_SjLj_Unregister at exit of the function. Which means
153 that we cannot do any sibcall transformations. */
154 if (USING_SJLJ_EXCEPTIONS
&& current_function_has_exception_handlers ())
157 /* Any function that calls setjmp might have longjmp called from
158 any called function. ??? We really should represent this
159 properly in the CFG so that this needn't be special cased. */
160 if (cfun
->calls_setjmp
)
163 /* ??? It is OK if the argument of a function is taken in some cases,
164 but not in all cases. See PR15387 and PR19616. Revisit for 4.1. */
165 for (param
= DECL_ARGUMENTS (current_function_decl
);
167 param
= DECL_CHAIN (param
))
168 if (TREE_ADDRESSABLE (param
))
174 /* Checks whether the expression EXPR in stmt AT is independent of the
175 statement pointed to by GSI (in a sense that we already know EXPR's value
176 at GSI). We use the fact that we are only called from the chain of
177 basic blocks that have only single successor. Returns the expression
178 containing the value of EXPR at GSI. */
181 independent_of_stmt_p (tree expr
, gimple at
, gimple_stmt_iterator gsi
)
183 basic_block bb
, call_bb
, at_bb
;
187 if (is_gimple_min_invariant (expr
))
190 if (TREE_CODE (expr
) != SSA_NAME
)
193 /* Mark the blocks in the chain leading to the end. */
194 at_bb
= gimple_bb (at
);
195 call_bb
= gimple_bb (gsi_stmt (gsi
));
196 for (bb
= call_bb
; bb
!= at_bb
; bb
= single_succ (bb
))
202 at
= SSA_NAME_DEF_STMT (expr
);
205 /* The default definition or defined before the chain. */
211 for (; !gsi_end_p (gsi
); gsi_next (&gsi
))
212 if (gsi_stmt (gsi
) == at
)
215 if (!gsi_end_p (gsi
))
220 if (gimple_code (at
) != GIMPLE_PHI
)
226 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
231 expr
= PHI_ARG_DEF_FROM_EDGE (at
, e
);
232 if (TREE_CODE (expr
) != SSA_NAME
)
234 /* The value is a constant. */
239 /* Unmark the blocks. */
240 for (bb
= call_bb
; bb
!= at_bb
; bb
= single_succ (bb
))
247 /* Simulates the effect of an assignment STMT on the return value of the tail
248 recursive CALL passed in ASS_VAR. M and A are the multiplicative and the
249 additive factor for the real return value. */
252 process_assignment (gimple stmt
, gimple_stmt_iterator call
, tree
*m
,
253 tree
*a
, tree
*ass_var
)
255 tree op0
, op1
, non_ass_var
;
256 tree dest
= gimple_assign_lhs (stmt
);
257 enum tree_code code
= gimple_assign_rhs_code (stmt
);
258 enum gimple_rhs_class rhs_class
= get_gimple_rhs_class (code
);
259 tree src_var
= gimple_assign_rhs1 (stmt
);
261 /* See if this is a simple copy operation of an SSA name to the function
262 result. In that case we may have a simple tail call. Ignore type
263 conversions that can never produce extra code between the function
264 call and the function return. */
265 if ((rhs_class
== GIMPLE_SINGLE_RHS
|| gimple_assign_cast_p (stmt
))
266 && (TREE_CODE (src_var
) == SSA_NAME
))
268 /* Reject a tailcall if the type conversion might need
270 if (gimple_assign_cast_p (stmt
)
271 && TYPE_MODE (TREE_TYPE (dest
)) != TYPE_MODE (TREE_TYPE (src_var
)))
274 if (src_var
!= *ass_var
)
281 if (rhs_class
!= GIMPLE_BINARY_RHS
)
284 /* Accumulator optimizations will reverse the order of operations.
285 We can only do that for floating-point types if we're assuming
286 that addition and multiplication are associative. */
287 if (!flag_associative_math
)
288 if (FLOAT_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl
))))
291 /* We only handle the code like
298 TODO -- Extend it for cases where the linear transformation of the output
299 is expressed in a more complicated way. */
301 op0
= gimple_assign_rhs1 (stmt
);
302 op1
= gimple_assign_rhs2 (stmt
);
305 && (non_ass_var
= independent_of_stmt_p (op1
, stmt
, call
)))
307 else if (op1
== *ass_var
308 && (non_ass_var
= independent_of_stmt_p (op0
, stmt
, call
)))
325 /* TODO -- Handle other codes (NEGATE_EXPR, MINUS_EXPR,
326 POINTER_PLUS_EXPR). */
333 /* Propagate VAR through phis on edge E. */
336 propagate_through_phis (tree var
, edge e
)
338 basic_block dest
= e
->dest
;
339 gimple_stmt_iterator gsi
;
341 for (gsi
= gsi_start_phis (dest
); !gsi_end_p (gsi
); gsi_next (&gsi
))
343 gimple phi
= gsi_stmt (gsi
);
344 if (PHI_ARG_DEF_FROM_EDGE (phi
, e
) == var
)
345 return PHI_RESULT (phi
);
350 /* Finds tailcalls falling into basic block BB. The list of found tailcalls is
351 added to the start of RET. */
354 find_tail_calls (basic_block bb
, struct tailcall
**ret
)
356 tree ass_var
= NULL_TREE
, ret_var
, func
, param
;
357 gimple stmt
, call
= NULL
;
358 gimple_stmt_iterator gsi
, agsi
;
366 referenced_var_iterator rvi
;
368 if (!single_succ_p (bb
))
371 for (gsi
= gsi_last_bb (bb
); !gsi_end_p (gsi
); gsi_prev (&gsi
))
373 stmt
= gsi_stmt (gsi
);
376 if (gimple_code (stmt
) == GIMPLE_LABEL
|| is_gimple_debug (stmt
))
379 /* Check for a call. */
380 if (is_gimple_call (stmt
))
383 ass_var
= gimple_call_lhs (stmt
);
387 /* If the statement references memory or volatile operands, fail. */
388 if (gimple_references_memory_p (stmt
)
389 || gimple_has_volatile_ops (stmt
))
396 /* Recurse to the predecessors. */
397 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
398 find_tail_calls (e
->src
, ret
);
403 /* If the LHS of our call is not just a simple register, we can't
404 transform this into a tail or sibling call. This situation happens,
405 in (e.g.) "*p = foo()" where foo returns a struct. In this case
406 we won't have a temporary here, but we need to carry out the side
407 effect anyway, so tailcall is impossible.
409 ??? In some situations (when the struct is returned in memory via
410 invisible argument) we could deal with this, e.g. by passing 'p'
411 itself as that argument to foo, but it's too early to do this here,
412 and expand_call() will not handle it anyway. If it ever can, then
413 we need to revisit this here, to allow that situation. */
414 if (ass_var
&& !is_gimple_reg (ass_var
))
417 /* We found the call, check whether it is suitable. */
418 tail_recursion
= false;
419 func
= gimple_call_fndecl (call
);
420 if (func
== current_function_decl
)
424 for (param
= DECL_ARGUMENTS (func
), idx
= 0;
425 param
&& idx
< gimple_call_num_args (call
);
426 param
= DECL_CHAIN (param
), idx
++)
428 arg
= gimple_call_arg (call
, idx
);
431 /* Make sure there are no problems with copying. The parameter
432 have a copyable type and the two arguments must have reasonably
433 equivalent types. The latter requirement could be relaxed if
434 we emitted a suitable type conversion statement. */
435 if (!is_gimple_reg_type (TREE_TYPE (param
))
436 || !useless_type_conversion_p (TREE_TYPE (param
),
440 /* The parameter should be a real operand, so that phi node
441 created for it at the start of the function has the meaning
442 of copying the value. This test implies is_gimple_reg_type
443 from the previous condition, however this one could be
444 relaxed by being more careful with copying the new value
445 of the parameter (emitting appropriate GIMPLE_ASSIGN and
446 updating the virtual operands). */
447 if (!is_gimple_reg (param
))
451 if (idx
== gimple_call_num_args (call
) && !param
)
452 tail_recursion
= true;
455 /* Make sure the tail invocation of this function does not refer
456 to local variables. */
457 FOR_EACH_REFERENCED_VAR (var
, rvi
)
459 if (TREE_CODE (var
) != PARM_DECL
460 && auto_var_in_fn_p (var
, cfun
->decl
)
461 && (ref_maybe_used_by_stmt_p (call
, var
)
462 || call_may_clobber_ref_p (call
, var
)))
466 /* Now check the statements after the call. None of them has virtual
467 operands, so they may only depend on the call through its return
468 value. The return value should also be dependent on each of them,
469 since we are running after dce. */
477 tree tmp_a
= NULL_TREE
;
478 tree tmp_m
= NULL_TREE
;
481 while (gsi_end_p (agsi
))
483 ass_var
= propagate_through_phis (ass_var
, single_succ_edge (abb
));
484 abb
= single_succ (abb
);
485 agsi
= gsi_start_bb (abb
);
488 stmt
= gsi_stmt (agsi
);
490 if (gimple_code (stmt
) == GIMPLE_LABEL
)
493 if (gimple_code (stmt
) == GIMPLE_RETURN
)
496 if (is_gimple_debug (stmt
))
499 if (gimple_code (stmt
) != GIMPLE_ASSIGN
)
502 /* This is a gimple assign. */
503 if (! process_assignment (stmt
, gsi
, &tmp_m
, &tmp_a
, &ass_var
))
509 a
= fold_build2 (PLUS_EXPR
, TREE_TYPE (tmp_a
), a
, tmp_a
);
516 m
= fold_build2 (MULT_EXPR
, TREE_TYPE (tmp_m
), m
, tmp_m
);
521 a
= fold_build2 (MULT_EXPR
, TREE_TYPE (tmp_m
), a
, tmp_m
);
525 /* See if this is a tail call we can handle. */
526 ret_var
= gimple_return_retval (stmt
);
528 /* We may proceed if there either is no return value, or the return value
529 is identical to the call's return. */
531 && (ret_var
!= ass_var
))
534 /* If this is not a tail recursive call, we cannot handle addends or
536 if (!tail_recursion
&& (m
|| a
))
539 nw
= XNEW (struct tailcall
);
543 nw
->tail_recursion
= tail_recursion
;
552 /* Helper to insert PHI_ARGH to the phi of VAR in the destination of edge E. */
555 add_successor_phi_arg (edge e
, tree var
, tree phi_arg
)
557 gimple_stmt_iterator gsi
;
559 for (gsi
= gsi_start_phis (e
->dest
); !gsi_end_p (gsi
); gsi_next (&gsi
))
560 if (PHI_RESULT (gsi_stmt (gsi
)) == var
)
563 gcc_assert (!gsi_end_p (gsi
));
564 add_phi_arg (gsi_stmt (gsi
), phi_arg
, e
, UNKNOWN_LOCATION
);
567 /* Creates a GIMPLE statement which computes the operation specified by
568 CODE, OP0 and OP1 to a new variable with name LABEL and inserts the
569 statement in the position specified by GSI and UPDATE. Returns the
570 tree node of the statement's result. */
573 adjust_return_value_with_ops (enum tree_code code
, const char *label
,
574 tree acc
, tree op1
, gimple_stmt_iterator gsi
)
577 tree ret_type
= TREE_TYPE (DECL_RESULT (current_function_decl
));
578 tree tmp
= create_tmp_reg (ret_type
, label
);
582 add_referenced_var (tmp
);
584 if (types_compatible_p (TREE_TYPE (acc
), TREE_TYPE (op1
)))
585 stmt
= gimple_build_assign_with_ops (code
, tmp
, acc
, op1
);
588 tree rhs
= fold_convert (TREE_TYPE (acc
),
591 fold_convert (TREE_TYPE (op1
), acc
),
593 rhs
= force_gimple_operand_gsi (&gsi
, rhs
,
594 false, NULL
, true, GSI_CONTINUE_LINKING
);
595 stmt
= gimple_build_assign (NULL_TREE
, rhs
);
598 result
= make_ssa_name (tmp
, stmt
);
599 gimple_assign_set_lhs (stmt
, result
);
601 gsi_insert_before (&gsi
, stmt
, GSI_NEW_STMT
);
605 /* Creates a new GIMPLE statement that adjusts the value of accumulator ACC by
606 the computation specified by CODE and OP1 and insert the statement
607 at the position specified by GSI as a new statement. Returns new SSA name
608 of updated accumulator. */
611 update_accumulator_with_ops (enum tree_code code
, tree acc
, tree op1
,
612 gimple_stmt_iterator gsi
)
616 if (types_compatible_p (TREE_TYPE (acc
), TREE_TYPE (op1
)))
617 stmt
= gimple_build_assign_with_ops (code
, SSA_NAME_VAR (acc
), acc
, op1
);
620 tree rhs
= fold_convert (TREE_TYPE (acc
),
623 fold_convert (TREE_TYPE (op1
), acc
),
625 rhs
= force_gimple_operand_gsi (&gsi
, rhs
,
626 false, NULL
, false, GSI_CONTINUE_LINKING
);
627 stmt
= gimple_build_assign (NULL_TREE
, rhs
);
629 var
= make_ssa_name (SSA_NAME_VAR (acc
), stmt
);
630 gimple_assign_set_lhs (stmt
, var
);
632 gsi_insert_after (&gsi
, stmt
, GSI_NEW_STMT
);
636 /* Adjust the accumulator values according to A and M after GSI, and update
637 the phi nodes on edge BACK. */
640 adjust_accumulator_values (gimple_stmt_iterator gsi
, tree m
, tree a
, edge back
)
642 tree var
, a_acc_arg
, m_acc_arg
;
645 m
= force_gimple_operand_gsi (&gsi
, m
, true, NULL
, true, GSI_SAME_STMT
);
647 a
= force_gimple_operand_gsi (&gsi
, a
, true, NULL
, true, GSI_SAME_STMT
);
655 if (integer_onep (a
))
658 var
= adjust_return_value_with_ops (MULT_EXPR
, "acc_tmp", m_acc
,
664 a_acc_arg
= update_accumulator_with_ops (PLUS_EXPR
, a_acc
, var
, gsi
);
668 m_acc_arg
= update_accumulator_with_ops (MULT_EXPR
, m_acc
, m
, gsi
);
671 add_successor_phi_arg (back
, a_acc
, a_acc_arg
);
674 add_successor_phi_arg (back
, m_acc
, m_acc_arg
);
677 /* Adjust value of the return at the end of BB according to M and A
681 adjust_return_value (basic_block bb
, tree m
, tree a
)
684 gimple ret_stmt
= gimple_seq_last_stmt (bb_seq (bb
));
685 gimple_stmt_iterator gsi
= gsi_last_bb (bb
);
687 gcc_assert (gimple_code (ret_stmt
) == GIMPLE_RETURN
);
689 retval
= gimple_return_retval (ret_stmt
);
690 if (!retval
|| retval
== error_mark_node
)
694 retval
= adjust_return_value_with_ops (MULT_EXPR
, "mul_tmp", m_acc
, retval
,
697 retval
= adjust_return_value_with_ops (PLUS_EXPR
, "acc_tmp", a_acc
, retval
,
699 gimple_return_set_retval (ret_stmt
, retval
);
700 update_stmt (ret_stmt
);
703 /* Subtract COUNT and FREQUENCY from the basic block and it's
706 decrease_profile (basic_block bb
, gcov_type count
, int frequency
)
712 bb
->frequency
-= frequency
;
713 if (bb
->frequency
< 0)
715 if (!single_succ_p (bb
))
717 gcc_assert (!EDGE_COUNT (bb
->succs
));
720 e
= single_succ_edge (bb
);
726 /* Returns true if argument PARAM of the tail recursive call needs to be copied
727 when the call is eliminated. */
730 arg_needs_copy_p (tree param
)
734 if (!is_gimple_reg (param
) || !var_ann (param
))
737 /* Parameters that are only defined but never used need not be copied. */
738 def
= gimple_default_def (cfun
, param
);
745 /* Eliminates tail call described by T. TMP_VARS is a list of
746 temporary variables used to copy the function arguments. */
749 eliminate_tail_call (struct tailcall
*t
)
755 basic_block bb
, first
;
758 gimple_stmt_iterator gsi
;
761 stmt
= orig_stmt
= gsi_stmt (t
->call_gsi
);
762 bb
= gsi_bb (t
->call_gsi
);
764 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
766 fprintf (dump_file
, "Eliminated tail recursion in bb %d : ",
768 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
769 fprintf (dump_file
, "\n");
772 gcc_assert (is_gimple_call (stmt
));
774 first
= single_succ (ENTRY_BLOCK_PTR
);
776 /* Remove the code after call_gsi that will become unreachable. The
777 possibly unreachable code in other blocks is removed later in
781 while (!gsi_end_p (gsi
))
783 gimple t
= gsi_stmt (gsi
);
784 /* Do not remove the return statement, so that redirect_edge_and_branch
785 sees how the block ends. */
786 if (gimple_code (t
) == GIMPLE_RETURN
)
789 gsi_remove (&gsi
, true);
793 /* Number of executions of function has reduced by the tailcall. */
794 e
= single_succ_edge (gsi_bb (t
->call_gsi
));
795 decrease_profile (EXIT_BLOCK_PTR
, e
->count
, EDGE_FREQUENCY (e
));
796 decrease_profile (ENTRY_BLOCK_PTR
, e
->count
, EDGE_FREQUENCY (e
));
797 if (e
->dest
!= EXIT_BLOCK_PTR
)
798 decrease_profile (e
->dest
, e
->count
, EDGE_FREQUENCY (e
));
800 /* Replace the call by a jump to the start of function. */
801 e
= redirect_edge_and_branch (single_succ_edge (gsi_bb (t
->call_gsi
)),
804 PENDING_STMT (e
) = NULL
;
806 /* Add phi node entries for arguments. The ordering of the phi nodes should
807 be the same as the ordering of the arguments. */
808 for (param
= DECL_ARGUMENTS (current_function_decl
),
809 idx
= 0, gsi
= gsi_start_phis (first
);
811 param
= DECL_CHAIN (param
), idx
++)
813 if (!arg_needs_copy_p (param
))
816 arg
= gimple_call_arg (stmt
, idx
);
817 phi
= gsi_stmt (gsi
);
818 gcc_assert (param
== SSA_NAME_VAR (PHI_RESULT (phi
)));
820 add_phi_arg (phi
, arg
, e
, gimple_location (stmt
));
824 /* Update the values of accumulators. */
825 adjust_accumulator_values (t
->call_gsi
, t
->mult
, t
->add
, e
);
827 call
= gsi_stmt (t
->call_gsi
);
828 rslt
= gimple_call_lhs (call
);
829 if (rslt
!= NULL_TREE
)
831 /* Result of the call will no longer be defined. So adjust the
832 SSA_NAME_DEF_STMT accordingly. */
833 SSA_NAME_DEF_STMT (rslt
) = gimple_build_nop ();
836 gsi_remove (&t
->call_gsi
, true);
840 /* Add phi nodes for the virtual operands defined in the function to the
841 header of the loop created by tail recursion elimination.
843 Originally, we used to add phi nodes only for call clobbered variables,
844 as the value of the non-call clobbered ones obviously cannot be used
845 or changed within the recursive call. However, the local variables
846 from multiple calls now share the same location, so the virtual ssa form
847 requires us to say that the location dies on further iterations of the loop,
848 which requires adding phi nodes.
851 add_virtual_phis (void)
853 referenced_var_iterator rvi
;
856 /* The problematic part is that there is no way how to know what
857 to put into phi nodes (there in fact does not have to be such
858 ssa name available). A solution would be to have an artificial
859 use/kill for all virtual operands in EXIT node. Unless we have
860 this, we cannot do much better than to rebuild the ssa form for
861 possibly affected virtual ssa names from scratch. */
863 FOR_EACH_REFERENCED_VAR (var
, rvi
)
865 if (!is_gimple_reg (var
) && gimple_default_def (cfun
, var
) != NULL_TREE
)
866 mark_sym_for_renaming (var
);
870 /* Optimizes the tailcall described by T. If OPT_TAILCALLS is true, also
871 mark the tailcalls for the sibcall optimization. */
874 optimize_tail_call (struct tailcall
*t
, bool opt_tailcalls
)
876 if (t
->tail_recursion
)
878 eliminate_tail_call (t
);
884 gimple stmt
= gsi_stmt (t
->call_gsi
);
886 gimple_call_set_tail (stmt
, true);
887 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
889 fprintf (dump_file
, "Found tail call ");
890 print_gimple_stmt (dump_file
, stmt
, 0, dump_flags
);
891 fprintf (dump_file
, " in bb %i\n", (gsi_bb (t
->call_gsi
))->index
);
898 /* Creates a tail-call accumulator of the same type as the return type of the
899 current function. LABEL is the name used to creating the temporary
900 variable for the accumulator. The accumulator will be inserted in the
901 phis of a basic block BB with single predecessor with an initial value
902 INIT converted to the current function return type. */
905 create_tailcall_accumulator (const char *label
, basic_block bb
, tree init
)
907 tree ret_type
= TREE_TYPE (DECL_RESULT (current_function_decl
));
908 tree tmp
= create_tmp_reg (ret_type
, label
);
911 add_referenced_var (tmp
);
912 phi
= create_phi_node (tmp
, bb
);
913 /* RET_TYPE can be a float when -ffast-maths is enabled. */
914 add_phi_arg (phi
, fold_convert (ret_type
, init
), single_pred_edge (bb
),
916 return PHI_RESULT (phi
);
919 /* Optimizes tail calls in the function, turning the tail recursion
923 tree_optimize_tail_calls_1 (bool opt_tailcalls
)
926 bool phis_constructed
= false;
927 struct tailcall
*tailcalls
= NULL
, *act
, *next
;
928 bool changed
= false;
929 basic_block first
= single_succ (ENTRY_BLOCK_PTR
);
934 if (!suitable_for_tail_opt_p ())
937 opt_tailcalls
= suitable_for_tail_call_opt_p ();
939 FOR_EACH_EDGE (e
, ei
, EXIT_BLOCK_PTR
->preds
)
941 /* Only traverse the normal exits, i.e. those that end with return
943 stmt
= last_stmt (e
->src
);
946 && gimple_code (stmt
) == GIMPLE_RETURN
)
947 find_tail_calls (e
->src
, &tailcalls
);
950 /* Construct the phi nodes and accumulators if necessary. */
951 a_acc
= m_acc
= NULL_TREE
;
952 for (act
= tailcalls
; act
; act
= act
->next
)
954 if (!act
->tail_recursion
)
957 if (!phis_constructed
)
959 /* Ensure that there is only one predecessor of the block
960 or if there are existing degenerate PHI nodes. */
961 if (!single_pred_p (first
)
962 || !gimple_seq_empty_p (phi_nodes (first
)))
963 first
= split_edge (single_succ_edge (ENTRY_BLOCK_PTR
));
965 /* Copy the args if needed. */
966 for (param
= DECL_ARGUMENTS (current_function_decl
);
968 param
= DECL_CHAIN (param
))
969 if (arg_needs_copy_p (param
))
971 tree name
= gimple_default_def (cfun
, param
);
972 tree new_name
= make_ssa_name (param
, SSA_NAME_DEF_STMT (name
));
975 set_default_def (param
, new_name
);
976 phi
= create_phi_node (name
, first
);
977 SSA_NAME_DEF_STMT (name
) = phi
;
978 add_phi_arg (phi
, new_name
, single_pred_edge (first
),
979 EXPR_LOCATION (param
));
981 phis_constructed
= true;
984 if (act
->add
&& !a_acc
)
985 a_acc
= create_tailcall_accumulator ("add_acc", first
,
988 if (act
->mult
&& !m_acc
)
989 m_acc
= create_tailcall_accumulator ("mult_acc", first
,
993 for (; tailcalls
; tailcalls
= next
)
995 next
= tailcalls
->next
;
996 changed
|= optimize_tail_call (tailcalls
, opt_tailcalls
);
1002 /* Modify the remaining return statements. */
1003 FOR_EACH_EDGE (e
, ei
, EXIT_BLOCK_PTR
->preds
)
1005 stmt
= last_stmt (e
->src
);
1008 && gimple_code (stmt
) == GIMPLE_RETURN
)
1009 adjust_return_value (e
->src
, m_acc
, a_acc
);
1014 free_dominance_info (CDI_DOMINATORS
);
1016 if (phis_constructed
)
1017 add_virtual_phis ();
1019 return TODO_cleanup_cfg
| TODO_update_ssa_only_virtuals
;
1024 execute_tail_recursion (void)
1026 return tree_optimize_tail_calls_1 (false);
1030 gate_tail_calls (void)
1032 return flag_optimize_sibling_calls
!= 0 && dbg_cnt (tail_call
);
1036 execute_tail_calls (void)
1038 return tree_optimize_tail_calls_1 (true);
1041 struct gimple_opt_pass pass_tail_recursion
=
1046 gate_tail_calls
, /* gate */
1047 execute_tail_recursion
, /* execute */
1050 0, /* static_pass_number */
1051 TV_NONE
, /* tv_id */
1052 PROP_cfg
| PROP_ssa
, /* properties_required */
1053 0, /* properties_provided */
1054 0, /* properties_destroyed */
1055 0, /* todo_flags_start */
1056 TODO_dump_func
| TODO_verify_ssa
/* todo_flags_finish */
1060 struct gimple_opt_pass pass_tail_calls
=
1065 gate_tail_calls
, /* gate */
1066 execute_tail_calls
, /* execute */
1069 0, /* static_pass_number */
1070 TV_NONE
, /* tv_id */
1071 PROP_cfg
| PROP_ssa
, /* properties_required */
1072 0, /* properties_provided */
1073 0, /* properties_destroyed */
1074 0, /* todo_flags_start */
1075 TODO_dump_func
| TODO_verify_ssa
/* todo_flags_finish */