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-allmodconfig in repository toolchain/ci/llvm-monorepo.
from 9653648cf14 [WebAssembly] Added basic support for if/else/end_if in MC layer. adds 11979ba2f83 [msan] Disable tail call optimization in msan rtl. adds d5d6ec37117 [X86] Merge getBitTestCondition into LowerAndToBT. Don't cr [...] adds 20a395ab10d [X86] Factor the core code out of LowerSETCC into a helper [...] adds 53300973829 Revert "[msan] Disable tail call optimization in msan rtl." adds 2e6bebc343b [X86] Remove check that avoids creating PMULDQ with illegal [...] adds 6eb8377e347 Do not rely on that subject of ErrorAllocTypeMismatch is a [...] adds c044d0737b2 DWARF: Fix a bug in array size computation adds 7570249aaea lldb-test ir-memory-map: Use IntervalMap::contains adds 89decafe548 Delete lldb_utility::Range adds ffd84af2cee Fix "default argument for lambda parameter" (-Wpedantic) warning adds 90eb588a5b0 [Sanitizer] Enable FTS api on FreeBSD adds 21a2ad682b2 Fix assertion failure in NativeProcessProtocolTest adds 6aa97d06e56 [objc-gnustep] Fix a copy-and-paste error. adds 77ec4b95ffa Fix tests for python 3.7 adds e06d0628a87 Reduce indentation in ObjectFilePECOFF::CreateSections via [...] adds f9b718ff6b2 Adjust NetBSD/md[45].cc to be portable to more environments adds bb9274f4459 Adjust NetBSD/md2.cc to be portable to more environments adds da48ccb1817 Adjust NetBSD/sha2.cc to be portable to more environments adds 0b0aba461d3 [sanitizer] Avoid memset call in tsan adds 690a70c74b8 [Sanitizer] Add fstab api to FreeBSD/Linux adds f09f59ee369 getfsent, unit test. adds ce2b99eab1a [asan] Support running without /proc. adds 03aa34e7fb2 Reimplement Thread Static Data MSan routines with TLS adds 037ea1ff4a7 Enable posix regex interceptors on linux. adds 8ed1379899d [asan] Fix build on windows. adds 6b3b6d6b3e8 [ELF] A shared object is needed if any of its occurrences i [...] adds 162f2c4b342 Enable asan_and_llvm_coverage_test.cc for NetBSD
No new revisions were added by this update.
Summary of changes: clang/lib/CodeGen/CGObjCGNU.cpp | 2 +- compiler-rt/lib/asan/asan_errors.cc | 5 +- compiler-rt/lib/asan/asan_errors.h | 7 +- compiler-rt/lib/asan/asan_linux.cc | 2 + compiler-rt/lib/asan/asan_thread.cc | 49 ++-- compiler-rt/lib/hwasan/hwasan_thread.cc | 2 +- compiler-rt/lib/msan/msan_linux.cc | 46 ++++ .../sanitizer_common_interceptors.inc | 40 ++++ .../lib/sanitizer_common/sanitizer_flags.inc | 3 + .../lib/sanitizer_common/sanitizer_linux.cc | 4 + compiler-rt/lib/sanitizer_common/sanitizer_linux.h | 1 + compiler-rt/lib/sanitizer_common/sanitizer_mac.cc | 2 + .../sanitizer_platform_interceptors.h | 5 +- .../sanitizer_platform_limits_freebsd.cc | 5 + .../sanitizer_platform_limits_freebsd.h | 4 + .../sanitizer_platform_limits_netbsd.cc | 2 + .../sanitizer_platform_limits_netbsd.h | 2 + .../sanitizer_platform_limits_posix.cc | 3 + .../sanitizer_platform_limits_posix.h | 2 + .../lib/sanitizer_common/sanitizer_posix.cc | 13 +- compiler-rt/lib/sanitizer_common/sanitizer_posix.h | 2 + .../lib/sanitizer_common/sanitizer_procmaps.h | 1 + .../lib/sanitizer_common/sanitizer_procmaps_bsd.cc | 4 + .../sanitizer_common/sanitizer_procmaps_common.cc | 6 + .../sanitizer_common/sanitizer_procmaps_linux.cc | 5 + .../sanitizer_common/sanitizer_procmaps_solaris.cc | 4 + .../asan/TestCases/Linux/new_delete_mismatch.cc | 1 + .../TestCases/Linux/new_delete_mismatch_global.cc | 16 ++ .../TestCases/Linux/new_delete_mismatch_stack.cc | 17 ++ compiler-rt/test/asan/TestCases/Posix/no-fd.cc | 4 + .../asan/TestCases/asan_and_llvm_coverage_test.cc | 2 - .../test/sanitizer_common/TestCases/NetBSD/md2.cc | 8 +- .../test/sanitizer_common/TestCases/NetBSD/md4.cc | 8 +- .../test/sanitizer_common/TestCases/NetBSD/md5.cc | 4 +- .../test/sanitizer_common/TestCases/NetBSD/sha2.cc | 24 +- .../TestCases/{NetBSD => Posix}/fts.cc | 2 + .../sanitizer_common/TestCases/Posix/getfsent.cc | 36 +++ .../test/sanitizer_common/TestCases/Posix/regex.cc | 2 +- lld/ELF/SymbolTable.cpp | 14 +- lld/ELF/SymbolTable.h | 2 +- lld/test/ELF/as-needed-not-in-regular.s | 6 + lldb/include/lldb/Target/MemoryRegionInfo.h | 1 - lldb/include/lldb/Utility/Range.h | 60 ----- lldb/lit/SymbolFile/DWARF/array-sizes.s | 147 ++++++++++++ lldb/packages/Python/lldbsuite/test/decorators.py | 3 +- .../Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp | 266 ++++++++++----------- .../Plugins/Process/minidump/ProcessMinidump.cpp | 4 +- .../Plugins/SymbolFile/DWARF/DWARFFormValue.cpp | 28 ++- .../Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp | 4 +- lldb/source/Utility/CMakeLists.txt | 1 - lldb/source/Utility/Range.cpp | 76 ------ lldb/tools/lldb-test/lldb-test.cpp | 35 +-- lldb/unittests/Host/NativeProcessProtocolTest.cpp | 3 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 192 ++++++++------- llvm/lib/Target/X86/X86ISelLowering.h | 7 + llvm/test/CodeGen/X86/mulvi32.ll | 29 +-- 56 files changed, 754 insertions(+), 469 deletions(-) create mode 100644 compiler-rt/test/asan/TestCases/Linux/new_delete_mismatch_global.cc create mode 100644 compiler-rt/test/asan/TestCases/Linux/new_delete_mismatch_stack.cc rename compiler-rt/test/sanitizer_common/TestCases/{NetBSD => Posix}/fts.cc (95%) create mode 100644 compiler-rt/test/sanitizer_common/TestCases/Posix/getfsent.cc delete mode 100644 lldb/include/lldb/Utility/Range.h create mode 100644 lldb/lit/SymbolFile/DWARF/array-sizes.s delete mode 100644 lldb/source/Utility/Range.cpp