blob: bcd6c78ae9cd82f4c2f600dac3d36595bd91b8a4 [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.
Anton Korobeynikov928eb492010-04-18 20:31:01 +000017def A8_Pipe0 : FuncUnit; // pipeline 0
18def A8_Pipe1 : FuncUnit; // pipeline 1
Evan Chengd2ca8132010-10-09 01:03:04 +000019def A8_LSPipe : FuncUnit; // Load / store pipeline
Anton Korobeynikov928eb492010-04-18 20:31:01 +000020def A8_NPipe : FuncUnit; // NEON ALU/MUL pipe
21def A8_NLSPipe : FuncUnit; // NEON LS pipe
Anton Korobeynikove1676012010-04-07 18:22:11 +000022//
Anton Korobeynikov928eb492010-04-18 20:31:01 +000023// Dual issue pipeline represented by A8_Pipe0 | A8_Pipe1
Anton Korobeynikove1676012010-04-07 18:22:11 +000024//
Anton Korobeynikov928eb492010-04-18 20:31:01 +000025def CortexA8Itineraries : ProcessorItineraries<
Evan Chengd2ca8132010-10-09 01:03:04 +000026 [A8_Pipe0, A8_Pipe1, A8_LSPipe, A8_NPipe, A8_NLSPipe],
Evan Cheng63d66ee2010-09-28 23:50:49 +000027 [], [
Anton Korobeynikove1676012010-04-07 18:22:11 +000028 // Two fully-pipelined integer ALU pipelines
29 //
30 // No operand cycles
Anton Korobeynikov928eb492010-04-18 20:31:01 +000031 InstrItinData<IIC_iALUx , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000032 //
33 // Binary Instructions that produce a result
Jim Grosbache9e3f202010-06-28 04:27:01 +000034 InstrItinData<IIC_iALUi ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
35 InstrItinData<IIC_iALUr ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 2]>,
36 InstrItinData<IIC_iALUsi,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1]>,
Evan Cheng3881cb72010-09-29 22:42:35 +000037 InstrItinData<IIC_iALUsir,[InstrStage<1,[A8_Pipe0, A8_Pipe1]>], [2, 1, 2]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +000038 InstrItinData<IIC_iALUsr,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000039 //
Evan Cheng7e1bf302010-09-29 00:27:46 +000040 // Bitwise Instructions that produce a result
41 InstrItinData<IIC_iBITi ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
42 InstrItinData<IIC_iBITr ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 2]>,
43 InstrItinData<IIC_iBITsi,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1]>,
44 InstrItinData<IIC_iBITsr,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1, 1]>,
45 //
Anton Korobeynikove1676012010-04-07 18:22:11 +000046 // Unary Instructions that produce a result
Jim Grosbache9e3f202010-06-28 04:27:01 +000047 InstrItinData<IIC_iUNAr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
48 InstrItinData<IIC_iUNAsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000049 //
Evan Cheng576a3962010-09-25 00:49:35 +000050 // Zero and sign extension instructions
51 InstrItinData<IIC_iEXTr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
52 InstrItinData<IIC_iEXTAr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1]>,
Evan Cheng7e1bf302010-09-29 00:27:46 +000053 InstrItinData<IIC_iEXTAsr,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>],[2, 2, 1, 1]>,
Evan Cheng576a3962010-09-25 00:49:35 +000054 //
Anton Korobeynikove1676012010-04-07 18:22:11 +000055 // Compare instructions
Jim Grosbache9e3f202010-06-28 04:27:01 +000056 InstrItinData<IIC_iCMPi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
57 InstrItinData<IIC_iCMPr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
58 InstrItinData<IIC_iCMPsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
59 InstrItinData<IIC_iCMPsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000060 //
Evan Cheng5d42c562010-09-29 00:49:25 +000061 // Test instructions
62 InstrItinData<IIC_iTSTi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
63 InstrItinData<IIC_iTSTr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
64 InstrItinData<IIC_iTSTsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
65 InstrItinData<IIC_iTSTsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>,
66 //
Anton Korobeynikove1676012010-04-07 18:22:11 +000067 // Move instructions, unconditional
Jim Grosbache9e3f202010-06-28 04:27:01 +000068 InstrItinData<IIC_iMOVi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1]>,
69 InstrItinData<IIC_iMOVr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
70 InstrItinData<IIC_iMOVsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
71 InstrItinData<IIC_iMOVsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1, 1]>,
Evan Cheng5d42c562010-09-29 00:49:25 +000072 InstrItinData<IIC_iMOVix2,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
73 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000074 //
75 // Move instructions, conditional
Jim Grosbache9e3f202010-06-28 04:27:01 +000076 InstrItinData<IIC_iCMOVi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
77 InstrItinData<IIC_iCMOVr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
78 InstrItinData<IIC_iCMOVsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
79 InstrItinData<IIC_iCMOVsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>,
Evan Chengc47f7d62010-11-13 05:14:20 +000080 InstrItinData<IIC_iCMOVix2,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
81 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [3, 1]>,
Evan Cheng5d42c562010-09-29 00:49:25 +000082 //
83 // MVN instructions
84 InstrItinData<IIC_iMVNi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1]>,
85 InstrItinData<IIC_iMVNr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
86 InstrItinData<IIC_iMVNsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
87 InstrItinData<IIC_iMVNsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000088
89 // Integer multiply pipeline
90 // Result written in E5, but that is relative to the last cycle of multicycle,
91 // so we use 6 for those cases
92 //
Anton Korobeynikov928eb492010-04-18 20:31:01 +000093 InstrItinData<IIC_iMUL16 , [InstrStage<1, [A8_Pipe0]>], [5, 1, 1]>,
Evan Cheng8ae6ffa2010-10-09 01:15:04 +000094 InstrItinData<IIC_iMAC16 , [InstrStage<2, [A8_Pipe0]>], [6, 1, 1, 4]>,
95 InstrItinData<IIC_iMUL32 , [InstrStage<2, [A8_Pipe0]>], [6, 1, 1]>,
96 InstrItinData<IIC_iMAC32 , [InstrStage<2, [A8_Pipe0]>], [6, 1, 1, 4]>,
97 InstrItinData<IIC_iMUL64 , [InstrStage<3, [A8_Pipe0]>], [6, 6, 1, 1]>,
98 InstrItinData<IIC_iMAC64 , [InstrStage<3, [A8_Pipe0]>], [6, 6, 1, 1]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +000099
Anton Korobeynikove1676012010-04-07 18:22:11 +0000100 // Integer load pipeline
101 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000102 // Immediate offset
Evan Cheng41957f62010-11-03 00:40:22 +0000103 InstrItinData<IIC_iLoad_i , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000104 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000105 InstrItinData<IIC_iLoad_bh_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000106 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000107 InstrItinData<IIC_iLoad_d_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000108 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000109 //
110 // Register offset
Evan Cheng41957f62010-11-03 00:40:22 +0000111 InstrItinData<IIC_iLoad_r , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000112 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000113 InstrItinData<IIC_iLoad_bh_r, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000114 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000115 InstrItinData<IIC_iLoad_d_r , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000116 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000117 //
118 // Scaled register offset, issues over 2 cycles
Evan Chengd2ca8132010-10-09 01:03:04 +0000119 // FIXME: lsl by 2 takes 1 cycle.
Evan Cheng41957f62010-11-03 00:40:22 +0000120 InstrItinData<IIC_iLoad_si , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000121 InstrStage<1, [A8_LSPipe]>], [4, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000122 InstrItinData<IIC_iLoad_bh_si,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000123 InstrStage<1, [A8_LSPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000124 //
125 // Immediate offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000126 InstrItinData<IIC_iLoad_iu , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000127 InstrStage<1, [A8_LSPipe]>], [3, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000128 InstrItinData<IIC_iLoad_bh_iu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000129 InstrStage<1, [A8_LSPipe]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000130 //
131 // Register offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000132 InstrItinData<IIC_iLoad_ru , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000133 InstrStage<1, [A8_LSPipe]>], [3, 2, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000134 InstrItinData<IIC_iLoad_bh_ru,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000135 InstrStage<1, [A8_LSPipe]>], [3, 2, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000136 InstrItinData<IIC_iLoad_d_ru, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000137 InstrStage<1, [A8_LSPipe]>], [3, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000138 //
139 // Scaled register offset with update, issues over 2 cycles
Evan Cheng41957f62010-11-03 00:40:22 +0000140 InstrItinData<IIC_iLoad_siu , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
141 InstrStage<2, [A8_LSPipe]>], [4, 3, 1, 1]>,
142 InstrItinData<IIC_iLoad_bh_siu,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
143 InstrStage<2, [A8_LSPipe]>], [4, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000144 //
Evan Chengd2ca8132010-10-09 01:03:04 +0000145 // Load multiple, def is the 5th operand. Pipeline 0 only.
146 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers.
Evan Cheng41957f62010-11-03 00:40:22 +0000147 InstrItinData<IIC_iLoad_m , [InstrStage<2, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000148 InstrStage<2, [A8_LSPipe]>], [1, 1, 1, 1, 3]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000149 //
150 // Load multiple + update, defs are the 1st and 5th operands.
Evan Cheng41957f62010-11-03 00:40:22 +0000151 InstrItinData<IIC_iLoad_mu , [InstrStage<3, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000152 InstrStage<3, [A8_LSPipe]>], [2, 1, 1, 1, 3]>,
Evan Cheng7602acb2010-09-08 22:57:08 +0000153 //
154 // Load multiple plus branch
Evan Cheng41957f62010-11-03 00:40:22 +0000155 InstrItinData<IIC_iLoad_mBr, [InstrStage<3, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000156 InstrStage<3, [A8_LSPipe]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000157 InstrStage<1, [A8_Pipe0, A8_Pipe1]>],
158 [1, 2, 1, 1, 3]>,
159 //
160 // Pop, def is the 3rd operand.
Evan Cheng41957f62010-11-03 00:40:22 +0000161 InstrItinData<IIC_iPop , [InstrStage<3, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000162 InstrStage<3, [A8_LSPipe]>], [1, 1, 3]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000163 //
164 // Push, def is the 3th operand.
Evan Cheng41957f62010-11-03 00:40:22 +0000165 InstrItinData<IIC_iPop_Br, [InstrStage<3, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000166 InstrStage<3, [A8_LSPipe]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000167 InstrStage<1, [A8_Pipe0, A8_Pipe1]>],
168 [1, 1, 3]>,
Evan Cheng7602acb2010-09-08 22:57:08 +0000169
Evan Chengbd30ce42010-09-24 22:41:41 +0000170 //
171 // iLoadi + iALUr for t2LDRpci_pic.
Evan Cheng41957f62010-11-03 00:40:22 +0000172 InstrItinData<IIC_iLoadiALU, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000173 InstrStage<1, [A8_LSPipe]>,
Evan Chengbd30ce42010-09-24 22:41:41 +0000174 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [4, 1]>,
175
176
Anton Korobeynikove1676012010-04-07 18:22:11 +0000177 // Integer store pipeline
178 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000179 // Immediate offset
Evan Cheng41957f62010-11-03 00:40:22 +0000180 InstrItinData<IIC_iStore_i , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000181 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000182 InstrItinData<IIC_iStore_bh_i,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000183 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000184 InstrItinData<IIC_iStore_d_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000185 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000186 //
187 // Register offset
Evan Cheng41957f62010-11-03 00:40:22 +0000188 InstrItinData<IIC_iStore_r , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000189 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000190 InstrItinData<IIC_iStore_bh_r,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000191 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000192 InstrItinData<IIC_iStore_d_r, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000193 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000194 //
195 // Scaled register offset, issues over 2 cycles
Evan Cheng41957f62010-11-03 00:40:22 +0000196 InstrItinData<IIC_iStore_si , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000197 InstrStage<2, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000198 InstrItinData<IIC_iStore_bh_si,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000199 InstrStage<2, [A8_LSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000200 //
201 // Immediate offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000202 InstrItinData<IIC_iStore_iu , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000203 InstrStage<1, [A8_LSPipe]>], [2, 3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000204 InstrItinData<IIC_iStore_bh_iu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000205 InstrStage<1, [A8_LSPipe]>], [2, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000206 //
207 // Register offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000208 InstrItinData<IIC_iStore_ru , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000209 InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000210 InstrItinData<IIC_iStore_bh_ru,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000211 InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000212 InstrItinData<IIC_iStore_d_ru, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000213 InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000214 //
215 // Scaled register offset with update, issues over 2 cycles
Evan Cheng41957f62010-11-03 00:40:22 +0000216 InstrItinData<IIC_iStore_siu, [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000217 InstrStage<2, [A8_LSPipe]>], [3, 3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000218 InstrItinData<IIC_iStore_bh_siu,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000219 InstrStage<2, [A8_LSPipe]>], [3, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000220 //
Evan Chengd2ca8132010-10-09 01:03:04 +0000221 // Store multiple. Pipeline 0 only.
222 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers.
Evan Cheng41957f62010-11-03 00:40:22 +0000223 InstrItinData<IIC_iStore_m , [InstrStage<2, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000224 InstrStage<2, [A8_LSPipe]>]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000225 //
226 // Store multiple + update
Evan Cheng41957f62010-11-03 00:40:22 +0000227 InstrItinData<IIC_iStore_mu, [InstrStage<2, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000228 InstrStage<2, [A8_LSPipe]>], [2]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +0000229
Evan Chengdfed19f2010-11-03 06:34:55 +0000230 //
231 // Preload
232 InstrItinData<IIC_Preload, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
233
Anton Korobeynikove1676012010-04-07 18:22:11 +0000234 // Branch
235 //
236 // no delay slots, so the latency of a branch is unimportant
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000237 InstrItinData<IIC_Br , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000238
239 // VFP
240 // Issue through integer pipeline, and execute in NEON unit. We assume
241 // RunFast mode so that NFP pipeline is used for single-precision when
242 // possible.
243 //
244 // FP Special Register to Integer Register File Move
Evan Cheng41957f62010-11-03 00:40:22 +0000245 InstrItinData<IIC_fpSTAT , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chenge09206d2010-10-29 23:16:55 +0000246 InstrStage<1, [A8_NLSPipe]>], [20]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000247 //
248 // Single-precision FP Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000249 InstrItinData<IIC_fpUNA32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000250 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000251 //
252 // Double-precision FP Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000253 InstrItinData<IIC_fpUNA64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000254 InstrStage<4, [A8_NPipe], 0>,
255 InstrStage<4, [A8_NLSPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000256 //
257 // Single-precision FP Compare
Evan Cheng41957f62010-11-03 00:40:22 +0000258 InstrItinData<IIC_fpCMP32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000259 InstrStage<1, [A8_NPipe]>], [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000260 //
261 // Double-precision FP Compare
Evan Cheng41957f62010-11-03 00:40:22 +0000262 InstrItinData<IIC_fpCMP64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000263 InstrStage<4, [A8_NPipe], 0>,
264 InstrStage<4, [A8_NLSPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000265 //
266 // Single to Double FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000267 InstrItinData<IIC_fpCVTSD , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000268 InstrStage<7, [A8_NPipe], 0>,
269 InstrStage<7, [A8_NLSPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000270 //
271 // Double to Single FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000272 InstrItinData<IIC_fpCVTDS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000273 InstrStage<5, [A8_NPipe], 0>,
274 InstrStage<5, [A8_NLSPipe]>], [5, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000275 //
276 // Single-Precision FP to Integer Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000277 InstrItinData<IIC_fpCVTSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000278 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000279 //
280 // Double-Precision FP to Integer Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000281 InstrItinData<IIC_fpCVTDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000282 InstrStage<8, [A8_NPipe], 0>,
283 InstrStage<8, [A8_NLSPipe]>], [8, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000284 //
285 // Integer to Single-Precision FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000286 InstrItinData<IIC_fpCVTIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000287 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000288 //
289 // Integer to Double-Precision FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000290 InstrItinData<IIC_fpCVTID , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000291 InstrStage<8, [A8_NPipe], 0>,
292 InstrStage<8, [A8_NLSPipe]>], [8, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000293 //
294 // Single-precision FP ALU
Evan Cheng41957f62010-11-03 00:40:22 +0000295 InstrItinData<IIC_fpALU32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000296 InstrStage<1, [A8_NPipe]>], [7, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000297 //
298 // Double-precision FP ALU
Evan Cheng41957f62010-11-03 00:40:22 +0000299 InstrItinData<IIC_fpALU64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000300 InstrStage<9, [A8_NPipe], 0>,
301 InstrStage<9, [A8_NLSPipe]>], [9, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000302 //
303 // Single-precision FP Multiply
Evan Cheng41957f62010-11-03 00:40:22 +0000304 InstrItinData<IIC_fpMUL32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000305 InstrStage<1, [A8_NPipe]>], [7, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000306 //
307 // Double-precision FP Multiply
Evan Cheng41957f62010-11-03 00:40:22 +0000308 InstrItinData<IIC_fpMUL64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000309 InstrStage<11, [A8_NPipe], 0>,
310 InstrStage<11, [A8_NLSPipe]>], [11, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000311 //
312 // Single-precision FP MAC
Evan Cheng41957f62010-11-03 00:40:22 +0000313 InstrItinData<IIC_fpMAC32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000314 InstrStage<1, [A8_NPipe]>], [7, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000315 //
316 // Double-precision FP MAC
Evan Cheng41957f62010-11-03 00:40:22 +0000317 InstrItinData<IIC_fpMAC64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000318 InstrStage<19, [A8_NPipe], 0>,
319 InstrStage<19, [A8_NLSPipe]>], [19, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000320 //
321 // Single-precision FP DIV
Evan Cheng41957f62010-11-03 00:40:22 +0000322 InstrItinData<IIC_fpDIV32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000323 InstrStage<20, [A8_NPipe], 0>,
324 InstrStage<20, [A8_NLSPipe]>], [20, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000325 //
326 // Double-precision FP DIV
Evan Cheng41957f62010-11-03 00:40:22 +0000327 InstrItinData<IIC_fpDIV64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000328 InstrStage<29, [A8_NPipe], 0>,
329 InstrStage<29, [A8_NLSPipe]>], [29, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000330 //
331 // Single-precision FP SQRT
Evan Cheng41957f62010-11-03 00:40:22 +0000332 InstrItinData<IIC_fpSQRT32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000333 InstrStage<19, [A8_NPipe], 0>,
334 InstrStage<19, [A8_NLSPipe]>], [19, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000335 //
336 // Double-precision FP SQRT
Evan Cheng41957f62010-11-03 00:40:22 +0000337 InstrItinData<IIC_fpSQRT64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000338 InstrStage<29, [A8_NPipe], 0>,
339 InstrStage<29, [A8_NLSPipe]>], [29, 1]>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000340
341 //
342 // Integer to Single-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000343 InstrItinData<IIC_fpMOVIS, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000344 InstrStage<1, [A8_NPipe]>],
345 [2, 1]>,
346 //
347 // Integer to Double-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000348 InstrItinData<IIC_fpMOVID, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000349 InstrStage<1, [A8_NPipe]>],
350 [2, 1, 1]>,
351 //
352 // Single-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000353 InstrItinData<IIC_fpMOVSI, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000354 InstrStage<1, [A8_NPipe]>],
355 [20, 1]>,
356 //
357 // Double-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000358 InstrItinData<IIC_fpMOVDI, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000359 InstrStage<1, [A8_NPipe]>],
360 [20, 20, 1]>,
361
Anton Korobeynikove1676012010-04-07 18:22:11 +0000362 //
363 // Single-precision FP Load
Evan Cheng41957f62010-11-03 00:40:22 +0000364 InstrItinData<IIC_fpLoad32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
365 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000366 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000367 [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000368 //
369 // Double-precision FP Load
Evan Cheng41957f62010-11-03 00:40:22 +0000370 InstrItinData<IIC_fpLoad64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
371 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000372 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000373 [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000374 //
375 // FP Load Multiple
Evan Chengd2ca8132010-10-09 01:03:04 +0000376 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers.
Evan Cheng41957f62010-11-03 00:40:22 +0000377 InstrItinData<IIC_fpLoad_m, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
378 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000379 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000380 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000381 InstrStage<1, [A8_LSPipe]>], [1, 1, 1, 2]>,
Evan Cheng5a50cee2010-10-07 01:50:48 +0000382 //
383 // FP Load Multiple + update
Evan Cheng41957f62010-11-03 00:40:22 +0000384 InstrItinData<IIC_fpLoad_mu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
385 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000386 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000387 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000388 InstrStage<1, [A8_LSPipe]>], [2, 1, 1, 1, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000389 //
390 // Single-precision FP Store
Evan Cheng41957f62010-11-03 00:40:22 +0000391 InstrItinData<IIC_fpStore32,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
392 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000393 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000394 [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000395 //
396 // Double-precision FP Store
Evan Cheng41957f62010-11-03 00:40:22 +0000397 InstrItinData<IIC_fpStore64,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
398 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000399 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000400 [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000401 //
402 // FP Store Multiple
Evan Cheng41957f62010-11-03 00:40:22 +0000403 InstrItinData<IIC_fpStore_m,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
404 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000405 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000406 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000407 InstrStage<1, [A8_LSPipe]>], [1, 1, 1, 1]>,
Evan Cheng5a50cee2010-10-07 01:50:48 +0000408 //
409 // FP Store Multiple + update
Evan Cheng41957f62010-11-03 00:40:22 +0000410 InstrItinData<IIC_fpStore_mu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
411 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000412 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000413 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000414 InstrStage<1, [A8_LSPipe]>], [2, 1, 1, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000415
416 // NEON
417 // Issue through integer pipeline, and execute in NEON unit.
418 //
419 // VLD1
Evan Cheng41957f62010-11-03 00:40:22 +0000420 InstrItinData<IIC_VLD1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
421 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000422 InstrStage<2, [A8_LSPipe]>],
423 [2, 1]>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000424 // VLD1x2
Evan Cheng41957f62010-11-03 00:40:22 +0000425 InstrItinData<IIC_VLD1x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
426 InstrStage<2, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000427 InstrStage<2, [A8_LSPipe]>],
428 [2, 2, 1]>,
429 //
430 // VLD1x3
Evan Cheng41957f62010-11-03 00:40:22 +0000431 InstrItinData<IIC_VLD1x3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
432 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000433 InstrStage<3, [A8_LSPipe]>],
434 [2, 2, 3, 1]>,
435 //
436 // VLD1x4
Evan Cheng41957f62010-11-03 00:40:22 +0000437 InstrItinData<IIC_VLD1x4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
438 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000439 InstrStage<3, [A8_LSPipe]>],
440 [2, 2, 3, 3, 1]>,
441 //
442 // VLD1u
Evan Cheng41957f62010-11-03 00:40:22 +0000443 InstrItinData<IIC_VLD1u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
444 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000445 InstrStage<2, [A8_LSPipe]>],
Evan Chengd2ca8132010-10-09 01:03:04 +0000446 [2, 2, 1]>,
447 //
448 // VLD1x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000449 InstrItinData<IIC_VLD1x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
450 InstrStage<2, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000451 InstrStage<2, [A8_LSPipe]>],
452 [2, 2, 2, 1]>,
453 //
454 // VLD1x3u
Evan Cheng41957f62010-11-03 00:40:22 +0000455 InstrItinData<IIC_VLD1x3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
456 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000457 InstrStage<3, [A8_LSPipe]>],
458 [2, 2, 3, 2, 1]>,
459 //
460 // VLD1x4u
Evan Cheng41957f62010-11-03 00:40:22 +0000461 InstrItinData<IIC_VLD1x4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
462 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000463 InstrStage<3, [A8_LSPipe]>],
464 [2, 2, 3, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000465 //
Bob Wilsonb796bbb2010-11-01 22:04:05 +0000466 // VLD1ln
467 InstrItinData<IIC_VLD1ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000468 InstrStage<3, [A8_NLSPipe], 0>,
Bob Wilsonb796bbb2010-11-01 22:04:05 +0000469 InstrStage<3, [A8_LSPipe]>],
470 [3, 1, 1, 1]>,
471 //
472 // VLD1lnu
473 InstrItinData<IIC_VLD1lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000474 InstrStage<3, [A8_NLSPipe], 0>,
Bob Wilsonb796bbb2010-11-01 22:04:05 +0000475 InstrStage<3, [A8_LSPipe]>],
476 [3, 2, 1, 1, 1, 1]>,
477 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000478 // VLD2
Evan Cheng41957f62010-11-03 00:40:22 +0000479 InstrItinData<IIC_VLD2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
480 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000481 InstrStage<2, [A8_LSPipe]>],
Evan Cheng40bb6832010-10-09 01:26:12 +0000482 [2, 2, 1]>,
483 //
484 // VLD2x2
Evan Cheng41957f62010-11-03 00:40:22 +0000485 InstrItinData<IIC_VLD2x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
486 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000487 InstrStage<3, [A8_LSPipe]>],
488 [2, 2, 3, 3, 1]>,
489 //
490 // VLD2ln
Evan Cheng41957f62010-11-03 00:40:22 +0000491 InstrItinData<IIC_VLD2ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
492 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000493 InstrStage<3, [A8_LSPipe]>],
494 [3, 3, 1, 1, 1, 1]>,
495 //
496 // VLD2u
Evan Cheng41957f62010-11-03 00:40:22 +0000497 InstrItinData<IIC_VLD2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
498 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000499 InstrStage<2, [A8_LSPipe]>],
Evan Cheng40bb6832010-10-09 01:26:12 +0000500 [2, 2, 2, 1, 1, 1]>,
501 //
502 // VLD2x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000503 InstrItinData<IIC_VLD2x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
504 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000505 InstrStage<3, [A8_LSPipe]>],
506 [2, 2, 3, 3, 2, 1]>,
507 //
508 // VLD2lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000509 InstrItinData<IIC_VLD2lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
510 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000511 InstrStage<3, [A8_LSPipe]>],
512 [3, 3, 2, 1, 1, 1, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000513 //
514 // VLD3
Evan Cheng41957f62010-11-03 00:40:22 +0000515 InstrItinData<IIC_VLD3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
516 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000517 InstrStage<4, [A8_LSPipe]>],
518 [3, 3, 4, 1]>,
519 //
520 // VLD3ln
Evan Cheng41957f62010-11-03 00:40:22 +0000521 InstrItinData<IIC_VLD3ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
522 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000523 InstrStage<5, [A8_LSPipe]>],
524 [4, 4, 5, 1, 1, 1, 1, 2]>,
525 //
526 // VLD3u
Evan Cheng41957f62010-11-03 00:40:22 +0000527 InstrItinData<IIC_VLD3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
528 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000529 InstrStage<4, [A8_LSPipe]>],
530 [3, 3, 4, 2, 1]>,
531 //
532 // VLD3lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000533 InstrItinData<IIC_VLD3lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
534 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000535 InstrStage<5, [A8_LSPipe]>],
536 [4, 4, 5, 2, 1, 1, 1, 1, 1, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000537 //
538 // VLD4
Evan Cheng41957f62010-11-03 00:40:22 +0000539 InstrItinData<IIC_VLD4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
540 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000541 InstrStage<4, [A8_LSPipe]>],
542 [3, 3, 4, 4, 1]>,
543 //
544 // VLD4ln
Evan Cheng41957f62010-11-03 00:40:22 +0000545 InstrItinData<IIC_VLD4ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
546 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000547 InstrStage<5, [A8_LSPipe]>],
548 [4, 4, 5, 5, 1, 1, 1, 1, 2, 2]>,
549 //
550 // VLD4u
Evan Cheng41957f62010-11-03 00:40:22 +0000551 InstrItinData<IIC_VLD4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
552 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000553 InstrStage<4, [A8_LSPipe]>],
554 [3, 3, 4, 4, 2, 1]>,
555 //
556 // VLD4lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000557 InstrItinData<IIC_VLD4lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
558 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000559 InstrStage<5, [A8_LSPipe]>],
560 [4, 4, 5, 5, 2, 1, 1, 1, 1, 1, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000561 //
Evan Cheng60ff8792010-10-11 22:03:18 +0000562 // VST1
Evan Cheng41957f62010-11-03 00:40:22 +0000563 InstrItinData<IIC_VST1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
564 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000565 InstrStage<2, [A8_LSPipe]>],
566 [1, 1, 1]>,
567 //
568 // VST1x2
Evan Cheng41957f62010-11-03 00:40:22 +0000569 InstrItinData<IIC_VST1x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
570 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000571 InstrStage<2, [A8_LSPipe]>],
572 [1, 1, 1, 1]>,
573 //
574 // VST1x3
Evan Cheng41957f62010-11-03 00:40:22 +0000575 InstrItinData<IIC_VST1x3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
576 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000577 InstrStage<3, [A8_LSPipe]>],
578 [1, 1, 1, 1, 2]>,
579 //
580 // VST1x4
Evan Cheng41957f62010-11-03 00:40:22 +0000581 InstrItinData<IIC_VST1x4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
582 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000583 InstrStage<3, [A8_LSPipe]>],
584 [1, 1, 1, 1, 2, 2]>,
585 //
586 // VST1u
Evan Cheng41957f62010-11-03 00:40:22 +0000587 InstrItinData<IIC_VST1u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
588 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000589 InstrStage<2, [A8_LSPipe]>],
590 [2, 1, 1, 1, 1]>,
591 //
592 // VST1x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000593 InstrItinData<IIC_VST1x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
594 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000595 InstrStage<2, [A8_LSPipe]>],
596 [2, 1, 1, 1, 1, 1]>,
597 //
598 // VST1x3u
Evan Cheng41957f62010-11-03 00:40:22 +0000599 InstrItinData<IIC_VST1x3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
600 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000601 InstrStage<3, [A8_LSPipe]>],
602 [2, 1, 1, 1, 1, 1, 2]>,
603 //
604 // VST1x4u
Evan Cheng41957f62010-11-03 00:40:22 +0000605 InstrItinData<IIC_VST1x4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
606 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000607 InstrStage<3, [A8_LSPipe]>],
608 [2, 1, 1, 1, 1, 1, 2, 2]>,
609 //
Bob Wilsond0c6bc22010-11-02 21:18:25 +0000610 // VST1ln
611 InstrItinData<IIC_VST1ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000612 InstrStage<2, [A8_NLSPipe], 0>,
Bob Wilsond0c6bc22010-11-02 21:18:25 +0000613 InstrStage<2, [A8_LSPipe]>],
614 [1, 1, 1]>,
615 //
616 // VST1lnu
617 InstrItinData<IIC_VST1lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000618 InstrStage<2, [A8_NLSPipe], 0>,
Bob Wilsond0c6bc22010-11-02 21:18:25 +0000619 InstrStage<2, [A8_LSPipe]>],
620 [2, 1, 1, 1, 1]>,
621 //
Evan Cheng60ff8792010-10-11 22:03:18 +0000622 // VST2
Evan Cheng41957f62010-11-03 00:40:22 +0000623 InstrItinData<IIC_VST2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
624 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000625 InstrStage<2, [A8_LSPipe]>],
626 [1, 1, 1, 1]>,
627 //
628 // VST2x2
Evan Cheng41957f62010-11-03 00:40:22 +0000629 InstrItinData<IIC_VST2x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
630 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000631 InstrStage<4, [A8_LSPipe]>],
632 [1, 1, 1, 1, 2, 2]>,
633 //
634 // VST2u
Evan Cheng41957f62010-11-03 00:40:22 +0000635 InstrItinData<IIC_VST2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
636 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000637 InstrStage<2, [A8_LSPipe]>],
638 [2, 1, 1, 1, 1, 1]>,
639 //
640 // VST2x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000641 InstrItinData<IIC_VST2x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
642 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000643 InstrStage<4, [A8_LSPipe]>],
644 [2, 1, 1, 1, 1, 1, 2, 2]>,
645 //
646 // VST2ln
Evan Cheng41957f62010-11-03 00:40:22 +0000647 InstrItinData<IIC_VST2ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
648 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000649 InstrStage<2, [A8_LSPipe]>],
650 [1, 1, 1, 1]>,
651 //
652 // VST2lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000653 InstrItinData<IIC_VST2lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
654 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000655 InstrStage<2, [A8_LSPipe]>],
656 [2, 1, 1, 1, 1, 1]>,
657 //
658 // VST3
Evan Cheng41957f62010-11-03 00:40:22 +0000659 InstrItinData<IIC_VST3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
660 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000661 InstrStage<3, [A8_LSPipe]>],
662 [1, 1, 1, 1, 2]>,
663 //
664 // VST3u
Evan Cheng41957f62010-11-03 00:40:22 +0000665 InstrItinData<IIC_VST3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
666 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000667 InstrStage<3, [A8_LSPipe]>],
668 [2, 1, 1, 1, 1, 1, 2]>,
669 //
670 // VST3ln
Evan Cheng41957f62010-11-03 00:40:22 +0000671 InstrItinData<IIC_VST3ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
672 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000673 InstrStage<3, [A8_LSPipe]>],
674 [1, 1, 1, 1, 2]>,
675 //
676 // VST3lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000677 InstrItinData<IIC_VST3lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
678 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000679 InstrStage<3, [A8_LSPipe]>],
680 [2, 1, 1, 1, 1, 1, 2]>,
681 //
682 // VST4
Evan Cheng41957f62010-11-03 00:40:22 +0000683 InstrItinData<IIC_VST4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
684 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000685 InstrStage<4, [A8_LSPipe]>],
686 [1, 1, 1, 1, 2, 2]>,
687 //
688 // VST4u
Evan Cheng41957f62010-11-03 00:40:22 +0000689 InstrItinData<IIC_VST4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
690 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000691 InstrStage<4, [A8_LSPipe]>],
692 [2, 1, 1, 1, 1, 1, 2, 2]>,
693 //
694 // VST4ln
Evan Cheng41957f62010-11-03 00:40:22 +0000695 InstrItinData<IIC_VST4ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
696 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000697 InstrStage<4, [A8_LSPipe]>],
698 [1, 1, 1, 1, 2, 2]>,
699 //
700 // VST4lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000701 InstrItinData<IIC_VST4lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
702 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000703 InstrStage<4, [A8_LSPipe]>],
704 [2, 1, 1, 1, 1, 1, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000705 //
706 // Double-register FP Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000707 InstrItinData<IIC_VUNAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000708 InstrStage<1, [A8_NPipe]>], [5, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000709 //
710 // Quad-register FP Unary
711 // Result written in N5, but that is relative to the last cycle of multicycle,
712 // so we use 6 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000713 InstrItinData<IIC_VUNAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000714 InstrStage<2, [A8_NPipe]>], [6, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000715 //
716 // Double-register FP Binary
Evan Cheng41957f62010-11-03 00:40:22 +0000717 InstrItinData<IIC_VBIND, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000718 InstrStage<1, [A8_NPipe]>], [5, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000719 //
Evan Cheng08cec1e2010-10-11 23:41:41 +0000720 // VPADD, etc.
Evan Cheng41957f62010-11-03 00:40:22 +0000721 InstrItinData<IIC_VPBIND, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Cheng08cec1e2010-10-11 23:41:41 +0000722 InstrStage<1, [A8_NPipe]>], [5, 2, 2]>,
723 //
724 // Double-register FP VMUL
Evan Cheng41957f62010-11-03 00:40:22 +0000725 InstrItinData<IIC_VFMULD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Cheng08cec1e2010-10-11 23:41:41 +0000726 InstrStage<1, [A8_NPipe]>], [5, 2, 1]>,
727
728 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000729 // Quad-register FP Binary
730 // Result written in N5, but that is relative to the last cycle of multicycle,
731 // so we use 6 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000732 InstrItinData<IIC_VBINQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000733 InstrStage<2, [A8_NPipe]>], [6, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000734 //
Evan Cheng08cec1e2010-10-11 23:41:41 +0000735 // Quad-register FP VMUL
Evan Cheng41957f62010-11-03 00:40:22 +0000736 InstrItinData<IIC_VFMULQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Cheng08cec1e2010-10-11 23:41:41 +0000737 InstrStage<1, [A8_NPipe]>], [6, 2, 1]>,
738 //
Evan Chengcae6a122010-10-01 20:50:58 +0000739 // Move
Evan Cheng41957f62010-11-03 00:40:22 +0000740 InstrItinData<IIC_VMOV, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengcae6a122010-10-01 20:50:58 +0000741 InstrStage<1, [A8_NPipe]>], [1, 1]>,
742 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000743 // Move Immediate
Evan Cheng41957f62010-11-03 00:40:22 +0000744 InstrItinData<IIC_VMOVImm, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000745 InstrStage<1, [A8_NPipe]>], [3]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000746 //
747 // Double-register Permute Move
Evan Cheng41957f62010-11-03 00:40:22 +0000748 InstrItinData<IIC_VMOVD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000749 InstrStage<1, [A8_NLSPipe]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000750 //
751 // Quad-register Permute Move
752 // Result written in N2, but that is relative to the last cycle of multicycle,
753 // so we use 3 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000754 InstrItinData<IIC_VMOVQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000755 InstrStage<2, [A8_NLSPipe]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000756 //
757 // Integer to Single-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000758 InstrItinData<IIC_VMOVIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000759 InstrStage<1, [A8_NLSPipe]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000760 //
761 // Integer to Double-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000762 InstrItinData<IIC_VMOVID , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000763 InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000764 //
765 // Single-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000766 InstrItinData<IIC_VMOVSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000767 InstrStage<1, [A8_NLSPipe]>], [20, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000768 //
769 // Double-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000770 InstrItinData<IIC_VMOVDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000771 InstrStage<1, [A8_NLSPipe]>], [20, 20, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000772 //
773 // Integer to Lane Move
Evan Cheng41957f62010-11-03 00:40:22 +0000774 InstrItinData<IIC_VMOVISL , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000775 InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000776 //
Evan Chengcae6a122010-10-01 20:50:58 +0000777 // Vector narrow move
Evan Cheng41957f62010-11-03 00:40:22 +0000778 InstrItinData<IIC_VMOVN , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengef0ccad2010-10-01 21:48:06 +0000779 InstrStage<1, [A8_NPipe]>], [2, 1]>,
Evan Chengcae6a122010-10-01 20:50:58 +0000780 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000781 // Double-register Permute
Evan Cheng41957f62010-11-03 00:40:22 +0000782 InstrItinData<IIC_VPERMD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000783 InstrStage<1, [A8_NLSPipe]>], [2, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000784 //
785 // Quad-register Permute
786 // Result written in N2, but that is relative to the last cycle of multicycle,
787 // so we use 3 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000788 InstrItinData<IIC_VPERMQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000789 InstrStage<2, [A8_NLSPipe]>], [3, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000790 //
791 // Quad-register Permute (3 cycle issue)
792 // Result written in N2, but that is relative to the last cycle of multicycle,
793 // so we use 4 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000794 InstrItinData<IIC_VPERMQ3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000795 InstrStage<1, [A8_NLSPipe]>,
796 InstrStage<1, [A8_NPipe], 0>,
797 InstrStage<2, [A8_NLSPipe]>], [4, 4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000798 //
799 // Double-register FP Multiple-Accumulate
Evan Cheng41957f62010-11-03 00:40:22 +0000800 InstrItinData<IIC_VMACD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000801 InstrStage<1, [A8_NPipe]>], [9, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000802 //
803 // Quad-register FP Multiple-Accumulate
804 // Result written in N9, but that is relative to the last cycle of multicycle,
805 // so we use 10 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000806 InstrItinData<IIC_VMACQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000807 InstrStage<2, [A8_NPipe]>], [10, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000808 //
809 // Double-register Reciprical Step
Evan Cheng41957f62010-11-03 00:40:22 +0000810 InstrItinData<IIC_VRECSD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000811 InstrStage<1, [A8_NPipe]>], [9, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000812 //
813 // Quad-register Reciprical Step
Evan Cheng41957f62010-11-03 00:40:22 +0000814 InstrItinData<IIC_VRECSQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000815 InstrStage<2, [A8_NPipe]>], [10, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000816 //
817 // Double-register Integer Count
Evan Cheng41957f62010-11-03 00:40:22 +0000818 InstrItinData<IIC_VCNTiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000819 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000820 //
821 // Quad-register Integer Count
822 // Result written in N3, but that is relative to the last cycle of multicycle,
823 // so we use 4 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000824 InstrItinData<IIC_VCNTiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000825 InstrStage<2, [A8_NPipe]>], [4, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000826 //
827 // Double-register Integer Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000828 InstrItinData<IIC_VUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000829 InstrStage<1, [A8_NPipe]>], [4, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000830 //
831 // Quad-register Integer Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000832 InstrItinData<IIC_VUNAiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000833 InstrStage<1, [A8_NPipe]>], [4, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000834 //
835 // Double-register Integer Q-Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000836 InstrItinData<IIC_VQUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000837 InstrStage<1, [A8_NPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000838 //
839 // Quad-register Integer CountQ-Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000840 InstrItinData<IIC_VQUNAiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000841 InstrStage<1, [A8_NPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000842 //
843 // Double-register Integer Binary
Evan Cheng41957f62010-11-03 00:40:22 +0000844 InstrItinData<IIC_VBINiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000845 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000846 //
847 // Quad-register Integer Binary
Evan Cheng41957f62010-11-03 00:40:22 +0000848 InstrItinData<IIC_VBINiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000849 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000850 //
851 // Double-register Integer Binary (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000852 InstrItinData<IIC_VBINi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000853 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000854 //
855 // Quad-register Integer Binary (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000856 InstrItinData<IIC_VBINi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000857 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000858
859 //
860 // Double-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000861 InstrItinData<IIC_VSUBiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000862 InstrStage<1, [A8_NPipe]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000863 //
864 // Quad-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000865 InstrItinData<IIC_VSUBiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000866 InstrStage<1, [A8_NPipe]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000867 //
868 // Double-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000869 InstrItinData<IIC_VSUBi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000870 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000871 //
872 // Quad-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000873 InstrItinData<IIC_VSUBi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000874 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000875 //
876 // Double-register Integer Shift
Evan Cheng41957f62010-11-03 00:40:22 +0000877 InstrItinData<IIC_VSHLiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000878 InstrStage<1, [A8_NPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000879 //
880 // Quad-register Integer Shift
Evan Cheng41957f62010-11-03 00:40:22 +0000881 InstrItinData<IIC_VSHLiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000882 InstrStage<2, [A8_NPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000883 //
884 // Double-register Integer Shift (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000885 InstrItinData<IIC_VSHLi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000886 InstrStage<1, [A8_NPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000887 //
888 // Quad-register Integer Shift (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000889 InstrItinData<IIC_VSHLi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000890 InstrStage<2, [A8_NPipe]>], [5, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000891 //
892 // Double-register Integer Pair Add Long
Evan Cheng41957f62010-11-03 00:40:22 +0000893 InstrItinData<IIC_VPALiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000894 InstrStage<1, [A8_NPipe]>], [6, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000895 //
896 // Quad-register Integer Pair Add Long
Evan Cheng41957f62010-11-03 00:40:22 +0000897 InstrItinData<IIC_VPALiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000898 InstrStage<2, [A8_NPipe]>], [7, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000899 //
900 // Double-register Absolute Difference and Accumulate
Evan Cheng41957f62010-11-03 00:40:22 +0000901 InstrItinData<IIC_VABAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000902 InstrStage<1, [A8_NPipe]>], [6, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000903 //
904 // Quad-register Absolute Difference and Accumulate
Evan Cheng41957f62010-11-03 00:40:22 +0000905 InstrItinData<IIC_VABAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000906 InstrStage<2, [A8_NPipe]>], [6, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000907
908 //
909 // Double-register Integer Multiply (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +0000910 InstrItinData<IIC_VMULi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000911 InstrStage<1, [A8_NPipe]>], [6, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000912 //
913 // Double-register Integer Multiply (.32)
Evan Cheng41957f62010-11-03 00:40:22 +0000914 InstrItinData<IIC_VMULi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000915 InstrStage<2, [A8_NPipe]>], [7, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000916 //
917 // Quad-register Integer Multiply (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +0000918 InstrItinData<IIC_VMULi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000919 InstrStage<2, [A8_NPipe]>], [7, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000920 //
921 // Quad-register Integer Multiply (.32)
Evan Cheng41957f62010-11-03 00:40:22 +0000922 InstrItinData<IIC_VMULi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000923 InstrStage<1, [A8_NPipe]>,
924 InstrStage<2, [A8_NLSPipe], 0>,
925 InstrStage<3, [A8_NPipe]>], [9, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000926 //
927 // Double-register Integer Multiply-Accumulate (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +0000928 InstrItinData<IIC_VMACi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000929 InstrStage<1, [A8_NPipe]>], [6, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000930 //
931 // Double-register Integer Multiply-Accumulate (.32)
Evan Cheng41957f62010-11-03 00:40:22 +0000932 InstrItinData<IIC_VMACi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000933 InstrStage<2, [A8_NPipe]>], [7, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000934 //
935 // Quad-register Integer Multiply-Accumulate (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +0000936 InstrItinData<IIC_VMACi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000937 InstrStage<2, [A8_NPipe]>], [7, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000938 //
939 // Quad-register Integer Multiply-Accumulate (.32)
Evan Cheng41957f62010-11-03 00:40:22 +0000940 InstrItinData<IIC_VMACi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000941 InstrStage<1, [A8_NPipe]>,
942 InstrStage<2, [A8_NLSPipe], 0>,
943 InstrStage<3, [A8_NPipe]>], [9, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000944 //
945 // Double-register VEXT
Evan Cheng41957f62010-11-03 00:40:22 +0000946 InstrItinData<IIC_VEXTD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000947 InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000948 //
949 // Quad-register VEXT
Evan Cheng41957f62010-11-03 00:40:22 +0000950 InstrItinData<IIC_VEXTQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000951 InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000952 //
953 // VTB
Evan Cheng41957f62010-11-03 00:40:22 +0000954 InstrItinData<IIC_VTB1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000955 InstrStage<2, [A8_NLSPipe]>], [3, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000956 InstrItinData<IIC_VTB2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000957 InstrStage<2, [A8_NLSPipe]>], [3, 2, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000958 InstrItinData<IIC_VTB3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000959 InstrStage<1, [A8_NLSPipe]>,
960 InstrStage<1, [A8_NPipe], 0>,
961 InstrStage<2, [A8_NLSPipe]>], [4, 2, 2, 3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000962 InstrItinData<IIC_VTB4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000963 InstrStage<1, [A8_NLSPipe]>,
964 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +0000965 InstrStage<2, [A8_NLSPipe]>],[4, 2, 2, 3, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000966 //
967 // VTBX
Evan Cheng41957f62010-11-03 00:40:22 +0000968 InstrItinData<IIC_VTBX1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000969 InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000970 InstrItinData<IIC_VTBX2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000971 InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000972 InstrItinData<IIC_VTBX3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000973 InstrStage<1, [A8_NLSPipe]>,
974 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +0000975 InstrStage<2, [A8_NLSPipe]>],[4, 1, 2, 2, 3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000976 InstrItinData<IIC_VTBX4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000977 InstrStage<1, [A8_NLSPipe]>,
978 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +0000979 InstrStage<2, [A8_NLSPipe]>], [4, 1, 2, 2, 3, 3, 1]>
Anton Korobeynikove1676012010-04-07 18:22:11 +0000980]>;