[Loop Vectorizer] Abandon vectorization when no integer IV found
authorWarren Ristow <warren.ristow@sony.com>
Fri, 21 Sep 2018 23:03:50 +0000 (23:03 +0000)
committerWarren Ristow <warren.ristow@sony.com>
Fri, 21 Sep 2018 23:03:50 +0000 (23:03 +0000)
commit4f27730eaf600aeeb855964de09b90ff168ae247
treeedecdba46da7a274b009db63fb98439d8b3fee47
parentd7e83e73627c84f19b1dc3c2b5859035367356ae
[Loop Vectorizer] Abandon vectorization when no integer IV found

Support for vectorizing loops with secondary floating-point induction
variables was added in r276554.  A primary integer IV is still required
for vectorization to be done.  If an FP IV was found, but no integer IV
was found at all (primary or secondary), the attempt to vectorize still
went forward, causing a compiler-crash.  This change abandons that
attempt when no integer IV is found.  (Vectorizing FP-only cases like
this, rather than bailing out, is discussed as possible future work
in D52327.)

See PR38800 for more information.

Differential Revision: https://reviews.llvm.org/D52327

llvm-svn: 342786
llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
llvm/test/Transforms/LoopVectorize/pr37515.ll [new file with mode: 0644]
llvm/test/Transforms/LoopVectorize/pr38800.ll [new file with mode: 0755]