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-arm-next-allyesconfig in repository toolchain/ci/llvm-monorepo.
from 8bc6a184a03 [CommandInterpreter] Simplify PreprocessCommand. (NFCI) adds 12ab244e48c DeclAccessPair visualizer should be expandable adds 4517247c90c [llvm-objcopy] [COFF] Use Error/Expected returns instead of [...] adds 680216afb84 [AArch64] Implement the .arch_extension directive adds 8c8b2e05eb6 More tolerance for flaky tests in libc++ on NetBSD adds 6ec52cacd88 [gn build] Make `ninja check-clang` also run Clang's unit tests adds 341b3a801f2 [DAGCombiner] Add missing one use check on the shuffle in t [...] adds 1f07fee1416 [MSan] Handle llvm.is.constant intrinsic adds 6a2c8de706c [AArch64] Accept "sve" as arch feature in assembler adds cf3a6e2aed6 [test] Fix propagating HOME envvar to unittests adds 8bc85158917 Keep tablegen commands in alphabetical order. NFCI. adds f98a7ef6b10 [DWARFUnit] Remove commented out code. NFCI. adds 264b9f38f2f [X86] Add X86ISD::VSRAI to computeKnownBitsForTargetNode. adds 029a24e2d4d [SelectionDAG] Add SIGN_EXTEND_VECTOR_INREG support to comp [...] adds 554b74d0328 [X86] Add additional RUN lines to prepare for D56156. NFC new dfbdb9a4e5a [X86] Add PR34641 masked shld/shrd test cases
The 1 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/utils/ClangVisualizers/clang.natvis | 4 + libcxx/utils/libcxx/test/format.py | 7 + lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp | 7 - llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 +- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 10 +- .../Target/AArch64/AsmParser/AArch64AsmParser.cpp | 48 ++++++ llvm/lib/Target/X86/CMakeLists.txt | 2 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 6 +- .../Transforms/Instrumentation/MemorySanitizer.cpp | 6 + llvm/test/CodeGen/X86/combine-shl.ll | 24 +-- llvm/test/CodeGen/X86/setcc-combine.ll | 189 ++++++++++++++------- llvm/test/CodeGen/X86/shift-double.ll | 64 +++++++ .../MemorySanitizer/msan_llvm_is_constant.ll | 21 +++ llvm/test/MC/AArch64/SVE/directive-arch.s | 6 + .../MC/AArch64/directive-arch_extension-nosimd.s | 6 + .../MC/AArch64/directive-arch_extension-simd.s | 6 + llvm/test/Unit/lit.cfg.py | 5 + llvm/tools/llvm-objcopy/COFF/COFFObjcopy.cpp | 8 +- llvm/tools/llvm-objcopy/COFF/Reader.cpp | 54 +++--- llvm/tools/llvm-objcopy/COFF/Reader.h | 11 +- llvm/tools/llvm-objcopy/COFF/Writer.cpp | 37 ++-- llvm/tools/llvm-objcopy/COFF/Writer.h | 9 +- llvm/utils/gn/build/BUILDCONFIG.gn | 12 +- .../utils/gn/build/sync_source_lists_from_cmake.py | 28 ++- .../clang/lib/ASTMatchers/Dynamic/BUILD.gn | 16 ++ llvm/utils/gn/secondary/clang/test/BUILD.gn | 2 +- .../gn/secondary/clang/unittests/AST/BUILD.gn | 33 ++++ .../secondary/clang/unittests/ASTMatchers/BUILD.gn | 19 +++ .../clang/unittests/ASTMatchers/Dynamic/BUILD.gn | 19 +++ .../gn/secondary/clang/unittests/Analysis/BUILD.gn | 19 +++ llvm/utils/gn/secondary/clang/unittests/BUILD.gn | 35 ++++ .../gn/secondary/clang/unittests/Basic/BUILD.gn | 18 ++ .../gn/secondary/clang/unittests/CodeGen/BUILD.gn | 21 +++ .../gn/secondary/clang/unittests/CrossTU/BUILD.gn | 17 ++ .../gn/secondary/clang/unittests/Driver/BUILD.gn | 18 ++ .../gn/secondary/clang/unittests/Format/BUILD.gn | 31 ++++ .../gn/secondary/clang/unittests/Frontend/BUILD.gn | 25 +++ .../gn/secondary/clang/unittests/Index/BUILD.gn | 18 ++ .../gn/secondary/clang/unittests/Lex/BUILD.gn | 20 +++ .../gn/secondary/clang/unittests/Rename/BUILD.gn | 28 +++ .../gn/secondary/clang/unittests/Rewrite/BUILD.gn | 12 ++ .../gn/secondary/clang/unittests/Sema/BUILD.gn | 18 ++ .../clang/unittests/StaticAnalyzer/BUILD.gn | 17 ++ .../gn/secondary/clang/unittests/Tooling/BUILD.gn | 61 +++++++ .../gn/secondary/clang/unittests/libclang/BUILD.gn | 14 ++ .../secondary/lld/unittests/DriverTests/BUILD.gn | 7 +- .../gn/secondary/lld/unittests/MachOTests/BUILD.gn | 7 +- .../gn/secondary/llvm/utils/unittest/unittest.gni | 44 +++++ 48 files changed, 926 insertions(+), 165 deletions(-) create mode 100644 llvm/test/Instrumentation/MemorySanitizer/msan_llvm_is_constant.ll create mode 100644 llvm/test/MC/AArch64/SVE/directive-arch.s create mode 100644 llvm/test/MC/AArch64/directive-arch_extension-nosimd.s create mode 100644 llvm/test/MC/AArch64/directive-arch_extension-simd.s create mode 100644 llvm/utils/gn/secondary/clang/lib/ASTMatchers/Dynamic/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/AST/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/ASTMatchers/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/ASTMatchers/Dynamic/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Analysis/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Basic/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/CodeGen/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/CrossTU/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Driver/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Format/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Frontend/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Index/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Lex/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Rename/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Rewrite/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Sema/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/StaticAnalyzer/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/Tooling/BUILD.gn create mode 100644 llvm/utils/gn/secondary/clang/unittests/libclang/BUILD.gn create mode 100644 llvm/utils/gn/secondary/llvm/utils/unittest/unittest.gni