diff options
author | Richard Biener <rguenther@suse.de> | 2020-05-13 14:09:40 +0200 |
---|---|---|
committer | Richard Biener <rguenther@suse.de> | 2020-05-13 17:19:38 +0200 |
commit | 78db0e093e69f360ac1ef871ca08895a4d2bec06 (patch) | |
tree | 0947d6f76ea1b64662ee13ecf46033c789754221 /gcc/tree-vectorizer.h | |
parent | f9f98e59a7f6663f31b671c44998190079097f97 (diff) | |
download | gcc-78db0e093e69f360ac1ef871ca08895a4d2bec06.zip gcc-78db0e093e69f360ac1ef871ca08895a4d2bec06.tar.gz gcc-78db0e093e69f360ac1ef871ca08895a4d2bec06.tar.bz2 |
add vectype parameter to add_stmt_cost hook
This adds a vectype parameter to add_stmt_cost which avoids the need
to pass down a (wrong) stmt_info just to carry this information.
Useful for invariants which do not have a stmt_info associated.
2020-05-13 Richard Biener <rguenther@suse.de>
* target.def (add_stmt_cost): Add new vectype parameter.
* targhooks.c (default_add_stmt_cost): Adjust.
* targhooks.h (default_add_stmt_cost): Likewise.
* config/aarch64/aarch64.c (aarch64_add_stmt_cost): Take new
vectype parameter.
* config/arm/arm.c (arm_add_stmt_cost): Likewise.
* config/i386/i386.c (ix86_add_stmt_cost): Likewise.
* config/rs6000/rs6000.c (rs6000_add_stmt_cost): Likewise.
* tree-vectorizer.h (stmt_info_for_cost::vectype): Add.
(dump_stmt_cost): Add new vectype parameter.
(add_stmt_cost): Likewise.
(record_stmt_cost): Likewise.
(record_stmt_cost): Add overload with old signature.
* tree-vect-loop.c (vect_compute_single_scalar_iteration_cost):
Adjust.
(vect_get_known_peeling_cost): Likewise.
(vect_estimate_min_profitable_iters): Likewise.
* tree-vectorizer.c (dump_stmt_cost): Add new vectype parameter.
* tree-vect-stmts.c (record_stmt_cost): Likewise.
(vect_prologue_cost_for_slp_op): Remove stmt_vec_info parameter
and pass down correct vectype and NULL stmt_info.
(vect_model_simple_cost): Adjust.
(vect_model_store_cost): Likewise.
Diffstat (limited to 'gcc/tree-vectorizer.h')
-rw-r--r-- | gcc/tree-vectorizer.h | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/gcc/tree-vectorizer.h b/gcc/tree-vectorizer.h index 2078425..9b2cbe6 100644 --- a/gcc/tree-vectorizer.h +++ b/gcc/tree-vectorizer.h @@ -99,6 +99,7 @@ struct stmt_info_for_cost { enum vect_cost_for_stmt kind; enum vect_cost_model_location where; stmt_vec_info stmt_info; + tree vectype; int misalign; }; @@ -1355,7 +1356,7 @@ init_cost (class loop *loop_info) } extern void dump_stmt_cost (FILE *, void *, int, enum vect_cost_for_stmt, - stmt_vec_info, int, unsigned, + stmt_vec_info, tree, int, unsigned, enum vect_cost_model_location); /* Alias targetm.vectorize.add_stmt_cost. */ @@ -1363,13 +1364,14 @@ extern void dump_stmt_cost (FILE *, void *, int, enum vect_cost_for_stmt, static inline unsigned add_stmt_cost (vec_info *vinfo, void *data, int count, enum vect_cost_for_stmt kind, - stmt_vec_info stmt_info, int misalign, + stmt_vec_info stmt_info, tree vectype, int misalign, enum vect_cost_model_location where) { unsigned cost = targetm.vectorize.add_stmt_cost (vinfo, data, count, kind, - stmt_info, misalign, where); + stmt_info, vectype, + misalign, where); if (dump_file && (dump_flags & TDF_DETAILS)) - dump_stmt_cost (dump_file, data, count, kind, stmt_info, misalign, + dump_stmt_cost (dump_file, data, count, kind, stmt_info, vectype, misalign, cost, where); return cost; } @@ -1398,7 +1400,7 @@ add_stmt_costs (vec_info *vinfo, void *data, stmt_vector_for_cost *cost_vec) unsigned i; FOR_EACH_VEC_ELT (*cost_vec, i, cost) add_stmt_cost (vinfo, data, cost->count, cost->kind, cost->stmt_info, - cost->misalign, cost->where); + cost->vectype, cost->misalign, cost->where); } /*-----------------------------------------------------------------*/ @@ -1699,9 +1701,22 @@ extern bool supportable_widening_operation (vec_info *, extern bool supportable_narrowing_operation (enum tree_code, tree, tree, enum tree_code *, int *, vec<tree> *); + extern unsigned record_stmt_cost (stmt_vector_for_cost *, int, enum vect_cost_for_stmt, stmt_vec_info, - int, enum vect_cost_model_location); + tree, int, enum vect_cost_model_location); + +/* Overload of record_stmt_cost with VECTYPE derived from STMT_INFO. */ + +static inline unsigned +record_stmt_cost (stmt_vector_for_cost *body_cost_vec, int count, + enum vect_cost_for_stmt kind, stmt_vec_info stmt_info, + int misalign, enum vect_cost_model_location where) +{ + return record_stmt_cost (body_cost_vec, count, kind, stmt_info, + STMT_VINFO_VECTYPE (stmt_info), misalign, where); +} + extern stmt_vec_info vect_finish_replace_stmt (vec_info *, stmt_vec_info, gimple *); extern stmt_vec_info vect_finish_stmt_generation (vec_info *, |