From patchwork Fri Sep 5 09:01:14 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kyrylo Tkachov X-Patchwork-Id: 386212 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id E14941400E4 for ; Fri, 5 Sep 2014 19:03:19 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:cc:subject:content-type; q=dns; s=default; b=c/+dba9aohFDTJTQUrddLqQtyZYy2U9uKLGXXd74L0D VlxRHfnhaPj/DQik/FjLzW513vPMTgfLks8sRxYMWQgQncGLfGkVmaOYIJUUpJcW 5e6jxurXF28gL2m0DliAl4ai4kDdm+tdSCdMJ0n7HuHu/vRH95ht3h9lebKS6g9Y = DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:cc:subject:content-type; s=default; bh=HM5AVn/+hyUCI8zvEyU3Oc/QPQ8=; b=dEa2z+QAiWGp59ppL zNtY3VY9GgOUNPWXaAKh08Il5lFdxS2q7P257k79ymXo9ChAaJMMIIgqzR616sPF QuXKAxEf8QcN16IqY5suJRr7XhnFPfrhesfHT6RabY92InhZ0yUDED13vitkKp15 eB5zTfBa9W3IPb/ivcdpsRgLHE= 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-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@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 10:01:14 +0100 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 X-IsSubscribed: yes Hi all, We didn't schedule alu_ext and alus_ext anywhere for Cortex-A53 so this 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. 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"))