This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 6c09fbd91a8 [X86] Fix bad indentation. NFC new a3ff03e8e2b [IAI,LV] Add support for vectorizing predicated strided acc [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/Analysis/TargetTransformInfo.h | 19 +- include/llvm/Analysis/TargetTransformInfoImpl.h | 6 +- include/llvm/Analysis/VectorUtils.h | 21 +- include/llvm/CodeGen/BasicTTIImpl.h | 38 +++- lib/Analysis/TargetTransformInfo.cpp | 10 +- lib/Analysis/VectorUtils.cpp | 29 ++- lib/Target/AArch64/AArch64TargetTransformInfo.cpp | 7 +- lib/Target/AArch64/AArch64TargetTransformInfo.h | 2 +- lib/Target/ARM/ARMTargetTransformInfo.cpp | 8 +- lib/Target/ARM/ARMTargetTransformInfo.h | 2 +- lib/Target/Hexagon/HexagonTargetTransformInfo.cpp | 6 +- lib/Target/Hexagon/HexagonTargetTransformInfo.h | 2 +- lib/Target/PowerPC/PPCTargetTransformInfo.cpp | 7 +- lib/Target/PowerPC/PPCTargetTransformInfo.h | 3 +- lib/Target/SystemZ/SystemZTargetTransformInfo.cpp | 6 +- lib/Target/SystemZ/SystemZTargetTransformInfo.h | 2 +- lib/Target/X86/X86TargetTransformInfo.cpp | 23 ++- lib/Target/X86/X86TargetTransformInfo.h | 9 +- lib/Transforms/Vectorize/LoopVectorize.cpp | 126 ++++++++++-- lib/Transforms/Vectorize/VPRecipeBuilder.h | 3 +- lib/Transforms/Vectorize/VPlan.h | 8 +- .../X86/x86-interleaved-accesses-masked-group.ll | 164 +++++++++++++++ .../interleaved-accesses-masked-group.ll | 222 +++++++++++++++++++++ .../interleaved-accesses-pred-stores.ll | 1 + 24 files changed, 654 insertions(+), 70 deletions(-) create mode 100644 test/Transforms/LoopVectorize/X86/x86-interleaved-accesses-mask [...] create mode 100644 test/Transforms/LoopVectorize/interleaved-accesses-masked-group.ll