Message ID | 20220531103356.332482-1-juzhe.zhong@rivai.ai |
---|---|
Headers | show
Return-Path: <gcc-patches-bounces+incoming=patchwork.ozlabs.org@gcc.gnu.org> X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=8.43.85.97; helo=sourceware.org; envelope-from=gcc-patches-bounces+incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=<UNKNOWN>) Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by bilbo.ozlabs.org (Postfix) with ESMTPS id 4LC7vV4hHvz9s75 for <incoming@patchwork.ozlabs.org>; Tue, 31 May 2022 20:35:02 +1000 (AEST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id CE7C138133E7 for <incoming@patchwork.ozlabs.org>; Tue, 31 May 2022 10:35:00 +0000 (GMT) X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from smtpbgeu2.qq.com (smtpbgeu2.qq.com [18.194.254.142]) by sourceware.org (Postfix) with ESMTPS id 7D87E3836655 for <gcc-patches@gcc.gnu.org>; Tue, 31 May 2022 10:34:08 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7D87E3836655 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=rivai.ai Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=rivai.ai X-QQ-mid: bizesmtp85t1653993240th6imp5r Received: from server1.localdomain ( [42.247.22.65]) by bizesmtp.qq.com (ESMTP) with id ; Tue, 31 May 2022 18:33:59 +0800 (CST) X-QQ-SSF: 01400000002000B0F000000A0000000 X-QQ-FEAT: HY+AX7pyI8TqqSi7AavCMX8rpybYyZ5drYNVEdyYSr/XfxMplF8DjeSfP+O0i +l2BxaoAW0fBinfvza7hTsPpQxJM+2+mn45uznFrf8Q5YVeZiV1PT7NrgrNg0Vk8kEESMoe RHIogWLPWfxqGZhOnx48rYIJnwlV7zX5NImbbo0oy99WbGQAO4QNeitlDr+jWMa4di7y1aH mwP/dPLHGMuDwYUdJprc3hfj01iyIaHoOpWoplBTqJcV7HPldTrrpWKGiqH3FzjQ9N0PMRV /zFEjBdc5yeQR/ngMp5G1+GXd9EGHBHtI+47CVoSaCkWDNJ2RX2KF7+1mWE3mDfJnpVOKgb AmIpMpOPzlY8aKpxLF02WhsHpze+zn3bXn5vd6YiA7R5XkYnF4= X-QQ-GoodBg: 2 From: juzhe.zhong@rivai.ai To: gcc-patches@gcc.gnu.org Subject: [PATCH v2 0/1] RISC-V: Add RVV (RISC-V 'V' Extension) support Date: Tue, 31 May 2022 18:33:55 +0800 Message-Id: <20220531103356.332482-1-juzhe.zhong@rivai.ai> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:rivai.ai:qybgforeign:qybgforeign8 X-QQ-Bgrelay: 1 X-Spam-Status: No, score=-5.6 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, RCVD_IN_DNSWL_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE, T_SPF_HELO_TEMPERROR autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list <gcc-patches.gcc.gnu.org> List-Unsubscribe: <https://gcc.gnu.org/mailman/options/gcc-patches>, <mailto:gcc-patches-request@gcc.gnu.org?subject=unsubscribe> List-Archive: <https://gcc.gnu.org/pipermail/gcc-patches/> List-Post: <mailto:gcc-patches@gcc.gnu.org> List-Help: <mailto:gcc-patches-request@gcc.gnu.org?subject=help> List-Subscribe: <https://gcc.gnu.org/mailman/listinfo/gcc-patches>, <mailto:gcc-patches-request@gcc.gnu.org?subject=subscribe> Cc: kito.cheng@gmail.com, zhongjuzhe <juzhe.zhong@rivai.ai> Errors-To: gcc-patches-bounces+incoming=patchwork.ozlabs.org@gcc.gnu.org Sender: "Gcc-patches" <gcc-patches-bounces+incoming=patchwork.ozlabs.org@gcc.gnu.org> |
Series |
RISC-V: Add RVV (RISC-V 'V' Extension) support
|
expand
|
From: zhongjuzhe <juzhe.zhong@rivai.ai> This patch adds implementation which missed in the V1 patch. *** BLURB HERE *** zhongjuzhe (1): Add unit-stride load store intrinsics .../riscv/riscv-vector-builtins-functions.cc | 80 +++++++++++++++++++ .../riscv/riscv-vector-builtins-functions.def | 7 ++ .../riscv/riscv-vector-builtins-functions.h | 42 ++++++++++ gcc/config/riscv/riscv-vector-builtins.cc | 14 ++++ 4 files changed, 143 insertions(+)