]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/alpha/ev6.md
Update copyright years.
[thirdparty/gcc.git] / gcc / config / alpha / ev6.md
CommitLineData
98791e3a 1;; Scheduling description for Alpha EV6.
a945c346 2;; Copyright (C) 2002-2024 Free Software Foundation, Inc.
98791e3a 3;;
7ec022b2 4;; This file is part of GCC.
98791e3a 5;;
7ec022b2 6;; GCC is free software; you can redistribute it and/or modify
98791e3a 7;; it under the terms of the GNU General Public License as published by
2f83c7d6 8;; the Free Software Foundation; either version 3, or (at your option)
98791e3a
RH
9;; any later version.
10;;
7ec022b2 11;; GCC is distributed in the hope that it will be useful,
98791e3a
RH
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.
15;;
16;; You should have received a copy of the GNU General Public License
2f83c7d6
NC
17;; along with GCC; see the file COPYING3. If not see
18;; <http://www.gnu.org/licenses/>.
98791e3a
RH
19
20; EV6 can issue 4 insns per clock. It's out-of-order, so this isn't
21; expected to help over-much, but a precise description can be important
22; for software pipelining.
23;
1ae58c30 24; EV6 has two symmetric pairs ("clusters") of two asymmetric integer
98791e3a
RH
25; units ("upper" and "lower"), yielding pipe names U0, U1, L0, L1.
26;
27; ??? The clusters have independent register files that are re-synced
28; every cycle. Thus there is one additional cycle of latency between
29; insns issued on different clusters. Possibly model that by duplicating
30; all EBOX insn_reservations that can issue to either cluster, increasing
31; all latencies by one, and adding bypasses within the cluster.
32;
33; ??? In addition, instruction order affects cluster issue.
34
35(define_automaton "ev6_0,ev6_1")
36(define_cpu_unit "ev6_u0,ev6_u1,ev6_l0,ev6_l1" "ev6_0")
37(define_reservation "ev6_u" "ev6_u0|ev6_u1")
38(define_reservation "ev6_l" "ev6_l0|ev6_l1")
39(define_reservation "ev6_ebox" "ev6_u|ev6_l")
40
41(define_cpu_unit "ev6_fa" "ev6_1")
42(define_cpu_unit "ev6_fm,ev6_fst0,ev6_fst1" "ev6_0")
43(define_reservation "ev6_fst" "ev6_fst0|ev6_fst1")
44
45; Assume type "multi" single issues.
46(define_insn_reservation "ev6_multi" 1
8bea7f7c 47 (and (eq_attr "tune" "ev6")
98791e3a
RH
48 (eq_attr "type" "multi"))
49 "ev6_u0+ev6_u1+ev6_l0+ev6_l1+ev6_fa+ev6_fm+ev6_fst0+ev6_fst1")
50
51; Integer loads take at least 3 clocks, and only issue to lower units.
52; adjust_cost still factors in user-specified memory latency, so return 1 here.
53(define_insn_reservation "ev6_ild" 1
8bea7f7c 54 (and (eq_attr "tune" "ev6")
0b196b18 55 (eq_attr "type" "ild,ldsym,ld_l"))
98791e3a
RH
56 "ev6_l")
57
58(define_insn_reservation "ev6_ist" 1
8bea7f7c 59 (and (eq_attr "tune" "ev6")
0b196b18 60 (eq_attr "type" "ist,st_c"))
98791e3a
RH
61 "ev6_l")
62
0b196b18
RH
63(define_insn_reservation "ev6_mb" 1
64 (and (eq_attr "tune" "ev6")
65 (eq_attr "type" "mb"))
66 "ev6_l1")
67
98791e3a
RH
68; FP loads take at least 4 clocks. adjust_cost still factors
69; in user-specified memory latency, so return 2 here.
70(define_insn_reservation "ev6_fld" 2
8bea7f7c 71 (and (eq_attr "tune" "ev6")
98791e3a
RH
72 (eq_attr "type" "fld"))
73 "ev6_l")
74
75; The FPU communicates with memory and the integer register file
76; via two fp store units. We need a slot in the fst immediately, and
77; a slot in LOW after the operand data is ready. At which point the
78; data may be moved either to the store queue or the integer register
79; file and the insn retired.
80
81(define_insn_reservation "ev6_fst" 3
8bea7f7c 82 (and (eq_attr "tune" "ev6")
98791e3a
RH
83 (eq_attr "type" "fst"))
84 "ev6_fst,nothing,ev6_l")
85
86; Arithmetic goes anywhere.
87(define_insn_reservation "ev6_arith" 1
8bea7f7c 88 (and (eq_attr "tune" "ev6")
98791e3a
RH
89 (eq_attr "type" "iadd,ilog,icmp"))
90 "ev6_ebox")
91
92; Motion video insns also issue only to U0, and take three ticks.
93(define_insn_reservation "ev6_mvi" 3
8bea7f7c 94 (and (eq_attr "tune" "ev6")
98791e3a
RH
95 (eq_attr "type" "mvi"))
96 "ev6_u0")
97
98; Shifts issue to upper units.
99(define_insn_reservation "ev6_shift" 1
8bea7f7c 100 (and (eq_attr "tune" "ev6")
98791e3a
RH
101 (eq_attr "type" "shift"))
102 "ev6_u")
103
104; Multiplies issue only to U1, and all take 7 ticks.
105(define_insn_reservation "ev6_imul" 7
8bea7f7c 106 (and (eq_attr "tune" "ev6")
98791e3a
RH
107 (eq_attr "type" "imul"))
108 "ev6_u1")
109
110; Conditional moves decompose into two independent primitives, each taking
111; one cycle. Since ev6 is out-of-order, we can't see anything but two cycles.
112(define_insn_reservation "ev6_icmov" 2
8bea7f7c 113 (and (eq_attr "tune" "ev6")
98791e3a
RH
114 (eq_attr "type" "icmov"))
115 "ev6_ebox,ev6_ebox")
116
117; Integer branches issue to upper units
118(define_insn_reservation "ev6_ibr" 1
8bea7f7c 119 (and (eq_attr "tune" "ev6")
d5909a79 120 (eq_attr "type" "ibr,callpal"))
98791e3a
RH
121 "ev6_u")
122
123; Calls only issue to L0.
124(define_insn_reservation "ev6_jsr" 1
8bea7f7c 125 (and (eq_attr "tune" "ev6")
98791e3a
RH
126 (eq_attr "type" "jsr"))
127 "ev6_l0")
128
129; Ftoi/itof only issue to lower pipes.
130(define_insn_reservation "ev6_itof" 3
8bea7f7c 131 (and (eq_attr "tune" "ev6")
98791e3a
RH
132 (eq_attr "type" "itof"))
133 "ev6_l")
134
135(define_insn_reservation "ev6_ftoi" 3
8bea7f7c 136 (and (eq_attr "tune" "ev6")
98791e3a
RH
137 (eq_attr "type" "ftoi"))
138 "ev6_fst,nothing,ev6_l")
139
140(define_insn_reservation "ev6_fmul" 4
8bea7f7c 141 (and (eq_attr "tune" "ev6")
98791e3a
RH
142 (eq_attr "type" "fmul"))
143 "ev6_fm")
144
145(define_insn_reservation "ev6_fadd" 4
8bea7f7c 146 (and (eq_attr "tune" "ev6")
98791e3a
RH
147 (eq_attr "type" "fadd,fcpys,fbr"))
148 "ev6_fa")
149
5e631e49
MT
150(define_bypass 6 "ev6_fmul,ev6_fadd" "ev6_fst,ev6_ftoi")
151
98791e3a 152(define_insn_reservation "ev6_fcmov" 8
8bea7f7c 153 (and (eq_attr "tune" "ev6")
98791e3a
RH
154 (eq_attr "type" "fcmov"))
155 "ev6_fa,nothing*3,ev6_fa")
156
5e631e49
MT
157(define_bypass 10 "ev6_fcmov" "ev6_fst,ev6_ftoi")
158
98791e3a 159(define_insn_reservation "ev6_fdivsf" 12
8bea7f7c 160 (and (eq_attr "tune" "ev6")
98791e3a
RH
161 (and (eq_attr "type" "fdiv")
162 (eq_attr "opsize" "si")))
163 "ev6_fa*9")
164
165(define_insn_reservation "ev6_fdivdf" 15
8bea7f7c 166 (and (eq_attr "tune" "ev6")
98791e3a
RH
167 (and (eq_attr "type" "fdiv")
168 (eq_attr "opsize" "di")))
169 "ev6_fa*12")
170
171(define_insn_reservation "ev6_sqrtsf" 18
8bea7f7c 172 (and (eq_attr "tune" "ev6")
98791e3a
RH
173 (and (eq_attr "type" "fsqrt")
174 (eq_attr "opsize" "si")))
175 "ev6_fa*15")
176
177(define_insn_reservation "ev6_sqrtdf" 33
8bea7f7c 178 (and (eq_attr "tune" "ev6")
98791e3a
RH
179 (and (eq_attr "type" "fsqrt")
180 (eq_attr "opsize" "di")))
181 "ev6_fa*30")