This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0b1a72a7a60 [SLP] Added tests for checks of reordering of the repeated [...] new f67d85620bf [LoopInterchange] Update tests so DA can handle access afte [...] new b09f726df5f Recommit "[SLP] Fix issues with debug output in the SLP vec [...] new 6ea791d917a [llvm-mca] Move the logic that prints register file statist [...]
The 3 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: docs/CommandGuide/llvm-mca.rst | 4 + lib/Transforms/Vectorize/SLPVectorizer.cpp | 7 +- .../LoopInterchange/interchange-not-profitable.ll | 42 ---- .../interchange-output-dependencies.ll | 48 ----- .../interchange-simple-count-down.ll | 40 ---- .../LoopInterchange/interchange-simple-count-up.ll | 49 ----- test/Transforms/LoopInterchange/interchangeable.ll | 167 ++++++++++++++++ test/Transforms/LoopInterchange/phi-ordering.ll | 122 +++++++----- test/Transforms/LoopInterchange/profitability.ll | 214 +++++++++++---------- test/Transforms/LoopInterchange/reductions.ll | 8 +- test/tools/llvm-mca/X86/BtVer2/register-files-1.s | 2 +- test/tools/llvm-mca/X86/BtVer2/register-files-2.s | 2 +- test/tools/llvm-mca/X86/BtVer2/register-files-3.s | 2 +- test/tools/llvm-mca/X86/BtVer2/register-files-4.s | 2 +- test/tools/llvm-mca/X86/BtVer2/register-files-5.s | 2 +- tools/llvm-mca/BackendStatistics.cpp | 74 ------- tools/llvm-mca/BackendStatistics.h | 24 +-- tools/llvm-mca/CMakeLists.txt | 1 + tools/llvm-mca/RegisterFileStatistics.cpp | 108 +++++++++++ tools/llvm-mca/RegisterFileStatistics.h | 67 +++++++ tools/llvm-mca/llvm-mca.cpp | 9 + 21 files changed, 564 insertions(+), 430 deletions(-) delete mode 100644 test/Transforms/LoopInterchange/interchange-not-profitable.ll delete mode 100644 test/Transforms/LoopInterchange/interchange-output-dependencies.ll delete mode 100644 test/Transforms/LoopInterchange/interchange-simple-count-down.ll delete mode 100644 test/Transforms/LoopInterchange/interchange-simple-count-up.ll create mode 100644 test/Transforms/LoopInterchange/interchangeable.ll create mode 100644 tools/llvm-mca/RegisterFileStatistics.cpp create mode 100644 tools/llvm-mca/RegisterFileStatistics.h