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-defconfig in repository toolchain/ci/llvm-project.
from d5e60669c4a [TLI] Simplify code. NFCI. adds c4dd1d1873f AMDGPU: Generate check lines adds b3dd381a73d AMDGPU: Introduce a flag to disable mul24 intrinsic formation adds c6ab2b4fed3 AMDGPU: Preserve value name when inserting mul24 intrinsic adds 74115ef791e AMDGPU: Add baseline test for mul24 ordering issues adds cc4b0596b1b [X86] Add isel patterns to match vpdpwssd avx512vnni instru [...] adds 7da6f432d8b Removing block comments from CodeView records in assembly f [...] adds 894b8d1d85a FileManager: Factor duplicated code in getBufferForFile, NFC adds 6e2776c9c40 [X86] Add test cases for PR42998. NFC adds 1abe162a9a8 [X86] Teach -Os immediate sharing code to not count constan [...] adds aa71c977ba9 [SDAG] Fold umul_lohi with 0 or 1 multiplicand adds 6bd3a9eaa6c [TableGen] Correct comments for end of namespace. NFC adds 89846231f76 Fixup in test/DebugInfo/X86/live-debug-vars-discard-invalid.mir adds 55e8c91dd5a [AMDGPU] Downgrade from StringLiteral to const char* in an [...] adds 76f005535ad [ELF] Delete a redundant dyn_cast<InputSection>. NFC adds ef039a3ccdc [PowerPC][AIX] Adds support for writing the .data section i [...] adds 6075f6cc5cd [X86] Add test case for inserting/extracting from shuffled [...] adds 1475fad1d0d [X86] Add test case for inserting/extracting from two shuff [...]
No new revisions were added by this update.
Summary of changes: clang/include/clang/Basic/FileManager.h | 9 +- clang/lib/Basic/FileManager.cpp | 17 +- lld/ELF/LinkerScript.cpp | 11 +- llvm/include/llvm/CodeGen/AsmPrinter.h | 5 + .../llvm/DebugInfo/CodeView/CVTypeVisitor.h | 4 - .../CodeView/TypeVisitorCallbackPipeline.h | 5 - llvm/include/llvm/MC/MCAsmInfo.h | 8 + llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 5 +- llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 27 - llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 12 + llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 3 + llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 15 - llvm/lib/MC/MCAsmInfoXCOFF.cpp | 4 + llvm/lib/MC/MCAsmStreamer.cpp | 10 + llvm/lib/MC/MCObjectFileInfo.cpp | 4 + llvm/lib/MC/MCSectionXCOFF.cpp | 10 + llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp | 12 +- llvm/lib/Target/AMDGPU/AMDGPULibFunc.cpp | 6 +- llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp | 37 +- llvm/lib/Target/X86/X86ISelDAGToDAG.cpp | 9 + llvm/lib/Target/X86/X86InstrAVX512.td | 29 + .../CodeGen/AMDGPU/amdgpu-codegenprepare-mul24.ll | 219 +- llvm/test/CodeGen/AMDGPU/idiv-licm.ll | 451 +- llvm/test/CodeGen/AMDGPU/mul24-pass-ordering.ll | 263 + llvm/test/CodeGen/PowerPC/aix-xcoff-data.ll | 57 + llvm/test/CodeGen/X86/avx512vnni.ll | 198 + llvm/test/CodeGen/X86/i128-mul.ll | 134 +- llvm/test/CodeGen/X86/imul.ll | 9 +- llvm/test/CodeGen/X86/mul-i1024.ll | 10822 ++++++++----------- llvm/test/CodeGen/X86/mul-i256.ll | 335 +- llvm/test/CodeGen/X86/mul-i512.ll | 2202 ++-- llvm/test/CodeGen/X86/mul128.ll | 36 +- llvm/test/CodeGen/X86/overflow.ll | 49 +- llvm/test/CodeGen/X86/pr42998.ll | 63 + .../CodeGen/X86/umulo-128-legalisation-lowering.ll | 87 +- llvm/test/CodeGen/X86/vector-shuffle-combining.ll | 162 + llvm/test/DebugInfo/COFF/array-odr-violation.ll | 37 +- llvm/test/DebugInfo/COFF/class-options-common.ll | 11 - llvm/test/DebugInfo/COFF/inlining.ll | 51 +- llvm/test/DebugInfo/COFF/pr37492.ll | 30 +- llvm/test/DebugInfo/COFF/synthetic.ll | 26 +- llvm/test/DebugInfo/COFF/types-basic.ll | 216 - llvm/test/DebugInfo/COFF/types-data-members.ll | 405 - .../X86/live-debug-vars-discard-invalid.mir | 14 +- llvm/utils/TableGen/AsmMatcherEmitter.cpp | 6 +- llvm/utils/TableGen/CodeGenMapTable.cpp | 8 +- llvm/utils/TableGen/DAGISelMatcherGen.cpp | 2 +- llvm/utils/TableGen/DFAPacketizerEmitter.cpp | 4 +- llvm/utils/TableGen/DisassemblerEmitter.cpp | 2 +- llvm/utils/TableGen/FixedLenDecoderEmitter.cpp | 2 +- llvm/utils/TableGen/InstrDocsEmitter.cpp | 2 +- llvm/utils/TableGen/InstrInfoEmitter.cpp | 26 +- llvm/utils/TableGen/SubtargetEmitter.cpp | 4 +- .../TableGen/WebAssemblyDisassemblerEmitter.cpp | 2 +- 54 files changed, 6972 insertions(+), 9205 deletions(-) create mode 100644 llvm/test/CodeGen/AMDGPU/mul24-pass-ordering.ll create mode 100644 llvm/test/CodeGen/PowerPC/aix-xcoff-data.ll create mode 100644 llvm/test/CodeGen/X86/avx512vnni.ll create mode 100644 llvm/test/CodeGen/X86/pr42998.ll