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-release-arm-mainline-allmodconfig in repository toolchain/ci/llvm-project.
from 072c90a863aa [LLD] Fix probing a MSYS based 'tar' in a Windows Container adds 25dd67ef882c [X86][AVX] foldShuffleOfHorizOp - don't attempt to handle [...] adds 0cbbf06b6256 [clangd] Log a message when gRPC support is off, but remot [...] adds 907a751a38ff [NFC][InstCombine] Add test for PR49778 adds 4a4b1c75a1ea [NFC][InstCombine] Extract canTryToConstantAddTwoShiftAmou [...] adds c27ad80507bf [InstCombine] dropRedundantMaskingOfLeftShiftInput(): chec [...] adds 3568d61f11e2 BPF: Implement TTI.IntImmCost() properly adds f9efff398c11 BPF: Add LLVMAnalysis in CMakefile LINK_COMPONENTS adds 2460947eefc2 BPF: Implement TTI.getCmpSelInstrCost() properly adds 6fe7c3728d1e BPF: Add LLVMTransformUtils in CMakefile LINK_COMPONENTS adds b8e4d4eafede [PollyACC] Fix implicit function definitions. NFC. adds 8b2c019ace3c [PollyACC] Fix declaration/stub definition mismatch. NFC. adds 3263c81589ec Partially Revert "scan-view: Remove Reporter.py and associ [...] adds c1831fc65597 [RISCV] Fix isel pattern of masked vmslt[u] adds e0fe1c58acfa [OpenCL] Respect calling convention for builtin adds a5a6cfe2f030 BPF: permit type modifiers for __builtin_btf_type_id() relocation adds 6564e0cf7e61 BPF: Fix a bug in peephole TRUNC elimination optimization adds e294ece42d85 BPF: fix enum value 0 issue for __builtin_preserve_enum_value() adds 6baa5ce2e4b7 Fix typo, arvm7 -> armv7 adds 471a386a3d34 StackProtector: ensure protection does not interfere with [...] adds ac593de16cc5 [LoopReroll] Fix rerolling loop with extra instructions adds 225b775620c6 [PowerPC] Prevent argument promotion of types with size gr [...] adds c89d50033228 [InstCombine] add test for miscompile from select value eq [...] adds 4a12f51ad009 [InstCombine] fix potential miscompile in select value equ [...] adds 266c82f94da2 [InstSimplify] add test for vector select with operand rep [...] adds 8e2ff387d30d [InstSimplify] fix potential miscompile in select value eq [...]
No new revisions were added by this update.
Summary of changes: clang-tools-extra/clangd/ConfigCompile.cpp | 5 +- .../clangd/unittests/ConfigCompileTests.cpp | 12 +- clang/lib/CodeGen/CodeGenModule.cpp | 12 +- clang/lib/Sema/SemaChecking.cpp | 5 +- .../CodeGen/builtins-bpf-preserve-field-info-4.c | 12 +- clang/test/CodeGenOpenCL/sampler.cl | 12 +- clang/tools/scan-view/CMakeLists.txt | 1 + clang/tools/scan-view/share/Reporter.py | 183 ++++++++++++++ lldb/docs/man/lldb.rst | 4 +- lldb/tools/driver/Driver.cpp | 4 +- llvm/lib/Analysis/InstructionSimplify.cpp | 8 +- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 33 ++- llvm/lib/CodeGen/StackProtector.cpp | 24 +- llvm/lib/Target/BPF/BPFMIPeephole.cpp | 3 + llvm/lib/Target/BPF/BPFPreserveDIType.cpp | 9 + llvm/lib/Target/BPF/BPFTargetMachine.cpp | 6 + llvm/lib/Target/BPF/BPFTargetMachine.h | 2 + llvm/lib/Target/BPF/BPFTargetTransformInfo.h | 61 +++++ llvm/lib/Target/BPF/CMakeLists.txt | 2 + llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp | 21 ++ llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h | 3 + llvm/lib/Target/RISCV/RISCVInstrInfoVPseudos.td | 20 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 2 + .../Transforms/InstCombine/InstCombineSelect.cpp | 5 +- .../Transforms/InstCombine/InstCombineShifts.cpp | 58 +++-- llvm/lib/Transforms/Scalar/LoopRerollPass.cpp | 6 + .../CodeGen/AArch64/stack-protector-musttail.ll | 66 +++++ .../ARM/Windows/stack-protector-musttail.ll | 56 +++++ llvm/test/CodeGen/BPF/BTF/builtin-btf-type-id-2.ll | 73 ++++++ llvm/test/CodeGen/BPF/remove_truncate_8.ll | 41 ++++ llvm/test/CodeGen/PowerPC/arg_promotion.ll | 108 +++++++++ llvm/test/CodeGen/RISCV/rvv/vmslt-rv32.ll | 60 +++-- llvm/test/CodeGen/RISCV/rvv/vmslt-rv64.ll | 72 ++++-- llvm/test/CodeGen/RISCV/rvv/vmsltu-rv32.ll | 60 +++-- llvm/test/CodeGen/RISCV/rvv/vmsltu-rv64.ll | 72 ++++-- llvm/test/CodeGen/X86/horizontal-shuffle-3.ll | 11 + llvm/test/CodeGen/X86/tailcc-ssp.ll | 26 ++ .../redundant-left-shift-input-masking-pr49778.ll | 20 ++ .../Transforms/InstCombine/select-binop-cmp.ll | 19 +- llvm/test/Transforms/InstSimplify/select.ll | 25 ++ llvm/test/Transforms/LoopReroll/extra_instr.ll | 268 +++++++++++++++++++++ polly/lib/External/ppcg/external.c | 167 +++++++------ polly/lib/External/ppcg/print.c | 1 + 43 files changed, 1440 insertions(+), 218 deletions(-) create mode 100644 clang/tools/scan-view/share/Reporter.py create mode 100644 llvm/lib/Target/BPF/BPFTargetTransformInfo.h create mode 100644 llvm/test/CodeGen/AArch64/stack-protector-musttail.ll create mode 100644 llvm/test/CodeGen/ARM/Windows/stack-protector-musttail.ll create mode 100644 llvm/test/CodeGen/BPF/BTF/builtin-btf-type-id-2.ll create mode 100644 llvm/test/CodeGen/BPF/remove_truncate_8.ll create mode 100644 llvm/test/CodeGen/PowerPC/arg_promotion.ll create mode 100644 llvm/test/CodeGen/X86/tailcc-ssp.ll create mode 100644 llvm/test/Transforms/InstCombine/redundant-left-shift-input-mas [...] create mode 100644 llvm/test/Transforms/LoopReroll/extra_instr.ll