diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2018-08-01 15:14:42 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2018-08-01 15:14:42 +0000 |
commit | 6e6b18e5fbe6be62334c9007a58224fb3700d43a (patch) | |
tree | 9c60cd9b0f1770a384516c649066da81a765c012 /gcc/tree-vectorizer.h | |
parent | cd3ca9102eba6eae8944329cd72b74ff460e7b3b (diff) | |
download | gcc-6e6b18e5fbe6be62334c9007a58224fb3700d43a.zip gcc-6e6b18e5fbe6be62334c9007a58224fb3700d43a.tar.gz gcc-6e6b18e5fbe6be62334c9007a58224fb3700d43a.tar.bz2 |
[05/11] Add a vect_stmt_to_vectorize helper function
This patch adds a helper that does the opposite of vect_orig_stmt:
go from the original scalar statement to the statement that should
actually be vectorised.
The use in the last two hunks of vectorizable_reduction are because
reduc_stmt_info (first hunk) and stmt_info (second hunk) are already
pattern statements if appropriate.
2018-08-01 Richard Sandiford <richard.sandiford@arm.com>
gcc/
* tree-vectorizer.h (vect_stmt_to_vectorize): New function.
* tree-vect-loop.c (vect_update_vf_for_slp): Use it.
(vectorizable_reduction): Likewise.
* tree-vect-slp.c (vect_analyze_slp_instance): Likewise.
(vect_detect_hybrid_slp_stmts): Likewise.
* tree-vect-stmts.c (vect_is_simple_use): Likewise.
From-SVN: r263219
Diffstat (limited to 'gcc/tree-vectorizer.h')
-rw-r--r-- | gcc/tree-vectorizer.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/tree-vectorizer.h b/gcc/tree-vectorizer.h index a8403d5..5de2be9 100644 --- a/gcc/tree-vectorizer.h +++ b/gcc/tree-vectorizer.h @@ -1131,6 +1131,17 @@ vect_orig_stmt (stmt_vec_info stmt_info) return stmt_info; } +/* If STMT_INFO has been replaced by a pattern statement, return the + replacement statement, otherwise return STMT_INFO itself. */ + +inline stmt_vec_info +vect_stmt_to_vectorize (stmt_vec_info stmt_info) +{ + if (STMT_VINFO_IN_PATTERN_P (stmt_info)) + return STMT_VINFO_RELATED_STMT (stmt_info); + return stmt_info; +} + /* Return true if BB is a loop header. */ static inline bool |