This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from ebe43346ae6 [EarlyCSE] add tests for selects with commuted operands (PR [...] new 6900134167b llvm-undname: Fix nullptr deref on invalid conversion opera [...] new 7716d659688 [PGO] Profile guided code size optimization.
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/Transforms/Scalar/ConstantHoisting.h | 5 +- include/llvm/Transforms/Utils/SimplifyLibCalls.h | 5 ++ include/llvm/Transforms/Utils/SizeOpts.h | 34 +++++++++++++ include/llvm/Transforms/Utils/UnrollLoop.h | 5 +- include/llvm/Transforms/Vectorize/LoopVectorize.h | 4 +- lib/Demangle/MicrosoftDemangle.cpp | 11 +++- lib/Passes/PassBuilder.cpp | 12 ++++- lib/Transforms/InstCombine/InstCombineCalls.cpp | 2 +- lib/Transforms/InstCombine/InstCombineInternal.h | 10 ++-- .../InstCombine/InstructionCombining.cpp | 29 +++++++++-- lib/Transforms/Scalar/ConstantHoisting.cpp | 18 +++++-- lib/Transforms/Scalar/LoopLoadElimination.cpp | 36 ++++++++++--- lib/Transforms/Scalar/LoopUnrollAndJamPass.cpp | 3 +- lib/Transforms/Scalar/LoopUnrollPass.cpp | 24 ++++++--- lib/Transforms/Utils/CMakeLists.txt | 1 + lib/Transforms/Utils/SimplifyLibCalls.cpp | 10 +++- lib/Transforms/Utils/SizeOpts.cpp | 37 ++++++++++++++ lib/Transforms/Vectorize/LoopVectorize.cpp | 37 ++++++++++---- test/Demangle/invalid-manglings.test | 5 ++ test/Other/new-pm-defaults.ll | 2 +- test/Other/new-pm-lto-defaults.ll | 1 + test/Other/new-pm-thinlto-defaults.ll | 2 +- test/Other/opt-O2-pipeline.ll | 2 + test/Other/opt-O3-pipeline.ll | 2 + test/Other/opt-Os-pipeline.ll | 2 + .../ARM/const-addr-no-neg-offset.ll | 59 ++++++++++++++++++++++ test/Transforms/InstCombine/fputs-opt-size.ll | 33 ++++++++++++ test/Transforms/LoopLoadElim/opt-size.ll | 53 +++++++++++++++++++ test/Transforms/LoopUnroll/unroll-opt-attribute.ll | 46 +++++++++++++++++ test/Transforms/LoopVectorize/optsize.ll | 43 ++++++++++++++++ 30 files changed, 488 insertions(+), 45 deletions(-) create mode 100644 include/llvm/Transforms/Utils/SizeOpts.h create mode 100644 lib/Transforms/Utils/SizeOpts.cpp