This is an automated email from the git hooks/post-receive script.
"tcwg-buildslave pushed a change to branch linaro-local/ci/llvm-kernel-aarch64-tested in repository toolchain/llvm/llvm.
from 3b2cfd19a0d [TargetLowering] Refactor BuildSDIV in preparation for D507 [...] adds 25358c8f56e [NFC] Fix typo in test cases adds b35922e680c [X86][SSE] Add sdiv by nonuniform constant vector test cont [...] adds a0d83d520ea AMDGPU: Custom lower fexp adds 550dfae3742 Revert "unittests: Don't install TestPlugin.so" adds cd2d2cfae69 [MC] Cleanup noop default case spelling. NFC. adds 9d1f82a2cc3 [codeview] Use push_macro to avoid conflicts instead of a prefix adds 465c62b8d3e [TargetLowering] Add support for non-uniform vectors to BuildSDIV adds 3174d7c7791 Fix memory leak in demangling of string literals. adds d9c9d827167 [RegisterCoalescer] Shrink to uses if needed after removeCo [...] adds 7b455c4fd2f [llvm-strip] Add support for -p/--preserve-dates adds cb762f1f3dd [SelectionDAG] Improve the legalisation lowering of UMULO.
No new revisions were added by this update.
Summary of changes: .../llvm/DebugInfo/CodeView/CodeViewRegisters.def | 573 +++++----- lib/CodeGen/RegisterCoalescer.cpp | 78 +- lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp | 65 +- lib/CodeGen/SelectionDAG/TargetLowering.cpp | 34 +- lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp | 4 +- lib/Demangle/MicrosoftDemangle.cpp | 1 + lib/MC/MCExpr.cpp | 2 +- lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 32 + lib/Target/AMDGPU/AMDGPUISelLowering.h | 3 +- lib/Target/AMDGPU/SIISelLowering.cpp | 2 + lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp | 340 +++--- .../AArch64/umulo-128-legalisation-lowering.ll | 48 + test/CodeGen/AMDGPU/fexp.ll | 307 ++++++ .../CodeGen/ARM/umulo-128-legalisation-lowering.ll | 210 ++++ test/CodeGen/ARM/umulo-64-legalisation-lowering.ll | 69 ++ .../PowerPC/umulo-128-legalisation-lowering.ll | 177 ++++ .../RISCV/umulo-128-legalisation-lowering.ll | 175 +++ .../SPARC/umulo-128-legalisation-lowering.ll | 259 +++++ test/CodeGen/SystemZ/subregliveness-05.ll | 48 + .../Thumb/umulo-128-legalisation-lowering.ll | 183 ++++ .../Thumb2/umulo-128-legalisation-lowering.ll | 122 +++ .../Thumb2/umulo-64-legalisation-lowering.ll | 49 + .../WebAssembly/umulo-128-legalisation-lowering.ll | 94 ++ test/CodeGen/X86/combine-sdiv.ll | 1119 +++++++------------- test/CodeGen/X86/muloti.ll | 44 - test/CodeGen/X86/select.ll | 135 +-- .../CodeGen/X86/umulo-128-legalisation-lowering.ll | 196 ++++ test/CodeGen/X86/umulo-64-legalisation-lowering.ll | 66 ++ test/DebugInfo/COFF/fp-stack.ll | 2 +- test/DebugInfo/COFF/local-variable-gap.ll | 2 +- test/DebugInfo/COFF/local-variables.ll | 10 +- test/DebugInfo/COFF/pieces.ll | 14 +- test/DebugInfo/COFF/register-variables.ll | 14 +- test/DebugInfo/COFF/types-array.ll | 2 +- test/DebugInfo/PDB/DIA/pdbdump-symbol-format.test | 14 +- test/DebugInfo/X86/dbg-declare-inalloca.ll | 6 +- test/MC/COFF/cv-def-range-gap.s | 8 +- test/Transforms/InstCombine/pow-1.ll | 6 +- test/Transforms/InstCombine/pow-sqrt.ll | 1 - test/tools/llvm-objcopy/strip-preserve-time.test | 70 ++ tools/llvm-objcopy/ObjcopyOpts.td | 6 + tools/llvm-objcopy/StripOpts.td | 5 + tools/llvm-objcopy/llvm-objcopy.cpp | 41 +- .../DebugInfo/CodeView/TypeIndexDiscoveryTest.cpp | 2 +- unittests/Passes/CMakeLists.txt | 2 +- 45 files changed, 3209 insertions(+), 1431 deletions(-) create mode 100644 test/CodeGen/AArch64/umulo-128-legalisation-lowering.ll create mode 100644 test/CodeGen/AMDGPU/fexp.ll create mode 100644 test/CodeGen/ARM/umulo-128-legalisation-lowering.ll create mode 100644 test/CodeGen/ARM/umulo-64-legalisation-lowering.ll create mode 100644 test/CodeGen/PowerPC/umulo-128-legalisation-lowering.ll create mode 100644 test/CodeGen/RISCV/umulo-128-legalisation-lowering.ll create mode 100644 test/CodeGen/SPARC/umulo-128-legalisation-lowering.ll create mode 100644 test/CodeGen/SystemZ/subregliveness-05.ll create mode 100644 test/CodeGen/Thumb/umulo-128-legalisation-lowering.ll create mode 100644 test/CodeGen/Thumb2/umulo-128-legalisation-lowering.ll create mode 100644 test/CodeGen/Thumb2/umulo-64-legalisation-lowering.ll create mode 100644 test/CodeGen/WebAssembly/umulo-128-legalisation-lowering.ll create mode 100644 test/CodeGen/X86/umulo-128-legalisation-lowering.ll create mode 100644 test/CodeGen/X86/umulo-64-legalisation-lowering.ll create mode 100644 test/tools/llvm-objcopy/strip-preserve-time.test