From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21235 invoked by alias); 31 Jul 2015 09:41:13 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 21224 invoked by uid 89); 31 Jul 2015 09:41:12 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.2 X-HELO: eu-smtp-delivery-143.mimecast.com Received: from eu-smtp-delivery-143.mimecast.com (HELO eu-smtp-delivery-143.mimecast.com) (207.82.80.143) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 31 Jul 2015 09:41:11 +0000 Received: from cam-owa2.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.140]) by eu-smtp-1.mimecast.com with ESMTP id uk-mta-38-u06uFeo3Qhmm23y6uQvJ4w-1; Fri, 31 Jul 2015 10:41:06 +0100 Received: from [10.2.207.50] ([10.1.2.79]) by cam-owa2.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 31 Jul 2015 10:41:00 +0100 Message-ID: <55BB42AC.2010703@arm.com> Date: Fri, 31 Jul 2015 09:51:00 -0000 From: Kyrill Tkachov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: Alan Lawrence , "gcc-patches@gcc.gnu.org" Subject: Re: [PATCH 4/15][ARM] float16x8_t intrinsics in arm_neon.h References: <55B7666A.3010105@arm.com> In-Reply-To: <55B7666A.3010105@arm.com> X-MC-Unique: u06uFeo3Qhmm23y6uQvJ4w-1 Content-Type: text/plain; charset=WINDOWS-1252; format=flowed Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg02638.txt.bz2 On 28/07/15 12:24, Alan Lawrence wrote: > This is a respin of https://gcc.gnu.org/ml/gcc-patches/2015-07/msg00478.h= tml , > again making the intrinsics available only if we have a scalar __fp16 typ= e. > (This covers the intrinsics whose implementation is entirely within arm_n= eon.h; > those requiring .md changes follow in the next patch). > > gcc/ChangeLog: > > * config/arm/arm_neon.h (vgetq_lane_f16, vsetq_lane_f16, vld1q_lane_f16, > vld1q_dup_f16, vreinterpretq_p8_f16, vreinterpretq_p16_f16, > vreinterpretq_f16_p8, vreinterpretq_f16_p16, vreinterpretq_f16_f32, > vreinterpretq_f16_p64, vreinterpretq_f16_p128, vreinterpretq_f16_s64, > vreinterpretq_f16_u64, vreinterpretq_f16_s8, vreinterpretq_f16_s16, > vreinterpretq_f16_s32, vreinterpretq_f16_u8, vreinterpretq_f16_u16, > vreinterpretq_f16_u32, vreinterpretq_f32_f16, vreinterpretq_p64_f16, > vreinterpretq_p128_f16, vreinterpretq_s64_f16, vreinterpretq_u64_f16, > vreinterpretq_s8_f16, vreinterpretq_s16_f16, vreinterpretq_s32_f16, > vreinterpretq_u8_f16, vreinterpretq_u16_f16, vreinterpretq_u32_f16): > New. Ok. Thanks, Kyrill