blob: 864ada01629c267f4a7844909f09ab13fd9f3367 [file] [log] [blame]
Anton Korobeynikove1676012010-04-07 18:22:11 +00001//=- ARMScheduleA8.td - ARM Cortex-A8 Scheduling Definitions -*- tablegen -*-=//
Jim Grosbache9e3f202010-06-28 04:27:01 +00002//
Anton Korobeynikove1676012010-04-07 18:22:11 +00003// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Jim Grosbache9e3f202010-06-28 04:27:01 +00007//
Anton Korobeynikove1676012010-04-07 18:22:11 +00008//===----------------------------------------------------------------------===//
9//
10// This file defines the itinerary class data for the ARM Cortex A8 processors.
11//
12//===----------------------------------------------------------------------===//
13
14//
15// Scheduling information derived from "Cortex-A8 Technical Reference Manual".
Anton Korobeynikov928eb492010-04-18 20:31:01 +000016// Functional Units.
17def A8_Issue : FuncUnit; // issue
18def A8_Pipe0 : FuncUnit; // pipeline 0
19def A8_Pipe1 : FuncUnit; // pipeline 1
20def A8_LdSt0 : FuncUnit; // pipeline 0 load/store
21def A8_LdSt1 : FuncUnit; // pipeline 1 load/store
22def A8_NPipe : FuncUnit; // NEON ALU/MUL pipe
23def A8_NLSPipe : FuncUnit; // NEON LS pipe
Anton Korobeynikove1676012010-04-07 18:22:11 +000024//
Anton Korobeynikov928eb492010-04-18 20:31:01 +000025// Dual issue pipeline represented by A8_Pipe0 | A8_Pipe1
Anton Korobeynikove1676012010-04-07 18:22:11 +000026//
Anton Korobeynikov928eb492010-04-18 20:31:01 +000027def CortexA8Itineraries : ProcessorItineraries<
28 [A8_Issue, A8_Pipe0, A8_Pipe1, A8_LdSt0, A8_LdSt1, A8_NPipe, A8_NLSPipe], [
Anton Korobeynikove1676012010-04-07 18:22:11 +000029 // Two fully-pipelined integer ALU pipelines
30 //
31 // No operand cycles
Anton Korobeynikov928eb492010-04-18 20:31:01 +000032 InstrItinData<IIC_iALUx , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000033 //
34 // Binary Instructions that produce a result
Jim Grosbache9e3f202010-06-28 04:27:01 +000035 InstrItinData<IIC_iALUi ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
36 InstrItinData<IIC_iALUr ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 2]>,
37 InstrItinData<IIC_iALUsi,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1]>,
38 InstrItinData<IIC_iALUsr,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000039 //
40 // Unary Instructions that produce a result
Jim Grosbache9e3f202010-06-28 04:27:01 +000041 InstrItinData<IIC_iUNAr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
42 InstrItinData<IIC_iUNAsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000043 //
Evan Cheng576a3962010-09-25 00:49:35 +000044 // Zero and sign extension instructions
45 InstrItinData<IIC_iEXTr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
46 InstrItinData<IIC_iEXTAr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1]>,
47 //
Anton Korobeynikove1676012010-04-07 18:22:11 +000048 // Compare instructions
Jim Grosbache9e3f202010-06-28 04:27:01 +000049 InstrItinData<IIC_iCMPi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
50 InstrItinData<IIC_iCMPr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
51 InstrItinData<IIC_iCMPsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
52 InstrItinData<IIC_iCMPsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000053 //
54 // Move instructions, unconditional
Jim Grosbache9e3f202010-06-28 04:27:01 +000055 InstrItinData<IIC_iMOVi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1]>,
Evan Cheng5be39222010-09-24 22:03:46 +000056 InstrItinData<IIC_iMOVix2,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Evan Chengbd30ce42010-09-24 22:41:41 +000057 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +000058 InstrItinData<IIC_iMOVr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
59 InstrItinData<IIC_iMOVsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
60 InstrItinData<IIC_iMOVsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000061 //
62 // Move instructions, conditional
Jim Grosbache9e3f202010-06-28 04:27:01 +000063 InstrItinData<IIC_iCMOVi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
64 InstrItinData<IIC_iCMOVr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
65 InstrItinData<IIC_iCMOVsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
66 InstrItinData<IIC_iCMOVsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000067
68 // Integer multiply pipeline
69 // Result written in E5, but that is relative to the last cycle of multicycle,
70 // so we use 6 for those cases
71 //
Anton Korobeynikov928eb492010-04-18 20:31:01 +000072 InstrItinData<IIC_iMUL16 , [InstrStage<1, [A8_Pipe0]>], [5, 1, 1]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +000073 InstrItinData<IIC_iMAC16 , [InstrStage<1, [A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +000074 InstrStage<2, [A8_Pipe0]>], [6, 1, 1, 4]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +000075 InstrItinData<IIC_iMUL32 , [InstrStage<1, [A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +000076 InstrStage<2, [A8_Pipe0]>], [6, 1, 1]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +000077 InstrItinData<IIC_iMAC32 , [InstrStage<1, [A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +000078 InstrStage<2, [A8_Pipe0]>], [6, 1, 1, 4]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +000079 InstrItinData<IIC_iMUL64 , [InstrStage<2, [A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +000080 InstrStage<3, [A8_Pipe0]>], [6, 6, 1, 1]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +000081 InstrItinData<IIC_iMAC64 , [InstrStage<2, [A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +000082 InstrStage<3, [A8_Pipe0]>], [6, 6, 1, 1]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +000083
Anton Korobeynikove1676012010-04-07 18:22:11 +000084 // Integer load pipeline
85 //
86 // loads have an extra cycle of latency, but are fully pipelined
Anton Korobeynikov928eb492010-04-18 20:31:01 +000087 // use A8_Issue to enforce the 1 load/store per cycle limit
Anton Korobeynikove1676012010-04-07 18:22:11 +000088 //
89 // Immediate offset
Anton Korobeynikov928eb492010-04-18 20:31:01 +000090 InstrItinData<IIC_iLoadi , [InstrStage<1, [A8_Issue], 0>,
91 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
92 InstrStage<1, [A8_LdSt0]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000093 //
94 // Register offset
Anton Korobeynikov928eb492010-04-18 20:31:01 +000095 InstrItinData<IIC_iLoadr , [InstrStage<1, [A8_Issue], 0>,
96 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
97 InstrStage<1, [A8_LdSt0]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000098 //
99 // Scaled register offset, issues over 2 cycles
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000100 InstrItinData<IIC_iLoadsi , [InstrStage<2, [A8_Issue], 0>,
101 InstrStage<1, [A8_Pipe0], 0>,
102 InstrStage<1, [A8_Pipe1]>,
103 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
104 InstrStage<1, [A8_LdSt0]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000105 //
106 // Immediate offset with update
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000107 InstrItinData<IIC_iLoadiu , [InstrStage<1, [A8_Issue], 0>,
108 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
109 InstrStage<1, [A8_LdSt0]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000110 //
111 // Register offset with update
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000112 InstrItinData<IIC_iLoadru , [InstrStage<1, [A8_Issue], 0>,
113 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
114 InstrStage<1, [A8_LdSt0]>], [3, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000115 //
116 // Scaled register offset with update, issues over 2 cycles
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000117 InstrItinData<IIC_iLoadsiu , [InstrStage<2, [A8_Issue], 0>,
118 InstrStage<1, [A8_Pipe0], 0>,
119 InstrStage<1, [A8_Pipe1]>,
120 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
121 InstrStage<1, [A8_LdSt0]>], [4, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000122 //
123 // Load multiple
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000124 InstrItinData<IIC_iLoadm , [InstrStage<2, [A8_Issue], 0>,
125 InstrStage<2, [A8_Pipe0], 0>,
126 InstrStage<2, [A8_Pipe1]>,
127 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
128 InstrStage<1, [A8_LdSt0]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000129
Evan Cheng7602acb2010-09-08 22:57:08 +0000130 //
131 // Load multiple plus branch
132 InstrItinData<IIC_iLoadmBr , [InstrStage<2, [A8_Issue], 0>,
133 InstrStage<2, [A8_Pipe0], 0>,
134 InstrStage<2, [A8_Pipe1]>,
135 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
136 InstrStage<1, [A8_LdSt0]>,
137 InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>,
138
Evan Chengbd30ce42010-09-24 22:41:41 +0000139 //
140 // iLoadi + iALUr for t2LDRpci_pic.
141 InstrItinData<IIC_iLoadiALU, [InstrStage<1, [A8_Issue], 0>,
142 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
143 InstrStage<1, [A8_LdSt0]>,
144 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [4, 1]>,
145
146
Anton Korobeynikove1676012010-04-07 18:22:11 +0000147 // Integer store pipeline
148 //
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000149 // use A8_Issue to enforce the 1 load/store per cycle limit
Anton Korobeynikove1676012010-04-07 18:22:11 +0000150 //
151 // Immediate offset
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000152 InstrItinData<IIC_iStorei , [InstrStage<1, [A8_Issue], 0>,
153 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
154 InstrStage<1, [A8_LdSt0]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000155 //
156 // Register offset
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000157 InstrItinData<IIC_iStorer , [InstrStage<1, [A8_Issue], 0>,
158 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
159 InstrStage<1, [A8_LdSt0]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000160 //
161 // Scaled register offset, issues over 2 cycles
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000162 InstrItinData<IIC_iStoresi , [InstrStage<2, [A8_Issue], 0>,
163 InstrStage<1, [A8_Pipe0], 0>,
164 InstrStage<1, [A8_Pipe1]>,
165 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
166 InstrStage<1, [A8_LdSt0]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000167 //
168 // Immediate offset with update
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000169 InstrItinData<IIC_iStoreiu , [InstrStage<1, [A8_Issue], 0>,
170 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
171 InstrStage<1, [A8_LdSt0]>], [2, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000172 //
173 // Register offset with update
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000174 InstrItinData<IIC_iStoreru , [InstrStage<1, [A8_Issue], 0>,
175 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
176 InstrStage<1, [A8_LdSt0]>], [2, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000177 //
178 // Scaled register offset with update, issues over 2 cycles
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000179 InstrItinData<IIC_iStoresiu, [InstrStage<2, [A8_Issue], 0>,
180 InstrStage<1, [A8_Pipe0], 0>,
181 InstrStage<1, [A8_Pipe1]>,
182 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
183 InstrStage<1, [A8_LdSt0]>], [3, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000184 //
185 // Store multiple
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000186 InstrItinData<IIC_iStorem , [InstrStage<2, [A8_Issue], 0>,
187 InstrStage<2, [A8_Pipe0], 0>,
188 InstrStage<2, [A8_Pipe1]>,
189 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
190 InstrStage<1, [A8_LdSt0]>]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +0000191
Anton Korobeynikove1676012010-04-07 18:22:11 +0000192 // Branch
193 //
194 // no delay slots, so the latency of a branch is unimportant
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000195 InstrItinData<IIC_Br , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000196
197 // VFP
198 // Issue through integer pipeline, and execute in NEON unit. We assume
199 // RunFast mode so that NFP pipeline is used for single-precision when
200 // possible.
201 //
202 // FP Special Register to Integer Register File Move
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000203 InstrItinData<IIC_fpSTAT , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
204 InstrStage<1, [A8_NLSPipe]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000205 //
206 // Single-precision FP Unary
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000207 InstrItinData<IIC_fpUNA32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
208 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000209 //
210 // Double-precision FP Unary
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000211 InstrItinData<IIC_fpUNA64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
212 InstrStage<4, [A8_NPipe], 0>,
213 InstrStage<4, [A8_NLSPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000214 //
215 // Single-precision FP Compare
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000216 InstrItinData<IIC_fpCMP32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
217 InstrStage<1, [A8_NPipe]>], [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000218 //
219 // Double-precision FP Compare
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000220 InstrItinData<IIC_fpCMP64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
221 InstrStage<4, [A8_NPipe], 0>,
222 InstrStage<4, [A8_NLSPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000223 //
224 // Single to Double FP Convert
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000225 InstrItinData<IIC_fpCVTSD , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
226 InstrStage<7, [A8_NPipe], 0>,
227 InstrStage<7, [A8_NLSPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000228 //
229 // Double to Single FP Convert
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000230 InstrItinData<IIC_fpCVTDS , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
231 InstrStage<5, [A8_NPipe], 0>,
232 InstrStage<5, [A8_NLSPipe]>], [5, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000233 //
234 // Single-Precision FP to Integer Convert
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000235 InstrItinData<IIC_fpCVTSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
236 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000237 //
238 // Double-Precision FP to Integer Convert
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000239 InstrItinData<IIC_fpCVTDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
240 InstrStage<8, [A8_NPipe], 0>,
241 InstrStage<8, [A8_NLSPipe]>], [8, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000242 //
243 // Integer to Single-Precision FP Convert
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000244 InstrItinData<IIC_fpCVTIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
245 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000246 //
247 // Integer to Double-Precision FP Convert
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000248 InstrItinData<IIC_fpCVTID , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
249 InstrStage<8, [A8_NPipe], 0>,
250 InstrStage<8, [A8_NLSPipe]>], [8, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000251 //
252 // Single-precision FP ALU
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000253 InstrItinData<IIC_fpALU32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
254 InstrStage<1, [A8_NPipe]>], [7, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000255 //
256 // Double-precision FP ALU
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000257 InstrItinData<IIC_fpALU64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
258 InstrStage<9, [A8_NPipe], 0>,
259 InstrStage<9, [A8_NLSPipe]>], [9, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000260 //
261 // Single-precision FP Multiply
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000262 InstrItinData<IIC_fpMUL32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
263 InstrStage<1, [A8_NPipe]>], [7, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000264 //
265 // Double-precision FP Multiply
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000266 InstrItinData<IIC_fpMUL64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
267 InstrStage<11, [A8_NPipe], 0>,
268 InstrStage<11, [A8_NLSPipe]>], [11, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000269 //
270 // Single-precision FP MAC
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000271 InstrItinData<IIC_fpMAC32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
272 InstrStage<1, [A8_NPipe]>], [7, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000273 //
274 // Double-precision FP MAC
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000275 InstrItinData<IIC_fpMAC64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
276 InstrStage<19, [A8_NPipe], 0>,
277 InstrStage<19, [A8_NLSPipe]>], [19, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000278 //
279 // Single-precision FP DIV
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000280 InstrItinData<IIC_fpDIV32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
281 InstrStage<20, [A8_NPipe], 0>,
282 InstrStage<20, [A8_NLSPipe]>], [20, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000283 //
284 // Double-precision FP DIV
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000285 InstrItinData<IIC_fpDIV64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
286 InstrStage<29, [A8_NPipe], 0>,
287 InstrStage<29, [A8_NLSPipe]>], [29, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000288 //
289 // Single-precision FP SQRT
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000290 InstrItinData<IIC_fpSQRT32, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
291 InstrStage<19, [A8_NPipe], 0>,
292 InstrStage<19, [A8_NLSPipe]>], [19, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000293 //
294 // Double-precision FP SQRT
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000295 InstrItinData<IIC_fpSQRT64, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
296 InstrStage<29, [A8_NPipe], 0>,
297 InstrStage<29, [A8_NLSPipe]>], [29, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000298 //
299 // Single-precision FP Load
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000300 // use A8_Issue to enforce the 1 load/store per cycle limit
Jim Grosbache9e3f202010-06-28 04:27:01 +0000301 InstrItinData<IIC_fpLoad32, [InstrStage<1, [A8_Issue], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000302 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
303 InstrStage<1, [A8_LdSt0], 0>,
304 InstrStage<1, [A8_NLSPipe]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000305 //
306 // Double-precision FP Load
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000307 // use A8_Issue to enforce the 1 load/store per cycle limit
Jim Grosbache9e3f202010-06-28 04:27:01 +0000308 InstrItinData<IIC_fpLoad64, [InstrStage<2, [A8_Issue], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000309 InstrStage<1, [A8_Pipe0], 0>,
310 InstrStage<1, [A8_Pipe1]>,
311 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
312 InstrStage<1, [A8_LdSt0], 0>,
313 InstrStage<1, [A8_NLSPipe]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000314 //
315 // FP Load Multiple
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000316 // use A8_Issue to enforce the 1 load/store per cycle limit
Jim Grosbache9e3f202010-06-28 04:27:01 +0000317 InstrItinData<IIC_fpLoadm, [InstrStage<3, [A8_Issue], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000318 InstrStage<2, [A8_Pipe0], 0>,
319 InstrStage<2, [A8_Pipe1]>,
320 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
321 InstrStage<1, [A8_LdSt0], 0>,
322 InstrStage<1, [A8_NLSPipe]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000323 //
324 // Single-precision FP Store
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000325 // use A8_Issue to enforce the 1 load/store per cycle limit
Jim Grosbache9e3f202010-06-28 04:27:01 +0000326 InstrItinData<IIC_fpStore32,[InstrStage<1, [A8_Issue], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000327 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
328 InstrStage<1, [A8_LdSt0], 0>,
329 InstrStage<1, [A8_NLSPipe]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000330 //
331 // Double-precision FP Store
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000332 // use A8_Issue to enforce the 1 load/store per cycle limit
Jim Grosbache9e3f202010-06-28 04:27:01 +0000333 InstrItinData<IIC_fpStore64,[InstrStage<2, [A8_Issue], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000334 InstrStage<1, [A8_Pipe0], 0>,
335 InstrStage<1, [A8_Pipe1]>,
336 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
337 InstrStage<1, [A8_LdSt0], 0>,
338 InstrStage<1, [A8_NLSPipe]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000339 //
340 // FP Store Multiple
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000341 // use A8_Issue to enforce the 1 load/store per cycle limit
Jim Grosbache9e3f202010-06-28 04:27:01 +0000342 InstrItinData<IIC_fpStorem, [InstrStage<3, [A8_Issue], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000343 InstrStage<2, [A8_Pipe0], 0>,
344 InstrStage<2, [A8_Pipe1]>,
345 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
346 InstrStage<1, [A8_LdSt0], 0>,
347 InstrStage<1, [A8_NLSPipe]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000348
349 // NEON
350 // Issue through integer pipeline, and execute in NEON unit.
351 //
352 // VLD1
353 // FIXME: We don't model this instruction properly
Jim Grosbache9e3f202010-06-28 04:27:01 +0000354 InstrItinData<IIC_VLD1, [InstrStage<1, [A8_Issue], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000355 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
356 InstrStage<1, [A8_LdSt0], 0>,
357 InstrStage<1, [A8_NLSPipe]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000358 //
359 // VLD2
360 // FIXME: We don't model this instruction properly
Jim Grosbache9e3f202010-06-28 04:27:01 +0000361 InstrItinData<IIC_VLD2, [InstrStage<1, [A8_Issue], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000362 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
363 InstrStage<1, [A8_LdSt0], 0>,
364 InstrStage<1, [A8_NLSPipe]>], [2, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000365 //
366 // VLD3
367 // FIXME: We don't model this instruction properly
Jim Grosbache9e3f202010-06-28 04:27:01 +0000368 InstrItinData<IIC_VLD3, [InstrStage<1, [A8_Issue], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000369 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
370 InstrStage<1, [A8_LdSt0], 0>,
371 InstrStage<1, [A8_NLSPipe]>], [2, 2, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000372 //
373 // VLD4
374 // FIXME: We don't model this instruction properly
Jim Grosbache9e3f202010-06-28 04:27:01 +0000375 InstrItinData<IIC_VLD4, [InstrStage<1, [A8_Issue], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000376 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
377 InstrStage<1, [A8_LdSt0], 0>,
378 InstrStage<1, [A8_NLSPipe]>], [2, 2, 2, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000379 //
380 // VST
381 // FIXME: We don't model this instruction properly
Jim Grosbache9e3f202010-06-28 04:27:01 +0000382 InstrItinData<IIC_VST, [InstrStage<1, [A8_Issue], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000383 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
384 InstrStage<1, [A8_LdSt0], 0>,
385 InstrStage<1, [A8_NLSPipe]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000386 //
387 // Double-register FP Unary
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000388 InstrItinData<IIC_VUNAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
389 InstrStage<1, [A8_NPipe]>], [5, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000390 //
391 // Quad-register FP Unary
392 // Result written in N5, but that is relative to the last cycle of multicycle,
393 // so we use 6 for those cases
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000394 InstrItinData<IIC_VUNAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
395 InstrStage<2, [A8_NPipe]>], [6, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000396 //
397 // Double-register FP Binary
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000398 InstrItinData<IIC_VBIND, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
399 InstrStage<1, [A8_NPipe]>], [5, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000400 //
401 // Quad-register FP Binary
402 // Result written in N5, but that is relative to the last cycle of multicycle,
403 // so we use 6 for those cases
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000404 InstrItinData<IIC_VBINQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
405 InstrStage<2, [A8_NPipe]>], [6, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000406 //
407 // Move Immediate
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000408 InstrItinData<IIC_VMOVImm, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
409 InstrStage<1, [A8_NPipe]>], [3]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000410 //
411 // Double-register Permute Move
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000412 InstrItinData<IIC_VMOVD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
413 InstrStage<1, [A8_NLSPipe]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000414 //
415 // Quad-register Permute Move
416 // Result written in N2, but that is relative to the last cycle of multicycle,
417 // so we use 3 for those cases
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000418 InstrItinData<IIC_VMOVQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
419 InstrStage<2, [A8_NLSPipe]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000420 //
421 // Integer to Single-precision Move
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000422 InstrItinData<IIC_VMOVIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
423 InstrStage<1, [A8_NLSPipe]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000424 //
425 // Integer to Double-precision Move
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000426 InstrItinData<IIC_VMOVID , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
427 InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000428 //
429 // Single-precision to Integer Move
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000430 InstrItinData<IIC_VMOVSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
431 InstrStage<1, [A8_NLSPipe]>], [20, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000432 //
433 // Double-precision to Integer Move
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000434 InstrItinData<IIC_VMOVDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
435 InstrStage<1, [A8_NLSPipe]>], [20, 20, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000436 //
437 // Integer to Lane Move
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000438 InstrItinData<IIC_VMOVISL , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
439 InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000440 //
441 // Double-register Permute
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000442 InstrItinData<IIC_VPERMD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
443 InstrStage<1, [A8_NLSPipe]>], [2, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000444 //
445 // Quad-register Permute
446 // Result written in N2, but that is relative to the last cycle of multicycle,
447 // so we use 3 for those cases
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000448 InstrItinData<IIC_VPERMQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
449 InstrStage<2, [A8_NLSPipe]>], [3, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000450 //
451 // Quad-register Permute (3 cycle issue)
452 // Result written in N2, but that is relative to the last cycle of multicycle,
453 // so we use 4 for those cases
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000454 InstrItinData<IIC_VPERMQ3, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
455 InstrStage<1, [A8_NLSPipe]>,
456 InstrStage<1, [A8_NPipe], 0>,
457 InstrStage<2, [A8_NLSPipe]>], [4, 4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000458 //
459 // Double-register FP Multiple-Accumulate
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000460 InstrItinData<IIC_VMACD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
461 InstrStage<1, [A8_NPipe]>], [9, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000462 //
463 // Quad-register FP Multiple-Accumulate
464 // Result written in N9, but that is relative to the last cycle of multicycle,
465 // so we use 10 for those cases
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000466 InstrItinData<IIC_VMACQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
467 InstrStage<2, [A8_NPipe]>], [10, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000468 //
469 // Double-register Reciprical Step
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000470 InstrItinData<IIC_VRECSD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
471 InstrStage<1, [A8_NPipe]>], [9, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000472 //
473 // Quad-register Reciprical Step
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000474 InstrItinData<IIC_VRECSQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
475 InstrStage<2, [A8_NPipe]>], [10, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000476 //
477 // Double-register Integer Count
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000478 InstrItinData<IIC_VCNTiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
479 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000480 //
481 // Quad-register Integer Count
482 // Result written in N3, but that is relative to the last cycle of multicycle,
483 // so we use 4 for those cases
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000484 InstrItinData<IIC_VCNTiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
485 InstrStage<2, [A8_NPipe]>], [4, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000486 //
487 // Double-register Integer Unary
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000488 InstrItinData<IIC_VUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
489 InstrStage<1, [A8_NPipe]>], [4, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000490 //
491 // Quad-register Integer Unary
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000492 InstrItinData<IIC_VUNAiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
493 InstrStage<1, [A8_NPipe]>], [4, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000494 //
495 // Double-register Integer Q-Unary
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000496 InstrItinData<IIC_VQUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
497 InstrStage<1, [A8_NPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000498 //
499 // Quad-register Integer CountQ-Unary
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000500 InstrItinData<IIC_VQUNAiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
501 InstrStage<1, [A8_NPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000502 //
503 // Double-register Integer Binary
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000504 InstrItinData<IIC_VBINiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
505 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000506 //
507 // Quad-register Integer Binary
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000508 InstrItinData<IIC_VBINiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
509 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000510 //
511 // Double-register Integer Binary (4 cycle)
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000512 InstrItinData<IIC_VBINi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
513 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000514 //
515 // Quad-register Integer Binary (4 cycle)
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000516 InstrItinData<IIC_VBINi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
517 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000518
519 //
520 // Double-register Integer Subtract
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000521 InstrItinData<IIC_VSUBiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
522 InstrStage<1, [A8_NPipe]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000523 //
524 // Quad-register Integer Subtract
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000525 InstrItinData<IIC_VSUBiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
526 InstrStage<1, [A8_NPipe]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000527 //
528 // Double-register Integer Subtract
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000529 InstrItinData<IIC_VSUBi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
530 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000531 //
532 // Quad-register Integer Subtract
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000533 InstrItinData<IIC_VSUBi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
534 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000535 //
536 // Double-register Integer Shift
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000537 InstrItinData<IIC_VSHLiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
538 InstrStage<1, [A8_NPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000539 //
540 // Quad-register Integer Shift
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000541 InstrItinData<IIC_VSHLiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
542 InstrStage<2, [A8_NPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000543 //
544 // Double-register Integer Shift (4 cycle)
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000545 InstrItinData<IIC_VSHLi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
546 InstrStage<1, [A8_NPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000547 //
548 // Quad-register Integer Shift (4 cycle)
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000549 InstrItinData<IIC_VSHLi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
550 InstrStage<2, [A8_NPipe]>], [5, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000551 //
552 // Double-register Integer Pair Add Long
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000553 InstrItinData<IIC_VPALiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
554 InstrStage<1, [A8_NPipe]>], [6, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000555 //
556 // Quad-register Integer Pair Add Long
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000557 InstrItinData<IIC_VPALiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
558 InstrStage<2, [A8_NPipe]>], [7, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000559 //
560 // Double-register Absolute Difference and Accumulate
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000561 InstrItinData<IIC_VABAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
562 InstrStage<1, [A8_NPipe]>], [6, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000563 //
564 // Quad-register Absolute Difference and Accumulate
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000565 InstrItinData<IIC_VABAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
566 InstrStage<2, [A8_NPipe]>], [6, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000567
568 //
569 // Double-register Integer Multiply (.8, .16)
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000570 InstrItinData<IIC_VMULi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
571 InstrStage<1, [A8_NPipe]>], [6, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000572 //
573 // Double-register Integer Multiply (.32)
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000574 InstrItinData<IIC_VMULi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
575 InstrStage<2, [A8_NPipe]>], [7, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000576 //
577 // Quad-register Integer Multiply (.8, .16)
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000578 InstrItinData<IIC_VMULi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
579 InstrStage<2, [A8_NPipe]>], [7, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000580 //
581 // Quad-register Integer Multiply (.32)
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000582 InstrItinData<IIC_VMULi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
583 InstrStage<1, [A8_NPipe]>,
584 InstrStage<2, [A8_NLSPipe], 0>,
585 InstrStage<3, [A8_NPipe]>], [9, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000586 //
587 // Double-register Integer Multiply-Accumulate (.8, .16)
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000588 InstrItinData<IIC_VMACi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
589 InstrStage<1, [A8_NPipe]>], [6, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000590 //
591 // Double-register Integer Multiply-Accumulate (.32)
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000592 InstrItinData<IIC_VMACi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
593 InstrStage<2, [A8_NPipe]>], [7, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000594 //
595 // Quad-register Integer Multiply-Accumulate (.8, .16)
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000596 InstrItinData<IIC_VMACi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
597 InstrStage<2, [A8_NPipe]>], [7, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000598 //
599 // Quad-register Integer Multiply-Accumulate (.32)
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000600 InstrItinData<IIC_VMACi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
601 InstrStage<1, [A8_NPipe]>,
602 InstrStage<2, [A8_NLSPipe], 0>,
603 InstrStage<3, [A8_NPipe]>], [9, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000604 //
605 // Double-register VEXT
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000606 InstrItinData<IIC_VEXTD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
607 InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000608 //
609 // Quad-register VEXT
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000610 InstrItinData<IIC_VEXTQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
611 InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000612 //
613 // VTB
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000614 InstrItinData<IIC_VTB1, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
615 InstrStage<2, [A8_NLSPipe]>], [3, 2, 1]>,
616 InstrItinData<IIC_VTB2, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
617 InstrStage<2, [A8_NLSPipe]>], [3, 2, 2, 1]>,
618 InstrItinData<IIC_VTB3, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
619 InstrStage<1, [A8_NLSPipe]>,
620 InstrStage<1, [A8_NPipe], 0>,
621 InstrStage<2, [A8_NLSPipe]>], [4, 2, 2, 3, 1]>,
622 InstrItinData<IIC_VTB4, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
623 InstrStage<1, [A8_NLSPipe]>,
624 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +0000625 InstrStage<2, [A8_NLSPipe]>],[4, 2, 2, 3, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000626 //
627 // VTBX
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000628 InstrItinData<IIC_VTBX1, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
629 InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 1]>,
630 InstrItinData<IIC_VTBX2, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
631 InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 2, 1]>,
632 InstrItinData<IIC_VTBX3, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
633 InstrStage<1, [A8_NLSPipe]>,
634 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +0000635 InstrStage<2, [A8_NLSPipe]>],[4, 1, 2, 2, 3, 1]>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000636 InstrItinData<IIC_VTBX4, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
637 InstrStage<1, [A8_NLSPipe]>,
638 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +0000639 InstrStage<2, [A8_NLSPipe]>], [4, 1, 2, 2, 3, 3, 1]>
Anton Korobeynikove1676012010-04-07 18:22:11 +0000640]>;