1 /* Tail call optimization on trees.
2 Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to
18 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA. */
23 #include "coretypes.h"
28 #include "hard-reg-set.h"
29 #include "basic-block.h"
31 #include "tree-flow.h"
32 #include "tree-dump.h"
33 #include "diagnostic.h"
35 #include "tree-pass.h"
37 #include "langhooks.h"
39 /* The file implements the tail recursion elimination. It is also used to
40 analyze the tail calls in general, passing the results to the rtl level
41 where they are used for sibcall optimization.
43 In addition to the standard tail recursion elimination, we handle the most
44 trivial cases of making the call tail recursive by creating accumulators.
45 For example the following function
50 return n + sum (n - 1);
67 To do this, we maintain two accumulators (a_acc and m_acc) that indicate
68 when we reach the return x statement, we should return a_acc + x * m_acc
69 instead. They are initially initialized to 0 and 1, respectively,
70 so the semantics of the function is obviously preserved. If we are
71 guaranteed that the value of the accumulator never change, we
74 There are three cases how the function may exit. The first one is
75 handled in adjust_return_value, the other two in adjust_accumulator_values
76 (the second case is actually a special case of the third one and we
77 present it separately just for clarity):
79 1) Just return x, where x is not in any of the remaining special shapes.
80 We rewrite this to a gimple equivalent of return m_acc * x + a_acc.
82 2) return f (...), where f is the current function, is rewritten in a
83 classical tail-recursion elimination way, into assignment of arguments
84 and jump to the start of the function. Values of the accumulators
87 3) return a + m * f(...), where a and m do not depend on call to f.
88 To preserve the semantics described before we want this to be rewritten
89 in such a way that we finally return
91 a_acc + (a + m * f(...)) * m_acc = (a_acc + a * m_acc) + (m * m_acc) * f(...).
93 I.e. we increase a_acc by a * m_acc, multiply m_acc by m and
94 eliminate the tail call to f. Special cases when the value is just
95 added or just multiplied are obtained by setting a = 0 or m = 1.
97 TODO -- it is possible to do similar tricks for other operations. */
99 /* A structure that describes the tailcall. */
103 /* The block in that the call occur. */
104 basic_block call_block
;
106 /* The iterator pointing to the call statement. */
107 block_stmt_iterator call_bsi
;
109 /* True if it is a call to the current function. */
112 /* The return value of the caller is mult * f + add, where f is the return
113 value of the call. */
116 /* Next tailcall in the chain. */
117 struct tailcall
*next
;
120 /* The variables holding the value of multiplicative and additive
122 static tree m_acc
, a_acc
;
124 static bool suitable_for_tail_opt_p (void);
125 static bool optimize_tail_call (struct tailcall
*, bool);
126 static void eliminate_tail_call (struct tailcall
*);
127 static void find_tail_calls (basic_block
, struct tailcall
**);
129 /* Returns false when the function is not suitable for tail call optimization
130 from some reason (e.g. if it takes variable number of arguments). */
133 suitable_for_tail_opt_p (void)
135 referenced_var_iterator rvi
;
138 if (current_function_stdarg
)
141 /* No local variable nor structure field should be call-clobbered. We
142 ignore any kind of memory tag, as these are not real variables. */
144 FOR_EACH_REFERENCED_VAR (var
, rvi
)
146 if (!is_global_var (var
)
147 && (!MTAG_P (var
) || TREE_CODE (var
) == STRUCT_FIELD_TAG
)
148 && (gimple_aliases_computed_p (cfun
) ? is_call_clobbered (var
)
149 : TREE_ADDRESSABLE (var
)))
155 /* Returns false when the function is not suitable for tail call optimization
156 from some reason (e.g. if it takes variable number of arguments).
157 This test must pass in addition to suitable_for_tail_opt_p in order to make
158 tail call discovery happen. */
161 suitable_for_tail_call_opt_p (void)
165 /* alloca (until we have stack slot life analysis) inhibits
166 sibling call optimizations, but not tail recursion. */
167 if (current_function_calls_alloca
)
170 /* If we are using sjlj exceptions, we may need to add a call to
171 _Unwind_SjLj_Unregister at exit of the function. Which means
172 that we cannot do any sibcall transformations. */
173 if (USING_SJLJ_EXCEPTIONS
&& current_function_has_exception_handlers ())
176 /* Any function that calls setjmp might have longjmp called from
177 any called function. ??? We really should represent this
178 properly in the CFG so that this needn't be special cased. */
179 if (current_function_calls_setjmp
)
182 /* ??? It is OK if the argument of a function is taken in some cases,
183 but not in all cases. See PR15387 and PR19616. Revisit for 4.1. */
184 for (param
= DECL_ARGUMENTS (current_function_decl
);
186 param
= TREE_CHAIN (param
))
187 if (TREE_ADDRESSABLE (param
))
193 /* Checks whether the expression EXPR in stmt AT is independent of the
194 statement pointed to by BSI (in a sense that we already know EXPR's value
195 at BSI). We use the fact that we are only called from the chain of
196 basic blocks that have only single successor. Returns the expression
197 containing the value of EXPR at BSI. */
200 independent_of_stmt_p (tree expr
, tree at
, block_stmt_iterator bsi
)
202 basic_block bb
, call_bb
, at_bb
;
206 if (is_gimple_min_invariant (expr
))
209 if (TREE_CODE (expr
) != SSA_NAME
)
212 /* Mark the blocks in the chain leading to the end. */
213 at_bb
= bb_for_stmt (at
);
214 call_bb
= bb_for_stmt (bsi_stmt (bsi
));
215 for (bb
= call_bb
; bb
!= at_bb
; bb
= single_succ (bb
))
221 at
= SSA_NAME_DEF_STMT (expr
);
222 bb
= bb_for_stmt (at
);
224 /* The default definition or defined before the chain. */
230 for (; !bsi_end_p (bsi
); bsi_next (&bsi
))
231 if (bsi_stmt (bsi
) == at
)
234 if (!bsi_end_p (bsi
))
239 if (TREE_CODE (at
) != PHI_NODE
)
245 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
250 expr
= PHI_ARG_DEF_FROM_EDGE (at
, e
);
251 if (TREE_CODE (expr
) != SSA_NAME
)
253 /* The value is a constant. */
258 /* Unmark the blocks. */
259 for (bb
= call_bb
; bb
!= at_bb
; bb
= single_succ (bb
))
266 /* Simulates the effect of an assignment of ASS in STMT on the return value
267 of the tail recursive CALL passed in ASS_VAR. M and A are the
268 multiplicative and the additive factor for the real return value. */
271 process_assignment (tree ass
, tree stmt
, block_stmt_iterator call
, tree
*m
,
272 tree
*a
, tree
*ass_var
)
274 tree op0
, op1
, non_ass_var
;
275 tree dest
= GIMPLE_STMT_OPERAND (ass
, 0);
276 tree src
= GIMPLE_STMT_OPERAND (ass
, 1);
277 enum tree_code code
= TREE_CODE (src
);
280 /* See if this is a simple copy operation of an SSA name to the function
281 result. In that case we may have a simple tail call. Ignore type
282 conversions that can never produce extra code between the function
283 call and the function return. */
284 STRIP_NOPS (src_var
);
285 if (TREE_CODE (src_var
) == SSA_NAME
)
287 if (src_var
!= *ass_var
)
294 if (TREE_CODE_CLASS (code
) != tcc_binary
)
297 /* Accumulator optimizations will reverse the order of operations.
298 We can only do that for floating-point types if we're assuming
299 that addition and multiplication are associative. */
300 if (!flag_unsafe_math_optimizations
)
301 if (FLOAT_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl
))))
304 /* We only handle the code like
311 TODO -- Extend it for cases where the linear transformation of the output
312 is expressed in a more complicated way. */
314 op0
= TREE_OPERAND (src
, 0);
315 op1
= TREE_OPERAND (src
, 1);
318 && (non_ass_var
= independent_of_stmt_p (op1
, stmt
, call
)))
320 else if (op1
== *ass_var
321 && (non_ass_var
= independent_of_stmt_p (op0
, stmt
, call
)))
329 /* There should be no previous addition. TODO -- it should be fairly
330 straightforward to lift this restriction -- just allow storing
331 more complicated expressions in *A, and gimplify it in
332 adjust_accumulator_values. */
340 /* Similar remark applies here. Handling multiplication after addition
341 is just slightly more complicated -- we need to multiply both *A and
349 /* TODO -- Handle other codes (NEGATE_EXPR, MINUS_EXPR). */
356 /* Propagate VAR through phis on edge E. */
359 propagate_through_phis (tree var
, edge e
)
361 basic_block dest
= e
->dest
;
364 for (phi
= phi_nodes (dest
); phi
; phi
= PHI_CHAIN (phi
))
365 if (PHI_ARG_DEF_FROM_EDGE (phi
, e
) == var
)
366 return PHI_RESULT (phi
);
371 /* Finds tailcalls falling into basic block BB. The list of found tailcalls is
372 added to the start of RET. */
375 find_tail_calls (basic_block bb
, struct tailcall
**ret
)
377 tree ass_var
, ret_var
, stmt
, func
, param
, call
= NULL_TREE
;
378 block_stmt_iterator bsi
, absi
;
386 if (!single_succ_p (bb
))
389 for (bsi
= bsi_last (bb
); !bsi_end_p (bsi
); bsi_prev (&bsi
))
391 stmt
= bsi_stmt (bsi
);
394 if (TREE_CODE (stmt
) == LABEL_EXPR
)
397 /* Check for a call. */
398 if (TREE_CODE (stmt
) == GIMPLE_MODIFY_STMT
)
400 ass_var
= GIMPLE_STMT_OPERAND (stmt
, 0);
401 call
= GIMPLE_STMT_OPERAND (stmt
, 1);
402 if (TREE_CODE (call
) == WITH_SIZE_EXPR
)
403 call
= TREE_OPERAND (call
, 0);
411 if (TREE_CODE (call
) == CALL_EXPR
)
414 /* If the statement has virtual or volatile operands, fail. */
415 ann
= stmt_ann (stmt
);
416 if (!ZERO_SSA_OPERANDS (stmt
, (SSA_OP_VUSE
| SSA_OP_VIRTUAL_DEFS
))
417 || ann
->has_volatile_ops
)
424 /* Recurse to the predecessors. */
425 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
426 find_tail_calls (e
->src
, ret
);
431 /* We found the call, check whether it is suitable. */
432 tail_recursion
= false;
433 func
= get_callee_fndecl (call
);
434 if (func
== current_function_decl
)
436 call_expr_arg_iterator iter
;
438 for (param
= DECL_ARGUMENTS (func
),
439 arg
= first_call_expr_arg (call
, &iter
);
441 param
= TREE_CHAIN (param
), arg
= next_call_expr_arg (&iter
))
445 /* Make sure there are no problems with copying. The parameter
446 have a copyable type and the two arguments must have reasonably
447 equivalent types. The latter requirement could be relaxed if
448 we emitted a suitable type conversion statement. */
449 if (!is_gimple_reg_type (TREE_TYPE (param
))
450 || !lang_hooks
.types_compatible_p (TREE_TYPE (param
),
454 /* The parameter should be a real operand, so that phi node
455 created for it at the start of the function has the meaning
456 of copying the value. This test implies is_gimple_reg_type
457 from the previous condition, however this one could be
458 relaxed by being more careful with copying the new value
459 of the parameter (emitting appropriate GIMPLE_MODIFY_STMT and
460 updating the virtual operands). */
461 if (!is_gimple_reg (param
))
466 tail_recursion
= true;
469 /* Now check the statements after the call. None of them has virtual
470 operands, so they may only depend on the call through its return
471 value. The return value should also be dependent on each of them,
472 since we are running after dce. */
482 while (bsi_end_p (absi
))
484 ass_var
= propagate_through_phis (ass_var
, single_succ_edge (abb
));
485 abb
= single_succ (abb
);
486 absi
= bsi_start (abb
);
489 stmt
= bsi_stmt (absi
);
491 if (TREE_CODE (stmt
) == LABEL_EXPR
)
494 if (TREE_CODE (stmt
) == RETURN_EXPR
)
497 if (TREE_CODE (stmt
) != GIMPLE_MODIFY_STMT
)
500 if (!process_assignment (stmt
, stmt
, bsi
, &m
, &a
, &ass_var
))
504 /* See if this is a tail call we can handle. */
505 ret_var
= TREE_OPERAND (stmt
, 0);
507 && TREE_CODE (ret_var
) == GIMPLE_MODIFY_STMT
)
509 tree ret_op
= GIMPLE_STMT_OPERAND (ret_var
, 1);
512 && TREE_CODE (ret_op
) != SSA_NAME
)
515 if (!process_assignment (ret_var
, stmt
, bsi
, &m
, &a
, &ass_var
))
517 ret_var
= GIMPLE_STMT_OPERAND (ret_var
, 0);
520 /* We may proceed if there either is no return value, or the return value
521 is identical to the call's return. */
523 && (ret_var
!= ass_var
))
526 /* If this is not a tail recursive call, we cannot handle addends or
528 if (!tail_recursion
&& (m
|| a
))
531 nw
= XNEW (struct tailcall
);
536 nw
->tail_recursion
= tail_recursion
;
545 /* Adjust the accumulator values according to A and M after BSI, and update
546 the phi nodes on edge BACK. */
549 adjust_accumulator_values (block_stmt_iterator bsi
, tree m
, tree a
, edge back
)
551 tree stmt
, var
, phi
, tmp
;
552 tree ret_type
= TREE_TYPE (DECL_RESULT (current_function_decl
));
553 tree a_acc_arg
= a_acc
, m_acc_arg
= m_acc
;
559 if (integer_onep (a
))
563 stmt
= build2 (GIMPLE_MODIFY_STMT
, ret_type
, NULL_TREE
,
564 build2 (MULT_EXPR
, ret_type
, m_acc
, a
));
566 tmp
= create_tmp_var (ret_type
, "acc_tmp");
567 add_referenced_var (tmp
);
569 var
= make_ssa_name (tmp
, stmt
);
570 GIMPLE_STMT_OPERAND (stmt
, 0) = var
;
571 bsi_insert_after (&bsi
, stmt
, BSI_NEW_STMT
);
577 stmt
= build2 (GIMPLE_MODIFY_STMT
, ret_type
, NULL_TREE
,
578 build2 (PLUS_EXPR
, ret_type
, a_acc
, var
));
579 var
= make_ssa_name (SSA_NAME_VAR (a_acc
), stmt
);
580 GIMPLE_STMT_OPERAND (stmt
, 0) = var
;
581 bsi_insert_after (&bsi
, stmt
, BSI_NEW_STMT
);
587 stmt
= build2 (GIMPLE_MODIFY_STMT
, ret_type
, NULL_TREE
,
588 build2 (MULT_EXPR
, ret_type
, m_acc
, m
));
589 var
= make_ssa_name (SSA_NAME_VAR (m_acc
), stmt
);
590 GIMPLE_STMT_OPERAND (stmt
, 0) = var
;
591 bsi_insert_after (&bsi
, stmt
, BSI_NEW_STMT
);
597 for (phi
= phi_nodes (back
->dest
); phi
; phi
= PHI_CHAIN (phi
))
598 if (PHI_RESULT (phi
) == a_acc
)
601 add_phi_arg (phi
, a_acc_arg
, back
);
606 for (phi
= phi_nodes (back
->dest
); phi
; phi
= PHI_CHAIN (phi
))
607 if (PHI_RESULT (phi
) == m_acc
)
610 add_phi_arg (phi
, m_acc_arg
, back
);
614 /* Adjust value of the return at the end of BB according to M and A
618 adjust_return_value (basic_block bb
, tree m
, tree a
)
620 tree ret_stmt
= last_stmt (bb
), ret_var
, var
, stmt
, tmp
;
621 tree ret_type
= TREE_TYPE (DECL_RESULT (current_function_decl
));
623 block_stmt_iterator bsi
= bsi_last (bb
);
625 gcc_assert (TREE_CODE (ret_stmt
) == RETURN_EXPR
);
627 ret_var
= TREE_OPERAND (ret_stmt
, 0);
631 if (TREE_CODE (ret_var
) == GIMPLE_MODIFY_STMT
)
633 ret_op
= &GIMPLE_STMT_OPERAND (ret_var
, 1);
637 ret_op
= &TREE_OPERAND (ret_stmt
, 0);
641 stmt
= build2 (GIMPLE_MODIFY_STMT
, ret_type
, NULL_TREE
,
642 build2 (MULT_EXPR
, ret_type
, m_acc
, ret_var
));
644 tmp
= create_tmp_var (ret_type
, "acc_tmp");
645 add_referenced_var (tmp
);
647 var
= make_ssa_name (tmp
, stmt
);
648 GIMPLE_STMT_OPERAND (stmt
, 0) = var
;
649 bsi_insert_before (&bsi
, stmt
, BSI_SAME_STMT
);
656 stmt
= build2 (GIMPLE_MODIFY_STMT
, ret_type
, NULL_TREE
,
657 build2 (PLUS_EXPR
, ret_type
, a_acc
, var
));
659 tmp
= create_tmp_var (ret_type
, "acc_tmp");
660 add_referenced_var (tmp
);
662 var
= make_ssa_name (tmp
, stmt
);
663 GIMPLE_STMT_OPERAND (stmt
, 0) = var
;
664 bsi_insert_before (&bsi
, stmt
, BSI_SAME_STMT
);
668 update_stmt (ret_stmt
);
671 /* Subtract COUNT and FREQUENCY from the basic block and it's
674 decrease_profile (basic_block bb
, gcov_type count
, int frequency
)
680 bb
->frequency
-= frequency
;
681 if (bb
->frequency
< 0)
683 if (!single_succ_p (bb
))
685 gcc_assert (!EDGE_COUNT (bb
->succs
));
688 e
= single_succ_edge (bb
);
694 /* Returns true if argument PARAM of the tail recursive call needs to be copied
695 when the call is eliminated. */
698 arg_needs_copy_p (tree param
)
702 if (!is_gimple_reg (param
) || !var_ann (param
))
705 /* Parameters that are only defined but never used need not be copied. */
706 def
= gimple_default_def (cfun
, param
);
713 /* Eliminates tail call described by T. TMP_VARS is a list of
714 temporary variables used to copy the function arguments. */
717 eliminate_tail_call (struct tailcall
*t
)
719 tree param
, stmt
, rslt
, call
;
721 call_expr_arg_iterator iter
;
722 basic_block bb
, first
;
725 block_stmt_iterator bsi
;
728 stmt
= orig_stmt
= bsi_stmt (t
->call_bsi
);
731 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
733 fprintf (dump_file
, "Eliminated tail recursion in bb %d : ",
735 print_generic_stmt (dump_file
, stmt
, TDF_SLIM
);
736 fprintf (dump_file
, "\n");
739 if (TREE_CODE (stmt
) == GIMPLE_MODIFY_STMT
)
740 stmt
= GIMPLE_STMT_OPERAND (stmt
, 1);
742 first
= single_succ (ENTRY_BLOCK_PTR
);
744 /* Remove the code after call_bsi that will become unreachable. The
745 possibly unreachable code in other blocks is removed later in
749 while (!bsi_end_p (bsi
))
751 tree t
= bsi_stmt (bsi
);
752 /* Do not remove the return statement, so that redirect_edge_and_branch
753 sees how the block ends. */
754 if (TREE_CODE (t
) == RETURN_EXPR
)
757 bsi_remove (&bsi
, true);
761 /* Number of executions of function has reduced by the tailcall. */
762 e
= single_succ_edge (t
->call_block
);
763 decrease_profile (EXIT_BLOCK_PTR
, e
->count
, EDGE_FREQUENCY (e
));
764 decrease_profile (ENTRY_BLOCK_PTR
, e
->count
, EDGE_FREQUENCY (e
));
765 if (e
->dest
!= EXIT_BLOCK_PTR
)
766 decrease_profile (e
->dest
, e
->count
, EDGE_FREQUENCY (e
));
768 /* Replace the call by a jump to the start of function. */
769 e
= redirect_edge_and_branch (single_succ_edge (t
->call_block
), first
);
771 PENDING_STMT (e
) = NULL_TREE
;
773 /* Add phi node entries for arguments. The ordering of the phi nodes should
774 be the same as the ordering of the arguments. */
775 for (param
= DECL_ARGUMENTS (current_function_decl
),
776 arg
= first_call_expr_arg (stmt
, &iter
),
777 phi
= phi_nodes (first
);
779 param
= TREE_CHAIN (param
), arg
= next_call_expr_arg (&iter
))
781 if (!arg_needs_copy_p (param
))
783 gcc_assert (param
== SSA_NAME_VAR (PHI_RESULT (phi
)));
785 add_phi_arg (phi
, arg
, e
);
786 phi
= PHI_CHAIN (phi
);
789 /* Update the values of accumulators. */
790 adjust_accumulator_values (t
->call_bsi
, t
->mult
, t
->add
, e
);
792 call
= bsi_stmt (t
->call_bsi
);
793 if (TREE_CODE (call
) == GIMPLE_MODIFY_STMT
)
795 rslt
= GIMPLE_STMT_OPERAND (call
, 0);
797 /* Result of the call will no longer be defined. So adjust the
798 SSA_NAME_DEF_STMT accordingly. */
799 SSA_NAME_DEF_STMT (rslt
) = build_empty_stmt ();
802 bsi_remove (&t
->call_bsi
, true);
806 /* Add phi nodes for the virtual operands defined in the function to the
807 header of the loop created by tail recursion elimination.
809 Originally, we used to add phi nodes only for call clobbered variables,
810 as the value of the non-call clobbered ones obviously cannot be used
811 or changed within the recursive call. However, the local variables
812 from multiple calls now share the same location, so the virtual ssa form
813 requires us to say that the location dies on further iterations of the loop,
814 which requires adding phi nodes.
817 add_virtual_phis (void)
819 referenced_var_iterator rvi
;
822 /* The problematic part is that there is no way how to know what
823 to put into phi nodes (there in fact does not have to be such
824 ssa name available). A solution would be to have an artificial
825 use/kill for all virtual operands in EXIT node. Unless we have
826 this, we cannot do much better than to rebuild the ssa form for
827 possibly affected virtual ssa names from scratch. */
829 FOR_EACH_REFERENCED_VAR (var
, rvi
)
831 if (!is_gimple_reg (var
) && gimple_default_def (cfun
, var
) != NULL_TREE
)
832 mark_sym_for_renaming (var
);
836 /* Optimizes the tailcall described by T. If OPT_TAILCALLS is true, also
837 mark the tailcalls for the sibcall optimization. */
840 optimize_tail_call (struct tailcall
*t
, bool opt_tailcalls
)
842 if (t
->tail_recursion
)
844 eliminate_tail_call (t
);
850 tree stmt
= bsi_stmt (t
->call_bsi
);
852 stmt
= get_call_expr_in (stmt
);
853 CALL_EXPR_TAILCALL (stmt
) = 1;
854 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
856 fprintf (dump_file
, "Found tail call ");
857 print_generic_expr (dump_file
, stmt
, dump_flags
);
858 fprintf (dump_file
, " in bb %i\n", t
->call_block
->index
);
865 /* Optimizes tail calls in the function, turning the tail recursion
869 tree_optimize_tail_calls_1 (bool opt_tailcalls
)
872 bool phis_constructed
= false;
873 struct tailcall
*tailcalls
= NULL
, *act
, *next
;
874 bool changed
= false;
875 basic_block first
= single_succ (ENTRY_BLOCK_PTR
);
876 tree stmt
, param
, ret_type
, tmp
, phi
;
879 if (!suitable_for_tail_opt_p ())
882 opt_tailcalls
= suitable_for_tail_call_opt_p ();
884 FOR_EACH_EDGE (e
, ei
, EXIT_BLOCK_PTR
->preds
)
886 /* Only traverse the normal exits, i.e. those that end with return
888 stmt
= last_stmt (e
->src
);
891 && TREE_CODE (stmt
) == RETURN_EXPR
)
892 find_tail_calls (e
->src
, &tailcalls
);
895 /* Construct the phi nodes and accumulators if necessary. */
896 a_acc
= m_acc
= NULL_TREE
;
897 for (act
= tailcalls
; act
; act
= act
->next
)
899 if (!act
->tail_recursion
)
902 if (!phis_constructed
)
904 /* Ensure that there is only one predecessor of the block. */
905 if (!single_pred_p (first
))
906 first
= split_edge (single_succ_edge (ENTRY_BLOCK_PTR
));
908 /* Copy the args if needed. */
909 for (param
= DECL_ARGUMENTS (current_function_decl
);
911 param
= TREE_CHAIN (param
))
912 if (arg_needs_copy_p (param
))
914 tree name
= gimple_default_def (cfun
, param
);
915 tree new_name
= make_ssa_name (param
, SSA_NAME_DEF_STMT (name
));
918 set_default_def (param
, new_name
);
919 phi
= create_phi_node (name
, first
);
920 SSA_NAME_DEF_STMT (name
) = phi
;
921 add_phi_arg (phi
, new_name
, single_pred_edge (first
));
923 phis_constructed
= true;
926 if (act
->add
&& !a_acc
)
928 ret_type
= TREE_TYPE (DECL_RESULT (current_function_decl
));
930 tmp
= create_tmp_var (ret_type
, "add_acc");
931 add_referenced_var (tmp
);
933 phi
= create_phi_node (tmp
, first
);
935 /* RET_TYPE can be a float when -ffast-maths is
937 fold_convert (ret_type
, integer_zero_node
),
938 single_pred_edge (first
));
939 a_acc
= PHI_RESULT (phi
);
942 if (act
->mult
&& !m_acc
)
944 ret_type
= TREE_TYPE (DECL_RESULT (current_function_decl
));
946 tmp
= create_tmp_var (ret_type
, "mult_acc");
947 add_referenced_var (tmp
);
949 phi
= create_phi_node (tmp
, first
);
951 /* RET_TYPE can be a float when -ffast-maths is
953 fold_convert (ret_type
, integer_one_node
),
954 single_pred_edge (first
));
955 m_acc
= PHI_RESULT (phi
);
960 if (phis_constructed
)
962 /* Reverse the order of the phi nodes, so that it matches the order
963 of operands of the function, as assumed by eliminate_tail_call. */
964 set_phi_nodes (first
, phi_reverse (phi_nodes (first
)));
967 for (; tailcalls
; tailcalls
= next
)
969 next
= tailcalls
->next
;
970 changed
|= optimize_tail_call (tailcalls
, opt_tailcalls
);
976 /* Modify the remaining return statements. */
977 FOR_EACH_EDGE (e
, ei
, EXIT_BLOCK_PTR
->preds
)
979 stmt
= last_stmt (e
->src
);
982 && TREE_CODE (stmt
) == RETURN_EXPR
)
983 adjust_return_value (e
->src
, m_acc
, a_acc
);
988 free_dominance_info (CDI_DOMINATORS
);
990 if (phis_constructed
)
993 return TODO_cleanup_cfg
| TODO_update_ssa_only_virtuals
;
998 execute_tail_recursion (void)
1000 return tree_optimize_tail_calls_1 (false);
1004 gate_tail_calls (void)
1006 return flag_optimize_sibling_calls
!= 0;
1010 execute_tail_calls (void)
1012 return tree_optimize_tail_calls_1 (true);
1015 struct tree_opt_pass pass_tail_recursion
=
1018 gate_tail_calls
, /* gate */
1019 execute_tail_recursion
, /* execute */
1022 0, /* static_pass_number */
1024 PROP_cfg
| PROP_ssa
, /* properties_required */
1025 0, /* properties_provided */
1026 0, /* properties_destroyed */
1027 0, /* todo_flags_start */
1028 TODO_dump_func
| TODO_verify_ssa
, /* todo_flags_finish */
1032 struct tree_opt_pass pass_tail_calls
=
1035 gate_tail_calls
, /* gate */
1036 execute_tail_calls
, /* execute */
1039 0, /* static_pass_number */
1041 PROP_cfg
| PROP_ssa
| PROP_alias
, /* properties_required */
1042 0, /* properties_provided */
1043 0, /* properties_destroyed */
1044 0, /* todo_flags_start */
1045 TODO_dump_func
| TODO_verify_ssa
, /* todo_flags_finish */