From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8969 invoked by alias); 22 Jan 2013 17:10:03 -0000 Received: (qmail 8878 invoked by uid 22791); 22 Jan 2013 17:09:59 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,MSGID_MULTIPLE_AT,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from service87.mimecast.com (HELO service87.mimecast.com) (91.220.42.44) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 22 Jan 2013 17:09:53 +0000 Received: from cam-owa1.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) by service87.mimecast.com; Tue, 22 Jan 2013 17:09:51 +0000 Received: from e106372vm ([10.1.255.212]) by cam-owa1.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.0); Tue, 22 Jan 2013 17:09:48 +0000 From: "Kyrylo Tkachov" To: Cc: "Ramana Radhakrishnan" , "Richard Earnshaw" References: <002201cddd24$46f624f0$d4e26ed0$@tkachov@arm.com> <008401cdecc2$a2050160$e60f0420$@tkachov@arm.com> <00fc01cdf27d$17a05630$46e10290$@tkachov@arm.com> In-Reply-To: <00fc01cdf27d$17a05630$46e10290$@tkachov@arm.com> Subject: RE: [PATCH][ARM][1/3] Add vectorization support for rounding functions Date: Tue, 22 Jan 2013 17:10:00 -0000 Message-ID: <009901cdf8c3$405eacb0$c11c0610$@tkachov@arm.com> MIME-Version: 1.0 X-MC-Unique: 113012217095102001 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes 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 X-SW-Source: 2013-01/txt/msg01107.txt.bz2 Ping^3? Thanks, Kyrill > -----Original Message----- > From: gcc-patches-owner@gcc.gnu.org [mailto:gcc-patches- > owner@gcc.gnu.org] On Behalf Of Kyrylo Tkachov > Sent: 14 January 2013 17:32 > To: gcc-patches@gcc.gnu.org > Cc: Ramana Radhakrishnan; Richard Earnshaw > Subject: RE: [PATCH][ARM][1/3] Add vectorization support for rounding > functions >=20 > Ping. >=20 > Thanks, > Kyrill >=20 > > -----Original Message----- > > From: gcc-patches-owner@gcc.gnu.org [mailto:gcc-patches- > > owner@gcc.gnu.org] On Behalf Of Kyrylo Tkachov > > Sent: 07 January 2013 10:35 > > To: gcc-patches@gcc.gnu.org > > Cc: Ramana Radhakrishnan; Richard Earnshaw > > Subject: RE: [PATCH][ARM][1/3] Add vectorization support for rounding > > functions > > > > Ping. > > > > http://gcc.gnu.org/ml/gcc-patches/2012-12/msg01111.html > > > > Thanks, > > Kyrill > > > > > -----Original Message----- > > > From: gcc-patches-owner@gcc.gnu.org [mailto:gcc-patches- > > > owner@gcc.gnu.org] On Behalf Of Kyrylo Tkachov > > > Sent: 18 December 2012 13:33 > > > To: gcc-patches@gcc.gnu.org > > > Cc: Ramana Radhakrishnan; Richard Earnshaw > > > Subject: [PATCH][ARM][1/3] Add vectorization support for rounding > > > functions > > > > > > Hi all, > > > > > > This patch does some refactoring by moving the definitions of the > > NEON > > > builtins to a separate file (arm_neon_builtins.def) and includes > that > > > when > > > initialising the neon_builtin_data array and also during > > > the definition of enum arm_builtins (with appropriate redefinitions > > of > > > the > > > VAR* macros). This allows us to have symbolic names for the neon > > > builtins > > > that allows us to look up their declaration in > > > arm_builtin_decls. This is needed for vectorisation support in the > > next > > > patch. The ARM_BUILTIN_NEON_BASE constant which was defined as part > > of > > > the > > > arm_builtins enum is now defined as a macro, since > > > various functions that deal with the initialisation and expansion > of > > > builtins use it. > > > > > > No regressions on arm-none-eabi with model. > > > > > > Ok for trunk? > > > > > > Thanks, > > > Kyrill > > > > > > > > > gcc/ChangeLog > > > > > > 2012-12-18 Kyrylo Tkachov > > > > > > * config/arm/arm_neon_builtins.def: New file. > > > * config/arm/arm.c (neon_builtin_data): Move contents to > > > arm_neon_builtins.def. > > > (enum arm_builtins): Include neon builtin definitions. > > > (ARM_BUILTIN_NEON_BASE): Move from enum to macro. > > > > > > >=20 >=20 >=20 >=20