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-allnoconfig in repository toolchain/ci/llvm-monorepo.
from 4693c9f5c3e [sanitizer] Update global_symbols.txt adds 5b091ac9239 [X86] Qualify part of the masked gather handling in Replace [...] adds 85507ecdf3c Cast _Unwind_GetIP() and _Unwind_GetRegionStart() to uintptr_t adds c27a4ed1060 Cast the 2nd argument of _Unwind_SetIP() to _Unwind_Ptr adds 6d9e4e702b0 Speed up git-llvm script by only svn up'ing affected directories. adds d719bb36c3f Makefile.rules: Degrade gracefully on Windows machines with [...] adds 01b08e9824d [X86] Add custom promotion of narrow fp_to_uint/fp_to_sint [...] adds 1f9a518d8a1 Revert "Cast the 2nd argument of _Unwind_SetIP() to _Unwind_Ptr" adds ab8e7e94cb9 [hwasan] use reads instead of writes in a test adds 4e51f283ba1 [CMake] Use lld and llvm-objcopy for first stage compiler i [...] adds 616e06125ff Rewrite stop-hook tests as a couple of FileCheck tests adds 61905a5dd80 DAG combiner: fold (select, C, X, undef) -> X adds 067b8274e45 Add missing test for r347072 -gcodeview-ghash adds af3d45022de Fixed test after r347110 adds e6f9467b5bc Make git-llvm python3 compatible again. Hopefully. :) adds f833d5dce08 Add missing triple from llvm-mc command line. adds 4ad3b250174 Moved dag-combine-select-undef.ll into amdgpu. NFC. adds fb64c10b9ea [hwasan] implement free_checks_tail_magic=1 adds 22edaf70bf7 Make TestAppleSimulatorOSType.py more flexible adds 9f3f19ff602 [hwasan] make the heap-buffer-overflow.c test more robust a [...] adds 0c17bca2668 [clangd] Fix crash hovering on non-decltype trailing return adds 354f7176a9c Makefile.rules: Fix the windows-sed-quoting issue harder. adds f6271c455af [hwasan] don't check tail magic when in right_align mode (s [...] adds 378cd0dec63 add PdbSymUid.cpp adds cabf5f65a46 [llvm-objcopy] Use llvm::all_of and rename the variables "S [...] adds aecfd5a4683 Revert "Makefile.rules: Fix the windows-sed-quoting issue harder." adds e46db320659 Just don't even attempt to invoke sed on Windows. adds 38e5d73af8d Use llvm::copy. NFC adds 142af873123 [X86] Use getUnpackl/getUnpackh instead of hardcoding a shu [...] adds ab5c0a3b73e Add initial scaffolding for the GN build. adds ff811c93a5a Reverted r347092 due to the following build fails: http://l [...] adds 28a078d184e [X86] Add test cases to show incorrect use of a 512 bit vec [...] adds fb632856979 [X86] Don't extend v32i8 multiplies to v32i16 with avx512bw [...] adds 91861819604 [clang-tidy/checks] Implement a clang-tidy check to verify [...] adds 940831b2cfb Fix unused variable warning. adds 4f5d8478577 llvm-symbolizer: Avoid calling getFromOffset when the index [...] adds 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
No new revisions were added by this update.
Summary of changes: clang-tools-extra/clang-tidy/google/CMakeLists.txt | 1 + .../clang-tidy/google/FunctionNamingCheck.cpp | 121 +++++ .../clang-tidy/google/FunctionNamingCheck.h | 43 ++ .../clang-tidy/google/GoogleTidyModule.cpp | 3 + clang-tools-extra/clangd/XRefs.cpp | 6 +- clang-tools-extra/docs/ReleaseNotes.rst | 6 + .../checks/google-objc-function-naming.rst | 27 + clang-tools-extra/docs/clang-tidy/checks/list.rst | 1 + .../test/clang-tidy/google-objc-function-naming.m | 52 ++ clang-tools-extra/unittests/clangd/XRefsTests.cpp | 8 + clang/cmake/caches/Fuchsia.cmake | 4 + 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/CodeGen/CGOpenMPRuntimeNVPTX.cpp | 2 + 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 +- 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/test/Driver/gcodeview-ghash.c | 19 + clang/tools/driver/cc1_main.cpp | 7 +- compiler-rt/lib/builtins/gcc_personality_v0.c | 5 +- compiler-rt/lib/hwasan/hwasan_allocator.cc | 21 +- compiler-rt/lib/hwasan/hwasan_flags.inc | 4 + compiler-rt/lib/hwasan/hwasan_report.cc | 60 +++ compiler-rt/lib/hwasan/hwasan_report.h | 2 + .../test/hwasan/TestCases/heap-buffer-overflow.c | 10 +- compiler-rt/test/hwasan/TestCases/tail-magic.c | 28 + .../StopHook/Inputs/stop-hook-threads.cpp} | 11 +- .../ExecControl/StopHook/Inputs/stop-hook.c} | 0 .../ExecControl/StopHook/stop-hook-threads.test | 44 ++ lldb/lit/ExecControl/StopHook/stop-hook.test | 71 +++ lldb/lit/SymbolFile/NativePDB/s_constant.cpp | 2 +- lldb/lldb.xcodeproj/project.pbxproj | 4 + .../test/functionalities/stop-hook/Makefile | 5 - .../functionalities/stop-hook/TestStopHookCmd.py | 77 --- .../stop-hook/TestStopHookMechanism.py | 128 ----- .../stop-hook/multiple_threads/Makefile | 6 - .../TestStopHookMultipleThreads.py | 100 ---- .../Python/lldbsuite/test/make/Makefile.rules | 10 +- .../tools/lldb-server/TestAppleSimulatorOSType.py | 8 +- llvm/docs/TableGen/LangRef.rst | 49 +- llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h | 6 +- llvm/include/llvm/Support/BuryPointer.h | 30 ++ llvm/lib/Analysis/LoopAccessAnalysis.cpp | 2 +- llvm/lib/Analysis/MemorySSAUpdater.cpp | 2 +- llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | 2 +- llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp | 2 +- llvm/lib/CodeGen/MIRCanonicalizerPass.cpp | 3 +- llvm/lib/CodeGen/MachineFunction.cpp | 2 +- llvm/lib/CodeGen/MachineTraceMetrics.cpp | 3 +- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 6 + llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 6 +- llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp | 4 +- llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp | 22 +- llvm/lib/IR/Attributes.cpp | 4 +- llvm/lib/IR/Constants.cpp | 2 +- llvm/lib/IR/Instructions.cpp | 8 +- llvm/lib/IR/Metadata.cpp | 2 +- llvm/lib/IR/ModuleSummaryIndex.cpp | 13 + llvm/lib/Object/Object.cpp | 2 +- llvm/lib/Object/WindowsResource.cpp | 7 +- llvm/lib/Support/BuryPointer.cpp | 31 ++ llvm/lib/Support/CMakeLists.txt | 1 + llvm/lib/Support/Path.cpp | 2 +- llvm/lib/Support/RandomNumberGenerator.cpp | 2 +- llvm/lib/TableGen/Main.cpp | 6 +- llvm/lib/TableGen/TGLexer.cpp | 557 +------------------- llvm/lib/TableGen/TGLexer.h | 243 +-------- llvm/lib/TableGen/TGParser.h | 5 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 119 +++-- .../Instrumentation/ControlHeightReduction.cpp | 2 +- llvm/lib/Transforms/Scalar/GVNSink.cpp | 6 +- llvm/lib/Transforms/Scalar/NewGVN.cpp | 3 +- llvm/test/CodeGen/AArch64/half.ll | 4 +- llvm/test/CodeGen/AMDGPU/select-undef.ll | 45 ++ llvm/test/CodeGen/ARM/sub-cmp-peephole.ll | 2 +- .../autohvx/isel-extractelt-illegal-type.ll | 2 +- llvm/test/CodeGen/Hexagon/swp-const-tc1.ll | 2 +- llvm/test/CodeGen/SystemZ/subregliveness-04.ll | 2 +- llvm/test/CodeGen/X86/2012-08-07-CmpISelBug.ll | 2 +- llvm/test/CodeGen/X86/avx512-cvt-widen.ll | 42 +- llvm/test/CodeGen/X86/hoist-spill.ll | 4 +- llvm/test/CodeGen/X86/min-legal-vector-width.ll | 64 +++ llvm/test/CodeGen/X86/pr31045.ll | 26 +- llvm/test/CodeGen/X86/pr32610.ll | 4 +- llvm/test/CodeGen/X86/prefer-avx256-wide-mul.ll | 27 + llvm/test/CodeGen/X86/scheduler-backtracking.ll | 566 +++++++-------------- llvm/test/CodeGen/X86/vec_cast2.ll | 94 +--- llvm/test/CodeGen/X86/vec_cast3.ll | 28 +- llvm/test/CodeGen/X86/vec_fp_to_int-widen.ll | 334 +++--------- llvm/test/CodeGen/X86/vector-shuffle-512-v64.ll | 42 ++ llvm/test/CodeGen/X86/vector-shuffle-combining.ll | 22 + llvm/test/TableGen/prep-diag1.td | 26 - llvm/test/TableGen/prep-diag10.td | 6 - llvm/test/TableGen/prep-diag11-include.inc | 1 - llvm/test/TableGen/prep-diag11.td | 8 - llvm/test/TableGen/prep-diag12-include.inc | 2 - llvm/test/TableGen/prep-diag12.td | 8 - llvm/test/TableGen/prep-diag13.td | 9 - llvm/test/TableGen/prep-diag14.td | 6 - llvm/test/TableGen/prep-diag2.td | 14 - llvm/test/TableGen/prep-diag3.td | 14 - llvm/test/TableGen/prep-diag4.td | 8 - llvm/test/TableGen/prep-diag5.td | 6 - llvm/test/TableGen/prep-diag6.td | 7 - llvm/test/TableGen/prep-diag7.td | 4 - llvm/test/TableGen/prep-diag8.td | 5 - llvm/test/TableGen/prep-diag9.td | 5 - llvm/test/TableGen/prep-region-include.inc | 8 - llvm/test/TableGen/prep-region-processing.td | 150 ------ .../TableGen/unterminated-c-comment-include.inc | 2 - llvm/test/TableGen/unterminated-c-comment.td | 5 - .../TableGen/unterminated-code-block-include.inc | 8 - llvm/test/TableGen/unterminated-code-block.td | 5 - llvm/test/ThinLTO/X86/index-const-prop.ll | 11 +- llvm/tools/llvm-objcopy/ELF/Object.cpp | 22 +- llvm/tools/llvm-objdump/llvm-objdump.cpp | 1 + llvm/utils/git-svn/git-llvm | 111 ++-- llvm/utils/gn/.gn | 16 + llvm/utils/gn/README.rst | 129 +++++ llvm/utils/gn/build/BUILD.gn | 153 ++++++ llvm/utils/gn/build/BUILDCONFIG.gn | 32 ++ llvm/utils/gn/build/buildflags.gni | 10 + llvm/utils/gn/build/enable_threads.gni | 4 + llvm/utils/gn/build/mac_sdk.gni | 4 + llvm/utils/gn/build/toolchain/BUILD.gn | 231 +++++++++ llvm/utils/gn/build/toolchain/compiler.gni | 18 + llvm/utils/gn/secondary/BUILD.gn | 11 + llvm/utils/gn/secondary/llvm/lib/Demangle/BUILD.gn | 9 + 142 files changed, 2308 insertions(+), 2513 deletions(-) create mode 100644 clang-tools-extra/clang-tidy/google/FunctionNamingCheck.cpp create mode 100644 clang-tools-extra/clang-tidy/google/FunctionNamingCheck.h create mode 100644 clang-tools-extra/docs/clang-tidy/checks/google-objc-function-n [...] create mode 100644 clang-tools-extra/test/clang-tidy/google-objc-function-naming.m 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 clang/test/Driver/gcodeview-ghash.c create mode 100644 compiler-rt/test/hwasan/TestCases/tail-magic.c rename lldb/{packages/Python/lldbsuite/test/functionalities/stop-hook/multiple_thr [...] rename lldb/{packages/Python/lldbsuite/test/functionalities/stop-hook/main.cpp => [...] create mode 100644 lldb/lit/ExecControl/StopHook/stop-hook-threads.test create mode 100644 lldb/lit/ExecControl/StopHook/stop-hook.test delete mode 100644 lldb/packages/Python/lldbsuite/test/functionalities/stop-hook/Makefile delete mode 100644 lldb/packages/Python/lldbsuite/test/functionalities/stop-hook/T [...] delete mode 100644 lldb/packages/Python/lldbsuite/test/functionalities/stop-hook/T [...] delete mode 100644 lldb/packages/Python/lldbsuite/test/functionalities/stop-hook/m [...] delete mode 100644 lldb/packages/Python/lldbsuite/test/functionalities/stop-hook/m [...] create mode 100644 llvm/include/llvm/Support/BuryPointer.h create mode 100644 llvm/lib/Support/BuryPointer.cpp create mode 100644 llvm/test/CodeGen/AMDGPU/select-undef.ll delete mode 100644 llvm/test/TableGen/prep-diag1.td delete mode 100644 llvm/test/TableGen/prep-diag10.td delete mode 100644 llvm/test/TableGen/prep-diag11-include.inc delete mode 100644 llvm/test/TableGen/prep-diag11.td delete mode 100644 llvm/test/TableGen/prep-diag12-include.inc delete mode 100644 llvm/test/TableGen/prep-diag12.td delete mode 100644 llvm/test/TableGen/prep-diag13.td delete mode 100644 llvm/test/TableGen/prep-diag14.td delete mode 100644 llvm/test/TableGen/prep-diag2.td delete mode 100644 llvm/test/TableGen/prep-diag3.td delete mode 100644 llvm/test/TableGen/prep-diag4.td delete mode 100644 llvm/test/TableGen/prep-diag5.td delete mode 100644 llvm/test/TableGen/prep-diag6.td delete mode 100644 llvm/test/TableGen/prep-diag7.td delete mode 100644 llvm/test/TableGen/prep-diag8.td delete mode 100644 llvm/test/TableGen/prep-diag9.td delete mode 100644 llvm/test/TableGen/prep-region-include.inc delete mode 100644 llvm/test/TableGen/prep-region-processing.td delete mode 100644 llvm/test/TableGen/unterminated-c-comment-include.inc delete mode 100644 llvm/test/TableGen/unterminated-c-comment.td delete mode 100644 llvm/test/TableGen/unterminated-code-block-include.inc delete mode 100644 llvm/test/TableGen/unterminated-code-block.td create mode 100644 llvm/utils/gn/.gn create mode 100644 llvm/utils/gn/README.rst create mode 100644 llvm/utils/gn/build/BUILD.gn create mode 100644 llvm/utils/gn/build/BUILDCONFIG.gn create mode 100644 llvm/utils/gn/build/buildflags.gni create mode 100644 llvm/utils/gn/build/enable_threads.gni create mode 100644 llvm/utils/gn/build/mac_sdk.gni create mode 100644 llvm/utils/gn/build/toolchain/BUILD.gn create mode 100644 llvm/utils/gn/build/toolchain/compiler.gni create mode 100644 llvm/utils/gn/secondary/BUILD.gn create mode 100644 llvm/utils/gn/secondary/llvm/lib/Demangle/BUILD.gn