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-next-defconfig in repository toolchain/ci/llvm-project.
from 86c944d7907 AMDGPU/SILoadStoreOptimizer: Improve merging of out of orde [...] adds fe9765762ce AMDGPU: Generate test checks adds 1ed561aa4bd [lldb/Test] Update minidebuginfo-set-and-hit-breakpoint.test adds 1c90ce0c761 [lldb/Test] Disable hardware check on arm/aarch64 adds cb297050bb0 AMDGPU/SILoadStoreOptimizer: Fix uninitialized variable error adds 18e6a65bae9 [Support] Fix race in threading test, found by TSan adds d08563486e0 [clangd] Make Notification a little safer. adds 6d485ff455e Improve static checks for sprintf and __builtin___sprintf_chk adds 0f34ea5dc3c [perf-training] Update ' (in-process)' prefix handling adds e298e216501 [mlir] Bootstrap doxygen config adds c8de7c8f501 [TargetLowering] SimplifyDemandedBits - Remove ashr if all [...] adds e47b5613988 [mlir] Revert MSVC specific part of whole_archive_link adds 435a60a5af4 [X86] Add tests showing ComputeNumSignBits's failure to see [...] adds e3c26a9d1b6 [SelectionDAG] ComputeNumSignBits - add support for rotate [...] adds 3f8916b2e89 [SelectionDAG] ComputeNumSignBits - add support for rotate [...] adds 481b79668c2 [X86] Add tests showing ComputeNumSignBits's failure to use [...] adds deb5819d624 [ELF] Rename relocateOne() to relocate() and pass `Relocati [...] adds 3daa71ee005 [SelectionDAG] ComputeNumSignBits - add DemandedElts suppor [...] adds 713562f5485 [Concepts] Transform constraints of non-template functions [...] new 837e8a9c0cd [ELF][PPC32] Support canonical PLT new 3fdd435a4b8 [X86] Use a macro to convert X86ISD names to strings in get [...]
The 2 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-tools-extra/clangd/Threading.cpp | 4 +- clang/include/clang/AST/ASTConcept.h | 6 +- clang/include/clang/Basic/DiagnosticSemaKinds.td | 8 + clang/include/clang/Sema/Sema.h | 13 +- clang/lib/AST/ASTConcept.cpp | 4 +- clang/lib/Sema/SemaChecking.cpp | 244 ++- clang/lib/Sema/SemaConcept.cpp | 58 +- clang/lib/Sema/SemaExpr.cpp | 3 +- clang/lib/Sema/SemaExprCXX.cpp | 3 +- clang/lib/Sema/SemaOverload.cpp | 20 +- clang/lib/Sema/SemaTemplateInstantiate.cpp | 17 +- clang/test/Sema/warn-fortify-source.c | 87 + clang/test/SemaTemplate/cxx2a-constraint-exprs.cpp | 60 +- clang/utils/perf-training/perf-helper.py | 11 +- lld/ELF/AArch64ErrataFix.cpp | 2 +- lld/ELF/ARMErrataFix.cpp | 2 +- lld/ELF/Arch/AArch64.cpp | 87 +- lld/ELF/Arch/AMDGPU.cpp | 7 +- lld/ELF/Arch/ARM.cpp | 24 +- lld/ELF/Arch/AVR.cpp | 10 +- lld/ELF/Arch/Hexagon.cpp | 24 +- lld/ELF/Arch/MSP430.cpp | 18 +- lld/ELF/Arch/Mips.cpp | 57 +- lld/ELF/Arch/PPC.cpp | 50 +- lld/ELF/Arch/PPC64.cpp | 56 +- lld/ELF/Arch/RISCV.cpp | 34 +- lld/ELF/Arch/SPARCV9.cpp | 22 +- lld/ELF/Arch/X86.cpp | 17 +- lld/ELF/Arch/X86_64.cpp | 19 +- lld/ELF/InputSection.cpp | 17 +- lld/ELF/Relocations.cpp | 8 +- lld/ELF/Symbols.cpp | 2 +- lld/ELF/SyntheticSections.cpp | 11 +- lld/ELF/SyntheticSections.h | 4 +- lld/ELF/Target.h | 30 +- lld/ELF/Thunks.cpp | 52 +- lld/test/ELF/ppc32-canonical-plt.s | 72 + .../TestHWBreakMultiThread.py | 13 +- .../ELF/minidebuginfo-set-and-hit-breakpoint.test | 10 +- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 11 +- llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 7 + llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp | 2 + llvm/lib/Target/X86/X86ISelLowering.cpp | 705 +++--- llvm/test/CodeGen/AMDGPU/llvm.cos.f16.ll | 207 +- llvm/test/CodeGen/AMDGPU/llvm.sin.f16.ll | 207 +- llvm/test/CodeGen/AMDGPU/sdiv64.ll | 9 +- llvm/test/CodeGen/AMDGPU/srem64.ll | 15 +- llvm/test/CodeGen/RISCV/srem-vector-lkk.ll | 134 +- llvm/test/CodeGen/X86/known-signbits-vector.ll | 232 ++ llvm/test/CodeGen/X86/rotate_vec.ll | 45 + llvm/unittests/Support/Threading.cpp | 4 +- mlir/CMakeLists.txt | 6 + mlir/cmake/modules/AddMLIR.cmake | 2 +- mlir/docs/CMakeLists.txt | 103 + mlir/docs/doxygen-mainpage.dox | 15 + mlir/docs/doxygen.cfg.in | 2294 ++++++++++++++++++++ 56 files changed, 4257 insertions(+), 927 deletions(-) create mode 100644 lld/test/ELF/ppc32-canonical-plt.s create mode 100644 mlir/docs/CMakeLists.txt create mode 100644 mlir/docs/doxygen-mainpage.dox create mode 100644 mlir/docs/doxygen.cfg.in