This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 24618548604 [X86][SSE] Swap X86ISD::BLENDV inputs with an inverted sele [...] new b2f93fd3ba8 Title: Loop Cache Analysis Summary: Implement a new analysi [...]
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/LoopCacheAnalysis.h | 278 +++++++++ lib/Analysis/CMakeLists.txt | 1 + lib/Analysis/LoopCacheAnalysis.cpp | 625 +++++++++++++++++++++ lib/Passes/PassBuilder.cpp | 1 + lib/Passes/PassRegistry.def | 1 + .../PowerPC/lit.local.cfg | 0 .../LoopCacheAnalysis/PowerPC/loads-store.ll | 88 +++ test/Analysis/LoopCacheAnalysis/PowerPC/matmul.ll | 81 +++ .../LoopCacheAnalysis/PowerPC/matvecmul.ll | 185 ++++++ .../LoopCacheAnalysis/PowerPC/single-store.ll | 77 +++ test/Analysis/LoopCacheAnalysis/PowerPC/stencil.ll | 98 ++++ 11 files changed, 1435 insertions(+) create mode 100644 include/llvm/Analysis/LoopCacheAnalysis.h create mode 100644 lib/Analysis/LoopCacheAnalysis.cpp copy test/Analysis/{CostModel => LoopCacheAnalysis}/PowerPC/lit.local.cfg (100%) create mode 100644 test/Analysis/LoopCacheAnalysis/PowerPC/loads-store.ll create mode 100644 test/Analysis/LoopCacheAnalysis/PowerPC/matmul.ll create mode 100644 test/Analysis/LoopCacheAnalysis/PowerPC/matvecmul.ll create mode 100644 test/Analysis/LoopCacheAnalysis/PowerPC/single-store.ll create mode 100644 test/Analysis/LoopCacheAnalysis/PowerPC/stencil.ll