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-next-allyesconfig in repository toolchain/ci/llvm-project.
from 97b5d6bfdcf DebugInfo: Fix test fallout from aaa5a5e7ff1aee632aae75311e [...] adds 2f932b57296 Enable STRICT_FP_TO_SINT/UINT on X86 backend This patch is [...] adds 58578f70566 [AMDGPU] Implemented fma cost analysis adds 6c1d72b0396 [llvm-readobj][llvm-objdump] - Cleanup testing of dynamic t [...] adds 2f60edaa747 [llvm-readobj][test] - Refactor mips-st-other.test adds 18188a7f445 [llvm-readobj][test] - Improve dyn-symbols.test. adds d588a00206a [SCEV] NFC - add testcase for get accurate range for AddExpr adds 200cce345dc [lldb][NFC] Change if statements in ClangASTImporter to fol [...] adds 29d8c27c652 [LLD] [COFF] Fix reporting duplicate errors for absolute symbols adds f20fc65887e [clang] Fix compilation with GCC < 8 for MinGW adds 0109efe7513 Revert "Support powerpc when builing without init_array." adds 119cd70322a [cmake] Include the llvm-locstats target when utils and too [...] adds ac3f9e48421 [clangd] Improve documentation for auto and implicit specs adds 49199465a3b [AArch64][SVE] Implement ptrue intrinsic adds eca0c97a6bc [AArch64][SVE] Implement pfirst and pnext intrinsics adds bbcf1c3496c [ARM] Improve codegen of volatile load/store of i64 adds c5c935ab662 Make more use of MachineInstr::mayLoadOrStore. adds d005df4c165 [llvm-exegesis] Fix pfm counter names for Haswell for older [...] adds dde7b6bcda9 Re-land "Add an -fno-temp-file flag for compilation" adds d38153325f3 [Instcombine] Add select canonicalization tests. NFC adds a59cc5e128f [InstCombine] Canonicalize select immediates adds abc7f6800df [Dsymutil][Debuginfo][NFC] Refactor dsymutil to separate DW [...] adds b94aeabfae1 [gn build] Port abc7f6800df adds 60cb33c9b85 [DebugInfo] Fix verbose printing of rows added via DW_LNE_e [...] adds 23c28c40436 [AArch64][SVE] Add permutation and selection intrinsics adds 89e3bb45026 [ConstantHoisting] Ignore unreachable bb:s when collecting [...] adds 5889e7823de [InstCombine] add/adjust tests for pow->sqrt; NFC adds dcb48f50bdf Revert "[AArch64][SVE] Add permutation and selection intrinsics" adds d3aeac8e20f [PowerPC] Only use PLT annotations if using PIC relocation model adds 86acaa9457d [DDG] Data Dependence Graph - Ordinals adds ba430f50324 [cmake] Add dependency on llvm-dwarfdump to llvm-locstats adds a116f28a0d7 [RISCV] Enable the machine outliner for RISC-V adds 2520bef8653 [Clang FE, SystemZ] Recognize -mrecord-mcount CL option.
No new revisions were added by this update.
Summary of changes: clang-tools-extra/clangd/FindTarget.cpp | 12 +- clang-tools-extra/clangd/FindTarget.h | 12 + clang-tools-extra/clangd/Hover.cpp | 41 +- clang-tools-extra/clangd/unittests/HoverTests.cpp | 136 +- clang/include/clang/AST/Decl.h | 6 +- clang/include/clang/Basic/CodeGenOptions.def | 1 + clang/include/clang/Driver/Options.td | 5 + clang/include/clang/Frontend/FrontendOptions.h | 5 +- clang/lib/CodeGen/CodeGenFunction.cpp | 11 + clang/lib/Driver/ToolChains/Clang.cpp | 4 + clang/lib/Frontend/CompilerInstance.cpp | 2 +- clang/lib/Frontend/CompilerInvocation.cpp | 2 + clang/lib/Frontend/FrontendActions.cpp | 2 +- clang/test/CodeGen/mrecord-mcount.c | 26 + clang/test/Driver/clang_f_opts.c | 3 + compiler-rt/lib/crt/crtbegin.c | 20 +- lld/COFF/SymbolTable.cpp | 4 +- lld/test/COFF/duplicate-absolute.s | 14 + lldb/include/lldb/Symbol/ClangASTImporter.h | 9 +- lldb/source/Symbol/ClangASTImporter.cpp | 28 +- .../include/llvm/Analysis/DependenceGraphBuilder.h | 33 + llvm/include/llvm/CodeGen/TargetInstrInfo.h | 4 +- .../llvm/DebugInfo/DWARF/DWARFOptCompileUnit.h} | 13 +- .../llvm/DebugInfo/DWARF/DWARFOptDeclContext.h} | 12 +- llvm/include/llvm/DebugInfo/DWARF/DWARFOptimizer.h | 86 + llvm/include/llvm/IR/IntrinsicsAArch64.td | 21 +- llvm/lib/Analysis/DependenceGraphBuilder.cpp | 21 + llvm/lib/CodeGen/BranchFolding.cpp | 4 +- llvm/lib/CodeGen/ImplicitNullChecks.cpp | 2 +- .../lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | 31 +- llvm/lib/CodeGen/StackColoring.cpp | 2 +- llvm/lib/DebugInfo/DWARF/CMakeLists.txt | 3 + llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp | 2 +- .../DebugInfo/DWARF/DWARFOptCompileUnit.cpp} | 8 +- .../DebugInfo/DWARF/DWARFOptDeclContext.cpp} | 7 +- llvm/lib/DebugInfo/DWARF/DWARFOptimizer.cpp | 15 + llvm/lib/DebugInfo/DWARF/LLVMBuild.txt | 2 +- llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | 4 + llvm/lib/Target/AArch64/AArch64ISelLowering.h | 1 + llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td | 4 +- llvm/lib/Target/AArch64/SVEInstrFormats.td | 37 +- .../Target/AMDGPU/AMDGPUTargetTransformInfo.cpp | 43 + llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h | 10 + llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp | 4 +- llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp | 2 +- llvm/lib/Target/AMDGPU/SIInstrInfo.cpp | 4 +- llvm/lib/Target/ARC/ARCOptAddrMode.cpp | 2 +- llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp | 18 + llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp | 49 + llvm/lib/Target/ARM/ARMISelLowering.cpp | 57 +- llvm/lib/Target/ARM/ARMISelLowering.h | 8 +- llvm/lib/Target/ARM/ARMInstrInfo.td | 23 + llvm/lib/Target/ARM/ARMInstrThumb2.td | 9 +- llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp | 6 +- llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp | 2 +- llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp | 2 +- llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp | 2 +- llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp | 2 +- llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp | 2 +- llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 8 +- llvm/lib/Target/RISCV/RISCVInstrInfo.cpp | 158 ++ llvm/lib/Target/RISCV/RISCVInstrInfo.h | 29 + llvm/lib/Target/RISCV/RISCVTargetMachine.cpp | 3 + llvm/lib/Target/X86/X86ISelDAGToDAG.cpp | 24 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 245 +- llvm/lib/Target/X86/X86InstrAVX512.td | 16 +- llvm/lib/Target/X86/X86InstrFragmentsSIMD.td | 4 +- llvm/lib/Target/X86/X86InstrSSE.td | 20 +- llvm/lib/Target/X86/X86PfmCounters.td | 16 +- .../InstCombine/InstCombineSimplifyDemanded.cpp | 32 +- llvm/lib/Transforms/Scalar/ConstantHoisting.cpp | 6 +- llvm/test/Analysis/CostModel/AMDGPU/fma.ll | 120 + llvm/test/Analysis/DDG/basic-a.ll | 96 +- llvm/test/Analysis/DDG/basic-b.ll | 109 +- llvm/test/Analysis/DDG/basic-loopnest.ll | 248 +- .../test/Analysis/ScalarEvolution/range_nw_flag.ll | 21 + .../AArch64/sve-intrinsics-pred-creation.ll | 42 + .../AArch64/sve-intrinsics-pred-operations.ll | 65 + llvm/test/CodeGen/ARM/i64_volatile_load_store.ll | 153 ++ llvm/test/CodeGen/PowerPC/2008-10-28-f128-i32.ll | 14 +- llvm/test/CodeGen/PowerPC/2010-02-12-saveCR.ll | 2 +- llvm/test/CodeGen/PowerPC/available-externally.ll | 3 +- llvm/test/CodeGen/PowerPC/srem-lkk.ll | 2 +- llvm/test/CodeGen/PowerPC/stubs.ll | 2 +- .../PowerPC/umulo-128-legalisation-lowering.ll | 2 +- llvm/test/CodeGen/PowerPC/urem-lkk.ll | 2 +- llvm/test/CodeGen/RISCV/machineoutliner.mir | 132 ++ llvm/test/CodeGen/X86/avx512-intrinsics.ll | 28 +- llvm/test/CodeGen/X86/avx512dq-intrinsics.ll | 24 +- llvm/test/CodeGen/X86/avx512dqvl-intrinsics.ll | 120 +- .../CodeGen/X86/avx512vl-intrinsics-fast-isel.ll | 72 +- .../CodeGen/X86/avx512vl-intrinsics-upgrade.ll | 37 +- llvm/test/CodeGen/X86/avx512vl-intrinsics.ll | 12 +- llvm/test/CodeGen/X86/fp-strict-scalar-fptoint.ll | 1312 +++++++++++ llvm/test/CodeGen/X86/fp80-strict-scalar.ll | 411 ++++ llvm/test/CodeGen/X86/vec-strict-fptoint-128.ll | 2397 ++++++++++++++++++++ llvm/test/CodeGen/X86/vec-strict-fptoint-256.ll | 1366 +++++++++++ llvm/test/CodeGen/X86/vec-strict-fptoint-512.ll | 929 ++++++++ .../X86/vector-constrained-fp-intrinsics.ll | 252 +- .../AArch64/consthoist-unreachable.ll | 64 + .../X86/pr43903-not-all-uses-rebased.ll | 51 + llvm/test/Transforms/InstCombine/pow-sqrt.ll | 112 +- .../Transforms/InstCombine/select-imm-canon.ll | 70 + .../X86/debug-line-dw-lne-end-sequence.s | 56 + .../elf-dynamic-section-machine-specific.test | 334 ++- .../llvm-readobj/ELF/Inputs/dynamic-table-so.x86 | Bin 8256 -> 0 bytes .../tools/llvm-readobj/ELF/Inputs/dynamic-table.c | 2 - .../Inputs/elf-dynamic-tags-machine-specific.yaml | 276 --- .../llvm-readobj/ELF/Inputs/st-other.obj.elf-mips | Bin 334 -> 0 bytes .../ELF/Inputs/st-other.obj.elf-mips16 | Bin 334 -> 0 bytes llvm/test/tools/llvm-readobj/ELF/dyn-symbols.test | 368 ++- .../ELF/dynamic-tags-machine-specific.test | 427 +++- .../test/tools/llvm-readobj/ELF/mips-st-other.test | 25 - .../llvm-readobj/ELF/mips-symbols-stother.test | 39 + llvm/tools/dsymutil/CMakeLists.txt | 2 - llvm/tools/dsymutil/DwarfLinker.cpp | 52 +- llvm/tools/dsymutil/DwarfLinker.h | 99 +- llvm/tools/dsymutil/DwarfStreamer.cpp | 2 +- llvm/tools/dsymutil/DwarfStreamer.h | 2 +- .../gn/secondary/llvm/lib/DebugInfo/DWARF/BUILD.gn | 3 + .../gn/secondary/llvm/tools/dsymutil/BUILD.gn | 2 - llvm/utils/llvm-locstats/CMakeLists.txt | 6 +- 122 files changed, 9877 insertions(+), 1549 deletions(-) create mode 100644 clang/test/CodeGen/mrecord-mcount.c create mode 100644 lld/test/COFF/duplicate-absolute.s rename llvm/{tools/dsymutil/CompileUnit.h => include/llvm/DebugInfo/DWARF/DWARFOpt [...] rename llvm/{tools/dsymutil/DeclContext.h => include/llvm/DebugInfo/DWARF/DWARFOpt [...] create mode 100644 llvm/include/llvm/DebugInfo/DWARF/DWARFOptimizer.h rename llvm/{tools/dsymutil/CompileUnit.cpp => lib/DebugInfo/DWARF/DWARFOptCompile [...] rename llvm/{tools/dsymutil/DeclContext.cpp => lib/DebugInfo/DWARF/DWARFOptDeclCon [...] create mode 100644 llvm/lib/DebugInfo/DWARF/DWARFOptimizer.cpp create mode 100644 llvm/test/Analysis/CostModel/AMDGPU/fma.ll create mode 100644 llvm/test/Analysis/ScalarEvolution/range_nw_flag.ll create mode 100644 llvm/test/CodeGen/AArch64/sve-intrinsics-pred-creation.ll create mode 100644 llvm/test/CodeGen/ARM/i64_volatile_load_store.ll create mode 100644 llvm/test/CodeGen/RISCV/machineoutliner.mir create mode 100644 llvm/test/CodeGen/X86/fp-strict-scalar-fptoint.ll create mode 100644 llvm/test/CodeGen/X86/vec-strict-fptoint-128.ll create mode 100644 llvm/test/CodeGen/X86/vec-strict-fptoint-256.ll create mode 100644 llvm/test/CodeGen/X86/vec-strict-fptoint-512.ll create mode 100755 llvm/test/Transforms/ConstantHoisting/AArch64/consthoist-unreac [...] create mode 100644 llvm/test/Transforms/ConstantHoisting/X86/pr43903-not-all-uses- [...] create mode 100644 llvm/test/Transforms/InstCombine/select-imm-canon.ll create mode 100644 llvm/test/tools/llvm-dwarfdump/X86/debug-line-dw-lne-end-sequence.s delete mode 100644 llvm/test/tools/llvm-readobj/ELF/Inputs/dynamic-table-so.x86 delete mode 100644 llvm/test/tools/llvm-readobj/ELF/Inputs/elf-dynamic-tags-machin [...] delete mode 100644 llvm/test/tools/llvm-readobj/ELF/Inputs/st-other.obj.elf-mips delete mode 100644 llvm/test/tools/llvm-readobj/ELF/Inputs/st-other.obj.elf-mips16 delete mode 100644 llvm/test/tools/llvm-readobj/ELF/mips-st-other.test create mode 100644 llvm/test/tools/llvm-readobj/ELF/mips-symbols-stother.test