2008-07-01 Jerry DeLisle <jvdelisle@gcc.gnu.org>
[official-gcc.git] / gcc / config / mips / loongson2ef.md
blob8d29482210221130aa5bdb8cbe3fda8bcb39b851
1 ;; Pipeline model for ST Microelectronics Loongson-2E/2F cores.
3 ;; Copyright (C) 2008 Free Software Foundation, Inc.
4 ;; Contributed by CodeSourcery.
5 ;;
6 ;; GCC is free software; you can redistribute it and/or modify
7 ;; it under the terms of the GNU General Public License as published by
8 ;; the Free Software Foundation; either version 3, or (at your option)
9 ;; any later version.
11 ;; GCC is distributed in the hope that it will be useful,
12 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;; GNU General Public License for more details.
16 ;; You should have received a copy of the GNU General Public License
17 ;; along with GCC; see the file COPYING3.  If not see
18 ;; <http://www.gnu.org/licenses/>.
20 ;; Automaton for integer instructions.
21 (define_automaton "ls2_alu")
23 ;; ALU1 and ALU2.
24 ;; We need to query these units to adjust round-robin counter.
25 (define_query_cpu_unit "ls2_alu1_core,ls2_alu2_core" "ls2_alu")
27 ;; Pseudo units to help modeling of ALU1/2 round-robin dispatch strategy.
28 (define_cpu_unit "ls2_alu1_turn,ls2_alu2_turn" "ls2_alu")
30 ;; Pseudo units to enable/disable ls2_alu[12]_turn units.
31 ;; ls2_alu[12]_turn unit can be subscribed only after ls2_alu[12]_turn_enabled
32 ;; unit is subscribed.
33 (define_cpu_unit "ls2_alu1_turn_enabled,ls2_alu2_turn_enabled" "ls2_alu")
34 (presence_set "ls2_alu1_turn" "ls2_alu1_turn_enabled")
35 (presence_set "ls2_alu2_turn" "ls2_alu2_turn_enabled")
37 ;; Reservations for ALU1 (ALU2) instructions.
38 ;; Instruction goes to ALU1 (ALU2) and makes next ALU1/2 instruction to
39 ;; be dispatched to ALU2 (ALU1).
40 (define_reservation "ls2_alu1"
41   "(ls2_alu1_core+ls2_alu2_turn_enabled)|ls2_alu1_core")
42 (define_reservation "ls2_alu2"
43   "(ls2_alu2_core+ls2_alu1_turn_enabled)|ls2_alu2_core")
45 ;; Reservation for ALU1/2 instructions.
46 ;; Instruction will go to ALU1 iff ls2_alu1_turn_enabled is subscribed and
47 ;; switch the turn to ALU2 by subscribing ls2_alu2_turn_enabled.
48 ;; Or to ALU2 otherwise.
49 (define_reservation "ls2_alu"
50   "(ls2_alu1_core+ls2_alu1_turn+ls2_alu2_turn_enabled)
51    |(ls2_alu1_core+ls2_alu1_turn)
52    |(ls2_alu2_core+ls2_alu2_turn+ls2_alu1_turn_enabled)
53    |(ls2_alu2_core+ls2_alu2_turn)")
55 ;; Automaton for floating-point instructions.
56 (define_automaton "ls2_falu")
58 ;; FALU1 and FALU2.
59 ;; We need to query these units to adjust round-robin counter.
60 (define_query_cpu_unit "ls2_falu1_core,ls2_falu2_core" "ls2_falu")
62 ;; Pseudo units to help modeling of FALU1/2 round-robin dispatch strategy.
63 (define_cpu_unit "ls2_falu1_turn,ls2_falu2_turn" "ls2_falu")
65 ;; Pseudo units to enable/disable ls2_falu[12]_turn units.
66 ;; ls2_falu[12]_turn unit can be subscribed only after
67 ;; ls2_falu[12]_turn_enabled unit is subscribed.
68 (define_cpu_unit "ls2_falu1_turn_enabled,ls2_falu2_turn_enabled" "ls2_falu")
69 (presence_set "ls2_falu1_turn" "ls2_falu1_turn_enabled")
70 (presence_set "ls2_falu2_turn" "ls2_falu2_turn_enabled")
72 ;; Reservations for FALU1 (FALU2) instructions.
73 ;; Instruction goes to FALU1 (FALU2) and makes next FALU1/2 instruction to
74 ;; be dispatched to FALU2 (FALU1).
75 (define_reservation "ls2_falu1"
76   "(ls2_falu1_core+ls2_falu2_turn_enabled)|ls2_falu1_core")
77 (define_reservation "ls2_falu2"
78   "(ls2_falu2_core+ls2_falu1_turn_enabled)|ls2_falu2_core")
80 ;; Reservation for FALU1/2 instructions.
81 ;; Instruction will go to FALU1 iff ls2_falu1_turn_enabled is subscribed and
82 ;; switch the turn to FALU2 by subscribing ls2_falu2_turn_enabled.
83 ;; Or to FALU2 otherwise.
84 (define_reservation "ls2_falu"
85   "(ls2_falu1+ls2_falu1_turn+ls2_falu2_turn_enabled)
86    |(ls2_falu1+ls2_falu1_turn)
87    |(ls2_falu2+ls2_falu2_turn+ls2_falu1_turn_enabled)
88    |(ls2_falu2+ls2_falu2_turn)")
90 ;; The following 4 instructions each subscribe one of
91 ;; ls2_[f]alu{1,2}_turn_enabled units according to this attribute.
92 ;; These instructions are used in mips.c: sched_ls2_dfa_post_advance_cycle.
94 (define_attr "ls2_turn_type" "alu1,alu2,falu1,falu2,unknown"
95   (const_string "unknown"))
97 ;; Subscribe ls2_alu1_turn_enabled.
98 (define_insn "ls2_alu1_turn_enabled_insn"
99   [(unspec [(const_int 0)] UNSPEC_LOONGSON_ALU1_TURN_ENABLED_INSN)]
100   "TUNE_LOONGSON_2EF"
101   { gcc_unreachable (); }
102   [(set_attr "ls2_turn_type" "alu1")])
104 (define_insn_reservation "ls2_alu1_turn_enabled" 0
105   (eq_attr "ls2_turn_type" "alu1")
106   "ls2_alu1_turn_enabled")
108 ;; Subscribe ls2_alu2_turn_enabled.
109 (define_insn "ls2_alu2_turn_enabled_insn"
110   [(unspec [(const_int 0)] UNSPEC_LOONGSON_ALU2_TURN_ENABLED_INSN)]
111   "TUNE_LOONGSON_2EF"
112   { gcc_unreachable (); }
113   [(set_attr "ls2_turn_type" "alu2")])
115 (define_insn_reservation "ls2_alu2_turn_enabled" 0
116   (eq_attr "ls2_turn_type" "alu2")
117   "ls2_alu2_turn_enabled")
119 ;; Subscribe ls2_falu1_turn_enabled.
120 (define_insn "ls2_falu1_turn_enabled_insn"
121   [(unspec [(const_int 0)] UNSPEC_LOONGSON_FALU1_TURN_ENABLED_INSN)]
122   "TUNE_LOONGSON_2EF"
123   { gcc_unreachable (); }
124   [(set_attr "ls2_turn_type" "falu1")])
126 (define_insn_reservation "ls2_falu1_turn_enabled" 0
127   (eq_attr "ls2_turn_type" "falu1")
128   "ls2_falu1_turn_enabled")
130 ;; Subscribe ls2_falu2_turn_enabled.
131 (define_insn "ls2_falu2_turn_enabled_insn"
132   [(unspec [(const_int 0)] UNSPEC_LOONGSON_FALU2_TURN_ENABLED_INSN)]
133   "TUNE_LOONGSON_2EF"
134   { gcc_unreachable (); }
135   [(set_attr "ls2_turn_type" "falu2")])
137 (define_insn_reservation "ls2_falu2_turn_enabled" 0
138   (eq_attr "ls2_turn_type" "falu2")
139   "ls2_falu2_turn_enabled")
141 ;; Automaton for memory operations.
142 (define_automaton "ls2_mem")
144 ;; Memory unit.
145 (define_query_cpu_unit "ls2_mem" "ls2_mem")
147 ;; Reservation for integer instructions.
148 (define_insn_reservation "ls2_alu" 2
149   (and (eq_attr "cpu" "loongson_2e,loongson_2f")
150        (eq_attr "type" "arith,condmove,const,logical,mfhilo,move,
151                         mthilo,nop,shift,signext,slt"))
152   "ls2_alu")
154 ;; Reservation for branch instructions.
155 (define_insn_reservation "ls2_branch" 2
156   (and (eq_attr "cpu" "loongson_2e,loongson_2f")
157        (eq_attr "type" "branch,jump,call,trap"))
158   "ls2_alu1")
160 ;; Reservation for integer multiplication instructions.
161 (define_insn_reservation "ls2_imult" 5
162   (and (eq_attr "cpu" "loongson_2e,loongson_2f")
163        (eq_attr "type" "imul,imul3"))
164   "ls2_alu2,ls2_alu2_core")
166 ;; Reservation for integer division / remainder instructions.
167 ;; These instructions use the SRT algorithm and hence take 2-38 cycles.
168 (define_insn_reservation "ls2_idiv" 20
169   (and (eq_attr "cpu" "loongson_2e,loongson_2f")
170        (eq_attr "type" "idiv"))
171   "ls2_alu2,ls2_alu2_core*18")
173 ;; Reservation for memory load instructions.
174 (define_insn_reservation "ls2_load" 5
175   (and (eq_attr "cpu" "loongson_2e,loongson_2f")
176        (eq_attr "type" "load,fpload,mfc,mtc"))
177   "ls2_mem")
179 ;; Reservation for memory store instructions.
180 ;; With stores we assume they don't alias with dependent loads.
181 ;; Therefore we set the latency to zero.
182 (define_insn_reservation "ls2_store" 0
183   (and (eq_attr "cpu" "loongson_2e,loongson_2f")
184        (eq_attr "type" "store,fpstore"))
185   "ls2_mem")
187 ;; Reservation for floating-point instructions of latency 3.
188 (define_insn_reservation "ls2_fp3" 3
189   (and (eq_attr "cpu" "loongson_2e,loongson_2f")
190        (eq_attr "type" "fabs,fneg,fcmp,fmove"))
191   "ls2_falu1")
193 ;; Reservation for floating-point instructions of latency 5.
194 (define_insn_reservation "ls2_fp5" 5
195   (and (eq_attr "cpu" "loongson_2e,loongson_2f")
196        (eq_attr "type" "fcvt"))
197   "ls2_falu1")
199 ;; Reservation for floating-point instructions that can go
200 ;; to either of FALU1/2 units.
201 (define_insn_reservation "ls2_falu" 7
202   (and (eq_attr "cpu" "loongson_2e,loongson_2f")
203        (eq_attr "type" "fadd,fmul,fmadd"))
204   "ls2_falu")
206 ;; Reservation for floating-point division / remainder instructions.
207 ;; These instructions use the SRT algorithm and hence take a variable amount
208 ;; of cycles:
209 ;; div.s takes 5-11 cycles
210 ;; div.d takes 5-18 cycles
211 (define_insn_reservation "ls2_fdiv" 9
212   (and (eq_attr "cpu" "loongson_2e,loongson_2f")
213        (eq_attr "type" "fdiv"))
214   "ls2_falu2,ls2_falu2_core*7")
216 ;; Reservation for floating-point sqrt instructions.
217 ;; These instructions use the SRT algorithm and hence take a variable amount
218 ;; of cycles:
219 ;; sqrt.s takes 5-17 cycles
220 ;; sqrt.d takes 5-32 cycles
221 (define_insn_reservation "ls2_fsqrt" 15
222   (and (eq_attr "cpu" "loongson_2e,loongson_2f")
223        (eq_attr "type" "fsqrt"))
224   "ls2_falu2,ls2_falu2_core*13")
226 ;; Two consecutive ALU instructions.
227 (define_insn_reservation "ls2_multi" 4
228   (and (eq_attr "cpu" "loongson_2e,loongson_2f")
229        (eq_attr "type" "multi"))
230   "(ls2_alu1,ls2_alu2_core)|(ls2_alu2,ls2_alu1_core)")
232 ;; Reservation for everything else.  Normally, this reservation
233 ;; will only be used to handle cases like compiling for non-loongson
234 ;; CPUs with -mtune=loongson2?.
236 ;; This reservation depends upon the fact that DFA will check
237 ;; reservations in the same order as they appear in the file.
238 (define_insn_reservation "ls2_unknown" 1
239   (eq_attr "cpu" "loongson_2e,loongson_2f")
240   "ls2_alu1_core+ls2_alu2_core+ls2_falu1_core+ls2_falu2_core+ls2_mem")