From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ciao.gmane.io (ciao.gmane.io [116.202.254.214]) by sourceware.org (Postfix) with ESMTPS id 95F013858C74 for ; Tue, 29 Aug 2023 15:32:00 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 95F013858C74 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=rivosinc.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=m.gmane-mx.org Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1qb0hC-0005uZ-Vd for gcc-patches@gcc.gnu.org; Tue, 29 Aug 2023 17:31:58 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: gcc-patches@gcc.gnu.org From: Edwin Lu Subject: Re: [Committed] RISC-V: Add Types to Un-Typed Vector Instructions: Date: Tue, 29 Aug 2023 08:31:50 -0700 Message-ID: <966d92db-fbb6-4976-bea3-52b788f4602a@rivosinc.com> References: <20230828190432.2530773-1-ewlu@rivosinc.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit User-Agent: Mozilla Thunderbird Cc: gnu-toolchain@rivosinc.com Content-Language: en-US In-Reply-To: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,BODY_8BITS,HEADER_FROM_DIFFERENT_DOMAINS,KAM_DMARC_STATUS,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Message-ID: <20230829153150.cuMTvJ9wr0ysE-73V85fKsyw9c-k-vebCvDyDgsJTK8@z> On 8/28/2023 2:45 PM, Jeff Law via Gcc-patches wrote: > > > On 8/28/23 13:03, Edwin Lu wrote: >> Related Discussion: >> https://inbox.sourceware.org/gcc-patches/12fb5088-3f28-0a69-de1e-f387371a5eb2@gmail.com/ >> >> This patch updates vector instructions to ensure that no insn is left >> without a type attribute. Creates a placeholder type "vector" for insns >> where a type isn't clear >> >> Tested for regressions using rv32/rv64 gc/gcv multilib with newlib/linux. >> >> gcc/Changelog: >> >>     * config/riscv/autovec-vls.md: Update types >>     * config/riscv/riscv.md: Add vector placeholder type >>     * config/riscv/vector.md: Update types > OK > jeff >> > Committed! Edwin