Don't vectorise single-iteration epilogues
authorRichard Sandiford <richard.sandiford@arm.com>
Wed, 6 Nov 2019 14:03:08 +0000 (14:03 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Wed, 6 Nov 2019 14:03:08 +0000 (14:03 +0000)
With a later patch I saw a case in which we peeled a single iteration
for gaps but didn't need to peel further iterations to make up a full
vector.  We then tried to vectorise the single-iteration epilogue.

2019-11-06  Richard Sandiford  <richard.sandiford@arm.com>

gcc/
* tree-vect-loop.c (vect_analyze_loop): Only try to vectorize
the epilogue if there are peeled iterations for it to handle.

From-SVN: r277886

gcc/ChangeLog
gcc/tree-vect-loop.c

index 1ff3d4b90880ab2f1471043866e78be249e73480..daf1194fe8b0e7d62effc24c5ff34ad311e293d7 100644 (file)
@@ -1,3 +1,8 @@
+2019-11-06  Richard Sandiford  <richard.sandiford@arm.com>
+
+       * tree-vect-loop.c (vect_analyze_loop): Only try to vectorize
+       the epilogue if there are peeled iterations for it to handle.
+
 2019-11-06  Claudiu Zissulescu  <claziss@synopsys.com>
 
        * config/arc/arc.c (arc_split_ior): Add asserts.
index d982e1aea771c9482869177ad605d88adcd2a9e3..788cc8786ae29c9b64654f488f276c29fd9b081b 100644 (file)
@@ -2459,6 +2459,7 @@ vect_analyze_loop (class loop *loop, vec_info_shared *shared)
          vect_epilogues = (!loop->simdlen
                            && loop->inner == NULL
                            && PARAM_VALUE (PARAM_VECT_EPILOGUES_NOMASK)
+                           && LOOP_VINFO_PEELING_FOR_NITER (first_loop_vinfo)
                            /* For now only allow one epilogue loop.  */
                            && first_loop_vinfo->epilogue_vinfos.is_empty ());