This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a8631b87aef [llvm-objcopy] Add support for dwarf fission new 1b91c5e8aad Add CallSiteSplitting pass
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/InitializePasses.h | 1 + include/llvm/Transforms/Scalar.h | 8 + include/llvm/Transforms/Scalar/CallSiteSplitting.h | 29 ++ lib/Passes/PassBuilder.cpp | 9 +- lib/Passes/PassRegistry.def | 1 + lib/Transforms/IPO/PassManagerBuilder.cpp | 6 + lib/Transforms/Scalar/CMakeLists.txt | 1 + lib/Transforms/Scalar/CallSiteSplitting.cpp | 492 +++++++++++++++++++++ lib/Transforms/Scalar/Scalar.cpp | 1 + test/Other/new-pm-defaults.ll | 1 + test/Other/new-pm-lto-defaults.ll | 9 +- test/Other/new-pm-thinlto-defaults.ll | 1 + .../CallSiteSplitting/callsite-split-or-phi.ll | 339 ++++++++++++++ .../Transforms/CallSiteSplitting/callsite-split.ll | 119 +++++ 14 files changed, 1014 insertions(+), 3 deletions(-) create mode 100644 include/llvm/Transforms/Scalar/CallSiteSplitting.h create mode 100644 lib/Transforms/Scalar/CallSiteSplitting.cpp create mode 100644 test/Transforms/CallSiteSplitting/callsite-split-or-phi.ll create mode 100644 test/Transforms/CallSiteSplitting/callsite-split.ll