This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 7e0a3f9 [PM] Another attempt to satisfy MSVC. new c3bb9ef [PM] Pull a lambda out of an argument into a named variable t [...] new 9c6b24c [X86] updating TTI costs for arithmetic instructions on X86\S [...]
The 2 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 | 14 +- include/llvm/Analysis/TargetTransformInfoImpl.h | 60 +++- include/llvm/CodeGen/BasicTTIImpl.h | 3 +- lib/Analysis/CostModel.cpp | 5 +- lib/Analysis/TargetTransformInfo.cpp | 5 +- lib/Target/AArch64/AArch64TargetTransformInfo.cpp | 2 +- lib/Target/AArch64/AArch64TargetTransformInfo.h | 3 +- lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp | 2 +- lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h | 3 +- lib/Target/ARM/ARMTargetTransformInfo.cpp | 3 +- lib/Target/ARM/ARMTargetTransformInfo.h | 3 +- lib/Target/Lanai/LanaiTargetTransformInfo.h | 3 +- lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp | 2 +- lib/Target/NVPTX/NVPTXTargetTransformInfo.h | 3 +- lib/Target/PowerPC/PPCTargetTransformInfo.cpp | 2 +- lib/Target/PowerPC/PPCTargetTransformInfo.h | 3 +- .../WebAssembly/WebAssemblyTargetTransformInfo.cpp | 2 +- .../WebAssembly/WebAssemblyTargetTransformInfo.h | 3 +- lib/Target/X86/X86TargetTransformInfo.cpp | 53 +++- lib/Target/X86/X86TargetTransformInfo.h | 3 +- lib/Transforms/Vectorize/LoopVectorize.cpp | 7 +- test/Analysis/CostModel/X86/slm-arith-costs.ll | 317 +++++++++++++++++++++ test/Transforms/LoopVectorize/X86/mul_slm_16bit.ll | 144 ++++++++++ unittests/Analysis/LoopPassManagerTest.cpp | 13 +- 24 files changed, 623 insertions(+), 35 deletions(-) create mode 100644 test/Analysis/CostModel/X86/slm-arith-costs.ll create mode 100644 test/Transforms/LoopVectorize/X86/mul_slm_16bit.ll