blob: 61de00a2086af3227e1dede9f279910713a57dde [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>,
Andrew Trick218ee742012-07-02 18:10:42 +0000158 InstrStage<2, [A8_LSPipe]>],
159 [1, 1, 1, 1, 3], [], -1>, // dynamic uops
Evan Chenga0792de2010-10-06 06:27:31 +0000160 //
161 // Load multiple + update, defs are the 1st and 5th operands.
Evan Cheng41957f62010-11-03 00:40:22 +0000162 InstrItinData<IIC_iLoad_mu , [InstrStage<3, [A8_Pipe0], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000163 InstrStage<3, [A8_LSPipe]>],
164 [2, 1, 1, 1, 3], [], -1>, // dynamic uops
Evan Cheng7602acb2010-09-08 22:57:08 +0000165 //
166 // Load multiple plus branch
Evan Cheng41957f62010-11-03 00:40:22 +0000167 InstrItinData<IIC_iLoad_mBr, [InstrStage<3, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000168 InstrStage<3, [A8_LSPipe]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000169 InstrStage<1, [A8_Pipe0, A8_Pipe1]>],
Andrew Trick218ee742012-07-02 18:10:42 +0000170 [1, 2, 1, 1, 3], [], -1>, // dynamic uops
Evan Chenga0792de2010-10-06 06:27:31 +0000171 //
172 // Pop, def is the 3rd operand.
Evan Cheng41957f62010-11-03 00:40:22 +0000173 InstrItinData<IIC_iPop , [InstrStage<3, [A8_Pipe0], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000174 InstrStage<3, [A8_LSPipe]>],
175 [1, 1, 3], [], -1>, // dynamic uops
Evan Chenga0792de2010-10-06 06:27:31 +0000176 //
177 // Push, def is the 3th operand.
Evan Cheng41957f62010-11-03 00:40:22 +0000178 InstrItinData<IIC_iPop_Br, [InstrStage<3, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000179 InstrStage<3, [A8_LSPipe]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000180 InstrStage<1, [A8_Pipe0, A8_Pipe1]>],
Andrew Trick218ee742012-07-02 18:10:42 +0000181 [1, 1, 3], [], -1>, // dynamic uops
Evan Chengbd30ce42010-09-24 22:41:41 +0000182 //
183 // iLoadi + iALUr for t2LDRpci_pic.
Evan Cheng41957f62010-11-03 00:40:22 +0000184 InstrItinData<IIC_iLoadiALU, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000185 InstrStage<1, [A8_LSPipe]>,
Evan Chengbd30ce42010-09-24 22:41:41 +0000186 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [4, 1]>,
187
188
Anton Korobeynikove1676012010-04-07 18:22:11 +0000189 // Integer store pipeline
190 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000191 // Immediate offset
Evan Cheng41957f62010-11-03 00:40:22 +0000192 InstrItinData<IIC_iStore_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_bh_i,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000195 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000196 InstrItinData<IIC_iStore_d_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000197 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000198 //
199 // Register offset
Evan Cheng41957f62010-11-03 00:40:22 +0000200 InstrItinData<IIC_iStore_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_bh_r,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000203 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000204 InstrItinData<IIC_iStore_d_r, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000205 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000206 //
207 // Scaled register offset, issues over 2 cycles
Evan Cheng41957f62010-11-03 00:40:22 +0000208 InstrItinData<IIC_iStore_si , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000209 InstrStage<2, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000210 InstrItinData<IIC_iStore_bh_si,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000211 InstrStage<2, [A8_LSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000212 //
213 // Immediate offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000214 InstrItinData<IIC_iStore_iu , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000215 InstrStage<1, [A8_LSPipe]>], [2, 3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000216 InstrItinData<IIC_iStore_bh_iu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000217 InstrStage<1, [A8_LSPipe]>], [2, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000218 //
219 // Register offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000220 InstrItinData<IIC_iStore_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_bh_ru,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000223 InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000224 InstrItinData<IIC_iStore_d_ru, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000225 InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000226 //
227 // Scaled register offset with update, issues over 2 cycles
Evan Cheng41957f62010-11-03 00:40:22 +0000228 InstrItinData<IIC_iStore_siu, [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000229 InstrStage<2, [A8_LSPipe]>], [3, 3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000230 InstrItinData<IIC_iStore_bh_siu,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000231 InstrStage<2, [A8_LSPipe]>], [3, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000232 //
Evan Chengd2ca8132010-10-09 01:03:04 +0000233 // Store multiple. Pipeline 0 only.
234 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers.
Evan Cheng41957f62010-11-03 00:40:22 +0000235 InstrItinData<IIC_iStore_m , [InstrStage<2, [A8_Pipe0], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000236 InstrStage<2, [A8_LSPipe]>],
237 [], [], -1>, // dynamic uops
Evan Chenga0792de2010-10-06 06:27:31 +0000238 //
239 // Store multiple + update
Evan Cheng41957f62010-11-03 00:40:22 +0000240 InstrItinData<IIC_iStore_mu, [InstrStage<2, [A8_Pipe0], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000241 InstrStage<2, [A8_LSPipe]>],
242 [2], [], -1>, // dynamic uops
Evan Chengdfed19f2010-11-03 06:34:55 +0000243 //
244 // Preload
245 InstrItinData<IIC_Preload, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
246
Anton Korobeynikove1676012010-04-07 18:22:11 +0000247 // Branch
248 //
249 // no delay slots, so the latency of a branch is unimportant
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000250 InstrItinData<IIC_Br , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000251
252 // VFP
253 // Issue through integer pipeline, and execute in NEON unit. We assume
254 // RunFast mode so that NFP pipeline is used for single-precision when
255 // possible.
256 //
257 // FP Special Register to Integer Register File Move
Evan Cheng41957f62010-11-03 00:40:22 +0000258 InstrItinData<IIC_fpSTAT , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chenge09206d2010-10-29 23:16:55 +0000259 InstrStage<1, [A8_NLSPipe]>], [20]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000260 //
261 // Single-precision FP Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000262 InstrItinData<IIC_fpUNA32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000263 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000264 //
265 // Double-precision FP Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000266 InstrItinData<IIC_fpUNA64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000267 InstrStage<4, [A8_NPipe], 0>,
268 InstrStage<4, [A8_NLSPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000269 //
270 // Single-precision FP Compare
Evan Cheng41957f62010-11-03 00:40:22 +0000271 InstrItinData<IIC_fpCMP32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000272 InstrStage<1, [A8_NPipe]>], [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000273 //
274 // Double-precision FP Compare
Evan Cheng41957f62010-11-03 00:40:22 +0000275 InstrItinData<IIC_fpCMP64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000276 InstrStage<4, [A8_NPipe], 0>,
277 InstrStage<4, [A8_NLSPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000278 //
279 // Single to Double FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000280 InstrItinData<IIC_fpCVTSD , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000281 InstrStage<7, [A8_NPipe], 0>,
282 InstrStage<7, [A8_NLSPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000283 //
284 // Double to Single FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000285 InstrItinData<IIC_fpCVTDS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000286 InstrStage<5, [A8_NPipe], 0>,
287 InstrStage<5, [A8_NLSPipe]>], [5, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000288 //
289 // Single-Precision FP to Integer Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000290 InstrItinData<IIC_fpCVTSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000291 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000292 //
293 // Double-Precision FP to Integer Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000294 InstrItinData<IIC_fpCVTDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000295 InstrStage<8, [A8_NPipe], 0>,
296 InstrStage<8, [A8_NLSPipe]>], [8, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000297 //
298 // Integer to Single-Precision FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000299 InstrItinData<IIC_fpCVTIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000300 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000301 //
302 // Integer to Double-Precision FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000303 InstrItinData<IIC_fpCVTID , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000304 InstrStage<8, [A8_NPipe], 0>,
305 InstrStage<8, [A8_NLSPipe]>], [8, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000306 //
307 // Single-precision FP ALU
Evan Cheng41957f62010-11-03 00:40:22 +0000308 InstrItinData<IIC_fpALU32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000309 InstrStage<1, [A8_NPipe]>], [7, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000310 //
311 // Double-precision FP ALU
Evan Cheng41957f62010-11-03 00:40:22 +0000312 InstrItinData<IIC_fpALU64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000313 InstrStage<9, [A8_NPipe], 0>,
314 InstrStage<9, [A8_NLSPipe]>], [9, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000315 //
316 // Single-precision FP Multiply
Evan Cheng41957f62010-11-03 00:40:22 +0000317 InstrItinData<IIC_fpMUL32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000318 InstrStage<1, [A8_NPipe]>], [7, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000319 //
320 // Double-precision FP Multiply
Evan Cheng41957f62010-11-03 00:40:22 +0000321 InstrItinData<IIC_fpMUL64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000322 InstrStage<11, [A8_NPipe], 0>,
323 InstrStage<11, [A8_NLSPipe]>], [11, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000324 //
325 // Single-precision FP MAC
Evan Cheng41957f62010-11-03 00:40:22 +0000326 InstrItinData<IIC_fpMAC32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000327 InstrStage<1, [A8_NPipe]>], [7, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000328 //
329 // Double-precision FP MAC
Evan Cheng41957f62010-11-03 00:40:22 +0000330 InstrItinData<IIC_fpMAC64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000331 InstrStage<19, [A8_NPipe], 0>,
332 InstrStage<19, [A8_NLSPipe]>], [19, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000333 //
Evan Cheng82509e52012-04-11 00:13:00 +0000334 // Single-precision Fused FP MAC
335 InstrItinData<IIC_fpFMAC32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
336 InstrStage<1, [A8_NPipe]>], [7, 2, 1, 1]>,
337 //
338 // Double-precision Fused FP MAC
339 InstrItinData<IIC_fpFMAC64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
340 InstrStage<19, [A8_NPipe], 0>,
341 InstrStage<19, [A8_NLSPipe]>], [19, 2, 1, 1]>,
342 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000343 // Single-precision FP DIV
Evan Cheng41957f62010-11-03 00:40:22 +0000344 InstrItinData<IIC_fpDIV32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000345 InstrStage<20, [A8_NPipe], 0>,
346 InstrStage<20, [A8_NLSPipe]>], [20, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000347 //
348 // Double-precision FP DIV
Evan Cheng41957f62010-11-03 00:40:22 +0000349 InstrItinData<IIC_fpDIV64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000350 InstrStage<29, [A8_NPipe], 0>,
351 InstrStage<29, [A8_NLSPipe]>], [29, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000352 //
353 // Single-precision FP SQRT
Evan Cheng41957f62010-11-03 00:40:22 +0000354 InstrItinData<IIC_fpSQRT32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000355 InstrStage<19, [A8_NPipe], 0>,
356 InstrStage<19, [A8_NLSPipe]>], [19, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000357 //
358 // Double-precision FP SQRT
Evan Cheng41957f62010-11-03 00:40:22 +0000359 InstrItinData<IIC_fpSQRT64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000360 InstrStage<29, [A8_NPipe], 0>,
361 InstrStage<29, [A8_NLSPipe]>], [29, 1]>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000362
363 //
364 // Integer to Single-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000365 InstrItinData<IIC_fpMOVIS, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000366 InstrStage<1, [A8_NPipe]>],
367 [2, 1]>,
368 //
369 // Integer to Double-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000370 InstrItinData<IIC_fpMOVID, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000371 InstrStage<1, [A8_NPipe]>],
372 [2, 1, 1]>,
373 //
374 // Single-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000375 InstrItinData<IIC_fpMOVSI, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000376 InstrStage<1, [A8_NPipe]>],
377 [20, 1]>,
378 //
379 // Double-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000380 InstrItinData<IIC_fpMOVDI, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000381 InstrStage<1, [A8_NPipe]>],
382 [20, 20, 1]>,
383
Anton Korobeynikove1676012010-04-07 18:22:11 +0000384 //
385 // Single-precision FP Load
Evan Cheng41957f62010-11-03 00:40:22 +0000386 InstrItinData<IIC_fpLoad32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
387 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000388 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000389 [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000390 //
391 // Double-precision FP Load
Evan Cheng41957f62010-11-03 00:40:22 +0000392 InstrItinData<IIC_fpLoad64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
393 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000394 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000395 [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000396 //
397 // FP Load Multiple
Evan Chengd2ca8132010-10-09 01:03:04 +0000398 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers.
Evan Cheng41957f62010-11-03 00:40:22 +0000399 InstrItinData<IIC_fpLoad_m, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
400 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000401 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000402 InstrStage<1, [A8_NLSPipe], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000403 InstrStage<1, [A8_LSPipe]>],
404 [1, 1, 1, 2], [], -1>, // dynamic uops
Evan Cheng5a50cee2010-10-07 01:50:48 +0000405 //
406 // FP Load Multiple + update
Evan Cheng41957f62010-11-03 00:40:22 +0000407 InstrItinData<IIC_fpLoad_mu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
408 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000409 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000410 InstrStage<1, [A8_NLSPipe], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000411 InstrStage<1, [A8_LSPipe]>],
412 [2, 1, 1, 1, 2], [], -1>, // dynamic uops
Anton Korobeynikove1676012010-04-07 18:22:11 +0000413 //
414 // Single-precision FP Store
Evan Cheng41957f62010-11-03 00:40:22 +0000415 InstrItinData<IIC_fpStore32,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
416 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000417 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000418 [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000419 //
420 // Double-precision FP Store
Evan Cheng41957f62010-11-03 00:40:22 +0000421 InstrItinData<IIC_fpStore64,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
422 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000423 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000424 [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000425 //
426 // FP Store Multiple
Evan Cheng41957f62010-11-03 00:40:22 +0000427 InstrItinData<IIC_fpStore_m,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
428 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000429 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000430 InstrStage<1, [A8_NLSPipe], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000431 InstrStage<1, [A8_LSPipe]>],
432 [1, 1, 1, 1], [], -1>, // dynamic uops
Evan Cheng5a50cee2010-10-07 01:50:48 +0000433 //
434 // FP Store Multiple + update
Evan Cheng41957f62010-11-03 00:40:22 +0000435 InstrItinData<IIC_fpStore_mu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
436 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000437 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000438 InstrStage<1, [A8_NLSPipe], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000439 InstrStage<1, [A8_LSPipe]>],
440 [2, 1, 1, 1, 1], [], -1>, // dynamic uops
Anton Korobeynikove1676012010-04-07 18:22:11 +0000441 // NEON
442 // Issue through integer pipeline, and execute in NEON unit.
443 //
444 // VLD1
Evan Cheng41957f62010-11-03 00:40:22 +0000445 InstrItinData<IIC_VLD1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
446 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000447 InstrStage<2, [A8_LSPipe]>],
448 [2, 1]>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000449 // VLD1x2
Evan Cheng41957f62010-11-03 00:40:22 +0000450 InstrItinData<IIC_VLD1x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
451 InstrStage<2, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000452 InstrStage<2, [A8_LSPipe]>],
453 [2, 2, 1]>,
454 //
455 // VLD1x3
Evan Cheng41957f62010-11-03 00:40:22 +0000456 InstrItinData<IIC_VLD1x3, [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, 1]>,
460 //
461 // VLD1x4
Evan Cheng41957f62010-11-03 00:40:22 +0000462 InstrItinData<IIC_VLD1x4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
463 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000464 InstrStage<3, [A8_LSPipe]>],
465 [2, 2, 3, 3, 1]>,
466 //
467 // VLD1u
Evan Cheng41957f62010-11-03 00:40:22 +0000468 InstrItinData<IIC_VLD1u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
469 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000470 InstrStage<2, [A8_LSPipe]>],
Evan Chengd2ca8132010-10-09 01:03:04 +0000471 [2, 2, 1]>,
472 //
473 // VLD1x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000474 InstrItinData<IIC_VLD1x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
475 InstrStage<2, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000476 InstrStage<2, [A8_LSPipe]>],
477 [2, 2, 2, 1]>,
478 //
479 // VLD1x3u
Evan Cheng41957f62010-11-03 00:40:22 +0000480 InstrItinData<IIC_VLD1x3u, [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, 2, 1]>,
484 //
485 // VLD1x4u
Evan Cheng41957f62010-11-03 00:40:22 +0000486 InstrItinData<IIC_VLD1x4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
487 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000488 InstrStage<3, [A8_LSPipe]>],
489 [2, 2, 3, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000490 //
Bob Wilsonb796bbb2010-11-01 22:04:05 +0000491 // VLD1ln
492 InstrItinData<IIC_VLD1ln, [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, 1, 1, 1]>,
496 //
497 // VLD1lnu
498 InstrItinData<IIC_VLD1lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000499 InstrStage<3, [A8_NLSPipe], 0>,
Bob Wilsonb796bbb2010-11-01 22:04:05 +0000500 InstrStage<3, [A8_LSPipe]>],
501 [3, 2, 1, 1, 1, 1]>,
502 //
Bob Wilson2a0e9742010-11-27 06:35:16 +0000503 // VLD1dup
504 InstrItinData<IIC_VLD1dup, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
505 InstrStage<2, [A8_NLSPipe], 0>,
506 InstrStage<2, [A8_LSPipe]>],
507 [2, 1]>,
508 //
509 // VLD1dupu
510 InstrItinData<IIC_VLD1dupu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
511 InstrStage<2, [A8_NLSPipe], 0>,
512 InstrStage<2, [A8_LSPipe]>],
513 [2, 2, 1, 1]>,
514 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000515 // VLD2
Evan Cheng41957f62010-11-03 00:40:22 +0000516 InstrItinData<IIC_VLD2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
517 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000518 InstrStage<2, [A8_LSPipe]>],
Evan Cheng40bb6832010-10-09 01:26:12 +0000519 [2, 2, 1]>,
520 //
521 // VLD2x2
Evan Cheng41957f62010-11-03 00:40:22 +0000522 InstrItinData<IIC_VLD2x2, [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 [2, 2, 3, 3, 1]>,
526 //
527 // VLD2ln
Evan Cheng41957f62010-11-03 00:40:22 +0000528 InstrItinData<IIC_VLD2ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
529 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000530 InstrStage<3, [A8_LSPipe]>],
531 [3, 3, 1, 1, 1, 1]>,
532 //
533 // VLD2u
Evan Cheng41957f62010-11-03 00:40:22 +0000534 InstrItinData<IIC_VLD2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
535 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000536 InstrStage<2, [A8_LSPipe]>],
Evan Cheng40bb6832010-10-09 01:26:12 +0000537 [2, 2, 2, 1, 1, 1]>,
538 //
539 // VLD2x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000540 InstrItinData<IIC_VLD2x2u, [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 [2, 2, 3, 3, 2, 1]>,
544 //
545 // VLD2lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000546 InstrItinData<IIC_VLD2lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
547 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000548 InstrStage<3, [A8_LSPipe]>],
549 [3, 3, 2, 1, 1, 1, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000550 //
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +0000551 // VLD2dup
552 InstrItinData<IIC_VLD2dup, [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, 1]>,
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +0000556 //
557 // VLD2dupu
558 InstrItinData<IIC_VLD2dupu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
559 InstrStage<2, [A8_NLSPipe], 0>,
560 InstrStage<2, [A8_LSPipe]>],
Bob Wilson2fcda632010-11-29 19:35:23 +0000561 [2, 2, 2, 1, 1]>,
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +0000562 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000563 // VLD3
Evan Cheng41957f62010-11-03 00:40:22 +0000564 InstrItinData<IIC_VLD3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
565 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000566 InstrStage<4, [A8_LSPipe]>],
567 [3, 3, 4, 1]>,
568 //
569 // VLD3ln
Evan Cheng41957f62010-11-03 00:40:22 +0000570 InstrItinData<IIC_VLD3ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
571 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000572 InstrStage<5, [A8_LSPipe]>],
573 [4, 4, 5, 1, 1, 1, 1, 2]>,
574 //
575 // VLD3u
Evan Cheng41957f62010-11-03 00:40:22 +0000576 InstrItinData<IIC_VLD3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
577 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000578 InstrStage<4, [A8_LSPipe]>],
579 [3, 3, 4, 2, 1]>,
580 //
581 // VLD3lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000582 InstrItinData<IIC_VLD3lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
583 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000584 InstrStage<5, [A8_LSPipe]>],
585 [4, 4, 5, 2, 1, 1, 1, 1, 1, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000586 //
Bob Wilson86c6d802010-11-29 19:35:29 +0000587 // VLD3dup
588 InstrItinData<IIC_VLD3dup, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
589 InstrStage<3, [A8_NLSPipe], 0>,
590 InstrStage<3, [A8_LSPipe]>],
591 [2, 2, 3, 1]>,
592 //
593 // VLD3dupu
594 InstrItinData<IIC_VLD3dupu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
595 InstrStage<3, [A8_NLSPipe], 0>,
596 InstrStage<3, [A8_LSPipe]>],
597 [2, 2, 3, 2, 1, 1]>,
598 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000599 // VLD4
Evan Cheng41957f62010-11-03 00:40:22 +0000600 InstrItinData<IIC_VLD4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
601 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000602 InstrStage<4, [A8_LSPipe]>],
603 [3, 3, 4, 4, 1]>,
604 //
605 // VLD4ln
Evan Cheng41957f62010-11-03 00:40:22 +0000606 InstrItinData<IIC_VLD4ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
607 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000608 InstrStage<5, [A8_LSPipe]>],
609 [4, 4, 5, 5, 1, 1, 1, 1, 2, 2]>,
610 //
611 // VLD4u
Evan Cheng41957f62010-11-03 00:40:22 +0000612 InstrItinData<IIC_VLD4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
613 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000614 InstrStage<4, [A8_LSPipe]>],
615 [3, 3, 4, 4, 2, 1]>,
616 //
617 // VLD4lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000618 InstrItinData<IIC_VLD4lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
619 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000620 InstrStage<5, [A8_LSPipe]>],
621 [4, 4, 5, 5, 2, 1, 1, 1, 1, 1, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000622 //
Bob Wilson6c4c9822010-11-30 00:00:35 +0000623 // VLD4dup
624 InstrItinData<IIC_VLD4dup, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
625 InstrStage<3, [A8_NLSPipe], 0>,
626 InstrStage<3, [A8_LSPipe]>],
627 [2, 2, 3, 3, 1]>,
628 //
629 // VLD4dupu
630 InstrItinData<IIC_VLD4dupu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
631 InstrStage<3, [A8_NLSPipe], 0>,
632 InstrStage<3, [A8_LSPipe]>],
633 [2, 2, 3, 3, 2, 1, 1]>,
634 //
Evan Cheng60ff8792010-10-11 22:03:18 +0000635 // VST1
Evan Cheng41957f62010-11-03 00:40:22 +0000636 InstrItinData<IIC_VST1, [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]>,
640 //
641 // VST1x2
Evan Cheng41957f62010-11-03 00:40:22 +0000642 InstrItinData<IIC_VST1x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
643 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000644 InstrStage<2, [A8_LSPipe]>],
645 [1, 1, 1, 1]>,
646 //
647 // VST1x3
Evan Cheng41957f62010-11-03 00:40:22 +0000648 InstrItinData<IIC_VST1x3, [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]>,
652 //
653 // VST1x4
Evan Cheng41957f62010-11-03 00:40:22 +0000654 InstrItinData<IIC_VST1x4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
655 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000656 InstrStage<3, [A8_LSPipe]>],
657 [1, 1, 1, 1, 2, 2]>,
658 //
659 // VST1u
Evan Cheng41957f62010-11-03 00:40:22 +0000660 InstrItinData<IIC_VST1u, [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]>,
664 //
665 // VST1x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000666 InstrItinData<IIC_VST1x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
667 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000668 InstrStage<2, [A8_LSPipe]>],
669 [2, 1, 1, 1, 1, 1]>,
670 //
671 // VST1x3u
Evan Cheng41957f62010-11-03 00:40:22 +0000672 InstrItinData<IIC_VST1x3u, [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]>,
676 //
677 // VST1x4u
Evan Cheng41957f62010-11-03 00:40:22 +0000678 InstrItinData<IIC_VST1x4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
679 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000680 InstrStage<3, [A8_LSPipe]>],
681 [2, 1, 1, 1, 1, 1, 2, 2]>,
682 //
Bob Wilsond0c6bc22010-11-02 21:18:25 +0000683 // VST1ln
684 InstrItinData<IIC_VST1ln, [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 [1, 1, 1]>,
688 //
689 // VST1lnu
690 InstrItinData<IIC_VST1lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000691 InstrStage<2, [A8_NLSPipe], 0>,
Bob Wilsond0c6bc22010-11-02 21:18:25 +0000692 InstrStage<2, [A8_LSPipe]>],
693 [2, 1, 1, 1, 1]>,
694 //
Evan Cheng60ff8792010-10-11 22:03:18 +0000695 // VST2
Evan Cheng41957f62010-11-03 00:40:22 +0000696 InstrItinData<IIC_VST2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
697 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000698 InstrStage<2, [A8_LSPipe]>],
699 [1, 1, 1, 1]>,
700 //
701 // VST2x2
Evan Cheng41957f62010-11-03 00:40:22 +0000702 InstrItinData<IIC_VST2x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
703 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000704 InstrStage<4, [A8_LSPipe]>],
705 [1, 1, 1, 1, 2, 2]>,
706 //
707 // VST2u
Evan Cheng41957f62010-11-03 00:40:22 +0000708 InstrItinData<IIC_VST2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
709 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000710 InstrStage<2, [A8_LSPipe]>],
711 [2, 1, 1, 1, 1, 1]>,
712 //
713 // VST2x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000714 InstrItinData<IIC_VST2x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
715 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000716 InstrStage<4, [A8_LSPipe]>],
717 [2, 1, 1, 1, 1, 1, 2, 2]>,
718 //
719 // VST2ln
Evan Cheng41957f62010-11-03 00:40:22 +0000720 InstrItinData<IIC_VST2ln, [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 [1, 1, 1, 1]>,
724 //
725 // VST2lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000726 InstrItinData<IIC_VST2lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
727 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000728 InstrStage<2, [A8_LSPipe]>],
729 [2, 1, 1, 1, 1, 1]>,
730 //
731 // VST3
Evan Cheng41957f62010-11-03 00:40:22 +0000732 InstrItinData<IIC_VST3, [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 [1, 1, 1, 1, 2]>,
736 //
737 // VST3u
Evan Cheng41957f62010-11-03 00:40:22 +0000738 InstrItinData<IIC_VST3u, [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 [2, 1, 1, 1, 1, 1, 2]>,
742 //
743 // VST3ln
Evan Cheng41957f62010-11-03 00:40:22 +0000744 InstrItinData<IIC_VST3ln, [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 [1, 1, 1, 1, 2]>,
748 //
749 // VST3lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000750 InstrItinData<IIC_VST3lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
751 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000752 InstrStage<3, [A8_LSPipe]>],
753 [2, 1, 1, 1, 1, 1, 2]>,
754 //
755 // VST4
Evan Cheng41957f62010-11-03 00:40:22 +0000756 InstrItinData<IIC_VST4, [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 [1, 1, 1, 1, 2, 2]>,
760 //
761 // VST4u
Evan Cheng41957f62010-11-03 00:40:22 +0000762 InstrItinData<IIC_VST4u, [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 [2, 1, 1, 1, 1, 1, 2, 2]>,
766 //
767 // VST4ln
Evan Cheng41957f62010-11-03 00:40:22 +0000768 InstrItinData<IIC_VST4ln, [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 [1, 1, 1, 1, 2, 2]>,
772 //
773 // VST4lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000774 InstrItinData<IIC_VST4lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
775 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000776 InstrStage<4, [A8_LSPipe]>],
777 [2, 1, 1, 1, 1, 1, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000778 //
779 // Double-register FP Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000780 InstrItinData<IIC_VUNAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000781 InstrStage<1, [A8_NPipe]>], [5, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000782 //
783 // Quad-register FP Unary
784 // Result written in N5, but that is relative to the last cycle of multicycle,
785 // so we use 6 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000786 InstrItinData<IIC_VUNAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000787 InstrStage<2, [A8_NPipe]>], [6, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000788 //
789 // Double-register FP Binary
Evan Cheng41957f62010-11-03 00:40:22 +0000790 InstrItinData<IIC_VBIND, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000791 InstrStage<1, [A8_NPipe]>], [5, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000792 //
Evan Cheng08cec1e2010-10-11 23:41:41 +0000793 // VPADD, etc.
Evan Cheng41957f62010-11-03 00:40:22 +0000794 InstrItinData<IIC_VPBIND, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Cheng08cec1e2010-10-11 23:41:41 +0000795 InstrStage<1, [A8_NPipe]>], [5, 2, 2]>,
796 //
797 // Double-register FP VMUL
Evan Cheng41957f62010-11-03 00:40:22 +0000798 InstrItinData<IIC_VFMULD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Cheng08cec1e2010-10-11 23:41:41 +0000799 InstrStage<1, [A8_NPipe]>], [5, 2, 1]>,
800
801 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000802 // Quad-register FP Binary
803 // Result written in N5, but that is relative to the last cycle of multicycle,
804 // so we use 6 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000805 InstrItinData<IIC_VBINQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000806 InstrStage<2, [A8_NPipe]>], [6, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000807 //
Evan Cheng08cec1e2010-10-11 23:41:41 +0000808 // Quad-register FP VMUL
Evan Cheng41957f62010-11-03 00:40:22 +0000809 InstrItinData<IIC_VFMULQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Cheng08cec1e2010-10-11 23:41:41 +0000810 InstrStage<1, [A8_NPipe]>], [6, 2, 1]>,
811 //
Evan Chengcae6a122010-10-01 20:50:58 +0000812 // Move
Evan Cheng41957f62010-11-03 00:40:22 +0000813 InstrItinData<IIC_VMOV, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengcae6a122010-10-01 20:50:58 +0000814 InstrStage<1, [A8_NPipe]>], [1, 1]>,
815 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000816 // Move Immediate
Evan Cheng41957f62010-11-03 00:40:22 +0000817 InstrItinData<IIC_VMOVImm, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000818 InstrStage<1, [A8_NPipe]>], [3]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000819 //
820 // Double-register Permute Move
Evan Cheng41957f62010-11-03 00:40:22 +0000821 InstrItinData<IIC_VMOVD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000822 InstrStage<1, [A8_NLSPipe]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000823 //
824 // Quad-register Permute Move
825 // Result written in N2, but that is relative to the last cycle of multicycle,
826 // so we use 3 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000827 InstrItinData<IIC_VMOVQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000828 InstrStage<2, [A8_NLSPipe]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000829 //
830 // Integer to Single-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000831 InstrItinData<IIC_VMOVIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000832 InstrStage<1, [A8_NLSPipe]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000833 //
834 // Integer to Double-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000835 InstrItinData<IIC_VMOVID , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000836 InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000837 //
838 // Single-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000839 InstrItinData<IIC_VMOVSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000840 InstrStage<1, [A8_NLSPipe]>], [20, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000841 //
842 // Double-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000843 InstrItinData<IIC_VMOVDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000844 InstrStage<1, [A8_NLSPipe]>], [20, 20, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000845 //
846 // Integer to Lane Move
Evan Cheng41957f62010-11-03 00:40:22 +0000847 InstrItinData<IIC_VMOVISL , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000848 InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000849 //
Evan Chengcae6a122010-10-01 20:50:58 +0000850 // Vector narrow move
Evan Cheng41957f62010-11-03 00:40:22 +0000851 InstrItinData<IIC_VMOVN , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengef0ccad2010-10-01 21:48:06 +0000852 InstrStage<1, [A8_NPipe]>], [2, 1]>,
Evan Chengcae6a122010-10-01 20:50:58 +0000853 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000854 // Double-register Permute
Evan Cheng41957f62010-11-03 00:40:22 +0000855 InstrItinData<IIC_VPERMD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000856 InstrStage<1, [A8_NLSPipe]>], [2, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000857 //
858 // Quad-register Permute
859 // Result written in N2, but that is relative to the last cycle of multicycle,
860 // so we use 3 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000861 InstrItinData<IIC_VPERMQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000862 InstrStage<2, [A8_NLSPipe]>], [3, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000863 //
864 // Quad-register Permute (3 cycle issue)
865 // Result written in N2, but that is relative to the last cycle of multicycle,
866 // so we use 4 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000867 InstrItinData<IIC_VPERMQ3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000868 InstrStage<1, [A8_NLSPipe]>,
869 InstrStage<1, [A8_NPipe], 0>,
870 InstrStage<2, [A8_NLSPipe]>], [4, 4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000871 //
872 // Double-register FP Multiple-Accumulate
Evan Cheng41957f62010-11-03 00:40:22 +0000873 InstrItinData<IIC_VMACD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000874 InstrStage<1, [A8_NPipe]>], [9, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000875 //
876 // Quad-register FP Multiple-Accumulate
877 // Result written in N9, but that is relative to the last cycle of multicycle,
878 // so we use 10 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000879 InstrItinData<IIC_VMACQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000880 InstrStage<2, [A8_NPipe]>], [10, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000881 //
Evan Cheng82509e52012-04-11 00:13:00 +0000882 // Double-register Fused FP Multiple-Accumulate
883 InstrItinData<IIC_VFMACD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
884 InstrStage<1, [A8_NPipe]>], [9, 3, 2, 2]>,
885 //
886 // Quad-register Fused FP Multiple-Accumulate
887 // Result written in N9, but that is relative to the last cycle of multicycle,
888 // so we use 10 for those cases
889 InstrItinData<IIC_VFMACQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
890 InstrStage<2, [A8_NPipe]>], [10, 3, 2, 2]>,
891 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000892 // Double-register Reciprical Step
Evan Cheng41957f62010-11-03 00:40:22 +0000893 InstrItinData<IIC_VRECSD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000894 InstrStage<1, [A8_NPipe]>], [9, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000895 //
896 // Quad-register Reciprical Step
Evan Cheng41957f62010-11-03 00:40:22 +0000897 InstrItinData<IIC_VRECSQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000898 InstrStage<2, [A8_NPipe]>], [10, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000899 //
900 // Double-register Integer Count
Evan Cheng41957f62010-11-03 00:40:22 +0000901 InstrItinData<IIC_VCNTiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000902 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000903 //
904 // Quad-register Integer Count
905 // Result written in N3, but that is relative to the last cycle of multicycle,
906 // so we use 4 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000907 InstrItinData<IIC_VCNTiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000908 InstrStage<2, [A8_NPipe]>], [4, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000909 //
910 // Double-register Integer Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000911 InstrItinData<IIC_VUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000912 InstrStage<1, [A8_NPipe]>], [4, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000913 //
914 // Quad-register Integer Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000915 InstrItinData<IIC_VUNAiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000916 InstrStage<1, [A8_NPipe]>], [4, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000917 //
918 // Double-register Integer Q-Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000919 InstrItinData<IIC_VQUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000920 InstrStage<1, [A8_NPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000921 //
922 // Quad-register Integer CountQ-Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000923 InstrItinData<IIC_VQUNAiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000924 InstrStage<1, [A8_NPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000925 //
926 // Double-register Integer Binary
Evan Cheng41957f62010-11-03 00:40:22 +0000927 InstrItinData<IIC_VBINiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000928 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000929 //
930 // Quad-register Integer Binary
Evan Cheng41957f62010-11-03 00:40:22 +0000931 InstrItinData<IIC_VBINiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000932 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000933 //
934 // Double-register Integer Binary (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000935 InstrItinData<IIC_VBINi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000936 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000937 //
938 // Quad-register Integer Binary (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000939 InstrItinData<IIC_VBINi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000940 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000941
942 //
943 // Double-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000944 InstrItinData<IIC_VSUBiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000945 InstrStage<1, [A8_NPipe]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000946 //
947 // Quad-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000948 InstrItinData<IIC_VSUBiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000949 InstrStage<1, [A8_NPipe]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000950 //
951 // Double-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000952 InstrItinData<IIC_VSUBi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000953 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000954 //
955 // Quad-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000956 InstrItinData<IIC_VSUBi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000957 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000958 //
959 // Double-register Integer Shift
Evan Cheng41957f62010-11-03 00:40:22 +0000960 InstrItinData<IIC_VSHLiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000961 InstrStage<1, [A8_NPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000962 //
963 // Quad-register Integer Shift
Evan Cheng41957f62010-11-03 00:40:22 +0000964 InstrItinData<IIC_VSHLiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000965 InstrStage<2, [A8_NPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000966 //
967 // Double-register Integer Shift (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000968 InstrItinData<IIC_VSHLi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000969 InstrStage<1, [A8_NPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000970 //
971 // Quad-register Integer Shift (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000972 InstrItinData<IIC_VSHLi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000973 InstrStage<2, [A8_NPipe]>], [5, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000974 //
975 // Double-register Integer Pair Add Long
Evan Cheng41957f62010-11-03 00:40:22 +0000976 InstrItinData<IIC_VPALiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000977 InstrStage<1, [A8_NPipe]>], [6, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000978 //
979 // Quad-register Integer Pair Add Long
Evan Cheng41957f62010-11-03 00:40:22 +0000980 InstrItinData<IIC_VPALiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000981 InstrStage<2, [A8_NPipe]>], [7, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000982 //
983 // Double-register Absolute Difference and Accumulate
Evan Cheng41957f62010-11-03 00:40:22 +0000984 InstrItinData<IIC_VABAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000985 InstrStage<1, [A8_NPipe]>], [6, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000986 //
987 // Quad-register Absolute Difference and Accumulate
Evan Cheng41957f62010-11-03 00:40:22 +0000988 InstrItinData<IIC_VABAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000989 InstrStage<2, [A8_NPipe]>], [6, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000990
991 //
992 // Double-register Integer Multiply (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +0000993 InstrItinData<IIC_VMULi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000994 InstrStage<1, [A8_NPipe]>], [6, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000995 //
996 // Double-register Integer Multiply (.32)
Evan Cheng41957f62010-11-03 00:40:22 +0000997 InstrItinData<IIC_VMULi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000998 InstrStage<2, [A8_NPipe]>], [7, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000999 //
1000 // Quad-register Integer Multiply (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +00001001 InstrItinData<IIC_VMULi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001002 InstrStage<2, [A8_NPipe]>], [7, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001003 //
1004 // Quad-register Integer Multiply (.32)
Evan Cheng41957f62010-11-03 00:40:22 +00001005 InstrItinData<IIC_VMULi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001006 InstrStage<1, [A8_NPipe]>,
1007 InstrStage<2, [A8_NLSPipe], 0>,
1008 InstrStage<3, [A8_NPipe]>], [9, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001009 //
1010 // Double-register Integer Multiply-Accumulate (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +00001011 InstrItinData<IIC_VMACi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001012 InstrStage<1, [A8_NPipe]>], [6, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001013 //
1014 // Double-register Integer Multiply-Accumulate (.32)
Evan Cheng41957f62010-11-03 00:40:22 +00001015 InstrItinData<IIC_VMACi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001016 InstrStage<2, [A8_NPipe]>], [7, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001017 //
1018 // Quad-register Integer Multiply-Accumulate (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +00001019 InstrItinData<IIC_VMACi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001020 InstrStage<2, [A8_NPipe]>], [7, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001021 //
1022 // Quad-register Integer Multiply-Accumulate (.32)
Evan Cheng41957f62010-11-03 00:40:22 +00001023 InstrItinData<IIC_VMACi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001024 InstrStage<1, [A8_NPipe]>,
1025 InstrStage<2, [A8_NLSPipe], 0>,
1026 InstrStage<3, [A8_NPipe]>], [9, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001027 //
1028 // Double-register VEXT
Evan Cheng41957f62010-11-03 00:40:22 +00001029 InstrItinData<IIC_VEXTD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001030 InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001031 //
1032 // Quad-register VEXT
Evan Cheng41957f62010-11-03 00:40:22 +00001033 InstrItinData<IIC_VEXTQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001034 InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001035 //
1036 // VTB
Evan Cheng41957f62010-11-03 00:40:22 +00001037 InstrItinData<IIC_VTB1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001038 InstrStage<2, [A8_NLSPipe]>], [3, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001039 InstrItinData<IIC_VTB2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001040 InstrStage<2, [A8_NLSPipe]>], [3, 2, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001041 InstrItinData<IIC_VTB3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001042 InstrStage<1, [A8_NLSPipe]>,
1043 InstrStage<1, [A8_NPipe], 0>,
1044 InstrStage<2, [A8_NLSPipe]>], [4, 2, 2, 3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001045 InstrItinData<IIC_VTB4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001046 InstrStage<1, [A8_NLSPipe]>,
1047 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +00001048 InstrStage<2, [A8_NLSPipe]>],[4, 2, 2, 3, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001049 //
1050 // VTBX
Evan Cheng41957f62010-11-03 00:40:22 +00001051 InstrItinData<IIC_VTBX1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001052 InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001053 InstrItinData<IIC_VTBX2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001054 InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001055 InstrItinData<IIC_VTBX3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001056 InstrStage<1, [A8_NLSPipe]>,
1057 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +00001058 InstrStage<2, [A8_NLSPipe]>],[4, 1, 2, 2, 3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001059 InstrItinData<IIC_VTBX4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001060 InstrStage<1, [A8_NLSPipe]>,
1061 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +00001062 InstrStage<2, [A8_NLSPipe]>], [4, 1, 2, 2, 3, 3, 1]>
Anton Korobeynikove1676012010-04-07 18:22:11 +00001063]>;