Commit ccd49f5a by Richard Guenther Committed by Richard Biener

tree-inline.c (estimate_num_insns): Estimate call cost for tailcalls properly.

2012-06-21  Richard Guenther  <rguenther@suse.de>

	* tree-inline.c (estimate_num_insns): Estimate call cost for
	tailcalls properly.

From-SVN: r188849
parent 7cd7b5da
2012-06-21 Richard Guenther <rguenther@suse.de>
* tree-inline.c (estimate_num_insns): Estimate call cost for
tailcalls properly.
2012-06-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de> 2012-06-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
* tree.h (DECL_SOURCE_COLUMN): New accessor. * tree.h (DECL_SOURCE_COLUMN): New accessor.
......
...@@ -3611,12 +3611,15 @@ estimate_num_insns (gimple stmt, eni_weights *weights) ...@@ -3611,12 +3611,15 @@ estimate_num_insns (gimple stmt, eni_weights *weights)
} }
cost = node ? weights->call_cost : weights->indirect_call_cost; cost = node ? weights->call_cost : weights->indirect_call_cost;
if (gimple_call_lhs (stmt)) if (!gimple_call_tail_p (stmt))
cost += estimate_move_cost (TREE_TYPE (gimple_call_lhs (stmt)));
for (i = 0; i < gimple_call_num_args (stmt); i++)
{ {
tree arg = gimple_call_arg (stmt, i); if (gimple_call_lhs (stmt))
cost += estimate_move_cost (TREE_TYPE (arg)); cost += estimate_move_cost (TREE_TYPE (gimple_call_lhs (stmt)));
for (i = 0; i < gimple_call_num_args (stmt); i++)
{
tree arg = gimple_call_arg (stmt, i);
cost += estimate_move_cost (TREE_TYPE (arg));
}
} }
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment