mirror of
https://gcc.gnu.org/git/gcc.git
synced 2026-02-22 03:46:53 -05:00
tree-sra.c (sra_walk_fns): Document new restriction.
* tree-sra.c (sra_walk_fns) <ldst>: Document new restriction. (sra_walk_modify_expr) <rhs_elt>: Treat the reference as a use if the lhs has side-effects. <lhs_elt>: Treat the reference as a use if the rhs has side-effects. From-SVN: r122493
This commit is contained in:
@@ -1,4 +1,11 @@
|
||||
2007-03-01 Paul Brook <paul@codesourcery.com>
|
||||
2007-03-02 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* tree-sra.c (sra_walk_fns) <ldst>: Document new restriction.
|
||||
(sra_walk_modify_expr) <rhs_elt>: Treat the reference as a use
|
||||
if the lhs has side-effects.
|
||||
<lhs_elt>: Treat the reference as a use if the rhs has side-effects.
|
||||
|
||||
2007-03-02 Paul Brook <paul@codesourcery.com>
|
||||
|
||||
* config/arm/arm.c (arm_legitimate_index_p): Limit iWMMXt addressing
|
||||
modes to LDRD for DImode.
|
||||
|
||||
@@ -668,8 +668,8 @@ struct sra_walk_fns
|
||||
void (*init) (struct sra_elt *elt, tree value, block_stmt_iterator *bsi);
|
||||
|
||||
/* Invoked when we have a copy between one scalarizable reference ELT
|
||||
and one non-scalarizable reference OTHER. IS_OUTPUT is true if ELT
|
||||
is on the left-hand side. */
|
||||
and one non-scalarizable reference OTHER without side-effects.
|
||||
IS_OUTPUT is true if ELT is on the left-hand side. */
|
||||
void (*ldst) (struct sra_elt *elt, tree other,
|
||||
block_stmt_iterator *bsi, bool is_output);
|
||||
|
||||
@@ -876,7 +876,7 @@ sra_walk_modify_expr (tree expr, block_stmt_iterator *bsi,
|
||||
/* If the RHS is scalarizable, handle it. There are only two cases. */
|
||||
if (rhs_elt)
|
||||
{
|
||||
if (!rhs_elt->is_scalar)
|
||||
if (!rhs_elt->is_scalar && !TREE_SIDE_EFFECTS (lhs))
|
||||
fns->ldst (rhs_elt, lhs, bsi, false);
|
||||
else
|
||||
fns->use (rhs_elt, &TREE_OPERAND (expr, 1), bsi, false, false);
|
||||
@@ -919,7 +919,8 @@ sra_walk_modify_expr (tree expr, block_stmt_iterator *bsi,
|
||||
The lvalue requirement prevents us from trying to directly scalarize
|
||||
the result of a function call. Which would result in trying to call
|
||||
the function multiple times, and other evil things. */
|
||||
else if (!lhs_elt->is_scalar && is_gimple_addressable (rhs))
|
||||
else if (!lhs_elt->is_scalar
|
||||
&& !TREE_SIDE_EFFECTS (rhs) && is_gimple_addressable (rhs))
|
||||
fns->ldst (lhs_elt, rhs, bsi, true);
|
||||
|
||||
/* Otherwise we're being used in some context that requires the
|
||||
|
||||
Reference in New Issue
Block a user