diff options
author | irar <irar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-25 07:25:55 +0000 |
---|---|---|
committer | irar <irar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-25 07:25:55 +0000 |
commit | 93a6f154cc3b25ef070e827c2607d340145bfd3c (patch) | |
tree | 63f9e8f60f8675155450474eb8880ff6b2b25fe3 /gcc/tree-vect-transform.c | |
parent | 50c9119ebf29d6ed5b3638e660207afec8ed309d (diff) | |
download | gcc-93a6f154cc3b25ef070e827c2607d340145bfd3c.tar.gz |
PR tree-optimization/33866
* tree-vect-transform.c (vectorizable_store): Check operands of all the
stmts in the group of strided accesses. Get def stmt type for each store
in the group and pass it to vect_get_vec_def_for_stmt_copy ().
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129623 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-vect-transform.c')
-rw-r--r-- | gcc/tree-vect-transform.c | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/gcc/tree-vect-transform.c b/gcc/tree-vect-transform.c index 1f07605d67d..4b88bdf7f43 100644 --- a/gcc/tree-vect-transform.c +++ b/gcc/tree-vect-transform.c @@ -4578,7 +4578,7 @@ vectorizable_store (tree stmt, block_stmt_iterator *bsi, tree *vec_stmt, int nunits = TYPE_VECTOR_SUBPARTS (vectype); int ncopies = LOOP_VINFO_VECT_FACTOR (loop_vinfo) / nunits; int j; - tree next_stmt, first_stmt; + tree next_stmt, first_stmt = NULL_TREE; bool strided_store = false; unsigned int group_size, i; VEC(tree,heap) *dr_chain = NULL, *oprnds = NULL, *result_chain = NULL; @@ -4640,9 +4640,28 @@ vectorizable_store (tree stmt, block_stmt_iterator *bsi, tree *vec_stmt, if (STMT_VINFO_STRIDED_ACCESS (stmt_info)) { strided_store = true; + first_stmt = DR_GROUP_FIRST_DR (stmt_info); if (!vect_strided_store_supported (vectype) && !PURE_SLP_STMT (stmt_info) && !slp) - return false; + return false; + + if (first_stmt == stmt) + { + /* STMT is the leader of the group. Check the operands of all the + stmts of the group. */ + next_stmt = DR_GROUP_NEXT_DR (stmt_info); + while (next_stmt) + { + op = GIMPLE_STMT_OPERAND (next_stmt, 1); + if (!vect_is_simple_use (op, loop_vinfo, &def_stmt, &def, &dt)) + { + if (vect_print_dump_info (REPORT_DETAILS)) + fprintf (vect_dump, "use not simple."); + return false; + } + next_stmt = DR_GROUP_NEXT_DR (vinfo_for_stmt (next_stmt)); + } + } } if (!vec_stmt) /* transformation not required. */ @@ -4657,7 +4676,6 @@ vectorizable_store (tree stmt, block_stmt_iterator *bsi, tree *vec_stmt, if (strided_store) { - first_stmt = DR_GROUP_FIRST_DR (stmt_info); first_dr = STMT_VINFO_DATA_REF (vinfo_for_stmt (first_stmt)); group_size = DR_GROUP_SIZE (vinfo_for_stmt (first_stmt)); @@ -4803,8 +4821,9 @@ vectorizable_store (tree stmt, block_stmt_iterator *bsi, tree *vec_stmt, OPRNDS are of size 1. */ for (i = 0; i < group_size; i++) { - vec_oprnd = vect_get_vec_def_for_stmt_copy (dt, - VEC_index (tree, oprnds, i)); + op = VEC_index (tree, oprnds, i); + vect_is_simple_use (op, loop_vinfo, &def_stmt, &def, &dt); + vec_oprnd = vect_get_vec_def_for_stmt_copy (dt, op); VEC_replace(tree, dr_chain, i, vec_oprnd); VEC_replace(tree, oprnds, i, vec_oprnd); } |