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-next-allyesconfig in repository toolchain/ci/llvm-project.
from 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/include/clang/Basic/CodeGenOptions.def | 1 + clang/include/clang/Driver/Options.td | 2 + clang/lib/CodeGen/CodeGenFunction.cpp | 11 + clang/lib/Driver/ToolChains/Clang.cpp | 3 + clang/lib/Frontend/CompilerInvocation.cpp | 1 + clang/test/CodeGen/mrecord-mcount.c | 26 + .../include/llvm/Analysis/DependenceGraphBuilder.h | 33 + llvm/include/llvm/IR/IntrinsicsAArch64.td | 61 +- llvm/lib/Analysis/DependenceGraphBuilder.cpp | 21 + llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | 111 -- llvm/lib/Target/AArch64/AArch64ISelLowering.h | 7 - llvm/lib/Target/AArch64/AArch64InstrInfo.td | 6 - llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td | 69 +- llvm/lib/Target/AArch64/SVEInstrFormats.td | 113 +- 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/Transforms/Scalar/ConstantHoisting.cpp | 6 +- llvm/test/Analysis/DDG/basic-a.ll | 96 +- llvm/test/Analysis/DDG/basic-b.ll | 109 +- llvm/test/Analysis/DDG/basic-loopnest.ll | 248 +-- .../CodeGen/AArch64/sve-intrinsics-perm-select.ll | 1646 +------------------- 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 ++ .../AArch64/consthoist-unreachable.ll | 64 + .../X86/pr43903-not-all-uses-rebased.ll | 51 + llvm/test/Transforms/InstCombine/pow-sqrt.ll | 112 +- llvm/utils/llvm-locstats/CMakeLists.txt | 4 + 35 files changed, 932 insertions(+), 2226 deletions(-) create mode 100644 clang/test/CodeGen/mrecord-mcount.c create mode 100644 llvm/test/CodeGen/RISCV/machineoutliner.mir create mode 100755 llvm/test/Transforms/ConstantHoisting/AArch64/consthoist-unreac [...] create mode 100644 llvm/test/Transforms/ConstantHoisting/X86/pr43903-not-all-uses- [...]