This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from eb7c044ce99 [X86][SSE] Add PACKUS support to combineVectorTruncation new 3d456013b6b re-land [ExpandMemCmp] Split ExpandMemCmp from CodeGen into [...]
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 | 1 + include/llvm/LinkAllPasses.h | 1 + include/llvm/Transforms/Scalar.h | 2 +- lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/CodeGen.cpp | 1 + lib/CodeGen/CodeGenPrepare.cpp | 710 ------------------ lib/CodeGen/ExpandMemCmp.cpp | 828 +++++++++++++++++++++ lib/CodeGen/TargetPassConfig.cpp | 10 +- test/CodeGen/Generic/llc-start-stop.ll | 6 +- test/CodeGen/X86/memcmp-optsize.ll | 224 +++--- test/CodeGen/X86/memcmp.ll | 240 +++--- .../ExpandMemCmp}/X86/lit.local.cfg | 0 .../{CodeGenPrepare => ExpandMemCmp}/X86/memcmp.ll | 519 ++++++------- tools/opt/opt.cpp | 1 + 15 files changed, 1347 insertions(+), 1200 deletions(-) create mode 100644 lib/CodeGen/ExpandMemCmp.cpp copy test/{Analysis/CostModel => Transforms/ExpandMemCmp}/X86/lit.local.cfg (100%) rename test/Transforms/{CodeGenPrepare => ExpandMemCmp}/X86/memcmp.ll (56%)