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-stable-defconfig in repository toolchain/ci/llvm-monorepo.
from 0fed64377ef [X86] Simplify LowerBITCAST code for v2i32/v4i16/v8i8/i64-> [...] adds 8a40f4f48e5 [ValueTracking] add helper function for testing implied con [...] adds ce071c6d86e [DAGCombiner] guard against an oversized shift crash adds adc35b88df3 [SelectionDAG] fold constant with undef vector per element adds 83efbcd37e0 [ValueTracking] Support funnel shifts in computeKnownBits() adds 3a6228fd513 Add dump tests for ArrayInitLoopExpr and ArrayInitIndexExpr adds ae6ad8c92e1 Fix whitespace adds aae21161c7c [test] Fix BugPoint/compile-custom.ll to use detected python exec adds 918622cd0c8 [test] Fix ScalarEvolution test to allow __func__ with prototype adds 360bf253a32 [test] Fix use of 'sort -b' in SimpleLoopUnswitch on NetBSD adds f43459443a4 Remove unecessary methods adds a6ce714fef4 Extend the CommentVisitor with parameter types adds a192e5b0f51 Replace FullComment member being visited with parameter adds 92518d4f355 [X86] Fix bad comment. NFC adds d01f3efc388 [X86] Add a DAG combine to turn stores of vXi1 on pre-avx51 [...] adds 2ff0cfb3afa [gn build] Add build files for llvm/lib/Analysis and llvm/l [...] adds 5c7506441d7 [gn build] Slightly simplify write_cmake_config. adds 736f403bfca [gn build] Fix cosmetic bug in write_cmake_config.py adds 0c9ea51d453 [NFC] [PowerPC] add an routine in PPCTargetLowering to dete [...] adds ec6dcfd58ed [PowerPC] Fix inconsistent ImmMustBeMultipleOf for same ins [...] new a49acb1ffdb [ARM] FP16: support vld1.16 for vector loads with post-increment new 61d8de8edc8 [GlobalISel] Fix test irtranslator-stackprotect-check.ll
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/include/clang/AST/CommentVisitor.h | 29 +- clang/lib/AST/ASTDumper.cpp | 96 +- clang/test/AST/ast-dump-array.cpp | 10 + llvm/include/llvm/Analysis/ValueTracking.h | 6 + llvm/lib/Analysis/InstructionSimplify.cpp | 41 +- llvm/lib/Analysis/ValueTracking.cpp | 53 + llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 23 +- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 26 +- llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp | 2 + llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp | 19 +- llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 29 + llvm/lib/Target/PowerPC/PPCISelLowering.h | 3 + llvm/lib/Target/PowerPC/PPCInstrInfo.cpp | 16 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 14 +- llvm/lib/Transforms/Utils/SimplifyCFG.cpp | 33 +- .../Analysis/ScalarEvolution/solve-quadratic.ll | 246 +- llvm/test/BugPoint/compile-custom.ll | 2 +- .../GlobalISel/irtranslator-stackprotect-check.ll | 20 +- llvm/test/CodeGen/ARM/fp16-vld.ll | 48 + .../CodeGen/PowerPC/convert-rr-to-ri-p9-vector.mir | 162 + llvm/test/CodeGen/X86/fp-undef.ll | 20 +- llvm/test/CodeGen/X86/vector-compare-results.ll | 6403 ++------------------ .../exponential-nontrivial-unswitch-nested.ll | 6 +- .../exponential-nontrivial-unswitch-nested2.ll | 6 +- .../exponential-switch-unswitch.ll | 6 +- llvm/unittests/Analysis/ValueTrackingTest.cpp | 48 + llvm/utils/gn/build/write_cmake_config.py | 51 +- llvm/utils/gn/secondary/llvm/lib/Analysis/BUILD.gn | 112 + .../gn/secondary/llvm/lib/ProfileData/BUILD.gn | 17 + 29 files changed, 1317 insertions(+), 6230 deletions(-) create mode 100644 clang/test/AST/ast-dump-array.cpp create mode 100644 llvm/test/CodeGen/ARM/fp16-vld.ll create mode 100644 llvm/test/CodeGen/PowerPC/convert-rr-to-ri-p9-vector.mir create mode 100644 llvm/utils/gn/secondary/llvm/lib/Analysis/BUILD.gn create mode 100644 llvm/utils/gn/secondary/llvm/lib/ProfileData/BUILD.gn