Update gimple.texi class hierarchy diagram
[official-gcc.git] / gcc / tree-tailcall.c
blob8dbdbda7118714ae77f8664c4b9472cd683f3d16
1 /* Tail call optimization on trees.
2 Copyright (C) 2003-2014 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 3, or (at your option)
9 any later version.
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 COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "tree.h"
25 #include "stor-layout.h"
26 #include "tm_p.h"
27 #include "basic-block.h"
28 #include "function.h"
29 #include "tree-ssa-alias.h"
30 #include "internal-fn.h"
31 #include "gimple-expr.h"
32 #include "is-a.h"
33 #include "gimple.h"
34 #include "gimple-iterator.h"
35 #include "gimplify-me.h"
36 #include "gimple-ssa.h"
37 #include "tree-cfg.h"
38 #include "tree-phinodes.h"
39 #include "stringpool.h"
40 #include "tree-ssanames.h"
41 #include "tree-into-ssa.h"
42 #include "expr.h"
43 #include "tree-dfa.h"
44 #include "gimple-pretty-print.h"
45 #include "except.h"
46 #include "tree-pass.h"
47 #include "flags.h"
48 #include "langhooks.h"
49 #include "dbgcnt.h"
50 #include "target.h"
51 #include "cfgloop.h"
52 #include "common/common-target.h"
53 #include "ipa-utils.h"
55 /* The file implements the tail recursion elimination. It is also used to
56 analyze the tail calls in general, passing the results to the rtl level
57 where they are used for sibcall optimization.
59 In addition to the standard tail recursion elimination, we handle the most
60 trivial cases of making the call tail recursive by creating accumulators.
61 For example the following function
63 int sum (int n)
65 if (n > 0)
66 return n + sum (n - 1);
67 else
68 return 0;
71 is transformed into
73 int sum (int n)
75 int acc = 0;
77 while (n > 0)
78 acc += n--;
80 return acc;
83 To do this, we maintain two accumulators (a_acc and m_acc) that indicate
84 when we reach the return x statement, we should return a_acc + x * m_acc
85 instead. They are initially initialized to 0 and 1, respectively,
86 so the semantics of the function is obviously preserved. If we are
87 guaranteed that the value of the accumulator never change, we
88 omit the accumulator.
90 There are three cases how the function may exit. The first one is
91 handled in adjust_return_value, the other two in adjust_accumulator_values
92 (the second case is actually a special case of the third one and we
93 present it separately just for clarity):
95 1) Just return x, where x is not in any of the remaining special shapes.
96 We rewrite this to a gimple equivalent of return m_acc * x + a_acc.
98 2) return f (...), where f is the current function, is rewritten in a
99 classical tail-recursion elimination way, into assignment of arguments
100 and jump to the start of the function. Values of the accumulators
101 are unchanged.
103 3) return a + m * f(...), where a and m do not depend on call to f.
104 To preserve the semantics described before we want this to be rewritten
105 in such a way that we finally return
107 a_acc + (a + m * f(...)) * m_acc = (a_acc + a * m_acc) + (m * m_acc) * f(...).
109 I.e. we increase a_acc by a * m_acc, multiply m_acc by m and
110 eliminate the tail call to f. Special cases when the value is just
111 added or just multiplied are obtained by setting a = 0 or m = 1.
113 TODO -- it is possible to do similar tricks for other operations. */
115 /* A structure that describes the tailcall. */
117 struct tailcall
119 /* The iterator pointing to the call statement. */
120 gimple_stmt_iterator call_gsi;
122 /* True if it is a call to the current function. */
123 bool tail_recursion;
125 /* The return value of the caller is mult * f + add, where f is the return
126 value of the call. */
127 tree mult, add;
129 /* Next tailcall in the chain. */
130 struct tailcall *next;
133 /* The variables holding the value of multiplicative and additive
134 accumulator. */
135 static tree m_acc, a_acc;
137 static bool suitable_for_tail_opt_p (void);
138 static bool optimize_tail_call (struct tailcall *, bool);
139 static void eliminate_tail_call (struct tailcall *);
140 static void find_tail_calls (basic_block, struct tailcall **);
142 /* Returns false when the function is not suitable for tail call optimization
143 from some reason (e.g. if it takes variable number of arguments). */
145 static bool
146 suitable_for_tail_opt_p (void)
148 if (cfun->stdarg)
149 return false;
151 return true;
153 /* Returns false when the function is not suitable for tail call optimization
154 from some reason (e.g. if it takes variable number of arguments).
155 This test must pass in addition to suitable_for_tail_opt_p in order to make
156 tail call discovery happen. */
158 static bool
159 suitable_for_tail_call_opt_p (void)
161 tree param;
163 /* alloca (until we have stack slot life analysis) inhibits
164 sibling call optimizations, but not tail recursion. */
165 if (cfun->calls_alloca)
166 return false;
168 /* If we are using sjlj exceptions, we may need to add a call to
169 _Unwind_SjLj_Unregister at exit of the function. Which means
170 that we cannot do any sibcall transformations. */
171 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ
172 && current_function_has_exception_handlers ())
173 return false;
175 /* Any function that calls setjmp might have longjmp called from
176 any called function. ??? We really should represent this
177 properly in the CFG so that this needn't be special cased. */
178 if (cfun->calls_setjmp)
179 return false;
181 /* ??? It is OK if the argument of a function is taken in some cases,
182 but not in all cases. See PR15387 and PR19616. Revisit for 4.1. */
183 for (param = DECL_ARGUMENTS (current_function_decl);
184 param;
185 param = DECL_CHAIN (param))
186 if (TREE_ADDRESSABLE (param))
187 return false;
189 return true;
192 /* Checks whether the expression EXPR in stmt AT is independent of the
193 statement pointed to by GSI (in a sense that we already know EXPR's value
194 at GSI). We use the fact that we are only called from the chain of
195 basic blocks that have only single successor. Returns the expression
196 containing the value of EXPR at GSI. */
198 static tree
199 independent_of_stmt_p (tree expr, gimple at, gimple_stmt_iterator gsi)
201 basic_block bb, call_bb, at_bb;
202 edge e;
203 edge_iterator ei;
205 if (is_gimple_min_invariant (expr))
206 return expr;
208 if (TREE_CODE (expr) != SSA_NAME)
209 return NULL_TREE;
211 /* Mark the blocks in the chain leading to the end. */
212 at_bb = gimple_bb (at);
213 call_bb = gimple_bb (gsi_stmt (gsi));
214 for (bb = call_bb; bb != at_bb; bb = single_succ (bb))
215 bb->aux = &bb->aux;
216 bb->aux = &bb->aux;
218 while (1)
220 at = SSA_NAME_DEF_STMT (expr);
221 bb = gimple_bb (at);
223 /* The default definition or defined before the chain. */
224 if (!bb || !bb->aux)
225 break;
227 if (bb == call_bb)
229 for (; !gsi_end_p (gsi); gsi_next (&gsi))
230 if (gsi_stmt (gsi) == at)
231 break;
233 if (!gsi_end_p (gsi))
234 expr = NULL_TREE;
235 break;
238 if (gimple_code (at) != GIMPLE_PHI)
240 expr = NULL_TREE;
241 break;
244 FOR_EACH_EDGE (e, ei, bb->preds)
245 if (e->src->aux)
246 break;
247 gcc_assert (e);
249 expr = PHI_ARG_DEF_FROM_EDGE (at, e);
250 if (TREE_CODE (expr) != SSA_NAME)
252 /* The value is a constant. */
253 break;
257 /* Unmark the blocks. */
258 for (bb = call_bb; bb != at_bb; bb = single_succ (bb))
259 bb->aux = NULL;
260 bb->aux = NULL;
262 return expr;
265 /* Simulates the effect of an assignment STMT on the return value of the tail
266 recursive CALL passed in ASS_VAR. M and A are the multiplicative and the
267 additive factor for the real return value. */
269 static bool
270 process_assignment (gassign *stmt, gimple_stmt_iterator call, tree *m,
271 tree *a, tree *ass_var)
273 tree op0, op1 = NULL_TREE, non_ass_var = NULL_TREE;
274 tree dest = gimple_assign_lhs (stmt);
275 enum tree_code code = gimple_assign_rhs_code (stmt);
276 enum gimple_rhs_class rhs_class = get_gimple_rhs_class (code);
277 tree src_var = gimple_assign_rhs1 (stmt);
279 /* See if this is a simple copy operation of an SSA name to the function
280 result. In that case we may have a simple tail call. Ignore type
281 conversions that can never produce extra code between the function
282 call and the function return. */
283 if ((rhs_class == GIMPLE_SINGLE_RHS || gimple_assign_cast_p (stmt))
284 && (TREE_CODE (src_var) == SSA_NAME))
286 /* Reject a tailcall if the type conversion might need
287 additional code. */
288 if (gimple_assign_cast_p (stmt))
290 if (TYPE_MODE (TREE_TYPE (dest)) != TYPE_MODE (TREE_TYPE (src_var)))
291 return false;
293 /* Even if the type modes are the same, if the precision of the
294 type is smaller than mode's precision,
295 reduce_to_bit_field_precision would generate additional code. */
296 if (INTEGRAL_TYPE_P (TREE_TYPE (dest))
297 && (GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (dest)))
298 > TYPE_PRECISION (TREE_TYPE (dest))))
299 return false;
302 if (src_var != *ass_var)
303 return false;
305 *ass_var = dest;
306 return true;
309 switch (rhs_class)
311 case GIMPLE_BINARY_RHS:
312 op1 = gimple_assign_rhs2 (stmt);
314 /* Fall through. */
316 case GIMPLE_UNARY_RHS:
317 op0 = gimple_assign_rhs1 (stmt);
318 break;
320 default:
321 return false;
324 /* Accumulator optimizations will reverse the order of operations.
325 We can only do that for floating-point types if we're assuming
326 that addition and multiplication are associative. */
327 if (!flag_associative_math)
328 if (FLOAT_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl))))
329 return false;
331 if (rhs_class == GIMPLE_UNARY_RHS)
333 else if (op0 == *ass_var
334 && (non_ass_var = independent_of_stmt_p (op1, stmt, call)))
336 else if (op1 == *ass_var
337 && (non_ass_var = independent_of_stmt_p (op0, stmt, call)))
339 else
340 return false;
342 switch (code)
344 case PLUS_EXPR:
345 *a = non_ass_var;
346 *ass_var = dest;
347 return true;
349 case POINTER_PLUS_EXPR:
350 if (op0 != *ass_var)
351 return false;
352 *a = non_ass_var;
353 *ass_var = dest;
354 return true;
356 case MULT_EXPR:
357 *m = non_ass_var;
358 *ass_var = dest;
359 return true;
361 case NEGATE_EXPR:
362 *m = build_minus_one_cst (TREE_TYPE (op0));
363 *ass_var = dest;
364 return true;
366 case MINUS_EXPR:
367 if (*ass_var == op0)
368 *a = fold_build1 (NEGATE_EXPR, TREE_TYPE (non_ass_var), non_ass_var);
369 else
371 *m = build_minus_one_cst (TREE_TYPE (non_ass_var));
372 *a = fold_build1 (NEGATE_EXPR, TREE_TYPE (non_ass_var), non_ass_var);
375 *ass_var = dest;
376 return true;
378 /* TODO -- Handle POINTER_PLUS_EXPR. */
380 default:
381 return false;
385 /* Propagate VAR through phis on edge E. */
387 static tree
388 propagate_through_phis (tree var, edge e)
390 basic_block dest = e->dest;
391 gphi_iterator gsi;
393 for (gsi = gsi_start_phis (dest); !gsi_end_p (gsi); gsi_next (&gsi))
395 gphi *phi = gsi.phi ();
396 if (PHI_ARG_DEF_FROM_EDGE (phi, e) == var)
397 return PHI_RESULT (phi);
399 return var;
402 /* Finds tailcalls falling into basic block BB. The list of found tailcalls is
403 added to the start of RET. */
405 static void
406 find_tail_calls (basic_block bb, struct tailcall **ret)
408 tree ass_var = NULL_TREE, ret_var, func, param;
409 gimple stmt;
410 gcall *call = NULL;
411 gimple_stmt_iterator gsi, agsi;
412 bool tail_recursion;
413 struct tailcall *nw;
414 edge e;
415 tree m, a;
416 basic_block abb;
417 size_t idx;
418 tree var;
420 if (!single_succ_p (bb))
421 return;
423 for (gsi = gsi_last_bb (bb); !gsi_end_p (gsi); gsi_prev (&gsi))
425 stmt = gsi_stmt (gsi);
427 /* Ignore labels, returns, clobbers and debug stmts. */
428 if (gimple_code (stmt) == GIMPLE_LABEL
429 || gimple_code (stmt) == GIMPLE_RETURN
430 || gimple_clobber_p (stmt)
431 || is_gimple_debug (stmt))
432 continue;
434 /* Check for a call. */
435 if (is_gimple_call (stmt))
437 call = as_a <gcall *> (stmt);
438 ass_var = gimple_call_lhs (call);
439 break;
442 /* If the statement references memory or volatile operands, fail. */
443 if (gimple_references_memory_p (stmt)
444 || gimple_has_volatile_ops (stmt))
445 return;
448 if (gsi_end_p (gsi))
450 edge_iterator ei;
451 /* Recurse to the predecessors. */
452 FOR_EACH_EDGE (e, ei, bb->preds)
453 find_tail_calls (e->src, ret);
455 return;
458 /* If the LHS of our call is not just a simple register, we can't
459 transform this into a tail or sibling call. This situation happens,
460 in (e.g.) "*p = foo()" where foo returns a struct. In this case
461 we won't have a temporary here, but we need to carry out the side
462 effect anyway, so tailcall is impossible.
464 ??? In some situations (when the struct is returned in memory via
465 invisible argument) we could deal with this, e.g. by passing 'p'
466 itself as that argument to foo, but it's too early to do this here,
467 and expand_call() will not handle it anyway. If it ever can, then
468 we need to revisit this here, to allow that situation. */
469 if (ass_var && !is_gimple_reg (ass_var))
470 return;
472 /* We found the call, check whether it is suitable. */
473 tail_recursion = false;
474 func = gimple_call_fndecl (call);
475 if (func
476 && !DECL_BUILT_IN (func)
477 && recursive_call_p (current_function_decl, func))
479 tree arg;
481 for (param = DECL_ARGUMENTS (func), idx = 0;
482 param && idx < gimple_call_num_args (call);
483 param = DECL_CHAIN (param), idx ++)
485 arg = gimple_call_arg (call, idx);
486 if (param != arg)
488 /* Make sure there are no problems with copying. The parameter
489 have a copyable type and the two arguments must have reasonably
490 equivalent types. The latter requirement could be relaxed if
491 we emitted a suitable type conversion statement. */
492 if (!is_gimple_reg_type (TREE_TYPE (param))
493 || !useless_type_conversion_p (TREE_TYPE (param),
494 TREE_TYPE (arg)))
495 break;
497 /* The parameter should be a real operand, so that phi node
498 created for it at the start of the function has the meaning
499 of copying the value. This test implies is_gimple_reg_type
500 from the previous condition, however this one could be
501 relaxed by being more careful with copying the new value
502 of the parameter (emitting appropriate GIMPLE_ASSIGN and
503 updating the virtual operands). */
504 if (!is_gimple_reg (param))
505 break;
508 if (idx == gimple_call_num_args (call) && !param)
509 tail_recursion = true;
512 /* Make sure the tail invocation of this function does not refer
513 to local variables. */
514 FOR_EACH_LOCAL_DECL (cfun, idx, var)
516 if (TREE_CODE (var) != PARM_DECL
517 && auto_var_in_fn_p (var, cfun->decl)
518 && (ref_maybe_used_by_stmt_p (call, var)
519 || call_may_clobber_ref_p (call, var)))
520 return;
523 /* Now check the statements after the call. None of them has virtual
524 operands, so they may only depend on the call through its return
525 value. The return value should also be dependent on each of them,
526 since we are running after dce. */
527 m = NULL_TREE;
528 a = NULL_TREE;
530 abb = bb;
531 agsi = gsi;
532 while (1)
534 tree tmp_a = NULL_TREE;
535 tree tmp_m = NULL_TREE;
536 gsi_next (&agsi);
538 while (gsi_end_p (agsi))
540 ass_var = propagate_through_phis (ass_var, single_succ_edge (abb));
541 abb = single_succ (abb);
542 agsi = gsi_start_bb (abb);
545 stmt = gsi_stmt (agsi);
547 if (gimple_code (stmt) == GIMPLE_LABEL)
548 continue;
550 if (gimple_code (stmt) == GIMPLE_RETURN)
551 break;
553 if (gimple_clobber_p (stmt))
554 continue;
556 if (is_gimple_debug (stmt))
557 continue;
559 if (gimple_code (stmt) != GIMPLE_ASSIGN)
560 return;
562 /* This is a gimple assign. */
563 if (! process_assignment (as_a <gassign *> (stmt), gsi, &tmp_m,
564 &tmp_a, &ass_var))
565 return;
567 if (tmp_a)
569 tree type = TREE_TYPE (tmp_a);
570 if (a)
571 a = fold_build2 (PLUS_EXPR, type, fold_convert (type, a), tmp_a);
572 else
573 a = tmp_a;
575 if (tmp_m)
577 tree type = TREE_TYPE (tmp_m);
578 if (m)
579 m = fold_build2 (MULT_EXPR, type, fold_convert (type, m), tmp_m);
580 else
581 m = tmp_m;
583 if (a)
584 a = fold_build2 (MULT_EXPR, type, fold_convert (type, a), tmp_m);
588 /* See if this is a tail call we can handle. */
589 ret_var = gimple_return_retval (as_a <greturn *> (stmt));
591 /* We may proceed if there either is no return value, or the return value
592 is identical to the call's return. */
593 if (ret_var
594 && (ret_var != ass_var))
595 return;
597 /* If this is not a tail recursive call, we cannot handle addends or
598 multiplicands. */
599 if (!tail_recursion && (m || a))
600 return;
602 /* For pointers only allow additions. */
603 if (m && POINTER_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl))))
604 return;
606 nw = XNEW (struct tailcall);
608 nw->call_gsi = gsi;
610 nw->tail_recursion = tail_recursion;
612 nw->mult = m;
613 nw->add = a;
615 nw->next = *ret;
616 *ret = nw;
619 /* Helper to insert PHI_ARGH to the phi of VAR in the destination of edge E. */
621 static void
622 add_successor_phi_arg (edge e, tree var, tree phi_arg)
624 gphi_iterator gsi;
626 for (gsi = gsi_start_phis (e->dest); !gsi_end_p (gsi); gsi_next (&gsi))
627 if (PHI_RESULT (gsi.phi ()) == var)
628 break;
630 gcc_assert (!gsi_end_p (gsi));
631 add_phi_arg (gsi.phi (), phi_arg, e, UNKNOWN_LOCATION);
634 /* Creates a GIMPLE statement which computes the operation specified by
635 CODE, ACC and OP1 to a new variable with name LABEL and inserts the
636 statement in the position specified by GSI. Returns the
637 tree node of the statement's result. */
639 static tree
640 adjust_return_value_with_ops (enum tree_code code, const char *label,
641 tree acc, tree op1, gimple_stmt_iterator gsi)
644 tree ret_type = TREE_TYPE (DECL_RESULT (current_function_decl));
645 tree result = make_temp_ssa_name (ret_type, NULL, label);
646 gassign *stmt;
648 if (POINTER_TYPE_P (ret_type))
650 gcc_assert (code == PLUS_EXPR && TREE_TYPE (acc) == sizetype);
651 code = POINTER_PLUS_EXPR;
653 if (types_compatible_p (TREE_TYPE (acc), TREE_TYPE (op1))
654 && code != POINTER_PLUS_EXPR)
655 stmt = gimple_build_assign_with_ops (code, result, acc, op1);
656 else
658 tree tem;
659 if (code == POINTER_PLUS_EXPR)
660 tem = fold_build2 (code, TREE_TYPE (op1), op1, acc);
661 else
662 tem = fold_build2 (code, TREE_TYPE (op1),
663 fold_convert (TREE_TYPE (op1), acc), op1);
664 tree rhs = fold_convert (ret_type, tem);
665 rhs = force_gimple_operand_gsi (&gsi, rhs,
666 false, NULL, true, GSI_SAME_STMT);
667 stmt = gimple_build_assign (result, rhs);
670 gsi_insert_before (&gsi, stmt, GSI_NEW_STMT);
671 return result;
674 /* Creates a new GIMPLE statement that adjusts the value of accumulator ACC by
675 the computation specified by CODE and OP1 and insert the statement
676 at the position specified by GSI as a new statement. Returns new SSA name
677 of updated accumulator. */
679 static tree
680 update_accumulator_with_ops (enum tree_code code, tree acc, tree op1,
681 gimple_stmt_iterator gsi)
683 gassign *stmt;
684 tree var = copy_ssa_name (acc, NULL);
685 if (types_compatible_p (TREE_TYPE (acc), TREE_TYPE (op1)))
686 stmt = gimple_build_assign_with_ops (code, var, acc, op1);
687 else
689 tree rhs = fold_convert (TREE_TYPE (acc),
690 fold_build2 (code,
691 TREE_TYPE (op1),
692 fold_convert (TREE_TYPE (op1), acc),
693 op1));
694 rhs = force_gimple_operand_gsi (&gsi, rhs,
695 false, NULL, false, GSI_CONTINUE_LINKING);
696 stmt = gimple_build_assign (var, rhs);
698 gsi_insert_after (&gsi, stmt, GSI_NEW_STMT);
699 return var;
702 /* Adjust the accumulator values according to A and M after GSI, and update
703 the phi nodes on edge BACK. */
705 static void
706 adjust_accumulator_values (gimple_stmt_iterator gsi, tree m, tree a, edge back)
708 tree var, a_acc_arg, m_acc_arg;
710 if (m)
711 m = force_gimple_operand_gsi (&gsi, m, true, NULL, true, GSI_SAME_STMT);
712 if (a)
713 a = force_gimple_operand_gsi (&gsi, a, true, NULL, true, GSI_SAME_STMT);
715 a_acc_arg = a_acc;
716 m_acc_arg = m_acc;
717 if (a)
719 if (m_acc)
721 if (integer_onep (a))
722 var = m_acc;
723 else
724 var = adjust_return_value_with_ops (MULT_EXPR, "acc_tmp", m_acc,
725 a, gsi);
727 else
728 var = a;
730 a_acc_arg = update_accumulator_with_ops (PLUS_EXPR, a_acc, var, gsi);
733 if (m)
734 m_acc_arg = update_accumulator_with_ops (MULT_EXPR, m_acc, m, gsi);
736 if (a_acc)
737 add_successor_phi_arg (back, a_acc, a_acc_arg);
739 if (m_acc)
740 add_successor_phi_arg (back, m_acc, m_acc_arg);
743 /* Adjust value of the return at the end of BB according to M and A
744 accumulators. */
746 static void
747 adjust_return_value (basic_block bb, tree m, tree a)
749 tree retval;
750 greturn *ret_stmt =
751 as_a <greturn *> (gimple_seq_last_stmt (bb_seq (bb)));
752 gimple_stmt_iterator gsi = gsi_last_bb (bb);
754 gcc_assert (gimple_code (ret_stmt) == GIMPLE_RETURN);
756 retval = gimple_return_retval (ret_stmt);
757 if (!retval || retval == error_mark_node)
758 return;
760 if (m)
761 retval = adjust_return_value_with_ops (MULT_EXPR, "mul_tmp", m_acc, retval,
762 gsi);
763 if (a)
764 retval = adjust_return_value_with_ops (PLUS_EXPR, "acc_tmp", a_acc, retval,
765 gsi);
766 gimple_return_set_retval (ret_stmt, retval);
767 update_stmt (ret_stmt);
770 /* Subtract COUNT and FREQUENCY from the basic block and it's
771 outgoing edge. */
772 static void
773 decrease_profile (basic_block bb, gcov_type count, int frequency)
775 edge e;
776 bb->count -= count;
777 if (bb->count < 0)
778 bb->count = 0;
779 bb->frequency -= frequency;
780 if (bb->frequency < 0)
781 bb->frequency = 0;
782 if (!single_succ_p (bb))
784 gcc_assert (!EDGE_COUNT (bb->succs));
785 return;
787 e = single_succ_edge (bb);
788 e->count -= count;
789 if (e->count < 0)
790 e->count = 0;
793 /* Returns true if argument PARAM of the tail recursive call needs to be copied
794 when the call is eliminated. */
796 static bool
797 arg_needs_copy_p (tree param)
799 tree def;
801 if (!is_gimple_reg (param))
802 return false;
804 /* Parameters that are only defined but never used need not be copied. */
805 def = ssa_default_def (cfun, param);
806 if (!def)
807 return false;
809 return true;
812 /* Eliminates tail call described by T. TMP_VARS is a list of
813 temporary variables used to copy the function arguments. */
815 static void
816 eliminate_tail_call (struct tailcall *t)
818 tree param, rslt;
819 gimple stmt, call;
820 tree arg;
821 size_t idx;
822 basic_block bb, first;
823 edge e;
824 gphi *phi;
825 gphi_iterator gpi;
826 gimple_stmt_iterator gsi;
827 gimple orig_stmt;
829 stmt = orig_stmt = gsi_stmt (t->call_gsi);
830 bb = gsi_bb (t->call_gsi);
832 if (dump_file && (dump_flags & TDF_DETAILS))
834 fprintf (dump_file, "Eliminated tail recursion in bb %d : ",
835 bb->index);
836 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
837 fprintf (dump_file, "\n");
840 gcc_assert (is_gimple_call (stmt));
842 first = single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun));
844 /* Remove the code after call_gsi that will become unreachable. The
845 possibly unreachable code in other blocks is removed later in
846 cfg cleanup. */
847 gsi = t->call_gsi;
848 gsi_next (&gsi);
849 while (!gsi_end_p (gsi))
851 gimple t = gsi_stmt (gsi);
852 /* Do not remove the return statement, so that redirect_edge_and_branch
853 sees how the block ends. */
854 if (gimple_code (t) == GIMPLE_RETURN)
855 break;
857 gsi_remove (&gsi, true);
858 release_defs (t);
861 /* Number of executions of function has reduced by the tailcall. */
862 e = single_succ_edge (gsi_bb (t->call_gsi));
863 decrease_profile (EXIT_BLOCK_PTR_FOR_FN (cfun), e->count, EDGE_FREQUENCY (e));
864 decrease_profile (ENTRY_BLOCK_PTR_FOR_FN (cfun), e->count,
865 EDGE_FREQUENCY (e));
866 if (e->dest != EXIT_BLOCK_PTR_FOR_FN (cfun))
867 decrease_profile (e->dest, e->count, EDGE_FREQUENCY (e));
869 /* Replace the call by a jump to the start of function. */
870 e = redirect_edge_and_branch (single_succ_edge (gsi_bb (t->call_gsi)),
871 first);
872 gcc_assert (e);
873 PENDING_STMT (e) = NULL;
875 /* Add phi node entries for arguments. The ordering of the phi nodes should
876 be the same as the ordering of the arguments. */
877 for (param = DECL_ARGUMENTS (current_function_decl),
878 idx = 0, gpi = gsi_start_phis (first);
879 param;
880 param = DECL_CHAIN (param), idx++)
882 if (!arg_needs_copy_p (param))
883 continue;
885 arg = gimple_call_arg (stmt, idx);
886 phi = gpi.phi ();
887 gcc_assert (param == SSA_NAME_VAR (PHI_RESULT (phi)));
889 add_phi_arg (phi, arg, e, gimple_location (stmt));
890 gsi_next (&gpi);
893 /* Update the values of accumulators. */
894 adjust_accumulator_values (t->call_gsi, t->mult, t->add, e);
896 call = gsi_stmt (t->call_gsi);
897 rslt = gimple_call_lhs (call);
898 if (rslt != NULL_TREE)
900 /* Result of the call will no longer be defined. So adjust the
901 SSA_NAME_DEF_STMT accordingly. */
902 SSA_NAME_DEF_STMT (rslt) = gimple_build_nop ();
905 gsi_remove (&t->call_gsi, true);
906 release_defs (call);
909 /* Optimizes the tailcall described by T. If OPT_TAILCALLS is true, also
910 mark the tailcalls for the sibcall optimization. */
912 static bool
913 optimize_tail_call (struct tailcall *t, bool opt_tailcalls)
915 if (t->tail_recursion)
917 eliminate_tail_call (t);
918 return true;
921 if (opt_tailcalls)
923 gcall *stmt = as_a <gcall *> (gsi_stmt (t->call_gsi));
925 gimple_call_set_tail (stmt, true);
926 cfun->tail_call_marked = true;
927 if (dump_file && (dump_flags & TDF_DETAILS))
929 fprintf (dump_file, "Found tail call ");
930 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
931 fprintf (dump_file, " in bb %i\n", (gsi_bb (t->call_gsi))->index);
935 return false;
938 /* Creates a tail-call accumulator of the same type as the return type of the
939 current function. LABEL is the name used to creating the temporary
940 variable for the accumulator. The accumulator will be inserted in the
941 phis of a basic block BB with single predecessor with an initial value
942 INIT converted to the current function return type. */
944 static tree
945 create_tailcall_accumulator (const char *label, basic_block bb, tree init)
947 tree ret_type = TREE_TYPE (DECL_RESULT (current_function_decl));
948 if (POINTER_TYPE_P (ret_type))
949 ret_type = sizetype;
951 tree tmp = make_temp_ssa_name (ret_type, NULL, label);
952 gphi *phi;
954 phi = create_phi_node (tmp, bb);
955 /* RET_TYPE can be a float when -ffast-maths is enabled. */
956 add_phi_arg (phi, fold_convert (ret_type, init), single_pred_edge (bb),
957 UNKNOWN_LOCATION);
958 return PHI_RESULT (phi);
961 /* Optimizes tail calls in the function, turning the tail recursion
962 into iteration. */
964 static unsigned int
965 tree_optimize_tail_calls_1 (bool opt_tailcalls)
967 edge e;
968 bool phis_constructed = false;
969 struct tailcall *tailcalls = NULL, *act, *next;
970 bool changed = false;
971 basic_block first = single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun));
972 tree param;
973 gimple stmt;
974 edge_iterator ei;
976 if (!suitable_for_tail_opt_p ())
977 return 0;
978 if (opt_tailcalls)
979 opt_tailcalls = suitable_for_tail_call_opt_p ();
981 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR_FOR_FN (cfun)->preds)
983 /* Only traverse the normal exits, i.e. those that end with return
984 statement. */
985 stmt = last_stmt (e->src);
987 if (stmt
988 && gimple_code (stmt) == GIMPLE_RETURN)
989 find_tail_calls (e->src, &tailcalls);
992 /* Construct the phi nodes and accumulators if necessary. */
993 a_acc = m_acc = NULL_TREE;
994 for (act = tailcalls; act; act = act->next)
996 if (!act->tail_recursion)
997 continue;
999 if (!phis_constructed)
1001 /* Ensure that there is only one predecessor of the block
1002 or if there are existing degenerate PHI nodes. */
1003 if (!single_pred_p (first)
1004 || !gimple_seq_empty_p (phi_nodes (first)))
1005 first =
1006 split_edge (single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun)));
1008 /* Copy the args if needed. */
1009 for (param = DECL_ARGUMENTS (current_function_decl);
1010 param;
1011 param = DECL_CHAIN (param))
1012 if (arg_needs_copy_p (param))
1014 tree name = ssa_default_def (cfun, param);
1015 tree new_name = make_ssa_name (param, SSA_NAME_DEF_STMT (name));
1016 gphi *phi;
1018 set_ssa_default_def (cfun, param, new_name);
1019 phi = create_phi_node (name, first);
1020 add_phi_arg (phi, new_name, single_pred_edge (first),
1021 EXPR_LOCATION (param));
1023 phis_constructed = true;
1026 if (act->add && !a_acc)
1027 a_acc = create_tailcall_accumulator ("add_acc", first,
1028 integer_zero_node);
1030 if (act->mult && !m_acc)
1031 m_acc = create_tailcall_accumulator ("mult_acc", first,
1032 integer_one_node);
1035 if (a_acc || m_acc)
1037 /* When the tail call elimination using accumulators is performed,
1038 statements adding the accumulated value are inserted at all exits.
1039 This turns all other tail calls to non-tail ones. */
1040 opt_tailcalls = false;
1043 for (; tailcalls; tailcalls = next)
1045 next = tailcalls->next;
1046 changed |= optimize_tail_call (tailcalls, opt_tailcalls);
1047 free (tailcalls);
1050 if (a_acc || m_acc)
1052 /* Modify the remaining return statements. */
1053 FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR_FOR_FN (cfun)->preds)
1055 stmt = last_stmt (e->src);
1057 if (stmt
1058 && gimple_code (stmt) == GIMPLE_RETURN)
1059 adjust_return_value (e->src, m_acc, a_acc);
1063 if (changed)
1065 /* We may have created new loops. Make them magically appear. */
1066 loops_state_set (LOOPS_NEED_FIXUP);
1067 free_dominance_info (CDI_DOMINATORS);
1070 /* Add phi nodes for the virtual operands defined in the function to the
1071 header of the loop created by tail recursion elimination. Do so
1072 by triggering the SSA renamer. */
1073 if (phis_constructed)
1074 mark_virtual_operands_for_renaming (cfun);
1076 if (changed)
1077 return TODO_cleanup_cfg | TODO_update_ssa_only_virtuals;
1078 return 0;
1081 static bool
1082 gate_tail_calls (void)
1084 return flag_optimize_sibling_calls != 0 && dbg_cnt (tail_call);
1087 static unsigned int
1088 execute_tail_calls (void)
1090 return tree_optimize_tail_calls_1 (true);
1093 namespace {
1095 const pass_data pass_data_tail_recursion =
1097 GIMPLE_PASS, /* type */
1098 "tailr", /* name */
1099 OPTGROUP_NONE, /* optinfo_flags */
1100 TV_NONE, /* tv_id */
1101 ( PROP_cfg | PROP_ssa ), /* properties_required */
1102 0, /* properties_provided */
1103 0, /* properties_destroyed */
1104 0, /* todo_flags_start */
1105 0, /* todo_flags_finish */
1108 class pass_tail_recursion : public gimple_opt_pass
1110 public:
1111 pass_tail_recursion (gcc::context *ctxt)
1112 : gimple_opt_pass (pass_data_tail_recursion, ctxt)
1115 /* opt_pass methods: */
1116 opt_pass * clone () { return new pass_tail_recursion (m_ctxt); }
1117 virtual bool gate (function *) { return gate_tail_calls (); }
1118 virtual unsigned int execute (function *)
1120 return tree_optimize_tail_calls_1 (false);
1123 }; // class pass_tail_recursion
1125 } // anon namespace
1127 gimple_opt_pass *
1128 make_pass_tail_recursion (gcc::context *ctxt)
1130 return new pass_tail_recursion (ctxt);
1133 namespace {
1135 const pass_data pass_data_tail_calls =
1137 GIMPLE_PASS, /* type */
1138 "tailc", /* name */
1139 OPTGROUP_NONE, /* optinfo_flags */
1140 TV_NONE, /* tv_id */
1141 ( PROP_cfg | PROP_ssa ), /* properties_required */
1142 0, /* properties_provided */
1143 0, /* properties_destroyed */
1144 0, /* todo_flags_start */
1145 0, /* todo_flags_finish */
1148 class pass_tail_calls : public gimple_opt_pass
1150 public:
1151 pass_tail_calls (gcc::context *ctxt)
1152 : gimple_opt_pass (pass_data_tail_calls, ctxt)
1155 /* opt_pass methods: */
1156 virtual bool gate (function *) { return gate_tail_calls (); }
1157 virtual unsigned int execute (function *) { return execute_tail_calls (); }
1159 }; // class pass_tail_calls
1161 } // anon namespace
1163 gimple_opt_pass *
1164 make_pass_tail_calls (gcc::context *ctxt)
1166 return new pass_tail_calls (ctxt);