From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28776 invoked by alias); 5 Sep 2014 09:01:21 -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 28750 invoked by uid 89); 5 Sep 2014 09:01:20 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.2 X-HELO: service87.mimecast.com Received: from service87.mimecast.com (HELO service87.mimecast.com) (91.220.42.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 05 Sep 2014 09:01:18 +0000 Received: from cam-owa1.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) by service87.mimecast.com; Fri, 05 Sep 2014 10:01:15 +0100 Received: from [10.1.208.24] ([10.1.255.212]) by cam-owa1.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 5 Sep 2014 10:01:15 +0100 Message-ID: <54097BDA.9050406@arm.com> Date: Fri, 05 Sep 2014 09:01:00 -0000 From: Kyrill Tkachov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: GCC Patches CC: Marcus Shawcroft , Ramana Radhakrishnan , Richard Earnshaw Subject: [PATCH][ARM/AArch64] Schedule alu_ext for Cortex-A53 X-MC-Unique: 114090510011511101 Content-Type: multipart/mixed; boundary="------------060206000000060204090400" X-IsSubscribed: yes X-SW-Source: 2014-09/txt/msg00463.txt.bz2 This is a multi-part message in MIME format. --------------060206000000060204090400 Content-Type: text/plain; charset=WINDOWS-1252; format=flowed Content-Transfer-Encoding: quoted-printable Content-length: 315 Hi all, We didn't schedule alu_ext and alus_ext anywhere for Cortex-A53 so this=20 patch handles it. Tested arm-none-eabi and aarch64-none-elf. Ok for trunk? Thanks, Kyrill 2014-09-05 Kyrylo Tkachov * config/arm/cortex-a53.md (cortex_a53_alu_shift): Add alu_ext, alus_ext.= --------------060206000000060204090400 Content-Type: text/x-patch; name=aarch64-alu-ext-a53.patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="aarch64-alu-ext-a53.patch" Content-length: 899 commit bcf2870adc2602ff6961c25e31a8855af25fc767 Author: Kyrylo Tkachov Date: Wed Sep 3 16:52:40 2014 +0100 [AArch64] Add Cortex-A53 scheduling for alu_ext,alus_ext ops diff --git a/gcc/config/arm/cortex-a53.md b/gcc/config/arm/cortex-a53.md index e798dde..c12738c 100644 --- a/gcc/config/arm/cortex-a53.md +++ b/gcc/config/arm/cortex-a53.md @@ -85,7 +85,7 @@ (define_insn_reservation "cortex_a53_alu_shift" 2 (and (eq_attr "tune" "cortexa53") (eq_attr "type" "alu_shift_imm,alus_shift_imm,\ crc,logic_shift_imm,logics_shift_imm,\ - alu_shift_reg,alus_shift_reg,\ + alu_ext,alus_ext,alu_shift_reg,alus_shift_reg,\ logic_shift_reg,logics_shift_reg,\ extend,mov_shift,mov_shift_reg,\ mvn_shift,mvn_shift_reg"))= --------------060206000000060204090400--