This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 9f38b99 dwarfdump: add space missing from the type unit header description new 6e98f1c Using branch probability to guide critical edge splitting. new fe89a6b Conditionally eliminate library calls where the result value [...]
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/InitializePasses.h | 1 + include/llvm/LinkAllPasses.h | 1 + include/llvm/Transforms/Scalar.h | 6 + include/llvm/Transforms/Utils/LibCallsShrinkWrap.h | 27 + lib/CodeGen/MachineSink.cpp | 17 + lib/Passes/PassBuilder.cpp | 1 + lib/Passes/PassRegistry.def | 1 + lib/Transforms/IPO/PassManagerBuilder.cpp | 7 + lib/Transforms/Utils/CMakeLists.txt | 1 + lib/Transforms/Utils/LibCallsShrinkWrap.cpp | 564 +++++++++++++++++++++ lib/Transforms/Utils/Utils.cpp | 1 + test/CodeGen/ARM/atomic-cmpxchg.ll | 30 +- test/CodeGen/ARM/code-placement.ll | 21 +- test/CodeGen/X86/block-placement.ll | 8 +- test/CodeGen/X86/clz.ll | 196 +++---- test/CodeGen/X86/loop-search.ll | 15 +- test/CodeGen/X86/machine-sink.ll | 21 + test/CodeGen/X86/phys_subreg_coalesce-2.ll | 2 + test/CodeGen/X86/pr2659.ll | 3 +- test/DebugInfo/COFF/pieces.ll | 6 +- test/Transforms/Util/libcalls-shrinkwrap-double.ll | 241 +++++++++ test/Transforms/Util/libcalls-shrinkwrap-float.ll | 191 +++++++ .../Util/libcalls-shrinkwrap-long-double.ll | 192 +++++++ 23 files changed, 1422 insertions(+), 131 deletions(-) create mode 100644 include/llvm/Transforms/Utils/LibCallsShrinkWrap.h create mode 100644 lib/Transforms/Utils/LibCallsShrinkWrap.cpp create mode 100644 test/CodeGen/X86/machine-sink.ll create mode 100644 test/Transforms/Util/libcalls-shrinkwrap-double.ll create mode 100644 test/Transforms/Util/libcalls-shrinkwrap-float.ll create mode 100644 test/Transforms/Util/libcalls-shrinkwrap-long-double.ll