blob: eb1083ca23f3a2329242e7747e8d06ae43674775 [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//
Andrew Trickf94f0512012-06-05 03:44:43 +000025def CortexA8Itineraries : MultiIssueItineraries<
26 2, // IssueWidth
27 -1, // MinLatency - OperandCycles are interpreted as MinLatency.
28 2, // LoadLatency - overriden by OperandCycles.
29 10, // HighLatency - currently unused.
Evan Chengd2ca8132010-10-09 01:03:04 +000030 [A8_Pipe0, A8_Pipe1, A8_LSPipe, A8_NPipe, A8_NLSPipe],
Evan Cheng63d66ee2010-09-28 23:50:49 +000031 [], [
Anton Korobeynikove1676012010-04-07 18:22:11 +000032 // Two fully-pipelined integer ALU pipelines
33 //
34 // No operand cycles
Anton Korobeynikov928eb492010-04-18 20:31:01 +000035 InstrItinData<IIC_iALUx , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000036 //
37 // Binary Instructions that produce a result
Jim Grosbache9e3f202010-06-28 04:27:01 +000038 InstrItinData<IIC_iALUi ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
39 InstrItinData<IIC_iALUr ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 2]>,
40 InstrItinData<IIC_iALUsi,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1]>,
Evan Cheng3881cb72010-09-29 22:42:35 +000041 InstrItinData<IIC_iALUsir,[InstrStage<1,[A8_Pipe0, A8_Pipe1]>], [2, 1, 2]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +000042 InstrItinData<IIC_iALUsr,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000043 //
Evan Cheng7e1bf302010-09-29 00:27:46 +000044 // Bitwise Instructions that produce a result
45 InstrItinData<IIC_iBITi ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
46 InstrItinData<IIC_iBITr ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 2]>,
47 InstrItinData<IIC_iBITsi,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1]>,
48 InstrItinData<IIC_iBITsr,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1, 1]>,
49 //
Anton Korobeynikove1676012010-04-07 18:22:11 +000050 // Unary Instructions that produce a result
Jim Grosbache9e3f202010-06-28 04:27:01 +000051 InstrItinData<IIC_iUNAr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
52 InstrItinData<IIC_iUNAsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000053 //
Evan Cheng576a3962010-09-25 00:49:35 +000054 // Zero and sign extension instructions
55 InstrItinData<IIC_iEXTr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
56 InstrItinData<IIC_iEXTAr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1]>,
Evan Cheng7e1bf302010-09-29 00:27:46 +000057 InstrItinData<IIC_iEXTAsr,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>],[2, 2, 1, 1]>,
Evan Cheng576a3962010-09-25 00:49:35 +000058 //
Anton Korobeynikove1676012010-04-07 18:22:11 +000059 // Compare instructions
Jim Grosbache9e3f202010-06-28 04:27:01 +000060 InstrItinData<IIC_iCMPi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
61 InstrItinData<IIC_iCMPr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
62 InstrItinData<IIC_iCMPsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
63 InstrItinData<IIC_iCMPsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000064 //
Evan Cheng5d42c562010-09-29 00:49:25 +000065 // Test instructions
66 InstrItinData<IIC_iTSTi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
67 InstrItinData<IIC_iTSTr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
68 InstrItinData<IIC_iTSTsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
69 InstrItinData<IIC_iTSTsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>,
70 //
Anton Korobeynikove1676012010-04-07 18:22:11 +000071 // Move instructions, unconditional
Jim Grosbache9e3f202010-06-28 04:27:01 +000072 InstrItinData<IIC_iMOVi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1]>,
73 InstrItinData<IIC_iMOVr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
74 InstrItinData<IIC_iMOVsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
75 InstrItinData<IIC_iMOVsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1, 1]>,
Evan Cheng5d42c562010-09-29 00:49:25 +000076 InstrItinData<IIC_iMOVix2,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
77 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
Evan Cheng9fe20092011-01-20 08:34:58 +000078 InstrItinData<IIC_iMOVix2addpc,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
79 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
80 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [3]>,
81 InstrItinData<IIC_iMOVix2ld,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
82 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
83 InstrStage<1, [A8_LSPipe]>], [5]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000084 //
85 // Move instructions, conditional
Jim Grosbache9e3f202010-06-28 04:27:01 +000086 InstrItinData<IIC_iCMOVi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
87 InstrItinData<IIC_iCMOVr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
88 InstrItinData<IIC_iCMOVsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
89 InstrItinData<IIC_iCMOVsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>,
Evan Chengc47f7d62010-11-13 05:14:20 +000090 InstrItinData<IIC_iCMOVix2,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
91 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [3, 1]>,
Evan Cheng5d42c562010-09-29 00:49:25 +000092 //
93 // MVN instructions
94 InstrItinData<IIC_iMVNi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1]>,
95 InstrItinData<IIC_iMVNr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
96 InstrItinData<IIC_iMVNsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
97 InstrItinData<IIC_iMVNsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000098
99 // Integer multiply pipeline
100 // Result written in E5, but that is relative to the last cycle of multicycle,
101 // so we use 6 for those cases
102 //
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000103 InstrItinData<IIC_iMUL16 , [InstrStage<1, [A8_Pipe0]>], [5, 1, 1]>,
Evan Cheng8ae6ffa2010-10-09 01:15:04 +0000104 InstrItinData<IIC_iMAC16 , [InstrStage<2, [A8_Pipe0]>], [6, 1, 1, 4]>,
105 InstrItinData<IIC_iMUL32 , [InstrStage<2, [A8_Pipe0]>], [6, 1, 1]>,
106 InstrItinData<IIC_iMAC32 , [InstrStage<2, [A8_Pipe0]>], [6, 1, 1, 4]>,
107 InstrItinData<IIC_iMUL64 , [InstrStage<3, [A8_Pipe0]>], [6, 6, 1, 1]>,
108 InstrItinData<IIC_iMAC64 , [InstrStage<3, [A8_Pipe0]>], [6, 6, 1, 1]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +0000109
Anton Korobeynikove1676012010-04-07 18:22:11 +0000110 // Integer load pipeline
111 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000112 // Immediate offset
Evan Cheng41957f62010-11-03 00:40:22 +0000113 InstrItinData<IIC_iLoad_i , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000114 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000115 InstrItinData<IIC_iLoad_bh_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000116 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000117 InstrItinData<IIC_iLoad_d_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000118 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000119 //
120 // Register offset
Evan Cheng41957f62010-11-03 00:40:22 +0000121 InstrItinData<IIC_iLoad_r , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000122 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000123 InstrItinData<IIC_iLoad_bh_r, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000124 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000125 InstrItinData<IIC_iLoad_d_r , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000126 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000127 //
128 // Scaled register offset, issues over 2 cycles
Evan Chengd2ca8132010-10-09 01:03:04 +0000129 // FIXME: lsl by 2 takes 1 cycle.
Evan Cheng41957f62010-11-03 00:40:22 +0000130 InstrItinData<IIC_iLoad_si , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000131 InstrStage<1, [A8_LSPipe]>], [4, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000132 InstrItinData<IIC_iLoad_bh_si,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000133 InstrStage<1, [A8_LSPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000134 //
135 // Immediate offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000136 InstrItinData<IIC_iLoad_iu , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000137 InstrStage<1, [A8_LSPipe]>], [3, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000138 InstrItinData<IIC_iLoad_bh_iu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000139 InstrStage<1, [A8_LSPipe]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000140 //
141 // Register offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000142 InstrItinData<IIC_iLoad_ru , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000143 InstrStage<1, [A8_LSPipe]>], [3, 2, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000144 InstrItinData<IIC_iLoad_bh_ru,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000145 InstrStage<1, [A8_LSPipe]>], [3, 2, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000146 InstrItinData<IIC_iLoad_d_ru, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000147 InstrStage<1, [A8_LSPipe]>], [3, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000148 //
149 // Scaled register offset with update, issues over 2 cycles
Evan Cheng41957f62010-11-03 00:40:22 +0000150 InstrItinData<IIC_iLoad_siu , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
151 InstrStage<2, [A8_LSPipe]>], [4, 3, 1, 1]>,
152 InstrItinData<IIC_iLoad_bh_siu,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
153 InstrStage<2, [A8_LSPipe]>], [4, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000154 //
Evan Chengd2ca8132010-10-09 01:03:04 +0000155 // Load multiple, def is the 5th operand. Pipeline 0 only.
156 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers.
Evan Cheng41957f62010-11-03 00:40:22 +0000157 InstrItinData<IIC_iLoad_m , [InstrStage<2, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000158 InstrStage<2, [A8_LSPipe]>], [1, 1, 1, 1, 3]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000159 //
160 // Load multiple + update, defs are the 1st and 5th operands.
Evan Cheng41957f62010-11-03 00:40:22 +0000161 InstrItinData<IIC_iLoad_mu , [InstrStage<3, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000162 InstrStage<3, [A8_LSPipe]>], [2, 1, 1, 1, 3]>,
Evan Cheng7602acb2010-09-08 22:57:08 +0000163 //
164 // Load multiple plus branch
Evan Cheng41957f62010-11-03 00:40:22 +0000165 InstrItinData<IIC_iLoad_mBr, [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, 2, 1, 1, 3]>,
169 //
170 // Pop, def is the 3rd operand.
Evan Cheng41957f62010-11-03 00:40:22 +0000171 InstrItinData<IIC_iPop , [InstrStage<3, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000172 InstrStage<3, [A8_LSPipe]>], [1, 1, 3]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000173 //
174 // Push, def is the 3th operand.
Evan Cheng41957f62010-11-03 00:40:22 +0000175 InstrItinData<IIC_iPop_Br, [InstrStage<3, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000176 InstrStage<3, [A8_LSPipe]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000177 InstrStage<1, [A8_Pipe0, A8_Pipe1]>],
178 [1, 1, 3]>,
Evan Cheng7602acb2010-09-08 22:57:08 +0000179
Evan Chengbd30ce42010-09-24 22:41:41 +0000180 //
181 // iLoadi + iALUr for t2LDRpci_pic.
Evan Cheng41957f62010-11-03 00:40:22 +0000182 InstrItinData<IIC_iLoadiALU, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000183 InstrStage<1, [A8_LSPipe]>,
Evan Chengbd30ce42010-09-24 22:41:41 +0000184 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [4, 1]>,
185
186
Anton Korobeynikove1676012010-04-07 18:22:11 +0000187 // Integer store pipeline
188 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000189 // Immediate offset
Evan Cheng41957f62010-11-03 00:40:22 +0000190 InstrItinData<IIC_iStore_i , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000191 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000192 InstrItinData<IIC_iStore_bh_i,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000193 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000194 InstrItinData<IIC_iStore_d_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000195 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000196 //
197 // Register offset
Evan Cheng41957f62010-11-03 00:40:22 +0000198 InstrItinData<IIC_iStore_r , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000199 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000200 InstrItinData<IIC_iStore_bh_r,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000201 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000202 InstrItinData<IIC_iStore_d_r, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000203 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000204 //
205 // Scaled register offset, issues over 2 cycles
Evan Cheng41957f62010-11-03 00:40:22 +0000206 InstrItinData<IIC_iStore_si , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000207 InstrStage<2, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000208 InstrItinData<IIC_iStore_bh_si,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000209 InstrStage<2, [A8_LSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000210 //
211 // Immediate offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000212 InstrItinData<IIC_iStore_iu , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000213 InstrStage<1, [A8_LSPipe]>], [2, 3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000214 InstrItinData<IIC_iStore_bh_iu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000215 InstrStage<1, [A8_LSPipe]>], [2, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000216 //
217 // Register offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000218 InstrItinData<IIC_iStore_ru , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000219 InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000220 InstrItinData<IIC_iStore_bh_ru,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000221 InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000222 InstrItinData<IIC_iStore_d_ru, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000223 InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000224 //
225 // Scaled register offset with update, issues over 2 cycles
Evan Cheng41957f62010-11-03 00:40:22 +0000226 InstrItinData<IIC_iStore_siu, [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000227 InstrStage<2, [A8_LSPipe]>], [3, 3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000228 InstrItinData<IIC_iStore_bh_siu,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000229 InstrStage<2, [A8_LSPipe]>], [3, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000230 //
Evan Chengd2ca8132010-10-09 01:03:04 +0000231 // Store multiple. Pipeline 0 only.
232 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers.
Evan Cheng41957f62010-11-03 00:40:22 +0000233 InstrItinData<IIC_iStore_m , [InstrStage<2, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000234 InstrStage<2, [A8_LSPipe]>]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000235 //
236 // Store multiple + update
Evan Cheng41957f62010-11-03 00:40:22 +0000237 InstrItinData<IIC_iStore_mu, [InstrStage<2, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000238 InstrStage<2, [A8_LSPipe]>], [2]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +0000239
Evan Chengdfed19f2010-11-03 06:34:55 +0000240 //
241 // Preload
242 InstrItinData<IIC_Preload, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
243
Anton Korobeynikove1676012010-04-07 18:22:11 +0000244 // Branch
245 //
246 // no delay slots, so the latency of a branch is unimportant
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000247 InstrItinData<IIC_Br , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000248
249 // VFP
250 // Issue through integer pipeline, and execute in NEON unit. We assume
251 // RunFast mode so that NFP pipeline is used for single-precision when
252 // possible.
253 //
254 // FP Special Register to Integer Register File Move
Evan Cheng41957f62010-11-03 00:40:22 +0000255 InstrItinData<IIC_fpSTAT , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chenge09206d2010-10-29 23:16:55 +0000256 InstrStage<1, [A8_NLSPipe]>], [20]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000257 //
258 // Single-precision FP Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000259 InstrItinData<IIC_fpUNA32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000260 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000261 //
262 // Double-precision FP Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000263 InstrItinData<IIC_fpUNA64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000264 InstrStage<4, [A8_NPipe], 0>,
265 InstrStage<4, [A8_NLSPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000266 //
267 // Single-precision FP Compare
Evan Cheng41957f62010-11-03 00:40:22 +0000268 InstrItinData<IIC_fpCMP32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000269 InstrStage<1, [A8_NPipe]>], [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000270 //
271 // Double-precision FP Compare
Evan Cheng41957f62010-11-03 00:40:22 +0000272 InstrItinData<IIC_fpCMP64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000273 InstrStage<4, [A8_NPipe], 0>,
274 InstrStage<4, [A8_NLSPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000275 //
276 // Single to Double FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000277 InstrItinData<IIC_fpCVTSD , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000278 InstrStage<7, [A8_NPipe], 0>,
279 InstrStage<7, [A8_NLSPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000280 //
281 // Double to Single FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000282 InstrItinData<IIC_fpCVTDS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000283 InstrStage<5, [A8_NPipe], 0>,
284 InstrStage<5, [A8_NLSPipe]>], [5, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000285 //
286 // Single-Precision FP to Integer Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000287 InstrItinData<IIC_fpCVTSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000288 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000289 //
290 // Double-Precision FP to Integer Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000291 InstrItinData<IIC_fpCVTDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000292 InstrStage<8, [A8_NPipe], 0>,
293 InstrStage<8, [A8_NLSPipe]>], [8, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000294 //
295 // Integer to Single-Precision FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000296 InstrItinData<IIC_fpCVTIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000297 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000298 //
299 // Integer to Double-Precision FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000300 InstrItinData<IIC_fpCVTID , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000301 InstrStage<8, [A8_NPipe], 0>,
302 InstrStage<8, [A8_NLSPipe]>], [8, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000303 //
304 // Single-precision FP ALU
Evan Cheng41957f62010-11-03 00:40:22 +0000305 InstrItinData<IIC_fpALU32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000306 InstrStage<1, [A8_NPipe]>], [7, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000307 //
308 // Double-precision FP ALU
Evan Cheng41957f62010-11-03 00:40:22 +0000309 InstrItinData<IIC_fpALU64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000310 InstrStage<9, [A8_NPipe], 0>,
311 InstrStage<9, [A8_NLSPipe]>], [9, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000312 //
313 // Single-precision FP Multiply
Evan Cheng41957f62010-11-03 00:40:22 +0000314 InstrItinData<IIC_fpMUL32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000315 InstrStage<1, [A8_NPipe]>], [7, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000316 //
317 // Double-precision FP Multiply
Evan Cheng41957f62010-11-03 00:40:22 +0000318 InstrItinData<IIC_fpMUL64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000319 InstrStage<11, [A8_NPipe], 0>,
320 InstrStage<11, [A8_NLSPipe]>], [11, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000321 //
322 // Single-precision FP MAC
Evan Cheng41957f62010-11-03 00:40:22 +0000323 InstrItinData<IIC_fpMAC32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000324 InstrStage<1, [A8_NPipe]>], [7, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000325 //
326 // Double-precision FP MAC
Evan Cheng41957f62010-11-03 00:40:22 +0000327 InstrItinData<IIC_fpMAC64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000328 InstrStage<19, [A8_NPipe], 0>,
329 InstrStage<19, [A8_NLSPipe]>], [19, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000330 //
Evan Cheng82509e52012-04-11 00:13:00 +0000331 // Single-precision Fused FP MAC
332 InstrItinData<IIC_fpFMAC32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
333 InstrStage<1, [A8_NPipe]>], [7, 2, 1, 1]>,
334 //
335 // Double-precision Fused FP MAC
336 InstrItinData<IIC_fpFMAC64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
337 InstrStage<19, [A8_NPipe], 0>,
338 InstrStage<19, [A8_NLSPipe]>], [19, 2, 1, 1]>,
339 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000340 // Single-precision FP DIV
Evan Cheng41957f62010-11-03 00:40:22 +0000341 InstrItinData<IIC_fpDIV32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000342 InstrStage<20, [A8_NPipe], 0>,
343 InstrStage<20, [A8_NLSPipe]>], [20, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000344 //
345 // Double-precision FP DIV
Evan Cheng41957f62010-11-03 00:40:22 +0000346 InstrItinData<IIC_fpDIV64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000347 InstrStage<29, [A8_NPipe], 0>,
348 InstrStage<29, [A8_NLSPipe]>], [29, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000349 //
350 // Single-precision FP SQRT
Evan Cheng41957f62010-11-03 00:40:22 +0000351 InstrItinData<IIC_fpSQRT32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000352 InstrStage<19, [A8_NPipe], 0>,
353 InstrStage<19, [A8_NLSPipe]>], [19, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000354 //
355 // Double-precision FP SQRT
Evan Cheng41957f62010-11-03 00:40:22 +0000356 InstrItinData<IIC_fpSQRT64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000357 InstrStage<29, [A8_NPipe], 0>,
358 InstrStage<29, [A8_NLSPipe]>], [29, 1]>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000359
360 //
361 // Integer to Single-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000362 InstrItinData<IIC_fpMOVIS, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000363 InstrStage<1, [A8_NPipe]>],
364 [2, 1]>,
365 //
366 // Integer to Double-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000367 InstrItinData<IIC_fpMOVID, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000368 InstrStage<1, [A8_NPipe]>],
369 [2, 1, 1]>,
370 //
371 // Single-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000372 InstrItinData<IIC_fpMOVSI, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000373 InstrStage<1, [A8_NPipe]>],
374 [20, 1]>,
375 //
376 // Double-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000377 InstrItinData<IIC_fpMOVDI, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000378 InstrStage<1, [A8_NPipe]>],
379 [20, 20, 1]>,
380
Anton Korobeynikove1676012010-04-07 18:22:11 +0000381 //
382 // Single-precision FP Load
Evan Cheng41957f62010-11-03 00:40:22 +0000383 InstrItinData<IIC_fpLoad32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
384 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000385 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000386 [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000387 //
388 // Double-precision FP Load
Evan Cheng41957f62010-11-03 00:40:22 +0000389 InstrItinData<IIC_fpLoad64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
390 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000391 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000392 [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000393 //
394 // FP Load Multiple
Evan Chengd2ca8132010-10-09 01:03:04 +0000395 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers.
Evan Cheng41957f62010-11-03 00:40:22 +0000396 InstrItinData<IIC_fpLoad_m, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
397 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000398 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000399 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000400 InstrStage<1, [A8_LSPipe]>], [1, 1, 1, 2]>,
Evan Cheng5a50cee2010-10-07 01:50:48 +0000401 //
402 // FP Load Multiple + update
Evan Cheng41957f62010-11-03 00:40:22 +0000403 InstrItinData<IIC_fpLoad_mu,[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]>], [2, 1, 1, 1, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000408 //
409 // Single-precision FP Store
Evan Cheng41957f62010-11-03 00:40:22 +0000410 InstrItinData<IIC_fpStore32,[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 Chengdf9da6a2010-10-01 21:40:30 +0000413 [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000414 //
415 // Double-precision FP Store
Evan Cheng41957f62010-11-03 00:40:22 +0000416 InstrItinData<IIC_fpStore64,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
417 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000418 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000419 [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000420 //
421 // FP Store Multiple
Evan Cheng41957f62010-11-03 00:40:22 +0000422 InstrItinData<IIC_fpStore_m,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
423 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000424 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000425 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000426 InstrStage<1, [A8_LSPipe]>], [1, 1, 1, 1]>,
Evan Cheng5a50cee2010-10-07 01:50:48 +0000427 //
428 // FP Store Multiple + update
Evan Cheng41957f62010-11-03 00:40:22 +0000429 InstrItinData<IIC_fpStore_mu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
430 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000431 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000432 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000433 InstrStage<1, [A8_LSPipe]>], [2, 1, 1, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000434
435 // NEON
436 // Issue through integer pipeline, and execute in NEON unit.
437 //
438 // VLD1
Evan Cheng41957f62010-11-03 00:40:22 +0000439 InstrItinData<IIC_VLD1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
440 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000441 InstrStage<2, [A8_LSPipe]>],
442 [2, 1]>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000443 // VLD1x2
Evan Cheng41957f62010-11-03 00:40:22 +0000444 InstrItinData<IIC_VLD1x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
445 InstrStage<2, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000446 InstrStage<2, [A8_LSPipe]>],
447 [2, 2, 1]>,
448 //
449 // VLD1x3
Evan Cheng41957f62010-11-03 00:40:22 +0000450 InstrItinData<IIC_VLD1x3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
451 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000452 InstrStage<3, [A8_LSPipe]>],
453 [2, 2, 3, 1]>,
454 //
455 // VLD1x4
Evan Cheng41957f62010-11-03 00:40:22 +0000456 InstrItinData<IIC_VLD1x4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
457 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000458 InstrStage<3, [A8_LSPipe]>],
459 [2, 2, 3, 3, 1]>,
460 //
461 // VLD1u
Evan Cheng41957f62010-11-03 00:40:22 +0000462 InstrItinData<IIC_VLD1u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
463 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000464 InstrStage<2, [A8_LSPipe]>],
Evan Chengd2ca8132010-10-09 01:03:04 +0000465 [2, 2, 1]>,
466 //
467 // VLD1x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000468 InstrItinData<IIC_VLD1x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
469 InstrStage<2, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000470 InstrStage<2, [A8_LSPipe]>],
471 [2, 2, 2, 1]>,
472 //
473 // VLD1x3u
Evan Cheng41957f62010-11-03 00:40:22 +0000474 InstrItinData<IIC_VLD1x3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
475 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000476 InstrStage<3, [A8_LSPipe]>],
477 [2, 2, 3, 2, 1]>,
478 //
479 // VLD1x4u
Evan Cheng41957f62010-11-03 00:40:22 +0000480 InstrItinData<IIC_VLD1x4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
481 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000482 InstrStage<3, [A8_LSPipe]>],
483 [2, 2, 3, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000484 //
Bob Wilsonb796bbb2010-11-01 22:04:05 +0000485 // VLD1ln
486 InstrItinData<IIC_VLD1ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000487 InstrStage<3, [A8_NLSPipe], 0>,
Bob Wilsonb796bbb2010-11-01 22:04:05 +0000488 InstrStage<3, [A8_LSPipe]>],
489 [3, 1, 1, 1]>,
490 //
491 // VLD1lnu
492 InstrItinData<IIC_VLD1lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000493 InstrStage<3, [A8_NLSPipe], 0>,
Bob Wilsonb796bbb2010-11-01 22:04:05 +0000494 InstrStage<3, [A8_LSPipe]>],
495 [3, 2, 1, 1, 1, 1]>,
496 //
Bob Wilson2a0e9742010-11-27 06:35:16 +0000497 // VLD1dup
498 InstrItinData<IIC_VLD1dup, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
499 InstrStage<2, [A8_NLSPipe], 0>,
500 InstrStage<2, [A8_LSPipe]>],
501 [2, 1]>,
502 //
503 // VLD1dupu
504 InstrItinData<IIC_VLD1dupu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
505 InstrStage<2, [A8_NLSPipe], 0>,
506 InstrStage<2, [A8_LSPipe]>],
507 [2, 2, 1, 1]>,
508 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000509 // VLD2
Evan Cheng41957f62010-11-03 00:40:22 +0000510 InstrItinData<IIC_VLD2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
511 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000512 InstrStage<2, [A8_LSPipe]>],
Evan Cheng40bb6832010-10-09 01:26:12 +0000513 [2, 2, 1]>,
514 //
515 // VLD2x2
Evan Cheng41957f62010-11-03 00:40:22 +0000516 InstrItinData<IIC_VLD2x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
517 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000518 InstrStage<3, [A8_LSPipe]>],
519 [2, 2, 3, 3, 1]>,
520 //
521 // VLD2ln
Evan Cheng41957f62010-11-03 00:40:22 +0000522 InstrItinData<IIC_VLD2ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
523 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000524 InstrStage<3, [A8_LSPipe]>],
525 [3, 3, 1, 1, 1, 1]>,
526 //
527 // VLD2u
Evan Cheng41957f62010-11-03 00:40:22 +0000528 InstrItinData<IIC_VLD2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
529 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000530 InstrStage<2, [A8_LSPipe]>],
Evan Cheng40bb6832010-10-09 01:26:12 +0000531 [2, 2, 2, 1, 1, 1]>,
532 //
533 // VLD2x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000534 InstrItinData<IIC_VLD2x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
535 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000536 InstrStage<3, [A8_LSPipe]>],
537 [2, 2, 3, 3, 2, 1]>,
538 //
539 // VLD2lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000540 InstrItinData<IIC_VLD2lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
541 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000542 InstrStage<3, [A8_LSPipe]>],
543 [3, 3, 2, 1, 1, 1, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000544 //
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +0000545 // VLD2dup
546 InstrItinData<IIC_VLD2dup, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
547 InstrStage<2, [A8_NLSPipe], 0>,
548 InstrStage<2, [A8_LSPipe]>],
Bob Wilson2fcda632010-11-29 19:35:23 +0000549 [2, 2, 1]>,
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +0000550 //
551 // VLD2dupu
552 InstrItinData<IIC_VLD2dupu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
553 InstrStage<2, [A8_NLSPipe], 0>,
554 InstrStage<2, [A8_LSPipe]>],
Bob Wilson2fcda632010-11-29 19:35:23 +0000555 [2, 2, 2, 1, 1]>,
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +0000556 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000557 // VLD3
Evan Cheng41957f62010-11-03 00:40:22 +0000558 InstrItinData<IIC_VLD3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
559 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000560 InstrStage<4, [A8_LSPipe]>],
561 [3, 3, 4, 1]>,
562 //
563 // VLD3ln
Evan Cheng41957f62010-11-03 00:40:22 +0000564 InstrItinData<IIC_VLD3ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
565 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000566 InstrStage<5, [A8_LSPipe]>],
567 [4, 4, 5, 1, 1, 1, 1, 2]>,
568 //
569 // VLD3u
Evan Cheng41957f62010-11-03 00:40:22 +0000570 InstrItinData<IIC_VLD3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
571 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000572 InstrStage<4, [A8_LSPipe]>],
573 [3, 3, 4, 2, 1]>,
574 //
575 // VLD3lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000576 InstrItinData<IIC_VLD3lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
577 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000578 InstrStage<5, [A8_LSPipe]>],
579 [4, 4, 5, 2, 1, 1, 1, 1, 1, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000580 //
Bob Wilson86c6d802010-11-29 19:35:29 +0000581 // VLD3dup
582 InstrItinData<IIC_VLD3dup, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
583 InstrStage<3, [A8_NLSPipe], 0>,
584 InstrStage<3, [A8_LSPipe]>],
585 [2, 2, 3, 1]>,
586 //
587 // VLD3dupu
588 InstrItinData<IIC_VLD3dupu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
589 InstrStage<3, [A8_NLSPipe], 0>,
590 InstrStage<3, [A8_LSPipe]>],
591 [2, 2, 3, 2, 1, 1]>,
592 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000593 // VLD4
Evan Cheng41957f62010-11-03 00:40:22 +0000594 InstrItinData<IIC_VLD4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
595 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000596 InstrStage<4, [A8_LSPipe]>],
597 [3, 3, 4, 4, 1]>,
598 //
599 // VLD4ln
Evan Cheng41957f62010-11-03 00:40:22 +0000600 InstrItinData<IIC_VLD4ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
601 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000602 InstrStage<5, [A8_LSPipe]>],
603 [4, 4, 5, 5, 1, 1, 1, 1, 2, 2]>,
604 //
605 // VLD4u
Evan Cheng41957f62010-11-03 00:40:22 +0000606 InstrItinData<IIC_VLD4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
607 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000608 InstrStage<4, [A8_LSPipe]>],
609 [3, 3, 4, 4, 2, 1]>,
610 //
611 // VLD4lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000612 InstrItinData<IIC_VLD4lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
613 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000614 InstrStage<5, [A8_LSPipe]>],
615 [4, 4, 5, 5, 2, 1, 1, 1, 1, 1, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000616 //
Bob Wilson6c4c9822010-11-30 00:00:35 +0000617 // VLD4dup
618 InstrItinData<IIC_VLD4dup, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
619 InstrStage<3, [A8_NLSPipe], 0>,
620 InstrStage<3, [A8_LSPipe]>],
621 [2, 2, 3, 3, 1]>,
622 //
623 // VLD4dupu
624 InstrItinData<IIC_VLD4dupu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
625 InstrStage<3, [A8_NLSPipe], 0>,
626 InstrStage<3, [A8_LSPipe]>],
627 [2, 2, 3, 3, 2, 1, 1]>,
628 //
Evan Cheng60ff8792010-10-11 22:03:18 +0000629 // VST1
Evan Cheng41957f62010-11-03 00:40:22 +0000630 InstrItinData<IIC_VST1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
631 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000632 InstrStage<2, [A8_LSPipe]>],
633 [1, 1, 1]>,
634 //
635 // VST1x2
Evan Cheng41957f62010-11-03 00:40:22 +0000636 InstrItinData<IIC_VST1x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
637 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000638 InstrStage<2, [A8_LSPipe]>],
639 [1, 1, 1, 1]>,
640 //
641 // VST1x3
Evan Cheng41957f62010-11-03 00:40:22 +0000642 InstrItinData<IIC_VST1x3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
643 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000644 InstrStage<3, [A8_LSPipe]>],
645 [1, 1, 1, 1, 2]>,
646 //
647 // VST1x4
Evan Cheng41957f62010-11-03 00:40:22 +0000648 InstrItinData<IIC_VST1x4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
649 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000650 InstrStage<3, [A8_LSPipe]>],
651 [1, 1, 1, 1, 2, 2]>,
652 //
653 // VST1u
Evan Cheng41957f62010-11-03 00:40:22 +0000654 InstrItinData<IIC_VST1u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
655 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000656 InstrStage<2, [A8_LSPipe]>],
657 [2, 1, 1, 1, 1]>,
658 //
659 // VST1x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000660 InstrItinData<IIC_VST1x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
661 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000662 InstrStage<2, [A8_LSPipe]>],
663 [2, 1, 1, 1, 1, 1]>,
664 //
665 // VST1x3u
Evan Cheng41957f62010-11-03 00:40:22 +0000666 InstrItinData<IIC_VST1x3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
667 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000668 InstrStage<3, [A8_LSPipe]>],
669 [2, 1, 1, 1, 1, 1, 2]>,
670 //
671 // VST1x4u
Evan Cheng41957f62010-11-03 00:40:22 +0000672 InstrItinData<IIC_VST1x4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
673 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000674 InstrStage<3, [A8_LSPipe]>],
675 [2, 1, 1, 1, 1, 1, 2, 2]>,
676 //
Bob Wilsond0c6bc22010-11-02 21:18:25 +0000677 // VST1ln
678 InstrItinData<IIC_VST1ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000679 InstrStage<2, [A8_NLSPipe], 0>,
Bob Wilsond0c6bc22010-11-02 21:18:25 +0000680 InstrStage<2, [A8_LSPipe]>],
681 [1, 1, 1]>,
682 //
683 // VST1lnu
684 InstrItinData<IIC_VST1lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000685 InstrStage<2, [A8_NLSPipe], 0>,
Bob Wilsond0c6bc22010-11-02 21:18:25 +0000686 InstrStage<2, [A8_LSPipe]>],
687 [2, 1, 1, 1, 1]>,
688 //
Evan Cheng60ff8792010-10-11 22:03:18 +0000689 // VST2
Evan Cheng41957f62010-11-03 00:40:22 +0000690 InstrItinData<IIC_VST2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
691 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000692 InstrStage<2, [A8_LSPipe]>],
693 [1, 1, 1, 1]>,
694 //
695 // VST2x2
Evan Cheng41957f62010-11-03 00:40:22 +0000696 InstrItinData<IIC_VST2x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
697 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000698 InstrStage<4, [A8_LSPipe]>],
699 [1, 1, 1, 1, 2, 2]>,
700 //
701 // VST2u
Evan Cheng41957f62010-11-03 00:40:22 +0000702 InstrItinData<IIC_VST2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
703 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000704 InstrStage<2, [A8_LSPipe]>],
705 [2, 1, 1, 1, 1, 1]>,
706 //
707 // VST2x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000708 InstrItinData<IIC_VST2x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
709 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000710 InstrStage<4, [A8_LSPipe]>],
711 [2, 1, 1, 1, 1, 1, 2, 2]>,
712 //
713 // VST2ln
Evan Cheng41957f62010-11-03 00:40:22 +0000714 InstrItinData<IIC_VST2ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
715 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000716 InstrStage<2, [A8_LSPipe]>],
717 [1, 1, 1, 1]>,
718 //
719 // VST2lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000720 InstrItinData<IIC_VST2lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
721 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000722 InstrStage<2, [A8_LSPipe]>],
723 [2, 1, 1, 1, 1, 1]>,
724 //
725 // VST3
Evan Cheng41957f62010-11-03 00:40:22 +0000726 InstrItinData<IIC_VST3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
727 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000728 InstrStage<3, [A8_LSPipe]>],
729 [1, 1, 1, 1, 2]>,
730 //
731 // VST3u
Evan Cheng41957f62010-11-03 00:40:22 +0000732 InstrItinData<IIC_VST3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
733 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000734 InstrStage<3, [A8_LSPipe]>],
735 [2, 1, 1, 1, 1, 1, 2]>,
736 //
737 // VST3ln
Evan Cheng41957f62010-11-03 00:40:22 +0000738 InstrItinData<IIC_VST3ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
739 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000740 InstrStage<3, [A8_LSPipe]>],
741 [1, 1, 1, 1, 2]>,
742 //
743 // VST3lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000744 InstrItinData<IIC_VST3lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
745 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000746 InstrStage<3, [A8_LSPipe]>],
747 [2, 1, 1, 1, 1, 1, 2]>,
748 //
749 // VST4
Evan Cheng41957f62010-11-03 00:40:22 +0000750 InstrItinData<IIC_VST4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
751 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000752 InstrStage<4, [A8_LSPipe]>],
753 [1, 1, 1, 1, 2, 2]>,
754 //
755 // VST4u
Evan Cheng41957f62010-11-03 00:40:22 +0000756 InstrItinData<IIC_VST4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
757 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000758 InstrStage<4, [A8_LSPipe]>],
759 [2, 1, 1, 1, 1, 1, 2, 2]>,
760 //
761 // VST4ln
Evan Cheng41957f62010-11-03 00:40:22 +0000762 InstrItinData<IIC_VST4ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
763 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000764 InstrStage<4, [A8_LSPipe]>],
765 [1, 1, 1, 1, 2, 2]>,
766 //
767 // VST4lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000768 InstrItinData<IIC_VST4lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
769 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000770 InstrStage<4, [A8_LSPipe]>],
771 [2, 1, 1, 1, 1, 1, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000772 //
773 // Double-register FP Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000774 InstrItinData<IIC_VUNAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000775 InstrStage<1, [A8_NPipe]>], [5, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000776 //
777 // Quad-register FP Unary
778 // Result written in N5, but that is relative to the last cycle of multicycle,
779 // so we use 6 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000780 InstrItinData<IIC_VUNAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000781 InstrStage<2, [A8_NPipe]>], [6, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000782 //
783 // Double-register FP Binary
Evan Cheng41957f62010-11-03 00:40:22 +0000784 InstrItinData<IIC_VBIND, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000785 InstrStage<1, [A8_NPipe]>], [5, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000786 //
Evan Cheng08cec1e2010-10-11 23:41:41 +0000787 // VPADD, etc.
Evan Cheng41957f62010-11-03 00:40:22 +0000788 InstrItinData<IIC_VPBIND, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Cheng08cec1e2010-10-11 23:41:41 +0000789 InstrStage<1, [A8_NPipe]>], [5, 2, 2]>,
790 //
791 // Double-register FP VMUL
Evan Cheng41957f62010-11-03 00:40:22 +0000792 InstrItinData<IIC_VFMULD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Cheng08cec1e2010-10-11 23:41:41 +0000793 InstrStage<1, [A8_NPipe]>], [5, 2, 1]>,
794
795 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000796 // Quad-register FP Binary
797 // Result written in N5, but that is relative to the last cycle of multicycle,
798 // so we use 6 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000799 InstrItinData<IIC_VBINQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000800 InstrStage<2, [A8_NPipe]>], [6, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000801 //
Evan Cheng08cec1e2010-10-11 23:41:41 +0000802 // Quad-register FP VMUL
Evan Cheng41957f62010-11-03 00:40:22 +0000803 InstrItinData<IIC_VFMULQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Cheng08cec1e2010-10-11 23:41:41 +0000804 InstrStage<1, [A8_NPipe]>], [6, 2, 1]>,
805 //
Evan Chengcae6a122010-10-01 20:50:58 +0000806 // Move
Evan Cheng41957f62010-11-03 00:40:22 +0000807 InstrItinData<IIC_VMOV, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengcae6a122010-10-01 20:50:58 +0000808 InstrStage<1, [A8_NPipe]>], [1, 1]>,
809 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000810 // Move Immediate
Evan Cheng41957f62010-11-03 00:40:22 +0000811 InstrItinData<IIC_VMOVImm, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000812 InstrStage<1, [A8_NPipe]>], [3]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000813 //
814 // Double-register Permute Move
Evan Cheng41957f62010-11-03 00:40:22 +0000815 InstrItinData<IIC_VMOVD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000816 InstrStage<1, [A8_NLSPipe]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000817 //
818 // Quad-register Permute Move
819 // Result written in N2, but that is relative to the last cycle of multicycle,
820 // so we use 3 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000821 InstrItinData<IIC_VMOVQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000822 InstrStage<2, [A8_NLSPipe]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000823 //
824 // Integer to Single-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000825 InstrItinData<IIC_VMOVIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000826 InstrStage<1, [A8_NLSPipe]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000827 //
828 // Integer to Double-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000829 InstrItinData<IIC_VMOVID , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000830 InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000831 //
832 // Single-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000833 InstrItinData<IIC_VMOVSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000834 InstrStage<1, [A8_NLSPipe]>], [20, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000835 //
836 // Double-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000837 InstrItinData<IIC_VMOVDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000838 InstrStage<1, [A8_NLSPipe]>], [20, 20, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000839 //
840 // Integer to Lane Move
Evan Cheng41957f62010-11-03 00:40:22 +0000841 InstrItinData<IIC_VMOVISL , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000842 InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000843 //
Evan Chengcae6a122010-10-01 20:50:58 +0000844 // Vector narrow move
Evan Cheng41957f62010-11-03 00:40:22 +0000845 InstrItinData<IIC_VMOVN , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengef0ccad2010-10-01 21:48:06 +0000846 InstrStage<1, [A8_NPipe]>], [2, 1]>,
Evan Chengcae6a122010-10-01 20:50:58 +0000847 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000848 // Double-register Permute
Evan Cheng41957f62010-11-03 00:40:22 +0000849 InstrItinData<IIC_VPERMD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000850 InstrStage<1, [A8_NLSPipe]>], [2, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000851 //
852 // Quad-register Permute
853 // Result written in N2, but that is relative to the last cycle of multicycle,
854 // so we use 3 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000855 InstrItinData<IIC_VPERMQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000856 InstrStage<2, [A8_NLSPipe]>], [3, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000857 //
858 // Quad-register Permute (3 cycle issue)
859 // Result written in N2, but that is relative to the last cycle of multicycle,
860 // so we use 4 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000861 InstrItinData<IIC_VPERMQ3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000862 InstrStage<1, [A8_NLSPipe]>,
863 InstrStage<1, [A8_NPipe], 0>,
864 InstrStage<2, [A8_NLSPipe]>], [4, 4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000865 //
866 // Double-register FP Multiple-Accumulate
Evan Cheng41957f62010-11-03 00:40:22 +0000867 InstrItinData<IIC_VMACD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000868 InstrStage<1, [A8_NPipe]>], [9, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000869 //
870 // Quad-register FP Multiple-Accumulate
871 // Result written in N9, but that is relative to the last cycle of multicycle,
872 // so we use 10 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000873 InstrItinData<IIC_VMACQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000874 InstrStage<2, [A8_NPipe]>], [10, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000875 //
Evan Cheng82509e52012-04-11 00:13:00 +0000876 // Double-register Fused FP Multiple-Accumulate
877 InstrItinData<IIC_VFMACD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
878 InstrStage<1, [A8_NPipe]>], [9, 3, 2, 2]>,
879 //
880 // Quad-register Fused FP Multiple-Accumulate
881 // Result written in N9, but that is relative to the last cycle of multicycle,
882 // so we use 10 for those cases
883 InstrItinData<IIC_VFMACQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
884 InstrStage<2, [A8_NPipe]>], [10, 3, 2, 2]>,
885 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000886 // Double-register Reciprical Step
Evan Cheng41957f62010-11-03 00:40:22 +0000887 InstrItinData<IIC_VRECSD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000888 InstrStage<1, [A8_NPipe]>], [9, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000889 //
890 // Quad-register Reciprical Step
Evan Cheng41957f62010-11-03 00:40:22 +0000891 InstrItinData<IIC_VRECSQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000892 InstrStage<2, [A8_NPipe]>], [10, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000893 //
894 // Double-register Integer Count
Evan Cheng41957f62010-11-03 00:40:22 +0000895 InstrItinData<IIC_VCNTiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000896 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000897 //
898 // Quad-register Integer Count
899 // Result written in N3, but that is relative to the last cycle of multicycle,
900 // so we use 4 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000901 InstrItinData<IIC_VCNTiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000902 InstrStage<2, [A8_NPipe]>], [4, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000903 //
904 // Double-register Integer Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000905 InstrItinData<IIC_VUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000906 InstrStage<1, [A8_NPipe]>], [4, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000907 //
908 // Quad-register Integer Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000909 InstrItinData<IIC_VUNAiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000910 InstrStage<1, [A8_NPipe]>], [4, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000911 //
912 // Double-register Integer Q-Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000913 InstrItinData<IIC_VQUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000914 InstrStage<1, [A8_NPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000915 //
916 // Quad-register Integer CountQ-Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000917 InstrItinData<IIC_VQUNAiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000918 InstrStage<1, [A8_NPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000919 //
920 // Double-register Integer Binary
Evan Cheng41957f62010-11-03 00:40:22 +0000921 InstrItinData<IIC_VBINiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000922 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000923 //
924 // Quad-register Integer Binary
Evan Cheng41957f62010-11-03 00:40:22 +0000925 InstrItinData<IIC_VBINiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000926 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000927 //
928 // Double-register Integer Binary (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000929 InstrItinData<IIC_VBINi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000930 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000931 //
932 // Quad-register Integer Binary (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000933 InstrItinData<IIC_VBINi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000934 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000935
936 //
937 // Double-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000938 InstrItinData<IIC_VSUBiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000939 InstrStage<1, [A8_NPipe]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000940 //
941 // Quad-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000942 InstrItinData<IIC_VSUBiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000943 InstrStage<1, [A8_NPipe]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000944 //
945 // Double-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000946 InstrItinData<IIC_VSUBi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000947 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000948 //
949 // Quad-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000950 InstrItinData<IIC_VSUBi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000951 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000952 //
953 // Double-register Integer Shift
Evan Cheng41957f62010-11-03 00:40:22 +0000954 InstrItinData<IIC_VSHLiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000955 InstrStage<1, [A8_NPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000956 //
957 // Quad-register Integer Shift
Evan Cheng41957f62010-11-03 00:40:22 +0000958 InstrItinData<IIC_VSHLiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000959 InstrStage<2, [A8_NPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000960 //
961 // Double-register Integer Shift (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000962 InstrItinData<IIC_VSHLi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000963 InstrStage<1, [A8_NPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000964 //
965 // Quad-register Integer Shift (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000966 InstrItinData<IIC_VSHLi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000967 InstrStage<2, [A8_NPipe]>], [5, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000968 //
969 // Double-register Integer Pair Add Long
Evan Cheng41957f62010-11-03 00:40:22 +0000970 InstrItinData<IIC_VPALiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000971 InstrStage<1, [A8_NPipe]>], [6, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000972 //
973 // Quad-register Integer Pair Add Long
Evan Cheng41957f62010-11-03 00:40:22 +0000974 InstrItinData<IIC_VPALiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000975 InstrStage<2, [A8_NPipe]>], [7, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000976 //
977 // Double-register Absolute Difference and Accumulate
Evan Cheng41957f62010-11-03 00:40:22 +0000978 InstrItinData<IIC_VABAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000979 InstrStage<1, [A8_NPipe]>], [6, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000980 //
981 // Quad-register Absolute Difference and Accumulate
Evan Cheng41957f62010-11-03 00:40:22 +0000982 InstrItinData<IIC_VABAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000983 InstrStage<2, [A8_NPipe]>], [6, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000984
985 //
986 // Double-register Integer Multiply (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +0000987 InstrItinData<IIC_VMULi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000988 InstrStage<1, [A8_NPipe]>], [6, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000989 //
990 // Double-register Integer Multiply (.32)
Evan Cheng41957f62010-11-03 00:40:22 +0000991 InstrItinData<IIC_VMULi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000992 InstrStage<2, [A8_NPipe]>], [7, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000993 //
994 // Quad-register Integer Multiply (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +0000995 InstrItinData<IIC_VMULi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000996 InstrStage<2, [A8_NPipe]>], [7, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000997 //
998 // Quad-register Integer Multiply (.32)
Evan Cheng41957f62010-11-03 00:40:22 +0000999 InstrItinData<IIC_VMULi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001000 InstrStage<1, [A8_NPipe]>,
1001 InstrStage<2, [A8_NLSPipe], 0>,
1002 InstrStage<3, [A8_NPipe]>], [9, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001003 //
1004 // Double-register Integer Multiply-Accumulate (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +00001005 InstrItinData<IIC_VMACi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001006 InstrStage<1, [A8_NPipe]>], [6, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001007 //
1008 // Double-register Integer Multiply-Accumulate (.32)
Evan Cheng41957f62010-11-03 00:40:22 +00001009 InstrItinData<IIC_VMACi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001010 InstrStage<2, [A8_NPipe]>], [7, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001011 //
1012 // Quad-register Integer Multiply-Accumulate (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +00001013 InstrItinData<IIC_VMACi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001014 InstrStage<2, [A8_NPipe]>], [7, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001015 //
1016 // Quad-register Integer Multiply-Accumulate (.32)
Evan Cheng41957f62010-11-03 00:40:22 +00001017 InstrItinData<IIC_VMACi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001018 InstrStage<1, [A8_NPipe]>,
1019 InstrStage<2, [A8_NLSPipe], 0>,
1020 InstrStage<3, [A8_NPipe]>], [9, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001021 //
1022 // Double-register VEXT
Evan Cheng41957f62010-11-03 00:40:22 +00001023 InstrItinData<IIC_VEXTD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001024 InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001025 //
1026 // Quad-register VEXT
Evan Cheng41957f62010-11-03 00:40:22 +00001027 InstrItinData<IIC_VEXTQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001028 InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001029 //
1030 // VTB
Evan Cheng41957f62010-11-03 00:40:22 +00001031 InstrItinData<IIC_VTB1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001032 InstrStage<2, [A8_NLSPipe]>], [3, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001033 InstrItinData<IIC_VTB2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001034 InstrStage<2, [A8_NLSPipe]>], [3, 2, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001035 InstrItinData<IIC_VTB3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001036 InstrStage<1, [A8_NLSPipe]>,
1037 InstrStage<1, [A8_NPipe], 0>,
1038 InstrStage<2, [A8_NLSPipe]>], [4, 2, 2, 3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001039 InstrItinData<IIC_VTB4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001040 InstrStage<1, [A8_NLSPipe]>,
1041 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +00001042 InstrStage<2, [A8_NLSPipe]>],[4, 2, 2, 3, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001043 //
1044 // VTBX
Evan Cheng41957f62010-11-03 00:40:22 +00001045 InstrItinData<IIC_VTBX1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001046 InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001047 InstrItinData<IIC_VTBX2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001048 InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001049 InstrItinData<IIC_VTBX3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001050 InstrStage<1, [A8_NLSPipe]>,
1051 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +00001052 InstrStage<2, [A8_NLSPipe]>],[4, 1, 2, 2, 3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001053 InstrItinData<IIC_VTBX4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001054 InstrStage<1, [A8_NLSPipe]>,
1055 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +00001056 InstrStage<2, [A8_NLSPipe]>], [4, 1, 2, 2, 3, 3, 1]>
Anton Korobeynikove1676012010-04-07 18:22:11 +00001057]>;