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-lts-allyesconfig in repository toolchain/ci/llvm-project.
from a8e5e737117 [X86] Improve the diagnostic for larger than 4-bit immediat [...] adds 74c43a2277f [X86] Match the IR pattern form movmsk on SSE1 only targets [...] adds db4ad3603ac [clang-format] Add SpaceInEmptyBlock option for WebKit adds 3ab587df82c [modulemap] Add AArch64SVEACLETypes.def adds 36cd84bdd9a [CodeGen] Do the Simple Early Return in block-placement pas [...] adds c4b5b66a05b [clang] Fixed x86 cpuid NSC signature adds b448d1bf212 [lldb] Fix dynamic_cast by no longer failing on variable wi [...] adds 21c15ef3848 [Reassociate] try harder to convert negative FP constants t [...] adds 8a25eabd427 [TableGen] Correct the shift to the proper bit width. adds 555f7495df1 [NFC][CodeGen] Modify the PI++ to ++PI in MachineBlockPlace [...] adds ec128709f0a [X86][SSE] Lower shuffle as ANY_EXTEND_VECTOR_INREG adds c09d8886328 Add support for FreeBSD's LD_32_LIBRARY_PATH adds 45e9990c02c [NFC][InstCombine] Tests for shift amount reassociation in [...] adds 64fe806c4e1 [InstCombine] Shift amount reassociation in bittest: drop p [...] adds a8d20b44676 [InstCombine] Shift amount reassociation in bittest: relax [...] adds 404e978f272 [NFC][InstCombine] Tests for shift amount reassociation in [...] adds 96474d17c61 [InstCombine][NFC] Use SimplifyAddInst() instead of Simplif [...] adds 0f74b82ef12 [X86] Remove some code from combineShuffle that seems large [...] adds 9758e0e1bf8 [X86] Remove some more code from combineShuffle that is no [...] adds 7bd327da009 test commit adds d664072dd5e Revert "test commit" adds 7e71aa24bc0 [LICM] Make Loop ICM profile aware new 831efe0e0f0 Fix __clang_call_termiante's argument for foreign exceptions
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/docs/ClangFormatStyleOptions.rst | 73 ++-- clang/include/clang/Format/Format.h | 9 + clang/include/clang/module.modulemap | 1 + clang/lib/Format/Format.cpp | 3 + clang/lib/Format/UnwrappedLineFormatter.cpp | 2 +- clang/lib/Headers/cpuid.h | 4 +- clang/unittests/Format/FormatTest.cpp | 6 + compiler-rt/test/asan/Unit/lit.site.cfg.py.in | 6 + compiler-rt/test/asan/lit.cfg.py | 8 +- compiler-rt/test/xray/Unit/lit.site.cfg.py.in | 8 + .../test/lang/cpp/dynamic_cast/ExtBase.cpp | 5 + .../lldbsuite/test/lang/cpp/dynamic_cast/ExtBase.h | 3 + .../lldbsuite/test/lang/cpp/dynamic_cast/Makefile | 3 + .../test/lang/cpp/dynamic_cast/TestDynamicCast.py | 3 + .../lldbsuite/test/lang/cpp/dynamic_cast/main.cpp | 51 +++ .../Plugins/ExpressionParser/Clang/IRForTarget.cpp | 8 +- llvm/include/llvm/Transforms/Scalar/Reassociate.h | 4 +- llvm/include/llvm/Transforms/Utils/LoopUtils.h | 15 +- llvm/lib/CodeGen/MachineBlockPlacement.cpp | 36 ++ .../WebAssembly/WebAssemblyLateEHPrepare.cpp | 5 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 138 ++---- .../Transforms/InstCombine/InstCombineCompares.cpp | 20 +- llvm/lib/Transforms/Scalar/LICM.cpp | 90 +++- llvm/lib/Transforms/Scalar/Reassociate.cpp | 188 ++++---- llvm/test/CodeGen/PowerPC/block-placement-1.mir | 10 +- llvm/test/CodeGen/PowerPC/block-placement.mir | 12 +- llvm/test/CodeGen/WebAssembly/exception.ll | 3 +- llvm/test/CodeGen/X86/avx512-any_extend_load.ll | 4 +- llvm/test/CodeGen/X86/pr42870.ll | 31 ++ llvm/test/CodeGen/X86/vector-idiv-udiv-128.ll | 16 +- llvm/test/CodeGen/X86/vector-reduce-mul.ll | 265 +++++------- llvm/test/CodeGen/X86/vector-shuffle-256-v8.ll | 44 +- llvm/test/Other/opt-O2-pipeline.ll | 10 + llvm/test/Other/opt-O3-pipeline.ll | 10 + llvm/test/Other/opt-Os-pipeline.ll | 10 + llvm/test/Other/pass-pipelines.ll | 2 +- .../TableGen/FixedLenDecoderEmitter/InitValue.td | 11 + ...reassociation-in-bittest-with-truncation-shl.ll | 475 +++++++++++++++++++++ .../shift-amount-reassociation-in-bittest.ll | 87 +++- llvm/test/Transforms/LICM/sink.ll | 10 +- .../Reassociate/canonicalize-neg-const.ll | 142 +++--- .../Reassociate/fast-ReassociateVector.ll | 19 +- .../Reassociate/reassoc-intermediate-fnegs.ll | 10 +- llvm/utils/TableGen/FixedLenDecoderEmitter.cpp | 2 +- 44 files changed, 1308 insertions(+), 554 deletions(-) create mode 100644 lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic_cast/ExtBase.cpp create mode 100644 lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic_cast/ExtBase.h create mode 100644 lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic_cast/Makefile create mode 100644 lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic_cast/TestD [...] create mode 100644 lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic_cast/main.cpp create mode 100644 llvm/test/CodeGen/X86/pr42870.ll create mode 100644 llvm/test/Transforms/InstCombine/shift-amount-reassociation-in- [...]