This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-master-aarch64-stable-allnoconfig in repository toolchain/ci/llvm-monorepo.
from af0f232d609 [llvm-mca] Add support for instructions with a variadic num [...] adds a2243ad680a [SelectionDAG] move constant or splat functions to common location adds e44347d824a [IPSCCP] Use input operand instead of OriginalOp for ssa_copy. adds 4a77c5f604a [x86] add tests for select-of-fp-constants; NFC adds e7bb99347ad [x86] limit transform for select-of-fp-constants adds 093425c9608 [CodeGen] translate MS rotate builtins to LLVM funnel-shift [...] adds 243b068756c [MetadataTest] Fix off-by-one strncpy warning reported by g [...] adds 9e38f8a5618 [CodeComplete] Simplify CodeCompleteConsumer.cpp, NFC adds 16effb77859 [Support/FileSystem] Add sub-second precision for atime/mti [...] adds ebe1cc58a68 A "constexpr" is evaluated in a constant context. Make sure [...] adds a796e890bfa [PowerPC] Fix inconsistent ImmMustBeMultipleOf for same ins [...] adds bc4996263a7 [X86] Add test cases to show bad type legalization of fptos [...] adds df56c54691b Revert "[PowerPC] Fix inconsistent ImmMustBeMultipleOf for [...] adds 61624d9ac0d [LLD][ELF] - Add a test for non-null terminated mergeable s [...] adds 7fb92dfb10a [ELF] - Added test case for invalid relocation target error [...] adds 0fece9b7333 [clang-tidy] Don't generate incorrect fixes for class with [...] adds 578cb077489 [clangd] Auto-index watches global CDB for changes. adds 495211e888a [clangd] Cleanup after landing documentSymbol. NFC adds a7c98e6283b [LLD][ELF] - Add llvm_unreachable. NFC. adds 4119142da8f Revert "[TTI] Reduction costs only need to include a single [...] adds ebc7d234aba [ARM] Prevent parallel macs for unsigned values adds 0268f2065b4 [LLD][ELF] - Remove the excessive safety return. NFC. adds c69343df27f Fix typo in comment. NFC adds a28a1dd2da3 [ARM GlobalISel] Support G_CTLZ and G_CTLZ_ZERO_UNDEF adds 7ee3b4f7b3d [clang-tidy] PrintStackTraceOnErrorSignal adds 6ec73fe8e6f [clangd] Use testPath in the test. adds f05faca7ae4 [clangd] Tune down scope boost for global scope adds 1ce0458aa6c [LLD][ELF] - Do not crash when parsing the -defsym option f [...] adds b76f08513ce [LLD][ELF] - Add a check for --split-stack-adjust-size erro [...] adds a9f6ef84f76 [clang-tidy] No warning for auto new expression in smart check new e25d14ccf39 [LLD][ELF] - Add a test for "unbalanced --push-state/--pop- [...] new 5ed4d0416e2 [LLD][ELF] - Added a test for "-image-base: number expected [...] new 715b497d7c2 [clangd] Fix missing include from r347538 - fix windows buildbots
The 3 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: .../clang-tidy/modernize/MakeSmartPtrCheck.cpp | 16 + .../clang-tidy/tool/ClangTidyMain.cpp | 2 + clang-tools-extra/clangd/AST.cpp | 4 +- clang-tools-extra/clangd/FileDistance.cpp | 4 +- .../clangd/GlobalCompilationDatabase.cpp | 22 +- .../clangd/GlobalCompilationDatabase.h | 16 +- clang-tools-extra/clangd/Protocol.cpp | 7 +- clang-tools-extra/clangd/index/Background.cpp | 78 +++-- clang-tools-extra/clangd/index/Background.h | 13 +- .../clangd/index/BackgroundIndexStorage.cpp | 25 +- .../test/clang-tidy/modernize-make-unique.cpp | 62 ++++ .../unittests/clangd/BackgroundIndexTests.cpp | 12 +- .../unittests/clangd/FindSymbolsTests.cpp | 4 +- .../clangd/GlobalCompilationDatabaseTests.cpp | 7 +- clang-tools-extra/unittests/clangd/TestFS.cpp | 5 +- clang-tools-extra/unittests/clangd/TestFS.h | 4 +- clang/lib/AST/ExprConstant.cpp | 2 + clang/lib/CodeGen/CGBuiltin.cpp | 50 +-- clang/lib/Sema/CodeCompleteConsumer.cpp | 146 ++++----- clang/test/CodeGen/ms-intrinsics-rotations.c | 99 ++---- clang/test/SemaCXX/constant-expression-cxx1y.cpp | 8 + lld/ELF/ScriptParser.cpp | 2 + lld/ELF/SyntheticSections.cpp | 3 - lld/ELF/SyntheticSections.h | 4 +- lld/test/ELF/Inputs/bad-reloc-target.test | 21 ++ lld/test/ELF/bad-reloc-target.test | 29 ++ lld/test/ELF/defsym.s | 6 + lld/test/ELF/image-base.s | 3 + lld/test/ELF/mergeable-errors.s | 8 + .../ELF/ppc64-split-stack-adjust-size-success.s | 2 + lld/test/ELF/push-state.s | 3 + llvm/cmake/config-ix.cmake | 6 + llvm/include/llvm/CodeGen/BasicTTIImpl.h | 7 +- llvm/include/llvm/CodeGen/SelectionDAGNodes.h | 14 +- llvm/include/llvm/CodeGen/TargetLowering.h | 8 + llvm/include/llvm/Config/config.h.cmake | 6 + llvm/include/llvm/Support/Chrono.h | 8 + llvm/include/llvm/Support/FileSystem.h | 29 +- llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp | 23 +- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 52 +-- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 18 +- llvm/lib/Support/Unix/Path.inc | 21 +- llvm/lib/Target/ARM/ARMLegalizerInfo.cpp | 16 + llvm/lib/Target/ARM/ARMParallelDSP.cpp | 20 +- llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp | 1 + llvm/lib/Target/X86/X86ISelLowering.cpp | 8 + llvm/lib/Target/X86/X86ISelLowering.h | 2 + llvm/lib/Transforms/Scalar/SCCP.cpp | 10 +- .../Analysis/CostModel/AArch64/vector-reduce.ll | 44 +-- llvm/test/Analysis/CostModel/X86/reduce-add.ll | 162 ++++----- llvm/test/Analysis/CostModel/X86/reduce-and.ll | 344 ++++++++++---------- llvm/test/Analysis/CostModel/X86/reduce-mul.ll | 288 ++++++++-------- llvm/test/Analysis/CostModel/X86/reduce-or.ll | 344 ++++++++++---------- llvm/test/Analysis/CostModel/X86/reduce-smax.ll | 120 +++---- llvm/test/Analysis/CostModel/X86/reduce-smin.ll | 120 +++---- llvm/test/Analysis/CostModel/X86/reduce-umax.ll | 120 +++---- llvm/test/Analysis/CostModel/X86/reduce-umin.ll | 120 +++---- llvm/test/Analysis/CostModel/X86/reduce-xor.ll | 344 ++++++++++---------- llvm/test/Analysis/CostModel/X86/reduction.ll | 92 +++--- .../ARM/GlobalISel/arm-legalize-bitcounts.mir | 177 ++++++++++ .../CodeGen/ARM/GlobalISel/arm-regbankselect.mir | 22 ++ llvm/test/CodeGen/ARM/smlad0.ll | 80 +++++ llvm/test/CodeGen/ARM/smlald0.ll | 41 +++ llvm/test/CodeGen/ARM/smlald2.ll | 86 +++++ llvm/test/CodeGen/X86/2009-03-07-FPConstSelect.ll | 18 - llvm/test/CodeGen/X86/avx512-cmp.ll | 6 +- llvm/test/CodeGen/X86/avx512-schedule.ll | 10 +- llvm/test/CodeGen/X86/select-of-fp-constants.ll | 96 ++++++ llvm/test/CodeGen/X86/vec_fp_to_int-widen.ll | 305 +++++++++++++++++ llvm/test/CodeGen/X86/vec_fp_to_int.ll | 362 +++++++++++++++++++++ llvm/test/CodeGen/X86/vselect-zero.ll | 6 +- .../SCCP/ipsccp-ssa-copy-nested-conds.ll | 50 +++ .../SLPVectorizer/X86/horizontal-minmax.ll | 135 ++++++-- .../SLPVectorizer/X86/reduction_unrolled.ll | 255 ++++++++++----- .../Transforms/SLPVectorizer/X86/remark_horcost.ll | 25 +- .../CodeGen/GlobalISel/LegalizerHelperTest.cpp | 27 ++ llvm/unittests/IR/MetadataTest.cpp | 8 +- 77 files changed, 3157 insertions(+), 1566 deletions(-) create mode 100644 lld/test/ELF/Inputs/bad-reloc-target.test create mode 100644 lld/test/ELF/bad-reloc-target.test create mode 100644 lld/test/ELF/mergeable-errors.s create mode 100644 llvm/test/CodeGen/ARM/GlobalISel/arm-legalize-bitcounts.mir delete mode 100644 llvm/test/CodeGen/X86/2009-03-07-FPConstSelect.ll create mode 100644 llvm/test/CodeGen/X86/select-of-fp-constants.ll create mode 100644 llvm/test/Transforms/SCCP/ipsccp-ssa-copy-nested-conds.ll