From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2569 invoked by alias); 7 Jan 2013 10:35:11 -0000 Received: (qmail 2393 invoked by uid 22791); 7 Jan 2013 10:35:10 -0000 X-SWARE-Spam-Status: No, hits=-1.9 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; Mon, 07 Jan 2013 10:35:05 +0000 Received: from cam-owa1.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) by service87.mimecast.com; Mon, 07 Jan 2013 10:35:03 +0000 Received: from e106372vm ([10.1.255.212]) by cam-owa1.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.0); Mon, 7 Jan 2013 10:35:02 +0000 From: "Kyrylo Tkachov" To: Cc: "Ramana Radhakrishnan" , "Richard Earnshaw" References: <002201cddd24$46f624f0$d4e26ed0$@tkachov@arm.com> In-Reply-To: <002201cddd24$46f624f0$d4e26ed0$@tkachov@arm.com> Subject: RE: [PATCH][ARM][1/3] Add vectorization support for rounding functions Date: Mon, 07 Jan 2013 10:35:00 -0000 Message-ID: <008401cdecc2$a2050160$e60f0420$@tkachov@arm.com> MIME-Version: 1.0 X-MC-Unique: 113010710350313101 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/msg00289.txt.bz2 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 >=20 > Hi all, >=20 > 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. >=20 > No regressions on arm-none-eabi with model. >=20 > Ok for trunk? >=20 > Thanks, > Kyrill >=20 >=20 > gcc/ChangeLog >=20 > 2012-12-18 Kyrylo Tkachov >=20 > * 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.