This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 5caea93ebdc Revert "[DWARF] Add a unit test for DWARFUnit::getLength()" [...] new 1b050aba658 [llvm-dwarfdump] Add additional stats fields new be9f44f943d Revert "Reland "r364412 [ExpandMemCmp][MergeICmps] Move pas [...]
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/CodeGen/Passes.h | 3 + include/llvm/Transforms/IPO/PassManagerBuilder.h | 1 - include/llvm/Transforms/Scalar.h | 6 - lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/CodeGen.cpp | 1 + .../Scalar => CodeGen}/ExpandMemCmp.cpp | 124 +- lib/CodeGen/TargetPassConfig.cpp | 13 + lib/Transforms/IPO/PassManagerBuilder.cpp | 14 - lib/Transforms/Scalar/CMakeLists.txt | 1 - lib/Transforms/Scalar/MergeICmps.cpp | 2 +- lib/Transforms/Scalar/Scalar.cpp | 1 - test/CodeGen/AArch64/O3-pipeline.ll | 4 + test/CodeGen/AArch64/bcmp-inline-small.ll | 44 + test/CodeGen/ARM/O3-pipeline.ll | 4 + test/CodeGen/Generic/llc-start-stop.ll | 6 +- .../PowerPC/memCmpUsedInZeroEqualityComparison.ll | 218 +++ test/CodeGen/PowerPC/memcmp-mergeexpand.ll | 40 + test/CodeGen/PowerPC/memcmp.ll | 70 + test/CodeGen/PowerPC/memcmpIR.ll | 192 +++ test/CodeGen/X86/O3-pipeline.ll | 4 + test/CodeGen/X86/memcmp-mergeexpand.ll | 51 + test/CodeGen/X86/memcmp-optsize.ll | 1013 ++++++++++++ test/CodeGen/X86/memcmp.ll | 1685 ++++++++++++++++++++ test/Other/opt-O2-pipeline.ll | 3 - test/Other/opt-O3-pipeline.ll | 3 - test/Other/opt-Os-pipeline.ll | 3 - test/Transforms/ExpandMemCmp/AArch64/memcmp.ll | 124 -- test/Transforms/ExpandMemCmp/PowerPC/lit.local.cfg | 3 - test/Transforms/ExpandMemCmp/PowerPC/memcmpIR.ll | 294 ---- test/Transforms/ExpandMemCmp/X86/memcmp.ll | 89 +- test/Transforms/ExpandMemCmp/X86/pr36421.ll | 79 - .../Transforms/PhaseOrdering/PowerPC/lit.local.cfg | 2 - .../PowerPC/memCmpUsedInZeroEqualityComparison.ll | 174 -- .../PhaseOrdering/PowerPC/memcmp-mergeexpand.ll | 49 - test/Transforms/PhaseOrdering/PowerPC/memcmp.ll | 80 - test/Transforms/PhaseOrdering/X86/lit.local.cfg | 2 - .../PhaseOrdering/X86/memcmp-mergeexpand.ll | 76 - test/Transforms/PhaseOrdering/X86/memcmp.ll | 995 ------------ test/Transforms/PhaseOrdering/X86/pr36421.ll | 68 - test/tools/llvm-dwarfdump/X86/locstats.ll | 211 +++ tools/llvm-dwarfdump/Statistics.cpp | 218 ++- tools/opt/opt.cpp | 1 + utils/gn/secondary/llvm/lib/CodeGen/BUILD.gn | 1 + .../secondary/llvm/lib/Transforms/Scalar/BUILD.gn | 1 - 44 files changed, 3818 insertions(+), 2156 deletions(-) rename lib/{Transforms/Scalar => CodeGen}/ExpandMemCmp.cpp (90%) create mode 100644 test/CodeGen/AArch64/bcmp-inline-small.ll create mode 100644 test/CodeGen/PowerPC/memCmpUsedInZeroEqualityComparison.ll create mode 100644 test/CodeGen/PowerPC/memcmp-mergeexpand.ll create mode 100644 test/CodeGen/PowerPC/memcmp.ll create mode 100644 test/CodeGen/PowerPC/memcmpIR.ll create mode 100644 test/CodeGen/X86/memcmp-mergeexpand.ll create mode 100644 test/CodeGen/X86/memcmp-optsize.ll create mode 100644 test/CodeGen/X86/memcmp.ll delete mode 100644 test/Transforms/ExpandMemCmp/AArch64/memcmp.ll delete mode 100644 test/Transforms/ExpandMemCmp/PowerPC/lit.local.cfg delete mode 100644 test/Transforms/ExpandMemCmp/PowerPC/memcmpIR.ll delete mode 100644 test/Transforms/ExpandMemCmp/X86/pr36421.ll delete mode 100644 test/Transforms/PhaseOrdering/PowerPC/lit.local.cfg delete mode 100644 test/Transforms/PhaseOrdering/PowerPC/memCmpUsedInZeroEqualityC [...] delete mode 100644 test/Transforms/PhaseOrdering/PowerPC/memcmp-mergeexpand.ll delete mode 100644 test/Transforms/PhaseOrdering/PowerPC/memcmp.ll delete mode 100644 test/Transforms/PhaseOrdering/X86/lit.local.cfg delete mode 100644 test/Transforms/PhaseOrdering/X86/memcmp-mergeexpand.ll delete mode 100644 test/Transforms/PhaseOrdering/X86/memcmp.ll delete mode 100644 test/Transforms/PhaseOrdering/X86/pr36421.ll create mode 100644 test/tools/llvm-dwarfdump/X86/locstats.ll