aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/riscv/riscv-vector-costs.cc
diff options
context:
space:
mode:
authorJuzhe-Zhong <juzhe.zhong@rivai.ai>2024-01-15 18:35:07 +0800
committerLehua Ding <lehua.ding@rivai.ai>2024-01-15 19:02:33 +0800
commite037a0fa040ee1a3500c8523f3ffa713069ac283 (patch)
tree3f1c5cc1508eb7eea203fb4bbf4cfacc5ef858cc /gcc/config/riscv/riscv-vector-costs.cc
parentbaa931cc2e007be762ae48f9b1f7898d1d817d50 (diff)
downloadgcc-e037a0fa040ee1a3500c8523f3ffa713069ac283.zip
gcc-e037a0fa040ee1a3500c8523f3ffa713069ac283.tar.gz
gcc-e037a0fa040ee1a3500c8523f3ffa713069ac283.tar.bz2
RISC-V: Remove m_num_vector_iterations[NFC]
Notice the m_num_vector_iterations is not used, remove the redundant codes. Committed. gcc/ChangeLog: * config/riscv/riscv-vector-costs.cc (costs::analyze_loop_vinfo): Remove m_num_vector_iterations. * config/riscv/riscv-vector-costs.h: Ditto.
Diffstat (limited to 'gcc/config/riscv/riscv-vector-costs.cc')
-rw-r--r--gcc/config/riscv/riscv-vector-costs.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/config/riscv/riscv-vector-costs.cc b/gcc/config/riscv/riscv-vector-costs.cc
index 1c3708f..090275c 100644
--- a/gcc/config/riscv/riscv-vector-costs.cc
+++ b/gcc/config/riscv/riscv-vector-costs.cc
@@ -872,19 +872,6 @@ costs::costs (vec_info *vinfo, bool costing_for_scalar)
void
costs::analyze_loop_vinfo (loop_vec_info loop_vinfo)
{
- /* Record the number of times that the vector loop would execute,
- if known. */
- class loop *loop = LOOP_VINFO_LOOP (loop_vinfo);
- auto scalar_niters = max_stmt_executions_int (loop);
- if (scalar_niters >= 0)
- {
- unsigned int vf = vect_vf_for_cost (loop_vinfo);
- if (LOOP_VINFO_LENS (loop_vinfo).is_empty ())
- m_num_vector_iterations = scalar_niters / vf;
- else
- m_num_vector_iterations = CEIL (scalar_niters, vf);
- }
-
/* Detect whether we're vectorizing for VLA and should apply the unrolling
heuristic described above m_unrolled_vls_niters. */
record_potential_vls_unrolling (loop_vinfo);