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-allmodconfig in repository toolchain/ci/llvm-project.
from 45d910de994 Don't initialize interceptor_metadata_map unless SI_POSIX is set adds d5bc4b09f11 [NFC][InstCombine] Shift amount reassociation: can have tru [...] adds 4bde15fe1e4 [analyzer] Add yaml parser to GenericTaintChecker adds 9cf344e7395 [ARM] Better patterns for fp <> predicate vectors adds b8b8b46a517 [ARM] MVE VPNOT adds 2c8098374b6 Buildbot fix for r367190 adds 99c57c6daf6 [InstCombine] fold fsub+fneg with fdiv/fmul between adds 894916cac9f [X86] In combineLoopMAddPattern and combineLoopSADPattern, [...] adds 6ff633ddc49 [NFC][InstCombine] Revisit tests in shift-amount-reassociat [...] adds ac9d0f4150c [X86] Add test cases to show missing one use check in combi [...] adds eb1beabad94 [X86] Don't use PMADDWD for vector add reductions of multip [...] adds 9aeab53eba0 Improve MSVC visualizers for DeclSpec and TemplateName adds d524c17029e Return early. NFC. adds 822c58704bc [lldb][NFC] Remove DiagnosticManager::CopyDiagnostics adds 99f73ebe5c9 [llvm-objcopy] - Reimplement strip-dwo-groups.test to stop [...] adds aef03e86c1c [obj2yaml] - Report a error when unable to resolve a sh_lin [...] adds 11ad33ede65 [NFC][ARM][ParallelDSP] Remove PopulateLoads adds 85380601033 [NFC][ARM][ParallelDSP] Remove AreSymmetrical adds 20235ef3e75 [AMDGPU] Enable v4f16 and above for v_pk_fma instructions adds 4e44c77ab3b [lldb][NFC] Split emitting and parsing in LLDBOptionDefEmitter adds 414dd1c946a [NFC][ARM[ParallelDSP] Cleanup of BinOpChain
No new revisions were added by this update.
Summary of changes: .../clang/StaticAnalyzer/Checkers/Checkers.td | 7 + .../Checkers/GenericTaintChecker.cpp | 178 +++++++++++++-- clang/lib/StaticAnalyzer/Checkers/Yaml.h | 59 +++++ .../Inputs/taint-generic-config-ill-formed.yaml | 4 + .../Inputs/taint-generic-config-invalid-arg.yaml | 3 + .../test/Analysis/Inputs/taint-generic-config.yaml | 50 ++++ clang/test/Analysis/analyzer-config.c | 3 +- clang/test/Analysis/taint-generic.c | 48 +++- clang/utils/ClangVisualizers/clang.natvis | 81 ++++++- lld/ELF/InputFiles.cpp | 20 +- lldb/include/lldb/Expression/DiagnosticManager.h | 2 - lldb/source/Expression/DiagnosticManager.cpp | 9 - lldb/utils/TableGen/LLDBOptionDefEmitter.cpp | 122 ++++++---- llvm/lib/Target/AMDGPU/SIISelLowering.cpp | 27 +++ llvm/lib/Target/AMDGPU/SIISelLowering.h | 1 + llvm/lib/Target/ARM/ARMISelLowering.cpp | 4 - llvm/lib/Target/ARM/ARMInstrMVE.td | 41 +++- llvm/lib/Target/ARM/ARMParallelDSP.cpp | 189 +++++---------- .../Target/ARM/Disassembler/ARMDisassembler.cpp | 10 + llvm/lib/Target/X86/X86ISelLowering.cpp | 149 ++++++------ .../Transforms/InstCombine/InstCombineAddSub.cpp | 15 ++ llvm/test/CodeGen/AMDGPU/fmac.sdwa.ll | 138 ++++++----- llvm/test/CodeGen/AMDGPU/llvm.fma.f16.ll | 132 ++++++++--- llvm/test/CodeGen/Thumb2/mve-pred-ext.ll | 131 +++++------ llvm/test/CodeGen/Thumb2/mve-pred-or.ll | 85 ++----- llvm/test/CodeGen/Thumb2/mve-vcmpf.ll | 60 +---- llvm/test/CodeGen/Thumb2/mve-vcmpfr.ll | 60 +---- llvm/test/CodeGen/Thumb2/mve-vcmpfz.ll | 60 +---- llvm/test/CodeGen/X86/madd.ll | 136 ++++++++++- llvm/test/CodeGen/X86/sad.ll | 30 +-- llvm/test/Transforms/InstCombine/fsub.ll | 16 +- ...ift-amount-reassociation-with-truncation-shl.ll | 254 +++++++++++++++++++++ llvm/test/tools/llvm-objcopy/ELF/Inputs/groups.o | Bin 5368 -> 0 bytes .../tools/llvm-objcopy/ELF/strip-dwo-groups.test | 106 ++++++--- llvm/test/tools/obj2yaml/elf-shlink.yaml | 58 +++++ llvm/tools/obj2yaml/elf2yaml.cpp | 8 +- 36 files changed, 1568 insertions(+), 728 deletions(-) create mode 100755 clang/lib/StaticAnalyzer/Checkers/Yaml.h create mode 100755 clang/test/Analysis/Inputs/taint-generic-config-ill-formed.yaml create mode 100755 clang/test/Analysis/Inputs/taint-generic-config-invalid-arg.yaml create mode 100755 clang/test/Analysis/Inputs/taint-generic-config.yaml create mode 100644 llvm/test/Transforms/InstCombine/shift-amount-reassociation-wit [...] delete mode 100644 llvm/test/tools/llvm-objcopy/ELF/Inputs/groups.o create mode 100644 llvm/test/tools/obj2yaml/elf-shlink.yaml