aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Guo <terry.guo@arm.com>2014-11-18 02:20:47 +0000
committerXuepeng Guo <xguo@gcc.gnu.org>2014-11-18 02:20:47 +0000
commit92191d7b1b6b791f85039ad0b63959f53cb0afe2 (patch)
treedb5872ac4ece301dcd2e536f4869ef3d82c65f28
parentdcaa37015b7c937bdac4826d3b9d77a4b036a2fe (diff)
downloadgcc-92191d7b1b6b791f85039ad0b63959f53cb0afe2.zip
gcc-92191d7b1b6b791f85039ad0b63959f53cb0afe2.tar.gz
gcc-92191d7b1b6b791f85039ad0b63959f53cb0afe2.tar.bz2
arm.c (arm_issue_rate): Return 2 for cortex-m7.
2014-11-17 Terry Guo <terry.guo@arm.com> * config/arm/arm.c (arm_issue_rate): Return 2 for cortex-m7. * config/arm/arm.md (generic_sched): Exclude cortex-m7. (generic_vfp): Likewise. * config/arm/cortex-m7.md: Pipeline description for cortex-m7. From-SVN: r217687
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config/arm/arm.c1
-rw-r--r--gcc/config/arm/arm.md11
-rw-r--r--gcc/config/arm/cortex-m7.md181
4 files changed, 198 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 00a567f..c7d5cbd 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2014-11-17 Terry Guo <terry.guo@arm.com>
+
+ * config/arm/arm.c (arm_issue_rate): Return 2 for cortex-m7.
+ * config/arm/arm.md (generic_sched): Exclude cortex-m7.
+ (generic_vfp): Likewise.
+ * config/arm/cortex-m7.md: Pipeline description for cortex-m7.
+
2014-11-17 Vladimir Makarov <vmakarov@redhat.com>
PR rtl-optimization/63906
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c
index f9c98ac..a4212d1 100644
--- a/gcc/config/arm/arm.c
+++ b/gcc/config/arm/arm.c
@@ -29936,6 +29936,7 @@ arm_issue_rate (void)
case cortexa57:
return 3;
+ case cortexm7:
case cortexr4:
case cortexr4f:
case cortexr5:
diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md
index 3c2798e..a3b14fe 100644
--- a/gcc/config/arm/arm.md
+++ b/gcc/config/arm/arm.md
@@ -377,7 +377,11 @@
(define_attr "generic_sched" "yes,no"
(const (if_then_else
- (ior (eq_attr "tune" "fa526,fa626,fa606te,fa626te,fmp626,fa726te,arm926ejs,arm1020e,arm1026ejs,arm1136js,arm1136jfs,cortexa5,cortexa7,cortexa8,cortexa9,cortexa12,cortexa15,cortexa53,cortexm4,marvell_pj4")
+ (ior (eq_attr "tune" "fa526,fa626,fa606te,fa626te,fmp626,fa726te,\
+ arm926ejs,arm1020e,arm1026ejs,arm1136js,\
+ arm1136jfs,cortexa5,cortexa7,cortexa8,\
+ cortexa9,cortexa12,cortexa15,cortexa53,\
+ cortexm4,cortexm7,marvell_pj4")
(eq_attr "tune_cortexr4" "yes"))
(const_string "no")
(const_string "yes"))))
@@ -385,7 +389,9 @@
(define_attr "generic_vfp" "yes,no"
(const (if_then_else
(and (eq_attr "fpu" "vfp")
- (eq_attr "tune" "!arm1020e,arm1022e,cortexa5,cortexa7,cortexa8,cortexa9,cortexa53,cortexm4,marvell_pj4")
+ (eq_attr "tune" "!arm1020e,arm1022e,cortexa5,cortexa7,\
+ cortexa8,cortexa9,cortexa53,cortexm4,\
+ cortexm7,marvell_pj4")
(eq_attr "tune_cortexr4" "no"))
(const_string "yes")
(const_string "no"))))
@@ -409,6 +415,7 @@
(include "cortex-a53.md")
(include "cortex-r4.md")
(include "cortex-r4f.md")
+(include "cortex-m7.md")
(include "cortex-m4.md")
(include "cortex-m4-fpu.md")
(include "vfp11.md")
diff --git a/gcc/config/arm/cortex-m7.md b/gcc/config/arm/cortex-m7.md
new file mode 100644
index 0000000..aab1da1
--- /dev/null
+++ b/gcc/config/arm/cortex-m7.md
@@ -0,0 +1,181 @@
+;; ARM Cortex-M7 pipeline description
+;; Copyright (C) 2014 Free Software Foundation, Inc.
+;;
+;; This file is part of GCC.
+;;
+;; GCC is free software; you can redistribute it and/or modify it
+;; under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 3, or (at your option)
+;; any later version.
+;;
+;; GCC is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with GCC; see the file COPYING3. If not see
+;; <http://www.gnu.org/licenses/>.
+
+(define_automaton "cortex_m7")
+
+;; We model the dual-issue constraints of this core with
+;; following units.
+
+(define_cpu_unit "cm7_i0, cm7_i1" "cortex_m7")
+(define_cpu_unit "cm7_a0, cm7_a1" "cortex_m7")
+(define_cpu_unit "cm7_branch,cm7_wb,cm7_ext,cm7_shf" "cortex_m7")
+(define_cpu_unit "cm7_lsu" "cortex_m7")
+(define_cpu_unit "cm7_mac" "cortex_m7")
+(define_cpu_unit "cm7_fpu" "cortex_m7")
+
+(define_reservation "cm7_all_units"
+ "cm7_i0+cm7_i1+cm7_a0+cm7_a1+cm7_branch\
+ +cm7_wb+cm7_ext+cm7_shf+cm7_lsu+cm7_mac\
+ +cm7_fpu")
+
+;; Simple alu instruction without inline shift operation.
+(define_insn_reservation "cortex_m7_alu_simple" 2
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "alu_imm,alus_imm,logic_imm,logics_imm,\
+ alu_sreg,alus_sreg,logic_reg,logics_reg,\
+ adc_imm,adcs_imm,adc_reg,adcs_reg,\
+ adr,bfm,rev,\
+ shift_imm,shift_reg,\
+ mov_imm,mov_reg,mvn_imm,mvn_reg,\
+ mov_shift_reg,mov_shift,\
+ mvn_shift,mvn_shift_reg,\
+ logic_shift_imm,logics_shift_imm,\
+ alu_shift_reg,alus_shift_reg,\
+ logic_shift_reg,logics_shift_reg,\
+ mrs,clz,f_mcr,f_mrc,multiple,no_insn"))
+ "cm7_i0|cm7_i1,cm7_a0|cm7_a1")
+
+;; Simple alu with inline shift operation.
+(define_insn_reservation "cortex_m7_alu_shift" 2
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "alu_shift_imm,alus_shift_imm"))
+ "cm7_i0|cm7_i1,(cm7_a0|cm7_a1)+cm7_shf+cm7_branch")
+
+;; Only one ALU can be used for DSP instructions.
+(define_insn_reservation "cortex_m7_dsp" 2
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "alu_dsp_reg,smlaxy,smlalxy,smulxy"))
+ "cm7_i0|cm7_i1,cm7_a0")
+
+;; The multiply instructions.
+(define_insn_reservation "cortex_m7_multiply" 2
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "mul,muls,umull,smull"))
+ "cm7_i0|cm7_i1,(cm7_a0|cm7_a1)+cm7_wb")
+
+(define_insn_reservation "cortex_m7_idiv" 4
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "sdiv,udiv"))
+ "cm7_all_units*4")
+
+(define_insn_reservation "cortex_m7_alu_extend" 2
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "extend"))
+ "cm7_i0|cm7_i1,(cm7_a0|cm7_a1)+cm7_ext+cm7_branch")
+
+(define_insn_reservation "cortex_m7_mac" 2
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "mla,mlas"))
+ "cm7_i0|cm7_i1,cm7_mac+cm7_wb")
+
+;; The branch instructions.
+(define_insn_reservation "cortex_m7_branch" 0
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "branch,call"))
+ "cm7_i0|cm7_i1,cm7_branch")
+
+;; The load instructions.
+(define_insn_reservation "cortex_m7_load1" 2
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "load_byte, load1"))
+ "cm7_i0|cm7_i1,cm7_lsu")
+
+(define_insn_reservation "cortex_m7_load2" 2
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "load2"))
+ "cm7_all_units")
+
+(define_insn_reservation "cortex_m7_loadm" 2
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "load3,load4"))
+ "cm7_all_units*2")
+
+;; The store instructions.
+(define_insn_reservation "cortex_m7_store1" 0
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "store1"))
+ "cm7_i0|cm7_i1,cm7_lsu+cm7_wb")
+
+(define_insn_reservation "cortex_m7_store2" 0
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "store2"))
+ "cm7_all_units")
+
+(define_insn_reservation "cortex_m7_storem" 0
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "store3,store4"))
+ "cm7_all_units*2")
+
+;; The FPU instructions.
+(define_insn_reservation "cortex_m7_fpalu" 3
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "ffariths,ffarithd,fadds,faddd,fmov,fconsts,\
+ fconstd,fcmpd,f_cvt,f_cvtf2i,f_cvti2f, fcmps,\
+ fmuls,f_flag"))
+ "cm7_i0|cm7_i1,cm7_fpu")
+
+(define_insn_reservation "cortex_m7_fmacs" 6
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "fmacs,ffmas"))
+ "cm7_i0|cm7_i1,cm7_fpu")
+
+(define_insn_reservation "cortex_m7_fdivs" 16
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "fdivs, fsqrts"))
+ "cm7_i0|cm7_i1, cm7_fpu*5")
+
+(define_insn_reservation "cortex_m7_f_loads" 2
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "f_loads"))
+ "cm7_i0|cm7_i1, cm7_lsu")
+
+(define_insn_reservation "cortex_m7_f_stores" 0
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "f_stores"))
+ "cm7_i0|cm7_i1, cm7_lsu+cm7_wb")
+
+(define_insn_reservation "cortex_m7_fmuld" 6
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "fmuld"))
+ "cm7_i0|cm7_i1,cm7_fpu*3")
+
+(define_insn_reservation "cortex_m7_fmacd" 10
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "fmacd,ffmad"))
+ "cm7_i0|cm7_i1,cm7_fpu*4")
+
+(define_insn_reservation "cortex_m7_fdivd" 31
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "fdivd,fsqrtd"))
+ "cm7_i0|cm7_i1,cm7_fpu*4")
+
+(define_insn_reservation "cortex_m7_f_loadd" 3
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "f_loadd"))
+ "cm7_all_units")
+
+(define_insn_reservation "cortex_m7_f_stored" 0
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "f_stored"))
+ "cm7_all_units")
+
+(define_insn_reservation "cortex_m7_f_mcr" 1
+ (and (eq_attr "tune" "cortexm7")
+ (eq_attr "type" "f_mcrr,f_mrrc"))
+ "cm7_all_units")