This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 9c5d8478b13 [SLPVectorizer] Failure to beneficially vectorize 'copyable [...] new 5765d84997d Rename CountingFunctionInserter and use for both mcount and [...]
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/CodeGen/Passes.h | 3 - include/llvm/InitializePasses.h | 3 +- include/llvm/LinkAllPasses.h | 3 +- include/llvm/Transforms/Scalar.h | 10 ++ .../llvm/Transforms/Utils/EntryExitInstrumenter.h | 36 +++++ lib/CodeGen/CMakeLists.txt | 1 - lib/CodeGen/CodeGen.cpp | 1 - lib/CodeGen/CountingFunctionInserter.cpp | 58 -------- lib/CodeGen/TargetPassConfig.cpp | 4 +- lib/Passes/PassBuilder.cpp | 1 + lib/Passes/PassRegistry.def | 2 + lib/Transforms/IPO/PassManagerBuilder.cpp | 1 + lib/Transforms/Scalar/Scalar.cpp | 2 + lib/Transforms/Utils/CMakeLists.txt | 1 + lib/Transforms/Utils/EntryExitInstrumenter.cpp | 148 +++++++++++++++++++++ test/CodeGen/PowerPC/mcount-insertion.ll | 40 +++++- test/CodeGen/X86/O0-pipeline.ll | 2 +- test/Transforms/CountingFunctionInserter/mcount.ll | 79 +++++++++-- tools/llc/llc.cpp | 3 +- tools/opt/opt.cpp | 3 +- 20 files changed, 316 insertions(+), 85 deletions(-) create mode 100644 include/llvm/Transforms/Utils/EntryExitInstrumenter.h delete mode 100644 lib/CodeGen/CountingFunctionInserter.cpp create mode 100644 lib/Transforms/Utils/EntryExitInstrumenter.cpp