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-mainline-allyesconfig in repository toolchain/ci/llvm-monorepo.
from 72ef482b2ca [llvm-objdump] Print a blank row at the end of sections adds 19922da8401 [AST][NFC] Pack CXXThrowExpr adds f45a9f29404 [AST][NFC] Pack CXXDefaultArgExpr adds 486ac6841d4 [AST][NFC] Pack CXXDefaultInitExpr adds 876d0c6a0ec [X86][SSE] Add shuffle demanded elts test case for PR39549 adds 379eecfc27f Move BuryPointer from Clang to LLVM for use in other LLVM tools adds ce37b487b81 Sink BuryPointer from Clang into LLVM for reuse there adds 72a868b1155 [X86] Add test case to show missed opportunity to use PACKU [...] adds 71d72060daf [X86] Add support for matching PACKUSWB from a v64i8 shuffle. adds fe5be6cf86e [Clang] Add options -fprofile-filter-files and -fprofile-ex [...] adds 6a39c6918ec [ThinLTO] Add some stats for read only variable internalization adds 13d75858018 Fix bot failure from r347145 adds a5e3e219a90 [CorrelatedValuePropagation] Preserve debug locations (PR38178) adds f01a45e87c6 tighten up a couple of assertions. hitting the BitPosition [...] adds 100332edde6 [X86] Don't use a pmaddwd for vXi32 multiply if the inputs [...] adds 427d901cfe0 [X86] Rename WidenMaskArithmetic->PromoteMaskArithmetic sin [...] adds f27efd0fcfb [X86] Add -x86-experimental-vector-widening-legalization ch [...] adds 5c4946fef34 cmake: z3: Remove EXACT from 4.7.1 after being compatible w [...] new 594fa6aac26 [analyzer][UninitializedObjectChecker] Uninit regions are o [...] new 2d06439c4d1 [WebAssembly] Add equality comparison operators for WasmEventType new 7859760887b [WebAssembly] Add null streamer support new 9df1d99d1ba Swap order of discovering of -ltinfo and -lterminfo
The 4 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/CMakeLists.txt | 2 +- clang/docs/ReleaseNotes.rst | 6 ++ clang/docs/UsersManual.rst | 49 ++++++++++ clang/include/clang/AST/ExprCXX.h | 105 ++++++++++----------- clang/include/clang/AST/Stmt.h | 36 +++++++ clang/include/clang/Driver/Options.td | 6 ++ clang/include/clang/Frontend/CodeGenOptions.h | 6 ++ clang/include/clang/Frontend/CompilerInstance.h | 9 +- clang/include/clang/Frontend/Utils.h | 8 -- clang/lib/AST/ExprCXX.cpp | 11 ++- clang/lib/CodeGen/BackendUtil.cpp | 3 + clang/lib/Driver/ToolChains/Clang.cpp | 23 +++++ clang/lib/Frontend/CompilerInstance.cpp | 3 +- clang/lib/Frontend/CompilerInvocation.cpp | 19 +--- clang/lib/Frontend/FrontendAction.cpp | 5 +- .../lib/FrontendTool/ExecuteCompilerInvocation.cpp | 5 +- clang/lib/Serialization/ASTReaderStmt.cpp | 10 +- .../UninitializedObject/UninitializedObject.h | 12 ++- .../UninitializedObjectChecker.cpp | 57 +++++++++-- .../UninitializedObject/UninitializedPointee.cpp | 13 +-- .../Analysis/cxx-uninitialized-object-ptr-ref.cpp | 41 ++++++++ clang/test/CodeGen/Inputs/code-coverage-filter1.h | 1 + clang/test/CodeGen/Inputs/code-coverage-filter2.h | 1 + clang/test/CodeGen/code-coverage-filter.c | 84 +++++++++++++++++ clang/tools/driver/cc1_main.cpp | 7 +- llvm/cmake/config-ix.cmake | 2 +- llvm/include/llvm/ADT/APInt.h | 4 +- llvm/include/llvm/BinaryFormat/Wasm.h | 8 ++ llvm/include/llvm/Support/BuryPointer.h | 30 ++++++ llvm/lib/IR/ModuleSummaryIndex.cpp | 13 +++ llvm/lib/Support/BuryPointer.cpp | 31 ++++++ llvm/lib/Support/CMakeLists.txt | 1 + .../MCTargetDesc/WebAssemblyMCTargetDesc.cpp | 6 ++ .../MCTargetDesc/WebAssemblyTargetStreamer.h | 17 ++++ llvm/lib/Target/X86/X86ISelLowering.cpp | 30 ++++-- .../Scalar/CorrelatedValuePropagation.cpp | 31 +++--- llvm/test/CodeGen/WebAssembly/null-streamer.ll | 19 ++++ llvm/test/CodeGen/X86/shrink_vmul-widen.ll | 60 ++++++------ llvm/test/CodeGen/X86/shrink_vmul.ll | 30 +++--- llvm/test/CodeGen/X86/vector-shuffle-512-v64.ll | 42 +++++++++ llvm/test/CodeGen/X86/vector-shuffle-combining.ll | 22 +++++ llvm/test/ThinLTO/X86/index-const-prop.ll | 11 ++- .../Transforms/CorrelatedValuePropagation/ashr.ll | 6 ++ .../CorrelatedValuePropagation/overflows.ll | 6 ++ .../Transforms/CorrelatedValuePropagation/udiv.ll | 6 ++ 45 files changed, 703 insertions(+), 194 deletions(-) create mode 100644 clang/test/CodeGen/Inputs/code-coverage-filter1.h create mode 100644 clang/test/CodeGen/Inputs/code-coverage-filter2.h create mode 100644 clang/test/CodeGen/code-coverage-filter.c create mode 100644 llvm/include/llvm/Support/BuryPointer.h create mode 100644 llvm/lib/Support/BuryPointer.cpp create mode 100644 llvm/test/CodeGen/WebAssembly/null-streamer.ll