]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / PowerPC / PPCScheduleE5500.td
1 //===-- PPCScheduleE500mc.td - e5500 Scheduling Defs -------*- tablegen -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the itinerary class data for the Freescale e5500 64-bit
11 // Power processor.
12 //
13 // All information is derived from the "e5500 Core Reference Manual",
14 // Freescale Document Number e5500RM, Rev. 1, 03/2012.
15 //
16 //===----------------------------------------------------------------------===//
17 // Relevant functional units in the Freescale e5500 core
18 // (These are the same as for the e500mc)
19 //
20 //  * Decode & Dispatch
21 //    Can dispatch up to 2 instructions per clock cycle to either the GPR Issue
22 //    queues (GIQx), FP Issue Queue (FIQ), or Branch issue queue (BIQ).
23 def E5500_DIS0 : FuncUnit;
24 def E5500_DIS1 : FuncUnit;
25
26 //  * Execute
27 //    6 pipelined execution units: SFX0, SFX1, BU, FPU, LSU, CFX.
28 //    The CFX has a bypass path, allowing non-divide instructions to execute
29 //    while a divide instruction is being executed.
30 def E5500_SFX0  : FuncUnit; // Simple unit 0
31 def E5500_SFX1  : FuncUnit; // Simple unit 1
32 def E5500_BU    : FuncUnit; // Branch unit
33 def E5500_CFX_DivBypass
34                 : FuncUnit; // CFX divide bypass path
35 def E5500_CFX_0 : FuncUnit; // CFX pipeline stage 0
36
37 def E5500_CFX_1 : FuncUnit; // CFX pipeline stage 1
38
39 def E5500_LSU_0 : FuncUnit; // LSU pipeline
40 def E5500_FPU_0 : FuncUnit; // FPU pipeline
41
42 def E5500_GPR_Bypass : Bypass;
43 def E5500_FPR_Bypass : Bypass;
44 def E5500_CR_Bypass  : Bypass;
45
46 def PPCE5500Itineraries : ProcessorItineraries<
47   [E5500_DIS0, E5500_DIS1, E5500_SFX0, E5500_SFX1, E5500_BU,
48    E5500_CFX_DivBypass, E5500_CFX_0, E5500_CFX_1,
49    E5500_LSU_0, E5500_FPU_0],
50   [E5500_CR_Bypass, E5500_GPR_Bypass, E5500_FPR_Bypass], [
51   InstrItinData<IIC_IntSimple,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
52                                   InstrStage<1, [E5500_SFX0, E5500_SFX1]>],
53                                  [5, 2, 2], // Latency = 1
54                                  [E5500_GPR_Bypass,
55                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
56   InstrItinData<IIC_IntGeneral,  [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
57                                   InstrStage<1, [E5500_SFX0, E5500_SFX1]>],
58                                  [5, 2, 2], // Latency = 1
59                                  [E5500_GPR_Bypass,
60                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
61   InstrItinData<IIC_IntISEL,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
62                                   InstrStage<1, [E5500_SFX0, E5500_SFX1]>],
63                                  [5, 2, 2, 2], // Latency = 1
64                                  [E5500_GPR_Bypass,
65                                   E5500_GPR_Bypass, E5500_GPR_Bypass,
66                                   E5500_CR_Bypass]>,
67   InstrItinData<IIC_IntCompare,  [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
68                                   InstrStage<1, [E5500_SFX0, E5500_SFX1]>],
69                                  [6, 2, 2], // Latency = 1 or 2
70                                  [E5500_CR_Bypass,
71                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
72   InstrItinData<IIC_IntDivD,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
73                                   InstrStage<1, [E5500_CFX_0], 0>,
74                                   InstrStage<26, [E5500_CFX_DivBypass]>],
75                                  [30, 2, 2], // Latency= 4..26, Repeat rate= 4..26
76                                  [E5500_GPR_Bypass,
77                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
78   InstrItinData<IIC_IntDivW,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
79                                   InstrStage<1, [E5500_CFX_0], 0>,
80                                   InstrStage<16, [E5500_CFX_DivBypass]>],
81                                  [20, 2, 2], // Latency= 4..16, Repeat rate= 4..16
82                                  [E5500_GPR_Bypass,
83                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
84   InstrItinData<IIC_IntMFFS,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
85                                   InstrStage<1, [E5500_FPU_0]>],
86                                  [11], // Latency = 7, Repeat rate = 1
87                                  [E5500_FPR_Bypass]>,
88   InstrItinData<IIC_IntMTFSB0,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
89                                   InstrStage<7, [E5500_FPU_0]>],
90                                  [11, 2, 2], // Latency = 7, Repeat rate = 7
91                                  [NoBypass, NoBypass, NoBypass]>,
92   InstrItinData<IIC_IntMulHD,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
93                                   InstrStage<1, [E5500_CFX_0], 0>,
94                                   InstrStage<2, [E5500_CFX_1]>],
95                                  [9, 2, 2], // Latency = 4..7, Repeat rate = 2..4
96                                  [E5500_GPR_Bypass,
97                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
98   InstrItinData<IIC_IntMulHW,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
99                                   InstrStage<1, [E5500_CFX_0], 0>,
100                                   InstrStage<1, [E5500_CFX_1]>],
101                                  [8, 2, 2], // Latency = 4, Repeat rate = 1
102                                  [E5500_GPR_Bypass,
103                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
104   InstrItinData<IIC_IntMulHWU,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
105                                   InstrStage<1, [E5500_CFX_0], 0>,
106                                   InstrStage<1, [E5500_CFX_1]>],
107                                  [8, 2, 2], // Latency = 4, Repeat rate = 1
108                                  [E5500_GPR_Bypass,
109                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
110   InstrItinData<IIC_IntMulLI,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
111                                   InstrStage<1, [E5500_CFX_0], 0>,
112                                   InstrStage<2, [E5500_CFX_1]>],
113                                  [8, 2, 2], // Latency = 4 or 5, Repeat = 2
114                                  [E5500_GPR_Bypass,
115                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
116   InstrItinData<IIC_IntRotate,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
117                                   InstrStage<1, [E5500_SFX0, E5500_SFX1]>],
118                                  [5, 2, 2], // Latency = 1
119                                  [E5500_GPR_Bypass,
120                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
121   InstrItinData<IIC_IntRotateD,  [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
122                                   InstrStage<2, [E5500_SFX0, E5500_SFX1]>],
123                                  [6, 2, 2], // Latency = 2, Repeat rate = 2
124                                  [E5500_GPR_Bypass,
125                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
126   InstrItinData<IIC_IntRotateDI, [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
127                                   InstrStage<1, [E5500_SFX0, E5500_SFX1]>],
128                                  [5, 2, 2], // Latency = 1, Repeat rate = 1
129                                  [E5500_GPR_Bypass,
130                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
131   InstrItinData<IIC_IntShift,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
132                                   InstrStage<2, [E5500_SFX0, E5500_SFX1]>],
133                                  [6, 2, 2], // Latency = 2, Repeat rate = 2
134                                  [E5500_GPR_Bypass,
135                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
136   InstrItinData<IIC_IntTrapW,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
137                                   InstrStage<2, [E5500_SFX0]>],
138                                  [6, 2], // Latency = 2, Repeat rate = 2
139                                  [E5500_GPR_Bypass, E5500_GPR_Bypass]>,
140   InstrItinData<IIC_BrB,         [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
141                                   InstrStage<1, [E5500_BU]>],
142                                  [5, 2], // Latency = 1
143                                  [NoBypass, E5500_GPR_Bypass]>,
144   InstrItinData<IIC_BrCR,        [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
145                                   InstrStage<1, [E5500_BU]>],
146                                  [5, 2, 2], // Latency = 1
147                                  [E5500_CR_Bypass,
148                                   E5500_CR_Bypass, E5500_CR_Bypass]>,
149   InstrItinData<IIC_BrMCR,       [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
150                                   InstrStage<1, [E5500_BU]>],
151                                  [5, 2], // Latency = 1
152                                  [E5500_CR_Bypass, E5500_CR_Bypass]>,
153   InstrItinData<IIC_BrMCRX,      [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
154                                   InstrStage<1, [E5500_CFX_0]>],
155                                  [5, 2, 2], // Latency = 1
156                                  [E5500_CR_Bypass, E5500_GPR_Bypass]>,
157   InstrItinData<IIC_LdStDCBA,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
158                                   InstrStage<1, [E5500_LSU_0]>],
159                                  [7, 2], // Latency = 3, Repeat rate = 1
160                                  [E5500_GPR_Bypass, E5500_GPR_Bypass]>,
161   InstrItinData<IIC_LdStDCBF,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
162                                   InstrStage<1, [E5500_LSU_0]>],
163                                  [7, 2], // Latency = 3, Repeat rate = 1
164                                  [E5500_GPR_Bypass, E5500_GPR_Bypass]>,
165   InstrItinData<IIC_LdStDCBI,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
166                                   InstrStage<1, [E5500_LSU_0]>],
167                                  [7, 2], // Latency = 3, Repeat rate = 1
168                                  [E5500_GPR_Bypass, E5500_GPR_Bypass]>,
169   InstrItinData<IIC_LdStLoad,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
170                                   InstrStage<1, [E5500_LSU_0]>],
171                                  [7, 2], // Latency = 3
172                                  [E5500_GPR_Bypass, E5500_GPR_Bypass]>,
173   InstrItinData<IIC_LdStLoadUpd, [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
174                                   InstrStage<1, [E5500_SFX0, E5500_SFX1], 0>,
175                                   InstrStage<1, [E5500_LSU_0]>],
176                                  [7, 2], // Latency = 3, Repeat rate = 1
177                                  [E5500_GPR_Bypass, E5500_GPR_Bypass],
178                                  2>, // 2 micro-ops
179   InstrItinData<IIC_LdStLoadUpdX,[InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
180                                   InstrStage<1, [E5500_SFX0, E5500_SFX1], 0>,
181                                   InstrStage<1, [E5500_LSU_0]>],
182                                  [7, 2], // Latency = 3, Repeat rate = 1
183                                  [E5500_GPR_Bypass, E5500_GPR_Bypass],
184                                  2>, // 2 micro-ops
185   InstrItinData<IIC_LdStLD,      [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
186                                   InstrStage<1, [E5500_LSU_0]>],
187                                  [7, 2], // Latency = 3, Repeat rate = 1
188                                  [E5500_GPR_Bypass, E5500_GPR_Bypass]>,
189   InstrItinData<IIC_LdStLDARX,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
190                                   InstrStage<3, [E5500_LSU_0]>],
191                                  [7, 2], // Latency = 3, Repeat rate = 3
192                                  [E5500_GPR_Bypass, E5500_GPR_Bypass]>,
193   InstrItinData<IIC_LdStLDU,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
194                                   InstrStage<1, [E5500_SFX0, E5500_SFX1], 0>,
195                                   InstrStage<1, [E5500_LSU_0]>],
196                                  [7, 2], // Latency = 3, Repeat rate = 1
197                                  [E5500_GPR_Bypass, E5500_GPR_Bypass],
198                                  2>, // 2 micro-ops
199   InstrItinData<IIC_LdStLDUX,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
200                                   InstrStage<1, [E5500_SFX0, E5500_SFX1], 0>,
201                                   InstrStage<1, [E5500_LSU_0]>],
202                                  [7, 2], // Latency = 3, Repeat rate = 1
203                                  [E5500_GPR_Bypass, E5500_GPR_Bypass],
204                                  2>, // 2 micro-ops
205   InstrItinData<IIC_LdStStore,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
206                                   InstrStage<1, [E5500_LSU_0]>],
207                                  [7, 2], // Latency = 3, Repeat rate = 1
208                                  [NoBypass, E5500_GPR_Bypass]>,
209   InstrItinData<IIC_LdStICBI,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
210                                   InstrStage<1, [E5500_LSU_0]>],
211                                  [7, 2], // Latency = 3, Repeat rate = 1
212                                  [NoBypass, E5500_GPR_Bypass]>,
213   InstrItinData<IIC_LdStSTFD,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
214                                   InstrStage<1, [E5500_LSU_0]>],
215                                  [7, 2, 2], // Latency = 3, Repeat rate = 1
216                                  [E5500_GPR_Bypass,
217                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
218   InstrItinData<IIC_LdStSTFDU,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
219                                   InstrStage<1, [E5500_SFX0, E5500_SFX1], 0>,
220                                   InstrStage<1, [E5500_LSU_0]>],
221                                  [7, 2, 2], // Latency = 3, Repeat rate = 1
222                                  [E5500_GPR_Bypass,
223                                   E5500_GPR_Bypass, E5500_GPR_Bypass],
224                                  2>, // 2 micro-ops
225   InstrItinData<IIC_LdStLFD,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
226                                   InstrStage<1, [E5500_LSU_0]>],
227                                  [8, 2, 2], // Latency = 4, Repeat rate = 1
228                                  [E5500_FPR_Bypass,
229                                   E5500_GPR_Bypass, E5500_GPR_Bypass],
230                                  2>, // 2 micro-ops
231   InstrItinData<IIC_LdStLFDU,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
232                                   InstrStage<1, [E5500_SFX0, E5500_SFX1], 0>,
233                                   InstrStage<1, [E5500_LSU_0]>],
234                                  [8, 2, 2], // Latency = 4, Repeat rate = 1
235                                  [E5500_FPR_Bypass,
236                                   E5500_GPR_Bypass, E5500_GPR_Bypass],
237                                  2>, // 2 micro-ops
238   InstrItinData<IIC_LdStLFDUX,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
239                                   InstrStage<1, [E5500_SFX0, E5500_SFX1], 0>,
240                                   InstrStage<1, [E5500_LSU_0]>],
241                                  [8, 2, 2], // Latency = 4, Repeat rate = 1
242                                  [E5500_FPR_Bypass,
243                                   E5500_GPR_Bypass, E5500_GPR_Bypass],
244                                  2>, // 2 micro-ops
245   InstrItinData<IIC_LdStLHA,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
246                                   InstrStage<1, [E5500_LSU_0]>],
247                                  [7, 2], // Latency = 3
248                                  [E5500_GPR_Bypass, E5500_GPR_Bypass]>,
249   InstrItinData<IIC_LdStLHAU,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
250                                   InstrStage<1, [E5500_SFX0, E5500_SFX1], 0>,
251                                   InstrStage<1, [E5500_LSU_0]>],
252                                  [7, 2], // Latency = 3, Repeat rate = 1
253                                  [E5500_GPR_Bypass, E5500_GPR_Bypass],
254                                  2>, // 2 micro-ops
255   InstrItinData<IIC_LdStLHAUX,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
256                                   InstrStage<1, [E5500_SFX0, E5500_SFX1], 0>,
257                                   InstrStage<1, [E5500_LSU_0]>],
258                                  [7, 2], // Latency = 3, Repeat rate = 1
259                                  [E5500_GPR_Bypass, E5500_GPR_Bypass],
260                                  2>, // 2 micro-ops
261   InstrItinData<IIC_LdStLMW,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
262                                   InstrStage<4, [E5500_LSU_0]>],
263                                  [8, 2], // Latency = r+3, Repeat rate = r+3
264                                  [NoBypass, E5500_GPR_Bypass]>,
265   InstrItinData<IIC_LdStLWARX,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
266                                   InstrStage<3, [E5500_LSU_0]>],
267                                  [7, 2, 2], // Latency = 3, Repeat rate = 3
268                                  [E5500_GPR_Bypass,
269                                   E5500_GPR_Bypass, E5500_GPR_Bypass]>,
270   InstrItinData<IIC_LdStSTD,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
271                                   InstrStage<1, [E5500_LSU_0]>],
272                                  [7, 2], // Latency = 3, Repeat rate = 1
273                                  [NoBypass, E5500_GPR_Bypass]>,
274   InstrItinData<IIC_LdStSTDCX,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
275                                   InstrStage<1, [E5500_LSU_0]>],
276                                  [7, 2], // Latency = 3, Repeat rate = 1
277                                  [NoBypass, E5500_GPR_Bypass]>,
278   InstrItinData<IIC_LdStSTU,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
279                                   InstrStage<1, [E5500_SFX0, E5500_SFX1], 0>,
280                                   InstrStage<1, [E5500_LSU_0]>],
281                                  [7, 2], // Latency = 3, Repeat rate = 1
282                                  [NoBypass, E5500_GPR_Bypass],
283                                  2>, // 2 micro-ops
284   InstrItinData<IIC_LdStSTUX,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
285                                   InstrStage<1, [E5500_SFX0, E5500_SFX1], 0>,
286                                   InstrStage<1, [E5500_LSU_0]>],
287                                  [7, 2], // Latency = 3, Repeat rate = 1
288                                  [NoBypass, E5500_GPR_Bypass],
289                                  2>, // 2 micro-ops
290   InstrItinData<IIC_LdStSTWCX,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
291                                   InstrStage<1, [E5500_LSU_0]>],
292                                  [7, 2], // Latency = 3, Repeat rate = 1
293                                  [NoBypass, E5500_GPR_Bypass]>,
294   InstrItinData<IIC_LdStSync,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
295                                   InstrStage<1, [E5500_LSU_0]>]>,
296   InstrItinData<IIC_SprMTMSR,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
297                                   InstrStage<2, [E5500_CFX_0]>],
298                                  [6, 2], // Latency = 2, Repeat rate = 4
299                                  [E5500_GPR_Bypass, E5500_GPR_Bypass]>,
300   InstrItinData<IIC_SprTLBSYNC,  [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
301                                   InstrStage<1, [E5500_LSU_0], 0>]>,
302   InstrItinData<IIC_SprMFCR,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
303                                   InstrStage<5, [E5500_CFX_0]>],
304                                  [9, 2], // Latency = 5, Repeat rate = 5
305                                  [E5500_GPR_Bypass, E5500_CR_Bypass]>,
306   InstrItinData<IIC_SprMFCRF,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
307                                   InstrStage<5, [E5500_CFX_0]>],
308                                  [9, 2], // Latency = 5, Repeat rate = 5
309                                  [E5500_GPR_Bypass, E5500_CR_Bypass]>,
310   InstrItinData<IIC_SprMFPMR,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
311                                   InstrStage<4, [E5500_CFX_0]>],
312                                  [8, 2], // Latency = 4, Repeat rate = 4
313                                  [E5500_GPR_Bypass, E5500_GPR_Bypass]>,
314   InstrItinData<IIC_SprMFSPR,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
315                                   InstrStage<1, [E5500_CFX_0]>],
316                                  [5], // Latency = 1, Repeat rate = 1
317                                  [E5500_GPR_Bypass]>,
318   InstrItinData<IIC_SprMTPMR,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
319                                   InstrStage<1, [E5500_CFX_0]>],
320                                  [5], // Latency = 1, Repeat rate = 1
321                                  [E5500_GPR_Bypass]>,
322   InstrItinData<IIC_SprMFTB,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
323                                   InstrStage<4, [E5500_CFX_0]>],
324                                  [8, 2], // Latency = 4, Repeat rate = 4
325                                  [NoBypass, E5500_GPR_Bypass]>,
326   InstrItinData<IIC_SprMTSPR,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
327                                   InstrStage<1, [E5500_CFX_0]>],
328                                  [5], // Latency = 1, Repeat rate = 1
329                                  [E5500_GPR_Bypass]>,
330   InstrItinData<IIC_FPGeneral,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
331                                   InstrStage<1, [E5500_FPU_0]>],
332                                  [11, 2, 2], // Latency = 7, Repeat rate = 1
333                                  [E5500_FPR_Bypass,
334                                   E5500_FPR_Bypass, E5500_FPR_Bypass]>,
335   InstrItinData<IIC_FPAddSub,    [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
336                                   InstrStage<1, [E5500_FPU_0]>],
337                                  [11, 2, 2], // Latency = 7, Repeat rate = 1
338                                  [E5500_FPR_Bypass,
339                                   E5500_FPR_Bypass, E5500_FPR_Bypass]>,
340   InstrItinData<IIC_FPCompare,   [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
341                                   InstrStage<1, [E5500_FPU_0]>],
342                                  [11, 2, 2], // Latency = 7, Repeat rate = 1
343                                  [E5500_CR_Bypass,
344                                   E5500_FPR_Bypass, E5500_FPR_Bypass]>,
345   InstrItinData<IIC_FPDivD,      [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
346                                   InstrStage<31, [E5500_FPU_0]>],
347                                  [39, 2, 2], // Latency = 35, Repeat rate = 31
348                                  [E5500_FPR_Bypass,
349                                   E5500_FPR_Bypass, E5500_FPR_Bypass]>,
350   InstrItinData<IIC_FPDivS,      [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
351                                   InstrStage<16, [E5500_FPU_0]>],
352                                  [24, 2, 2], // Latency = 20, Repeat rate = 16
353                                  [E5500_FPR_Bypass,
354                                   E5500_FPR_Bypass, E5500_FPR_Bypass]>,
355   InstrItinData<IIC_FPFused,     [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
356                                   InstrStage<1, [E5500_FPU_0]>],
357                                  [11, 2, 2, 2], // Latency = 7, Repeat rate = 1
358                                  [E5500_FPR_Bypass,
359                                   E5500_FPR_Bypass, E5500_FPR_Bypass,
360                                   E5500_FPR_Bypass]>,
361   InstrItinData<IIC_FPRes,       [InstrStage<1, [E5500_DIS0, E5500_DIS1], 0>,
362                                   InstrStage<2, [E5500_FPU_0]>],
363                                  [12, 2], // Latency = 8, Repeat rate = 2
364                                  [E5500_FPR_Bypass, E5500_FPR_Bypass]>
365 ]>;
366
367 // ===---------------------------------------------------------------------===//
368 // e5500 machine model for scheduling and other instruction cost heuristics.
369
370 def PPCE5500Model : SchedMachineModel {
371   let IssueWidth = 2;  // 2 micro-ops are dispatched per cycle.
372   let LoadLatency = 6; // Optimistic load latency assuming bypass.
373                        // This is overriden by OperandCycles if the
374                        // Itineraries are queried instead.
375
376   let CompleteModel = 0;
377
378   let Itineraries = PPCE5500Itineraries;
379 }