From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10503 invoked by alias); 29 Jan 2013 17:48:01 -0000 Received: (qmail 10476 invoked by uid 22791); 29 Jan 2013 17:48:00 -0000 X-SWARE-Spam-Status: No, hits=-3.3 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_SPAMHAUS_DROP,KHOP_THREADED,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, 29 Jan 2013 17:47:55 +0000 Received: from cam-owa1.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) by service87.mimecast.com; Tue, 29 Jan 2013 17:47:54 +0000 Received: from [10.1.69.70] ([10.1.255.212]) by cam-owa1.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.0); Tue, 29 Jan 2013 17:47:51 +0000 Message-ID: <51080B47.6090904@arm.com> Date: Tue, 29 Jan 2013 17:48:00 -0000 From: Ramana Radhakrishnan Reply-To: ramrad01@arm.com User-Agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:14.0) Gecko/20120713 Thunderbird/14.0 MIME-Version: 1.0 To: Greta Yorsh CC: GCC Patches , Richard Earnshaw , "nickc@redhat.com" , "paul@codesourcery.com" Subject: Re: [PATCH,ARM][4/5] Fix calls in cortex-a7 pipeline description References: <000401cdfb27$da2f1f30$8e8d5d90$@yorsh@arm.com> <001601cdfb29$38714270$a953c750$@yorsh@arm.com> In-Reply-To: <001601cdfb29$38714270$a953c750$@yorsh@arm.com> X-MC-Unique: 113012917475402101 Content-Type: text/plain; charset=WINDOWS-1252; format=flowed 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/msg01400.txt.bz2 On 01/25/13 18:24, Greta Yorsh wrote: > Improve handling of call insns in cortex-a7 pipeline description, as > follows. > > A call can dual-issue as a younger instruction but not as an older > instruction (from compiler's point of view). This patch adjusts the funct= ion > cortexa7_younger (used by the implementation of TARGET_SCHED_REORDER hook) > to return true for calls. The patch also updates the pipeline description > for calls to allow either dual-issue as a younger instruction or > single-issue. > > gcc/ > > 2013-01-03 Greta Yorsh > > * config/arm/arm.c (cortexa7_younger): Return true for TYPE_CALL. > * config/arm/cortex-a7.md (cortex_a7_call): Update required unit= s. > Ok. Ramana