From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from esa1.mentor.iphmx.com (esa1.mentor.iphmx.com [68.232.129.153]) by sourceware.org (Postfix) with ESMTPS id C80183858D20 for ; Tue, 8 Nov 2022 14:50:59 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org C80183858D20 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=mentor.com X-IronPort-AV: E=Sophos;i="5.96,148,1665475200"; d="scan'208";a="89314196" Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa1.mentor.iphmx.com with ESMTP; 08 Nov 2022 06:50:57 -0800 IronPort-SDR: b+pW5eZy+UHvcklvEAwIsDcTUCnlorWyn07YZmJu/lAYM+GDhMMhX3vXfUb5SFRqmKgl21OXQE BwUewZ99f1jJEEyHIzcCQg65glssnlqOb4TazZDTkl/B7ITbB8L1PQIEhc073myjXDKzuUaedL 7Hjqa1cMYJZJ+hn16srAPI04Ez3bTia8UCv68YiR0+udqJPyz/UwDwB4lMpgnhKUbmcc8Q5DG3 hDW/BF2oOQvk2xvAtNSV1I4gyjTTDJ0qdG7XN0mZJo2HyhcfVZkWZPc1JfVEmYFSbT/Spfr5RW FE4= Message-ID: <2dd19cf0-ced8-cd82-89fc-5b6ce50588b5@codesourcery.com> Date: Tue, 8 Nov 2022 14:50:52 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.4.1 Subject: Re: [PATCH] amdgcn: Add builtins for vectorized native versions of abs, floorf and floor To: Kwok Cheung Yeung , gcc-patches References: <952c73e5-ba66-0a5a-e33e-1feb6396743e@codesourcery.com> Content-Language: en-GB From: Andrew Stubbs In-Reply-To: <952c73e5-ba66-0a5a-e33e-1feb6396743e@codesourcery.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: svr-ies-mbx-14.mgc.mentorg.com (139.181.222.14) To svr-ies-mbx-11.mgc.mentorg.com (139.181.222.11) X-Spam-Status: No, score=-6.7 required=5.0 tests=BAYES_00,HEADER_FROM_DIFFERENT_DOMAINS,KAM_DMARC_STATUS,NICE_REPLY_A,SPF_HELO_PASS,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: On 08/11/2022 14:35, Kwok Cheung Yeung wrote: > Hello > > This patch adds three extra builtins for the vectorized forms of the > abs, floorf and floor math functions, which are implemented by native > GCN instructions. I have also added a test to check that they generate > the expected assembler instructions. > > Okay for trunk? OK. Andrew