This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from e345a27 Reapply "[CodeGen] Fix invalid DWARF info on Win64" new c2b6a16 AVX-512 Loop Vectorizer: Cost calculation for interleave load [...]
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 | 6 +- include/llvm/CodeGen/BasicTTIImpl.h | 10 +- lib/Analysis/CostModel.cpp | 32 +++ lib/Target/X86/X86TargetTransformInfo.cpp | 252 ++++++++++++++++++++- lib/Target/X86/X86TargetTransformInfo.h | 7 + test/Analysis/CostModel/X86/interleave-load-i32.ll | 85 +++++++ .../Analysis/CostModel/X86/interleave-store-i32.ll | 85 +++++++ test/Analysis/CostModel/X86/shuffle-broadcast.ll | 18 +- test/Analysis/CostModel/X86/shuffle-single-src.ll | 94 ++++++++ test/Analysis/CostModel/X86/shuffle-two-src.ll | 68 ++++++ test/Analysis/CostModel/X86/strided-load-i16.ll | 113 +++++++++ test/Analysis/CostModel/X86/strided-load-i32.ll | 110 +++++++++ test/Analysis/CostModel/X86/strided-load-i64.ll | 81 +++++++ test/Analysis/CostModel/X86/strided-load-i8.ll | 117 ++++++++++ 14 files changed, 1055 insertions(+), 23 deletions(-) create mode 100755 test/Analysis/CostModel/X86/interleave-load-i32.ll create mode 100755 test/Analysis/CostModel/X86/interleave-store-i32.ll create mode 100644 test/Analysis/CostModel/X86/shuffle-single-src.ll create mode 100644 test/Analysis/CostModel/X86/shuffle-two-src.ll create mode 100755 test/Analysis/CostModel/X86/strided-load-i16.ll create mode 100755 test/Analysis/CostModel/X86/strided-load-i32.ll create mode 100755 test/Analysis/CostModel/X86/strided-load-i64.ll create mode 100755 test/Analysis/CostModel/X86/strided-load-i8.ll