vect: Enhance condition check to use partial vectors
authorKewen Lin <linkw@linux.ibm.com>
Thu, 9 Jul 2020 03:27:41 +0000 (22:27 -0500)
committerKewen Lin <linkw@linux.ibm.com>
Thu, 9 Jul 2020 07:23:42 +0000 (02:23 -0500)
commit2a39c42a42cdea4a8962b9e140b88e0051894f38
tree4c638fd1a50d266774838974eab175006fbbd2f4
parent23fb9e7c1c403a256b158fdfc97f7f32f636d3d0
vect: Enhance condition check to use partial vectors

This patch is derived from the review of vector with length patch
series.  The length-based partial vector approach doesn't support
reduction so far, so we would like to disable vectorization with
partial vectors explicitly for it in vectorizable_condition.
Otherwise, it will cause some unexpected failures for a few cases
like gcc.dg/vect/pr65947-2.c.

But if we disable it for the cases excepting for reduction_type equal
to EXTRACT_LAST_REDUCTION, it cause one regression failure on aarch64:

  gcc.target/aarch64/sve/reduc_8.c -march=armv8.2-a+sve

The disabling makes the outer loop can't work with partial vectors,
the check fails.  But the case is safe to adopt it.  As Richard S.
pointed out in the review comments, the extra inactive lanes only
matter for double reductions, so this patch is to permit vectorization
with partial vectors for cases EXTRACT_LAST_REDUCTION or nested-cycle
reduction.

Bootstrapped/regtested on aarch64-linux-gnu.

gcc/ChangeLog:

* tree-vect-stmts.c (vectorizable_condition): Prohibit vectorization
with partial vectors explicitly excepting for EXTRACT_LAST_REDUCTION
or nested-cycle reduction.
gcc/tree-vect-stmts.c