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-lts-allmodconfig in repository toolchain/ci/llvm-project.
from 8da20560ab0 [clang][DependencyScanning] 80-col. adds 10b5cd8ed52 [LLDB] Fix inline variable only used in assertion. (NFC) adds feab0334f57 [globalisel] Restructure the GlobalISel documentation adds 6c89392592c Use __builtin_strlen in constexpr StringRef ctor with MSVC adds 5a3c657f3e8 Fix after 738af7a6241c98164625b9cd1ba9f8af4e36f197 adds a88591cff46 [libFuzzer] Enable extra counters for Fuchsia. adds f3ad8ae7b73 [lit] Move sharding logic into separate function adds 4c47617627f [SDAG] fold extract_vector_elt with undef index adds dd501045cde [Clang][Bundler] Error reporting improvements adds 27e2c8faec6 Add Record::getValueAsOptionalDef(). adds baf91d02da6 [NFC] Add a tablegen node for the root of the AST node hier [...] adds 93b29d3882b Revert "[Clang][Bundler] Error reporting improvements" adds 4141bb50a87 [ORC] Avoid SymbolStringPtr copies in DynamicLibrarySearchG [...] adds edb1a1de1b7 Reland "[Clang][Bundler] Error reporting improvements" adds a6a37e820cf [X86][GISel] Fix typo in comment. NFC adds 5e307808557 Correct size_t format specifier adds e921ede5406 [AMDGPU] Fix Vreg_1 PHI lowering in SILowerI1Copies. adds 05a9e344ee3 [YAMLTraits] - Revert a change committed by a mistake in D68983 adds 073ab70b72f [ObjectYAML] - Do not use auto. NFC. adds 9231e443445 fix lldb build with -DLLVM_ENABLE_MODULES=On (missing #include) adds 82b82e39c45 Add all the issues to be voted upon in Belfast adds 0d0509384f0 [X86] NFC: expand inline memcmp test coverage adds 11c920207af [X86] Prefer KORTEST on Knights Landing or later for memcmp() adds 9d77ad57540 [APInt] Introduce APIntOps::GetMostSignificantDifferentBit()
No new revisions were added by this update.
Summary of changes: clang/include/clang/Basic/CommentNodes.td | 38 +- clang/include/clang/Basic/DeclNodes.td | 184 +- clang/include/clang/Basic/StmtNodes.td | 440 ++- clang/include/clang/Basic/TypeNodes.td | 114 +- clang/test/Driver/clang-offload-bundler.c | 32 +- .../clang-offload-bundler/ClangOffloadBundler.cpp | 409 +- clang/utils/TableGen/ClangASTEmitters.h | 39 + clang/utils/TableGen/ClangASTNodesEmitter.cpp | 119 +- clang/utils/TableGen/ClangAttrEmitter.cpp | 14 +- clang/utils/TableGen/ClangTypeNodesEmitter.cpp | 24 +- clang/utils/TableGen/TableGen.cpp | 7 +- compiler-rt/lib/fuzzer/FuzzerExtraCounters.cpp | 2 +- libcxx/www/upcoming_meeting.html | 97 +- .../include/lldb/Expression/ExpressionSourceCode.h | 1 + lldb/include/lldb/Interpreter/ScriptInterpreter.h | 6 +- .../Python/ScriptInterpreterPython.cpp | 2 +- lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp | 3 +- llvm/docs/FuzzingLLVM.rst | 2 +- llvm/docs/GlobalISel.rst | 941 ----- llvm/docs/GlobalISel/GMIR.rst | 158 + llvm/docs/GlobalISel/IRTranslator.rst | 57 + llvm/docs/GlobalISel/InstructionSelect.rst | 98 + llvm/docs/GlobalISel/Legalizer.rst | 351 ++ llvm/docs/GlobalISel/Pipeline.rst | 82 + llvm/docs/GlobalISel/Porting.rst | 21 + llvm/docs/GlobalISel/RegBankSelect.rst | 73 + llvm/docs/GlobalISel/Resources.rst | 11 + llvm/docs/GlobalISel/index.rst | 94 + llvm/docs/Reference.rst | 6 +- llvm/include/llvm/ADT/APInt.h | 6 + llvm/include/llvm/ADT/StringRef.h | 8 +- .../llvm/ExecutionEngine/Orc/ExecutionUtils.h | 2 +- llvm/include/llvm/Support/YAMLTraits.h | 3 +- llvm/include/llvm/TableGen/Record.h | 6 + llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 4 +- llvm/lib/ObjectYAML/ELFEmitter.cpp | 2 +- llvm/lib/Support/APInt.cpp | 8 + llvm/lib/TableGen/Record.cpp | 15 + llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp | 179 +- llvm/lib/Target/X86/X86.td | 5 + llvm/lib/Target/X86/X86ISelLowering.cpp | 67 +- llvm/lib/Target/X86/X86InstructionSelector.cpp | 2 +- llvm/lib/Target/X86/X86Subtarget.h | 4 + llvm/lib/Target/X86/X86TargetTransformInfo.h | 1 + .../AMDGPU/i1_copy_phi_with_phi_incoming_value.mir | 140 + .../CodeGen/AMDGPU/indirect-addressing-si-noopt.ll | 4 - llvm/test/CodeGen/WebAssembly/simd.ll | 32 +- llvm/test/CodeGen/X86/extractelement-index.ll | 12 - llvm/test/CodeGen/X86/memcmp.ll | 4066 ++++++++++++++++++-- llvm/test/CodeGen/X86/setcc-wide-types.ll | 48 +- llvm/unittests/ADT/APIntTest.cpp | 71 + llvm/utils/lit/lit/cl_arguments.py | 3 + llvm/utils/lit/lit/main.py | 51 +- llvm/utils/lit/lit/run.py | 3 + llvm/utils/lit/lit/util.py | 2 + 55 files changed, 6058 insertions(+), 2111 deletions(-) create mode 100644 clang/utils/TableGen/ClangASTEmitters.h delete mode 100644 llvm/docs/GlobalISel.rst create mode 100644 llvm/docs/GlobalISel/GMIR.rst create mode 100644 llvm/docs/GlobalISel/IRTranslator.rst create mode 100644 llvm/docs/GlobalISel/InstructionSelect.rst create mode 100644 llvm/docs/GlobalISel/Legalizer.rst create mode 100644 llvm/docs/GlobalISel/Pipeline.rst create mode 100644 llvm/docs/GlobalISel/Porting.rst create mode 100644 llvm/docs/GlobalISel/RegBankSelect.rst create mode 100644 llvm/docs/GlobalISel/Resources.rst create mode 100644 llvm/docs/GlobalISel/index.rst create mode 100644 llvm/test/CodeGen/AMDGPU/i1_copy_phi_with_phi_incoming_value.mir