blob: 2c6382542ab95e723afed1ba69c2bbdb50ff6c46 [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 Trick2661b412012-07-07 04:00:00 +000025def CortexA8Itineraries : ProcessorItineraries<
Evan Chengd2ca8132010-10-09 01:03:04 +000026 [A8_Pipe0, A8_Pipe1, A8_LSPipe, A8_NPipe, A8_NLSPipe],
Evan Cheng63d66ee2010-09-28 23:50:49 +000027 [], [
Anton Korobeynikove1676012010-04-07 18:22:11 +000028 // Two fully-pipelined integer ALU pipelines
29 //
30 // No operand cycles
Anton Korobeynikov928eb492010-04-18 20:31:01 +000031 InstrItinData<IIC_iALUx , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000032 //
33 // Binary Instructions that produce a result
Jim Grosbache9e3f202010-06-28 04:27:01 +000034 InstrItinData<IIC_iALUi ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
35 InstrItinData<IIC_iALUr ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 2]>,
36 InstrItinData<IIC_iALUsi,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1]>,
Evan Cheng3881cb72010-09-29 22:42:35 +000037 InstrItinData<IIC_iALUsir,[InstrStage<1,[A8_Pipe0, A8_Pipe1]>], [2, 1, 2]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +000038 InstrItinData<IIC_iALUsr,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000039 //
Evan Cheng7e1bf302010-09-29 00:27:46 +000040 // Bitwise Instructions that produce a result
41 InstrItinData<IIC_iBITi ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
42 InstrItinData<IIC_iBITr ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 2]>,
43 InstrItinData<IIC_iBITsi,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1]>,
44 InstrItinData<IIC_iBITsr,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1, 1]>,
45 //
Anton Korobeynikove1676012010-04-07 18:22:11 +000046 // Unary Instructions that produce a result
Jim Grosbache9e3f202010-06-28 04:27:01 +000047 InstrItinData<IIC_iUNAr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
48 InstrItinData<IIC_iUNAsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000049 //
Evan Cheng576a3962010-09-25 00:49:35 +000050 // Zero and sign extension instructions
51 InstrItinData<IIC_iEXTr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
52 InstrItinData<IIC_iEXTAr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1]>,
Evan Cheng7e1bf302010-09-29 00:27:46 +000053 InstrItinData<IIC_iEXTAsr,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>],[2, 2, 1, 1]>,
Evan Cheng576a3962010-09-25 00:49:35 +000054 //
Anton Korobeynikove1676012010-04-07 18:22:11 +000055 // Compare instructions
Jim Grosbache9e3f202010-06-28 04:27:01 +000056 InstrItinData<IIC_iCMPi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
57 InstrItinData<IIC_iCMPr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
58 InstrItinData<IIC_iCMPsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
59 InstrItinData<IIC_iCMPsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000060 //
Evan Cheng5d42c562010-09-29 00:49:25 +000061 // Test instructions
62 InstrItinData<IIC_iTSTi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
63 InstrItinData<IIC_iTSTr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
64 InstrItinData<IIC_iTSTsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
65 InstrItinData<IIC_iTSTsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>,
66 //
Anton Korobeynikove1676012010-04-07 18:22:11 +000067 // Move instructions, unconditional
Jim Grosbache9e3f202010-06-28 04:27:01 +000068 InstrItinData<IIC_iMOVi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1]>,
69 InstrItinData<IIC_iMOVr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
70 InstrItinData<IIC_iMOVsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
71 InstrItinData<IIC_iMOVsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1, 1]>,
Evan Cheng5d42c562010-09-29 00:49:25 +000072 InstrItinData<IIC_iMOVix2,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
73 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
Evan Cheng9fe20092011-01-20 08:34:58 +000074 InstrItinData<IIC_iMOVix2addpc,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
75 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
76 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [3]>,
77 InstrItinData<IIC_iMOVix2ld,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
78 InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
79 InstrStage<1, [A8_LSPipe]>], [5]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000080 //
81 // Move instructions, conditional
Jim Grosbache9e3f202010-06-28 04:27:01 +000082 InstrItinData<IIC_iCMOVi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>,
83 InstrItinData<IIC_iCMOVr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
84 InstrItinData<IIC_iCMOVsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>,
85 InstrItinData<IIC_iCMOVsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>,
Evan Chengc47f7d62010-11-13 05:14:20 +000086 InstrItinData<IIC_iCMOVix2,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
87 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [3, 1]>,
Evan Cheng5d42c562010-09-29 00:49:25 +000088 //
89 // MVN instructions
90 InstrItinData<IIC_iMVNi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1]>,
91 InstrItinData<IIC_iMVNr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
92 InstrItinData<IIC_iMVNsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>,
93 InstrItinData<IIC_iMVNsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +000094
95 // Integer multiply pipeline
96 // Result written in E5, but that is relative to the last cycle of multicycle,
97 // so we use 6 for those cases
98 //
Anton Korobeynikov928eb492010-04-18 20:31:01 +000099 InstrItinData<IIC_iMUL16 , [InstrStage<1, [A8_Pipe0]>], [5, 1, 1]>,
Evan Cheng8ae6ffa2010-10-09 01:15:04 +0000100 InstrItinData<IIC_iMAC16 , [InstrStage<2, [A8_Pipe0]>], [6, 1, 1, 4]>,
101 InstrItinData<IIC_iMUL32 , [InstrStage<2, [A8_Pipe0]>], [6, 1, 1]>,
102 InstrItinData<IIC_iMAC32 , [InstrStage<2, [A8_Pipe0]>], [6, 1, 1, 4]>,
103 InstrItinData<IIC_iMUL64 , [InstrStage<3, [A8_Pipe0]>], [6, 6, 1, 1]>,
104 InstrItinData<IIC_iMAC64 , [InstrStage<3, [A8_Pipe0]>], [6, 6, 1, 1]>,
Jim Grosbache9e3f202010-06-28 04:27:01 +0000105
Anton Korobeynikove1676012010-04-07 18:22:11 +0000106 // Integer load pipeline
107 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000108 // Immediate offset
Evan Cheng41957f62010-11-03 00:40:22 +0000109 InstrItinData<IIC_iLoad_i , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000110 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000111 InstrItinData<IIC_iLoad_bh_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000112 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000113 InstrItinData<IIC_iLoad_d_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000114 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000115 //
116 // Register offset
Evan Cheng41957f62010-11-03 00:40:22 +0000117 InstrItinData<IIC_iLoad_r , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000118 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000119 InstrItinData<IIC_iLoad_bh_r, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000120 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000121 InstrItinData<IIC_iLoad_d_r , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000122 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000123 //
124 // Scaled register offset, issues over 2 cycles
Evan Chengd2ca8132010-10-09 01:03:04 +0000125 // FIXME: lsl by 2 takes 1 cycle.
Evan Cheng41957f62010-11-03 00:40:22 +0000126 InstrItinData<IIC_iLoad_si , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000127 InstrStage<1, [A8_LSPipe]>], [4, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000128 InstrItinData<IIC_iLoad_bh_si,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000129 InstrStage<1, [A8_LSPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000130 //
131 // Immediate offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000132 InstrItinData<IIC_iLoad_iu , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000133 InstrStage<1, [A8_LSPipe]>], [3, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000134 InstrItinData<IIC_iLoad_bh_iu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000135 InstrStage<1, [A8_LSPipe]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000136 //
137 // Register offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000138 InstrItinData<IIC_iLoad_ru , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000139 InstrStage<1, [A8_LSPipe]>], [3, 2, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000140 InstrItinData<IIC_iLoad_bh_ru,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000141 InstrStage<1, [A8_LSPipe]>], [3, 2, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000142 InstrItinData<IIC_iLoad_d_ru, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000143 InstrStage<1, [A8_LSPipe]>], [3, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000144 //
145 // Scaled register offset with update, issues over 2 cycles
Evan Cheng41957f62010-11-03 00:40:22 +0000146 InstrItinData<IIC_iLoad_siu , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
147 InstrStage<2, [A8_LSPipe]>], [4, 3, 1, 1]>,
148 InstrItinData<IIC_iLoad_bh_siu,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
149 InstrStage<2, [A8_LSPipe]>], [4, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000150 //
Evan Chengd2ca8132010-10-09 01:03:04 +0000151 // Load multiple, def is the 5th operand. Pipeline 0 only.
152 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers.
Evan Cheng41957f62010-11-03 00:40:22 +0000153 InstrItinData<IIC_iLoad_m , [InstrStage<2, [A8_Pipe0], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000154 InstrStage<2, [A8_LSPipe]>],
155 [1, 1, 1, 1, 3], [], -1>, // dynamic uops
Evan Chenga0792de2010-10-06 06:27:31 +0000156 //
157 // Load multiple + update, defs are the 1st and 5th operands.
Evan Cheng41957f62010-11-03 00:40:22 +0000158 InstrItinData<IIC_iLoad_mu , [InstrStage<3, [A8_Pipe0], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000159 InstrStage<3, [A8_LSPipe]>],
160 [2, 1, 1, 1, 3], [], -1>, // dynamic uops
Evan Cheng7602acb2010-09-08 22:57:08 +0000161 //
162 // Load multiple plus branch
Evan Cheng41957f62010-11-03 00:40:22 +0000163 InstrItinData<IIC_iLoad_mBr, [InstrStage<3, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000164 InstrStage<3, [A8_LSPipe]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000165 InstrStage<1, [A8_Pipe0, A8_Pipe1]>],
Andrew Trick218ee742012-07-02 18:10:42 +0000166 [1, 2, 1, 1, 3], [], -1>, // dynamic uops
Evan Chenga0792de2010-10-06 06:27:31 +0000167 //
168 // Pop, def is the 3rd operand.
Evan Cheng41957f62010-11-03 00:40:22 +0000169 InstrItinData<IIC_iPop , [InstrStage<3, [A8_Pipe0], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000170 InstrStage<3, [A8_LSPipe]>],
171 [1, 1, 3], [], -1>, // dynamic uops
Evan Chenga0792de2010-10-06 06:27:31 +0000172 //
173 // Push, def is the 3th operand.
Evan Cheng41957f62010-11-03 00:40:22 +0000174 InstrItinData<IIC_iPop_Br, [InstrStage<3, [A8_Pipe0], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000175 InstrStage<3, [A8_LSPipe]>,
Evan Chenga0792de2010-10-06 06:27:31 +0000176 InstrStage<1, [A8_Pipe0, A8_Pipe1]>],
Andrew Trick218ee742012-07-02 18:10:42 +0000177 [1, 1, 3], [], -1>, // dynamic uops
Evan Chengbd30ce42010-09-24 22:41:41 +0000178 //
179 // iLoadi + iALUr for t2LDRpci_pic.
Evan Cheng41957f62010-11-03 00:40:22 +0000180 InstrItinData<IIC_iLoadiALU, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000181 InstrStage<1, [A8_LSPipe]>,
Evan Chengbd30ce42010-09-24 22:41:41 +0000182 InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [4, 1]>,
183
184
Anton Korobeynikove1676012010-04-07 18:22:11 +0000185 // Integer store pipeline
186 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000187 // Immediate offset
Evan Cheng41957f62010-11-03 00:40:22 +0000188 InstrItinData<IIC_iStore_i , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000189 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000190 InstrItinData<IIC_iStore_bh_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_d_i, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000193 InstrStage<1, [A8_LSPipe]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000194 //
195 // Register offset
Evan Cheng41957f62010-11-03 00:40:22 +0000196 InstrItinData<IIC_iStore_r , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000197 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000198 InstrItinData<IIC_iStore_bh_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_d_r, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000201 InstrStage<1, [A8_LSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000202 //
203 // Scaled register offset, issues over 2 cycles
Evan Cheng41957f62010-11-03 00:40:22 +0000204 InstrItinData<IIC_iStore_si , [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000205 InstrStage<2, [A8_LSPipe]>], [3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000206 InstrItinData<IIC_iStore_bh_si,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000207 InstrStage<2, [A8_LSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000208 //
209 // Immediate offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000210 InstrItinData<IIC_iStore_iu , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000211 InstrStage<1, [A8_LSPipe]>], [2, 3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000212 InstrItinData<IIC_iStore_bh_iu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000213 InstrStage<1, [A8_LSPipe]>], [2, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000214 //
215 // Register offset with update
Evan Cheng41957f62010-11-03 00:40:22 +0000216 InstrItinData<IIC_iStore_ru , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000217 InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000218 InstrItinData<IIC_iStore_bh_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_d_ru, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000221 InstrStage<1, [A8_LSPipe]>], [2, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000222 //
223 // Scaled register offset with update, issues over 2 cycles
Evan Cheng41957f62010-11-03 00:40:22 +0000224 InstrItinData<IIC_iStore_siu, [InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000225 InstrStage<2, [A8_LSPipe]>], [3, 3, 1, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000226 InstrItinData<IIC_iStore_bh_siu,[InstrStage<2, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000227 InstrStage<2, [A8_LSPipe]>], [3, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000228 //
Evan Chengd2ca8132010-10-09 01:03:04 +0000229 // Store multiple. Pipeline 0 only.
230 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers.
Evan Cheng41957f62010-11-03 00:40:22 +0000231 InstrItinData<IIC_iStore_m , [InstrStage<2, [A8_Pipe0], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000232 InstrStage<2, [A8_LSPipe]>],
233 [], [], -1>, // dynamic uops
Evan Chenga0792de2010-10-06 06:27:31 +0000234 //
235 // Store multiple + update
Evan Cheng41957f62010-11-03 00:40:22 +0000236 InstrItinData<IIC_iStore_mu, [InstrStage<2, [A8_Pipe0], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000237 InstrStage<2, [A8_LSPipe]>],
238 [2], [], -1>, // dynamic uops
Evan Chengdfed19f2010-11-03 06:34:55 +0000239 //
240 // Preload
241 InstrItinData<IIC_Preload, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>,
242
Anton Korobeynikove1676012010-04-07 18:22:11 +0000243 // Branch
244 //
245 // no delay slots, so the latency of a branch is unimportant
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000246 InstrItinData<IIC_Br , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000247
248 // VFP
249 // Issue through integer pipeline, and execute in NEON unit. We assume
250 // RunFast mode so that NFP pipeline is used for single-precision when
251 // possible.
252 //
253 // FP Special Register to Integer Register File Move
Evan Cheng41957f62010-11-03 00:40:22 +0000254 InstrItinData<IIC_fpSTAT , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chenge09206d2010-10-29 23:16:55 +0000255 InstrStage<1, [A8_NLSPipe]>], [20]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000256 //
257 // Single-precision FP Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000258 InstrItinData<IIC_fpUNA32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000259 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000260 //
261 // Double-precision FP Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000262 InstrItinData<IIC_fpUNA64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000263 InstrStage<4, [A8_NPipe], 0>,
264 InstrStage<4, [A8_NLSPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000265 //
266 // Single-precision FP Compare
Evan Cheng41957f62010-11-03 00:40:22 +0000267 InstrItinData<IIC_fpCMP32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000268 InstrStage<1, [A8_NPipe]>], [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000269 //
270 // Double-precision FP Compare
Evan Cheng41957f62010-11-03 00:40:22 +0000271 InstrItinData<IIC_fpCMP64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000272 InstrStage<4, [A8_NPipe], 0>,
273 InstrStage<4, [A8_NLSPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000274 //
275 // Single to Double FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000276 InstrItinData<IIC_fpCVTSD , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000277 InstrStage<7, [A8_NPipe], 0>,
278 InstrStage<7, [A8_NLSPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000279 //
280 // Double to Single FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000281 InstrItinData<IIC_fpCVTDS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000282 InstrStage<5, [A8_NPipe], 0>,
283 InstrStage<5, [A8_NLSPipe]>], [5, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000284 //
285 // Single-Precision FP to Integer Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000286 InstrItinData<IIC_fpCVTSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000287 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000288 //
289 // Double-Precision FP to Integer Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000290 InstrItinData<IIC_fpCVTDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000291 InstrStage<8, [A8_NPipe], 0>,
292 InstrStage<8, [A8_NLSPipe]>], [8, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000293 //
294 // Integer to Single-Precision FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000295 InstrItinData<IIC_fpCVTIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000296 InstrStage<1, [A8_NPipe]>], [7, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000297 //
298 // Integer to Double-Precision FP Convert
Evan Cheng41957f62010-11-03 00:40:22 +0000299 InstrItinData<IIC_fpCVTID , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000300 InstrStage<8, [A8_NPipe], 0>,
301 InstrStage<8, [A8_NLSPipe]>], [8, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000302 //
303 // Single-precision FP ALU
Evan Cheng41957f62010-11-03 00:40:22 +0000304 InstrItinData<IIC_fpALU32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000305 InstrStage<1, [A8_NPipe]>], [7, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000306 //
307 // Double-precision FP ALU
Evan Cheng41957f62010-11-03 00:40:22 +0000308 InstrItinData<IIC_fpALU64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000309 InstrStage<9, [A8_NPipe], 0>,
310 InstrStage<9, [A8_NLSPipe]>], [9, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000311 //
312 // Single-precision FP Multiply
Evan Cheng41957f62010-11-03 00:40:22 +0000313 InstrItinData<IIC_fpMUL32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000314 InstrStage<1, [A8_NPipe]>], [7, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000315 //
316 // Double-precision FP Multiply
Evan Cheng41957f62010-11-03 00:40:22 +0000317 InstrItinData<IIC_fpMUL64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000318 InstrStage<11, [A8_NPipe], 0>,
319 InstrStage<11, [A8_NLSPipe]>], [11, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000320 //
321 // Single-precision FP MAC
Evan Cheng41957f62010-11-03 00:40:22 +0000322 InstrItinData<IIC_fpMAC32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000323 InstrStage<1, [A8_NPipe]>], [7, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000324 //
325 // Double-precision FP MAC
Evan Cheng41957f62010-11-03 00:40:22 +0000326 InstrItinData<IIC_fpMAC64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000327 InstrStage<19, [A8_NPipe], 0>,
328 InstrStage<19, [A8_NLSPipe]>], [19, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000329 //
Evan Cheng82509e52012-04-11 00:13:00 +0000330 // Single-precision Fused FP MAC
331 InstrItinData<IIC_fpFMAC32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
332 InstrStage<1, [A8_NPipe]>], [7, 2, 1, 1]>,
333 //
334 // Double-precision Fused FP MAC
335 InstrItinData<IIC_fpFMAC64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
336 InstrStage<19, [A8_NPipe], 0>,
337 InstrStage<19, [A8_NLSPipe]>], [19, 2, 1, 1]>,
338 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000339 // Single-precision FP DIV
Evan Cheng41957f62010-11-03 00:40:22 +0000340 InstrItinData<IIC_fpDIV32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000341 InstrStage<20, [A8_NPipe], 0>,
342 InstrStage<20, [A8_NLSPipe]>], [20, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000343 //
344 // Double-precision FP DIV
Evan Cheng41957f62010-11-03 00:40:22 +0000345 InstrItinData<IIC_fpDIV64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000346 InstrStage<29, [A8_NPipe], 0>,
347 InstrStage<29, [A8_NLSPipe]>], [29, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000348 //
349 // Single-precision FP SQRT
Evan Cheng41957f62010-11-03 00:40:22 +0000350 InstrItinData<IIC_fpSQRT32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000351 InstrStage<19, [A8_NPipe], 0>,
352 InstrStage<19, [A8_NLSPipe]>], [19, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000353 //
354 // Double-precision FP SQRT
Evan Cheng41957f62010-11-03 00:40:22 +0000355 InstrItinData<IIC_fpSQRT64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000356 InstrStage<29, [A8_NPipe], 0>,
357 InstrStage<29, [A8_NLSPipe]>], [29, 1]>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000358
359 //
360 // Integer to Single-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000361 InstrItinData<IIC_fpMOVIS, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000362 InstrStage<1, [A8_NPipe]>],
363 [2, 1]>,
364 //
365 // Integer to Double-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000366 InstrItinData<IIC_fpMOVID, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000367 InstrStage<1, [A8_NPipe]>],
368 [2, 1, 1]>,
369 //
370 // Single-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000371 InstrItinData<IIC_fpMOVSI, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000372 InstrStage<1, [A8_NPipe]>],
373 [20, 1]>,
374 //
375 // Double-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000376 InstrItinData<IIC_fpMOVDI, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Andrew Trick5b7a8252010-10-21 03:40:16 +0000377 InstrStage<1, [A8_NPipe]>],
378 [20, 20, 1]>,
379
Anton Korobeynikove1676012010-04-07 18:22:11 +0000380 //
381 // Single-precision FP Load
Evan Cheng41957f62010-11-03 00:40:22 +0000382 InstrItinData<IIC_fpLoad32, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
383 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000384 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000385 [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000386 //
387 // Double-precision FP Load
Evan Cheng41957f62010-11-03 00:40:22 +0000388 InstrItinData<IIC_fpLoad64, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
389 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000390 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000391 [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000392 //
393 // FP Load Multiple
Evan Chengd2ca8132010-10-09 01:03:04 +0000394 // FIXME: A8_LSPipe cycle time is dynamic, this assumes 3 to 4 registers.
Evan Cheng41957f62010-11-03 00:40:22 +0000395 InstrItinData<IIC_fpLoad_m, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
396 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000397 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000398 InstrStage<1, [A8_NLSPipe], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000399 InstrStage<1, [A8_LSPipe]>],
400 [1, 1, 1, 2], [], -1>, // dynamic uops
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>,
Andrew Trick218ee742012-07-02 18:10:42 +0000407 InstrStage<1, [A8_LSPipe]>],
408 [2, 1, 1, 1, 2], [], -1>, // dynamic uops
Anton Korobeynikove1676012010-04-07 18:22:11 +0000409 //
410 // Single-precision FP Store
Evan Cheng41957f62010-11-03 00:40:22 +0000411 InstrItinData<IIC_fpStore32,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
412 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000413 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000414 [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000415 //
416 // Double-precision FP Store
Evan Cheng41957f62010-11-03 00:40:22 +0000417 InstrItinData<IIC_fpStore64,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
418 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000419 InstrStage<1, [A8_LSPipe]>],
Evan Chengdf9da6a2010-10-01 21:40:30 +0000420 [1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000421 //
422 // FP Store Multiple
Evan Cheng41957f62010-11-03 00:40:22 +0000423 InstrItinData<IIC_fpStore_m,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
424 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000425 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000426 InstrStage<1, [A8_NLSPipe], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000427 InstrStage<1, [A8_LSPipe]>],
428 [1, 1, 1, 1], [], -1>, // dynamic uops
Evan Cheng5a50cee2010-10-07 01:50:48 +0000429 //
430 // FP Store Multiple + update
Evan Cheng41957f62010-11-03 00:40:22 +0000431 InstrItinData<IIC_fpStore_mu,[InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
432 InstrStage<1, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000433 InstrStage<1, [A8_LSPipe]>,
Evan Cheng41957f62010-11-03 00:40:22 +0000434 InstrStage<1, [A8_NLSPipe], 0>,
Andrew Trick218ee742012-07-02 18:10:42 +0000435 InstrStage<1, [A8_LSPipe]>],
436 [2, 1, 1, 1, 1], [], -1>, // dynamic uops
Anton Korobeynikove1676012010-04-07 18:22:11 +0000437 // NEON
438 // Issue through integer pipeline, and execute in NEON unit.
439 //
440 // VLD1
Evan Cheng41957f62010-11-03 00:40:22 +0000441 InstrItinData<IIC_VLD1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
442 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000443 InstrStage<2, [A8_LSPipe]>],
444 [2, 1]>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000445 // VLD1x2
Evan Cheng41957f62010-11-03 00:40:22 +0000446 InstrItinData<IIC_VLD1x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
447 InstrStage<2, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000448 InstrStage<2, [A8_LSPipe]>],
449 [2, 2, 1]>,
450 //
451 // VLD1x3
Evan Cheng41957f62010-11-03 00:40:22 +0000452 InstrItinData<IIC_VLD1x3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
453 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000454 InstrStage<3, [A8_LSPipe]>],
455 [2, 2, 3, 1]>,
456 //
457 // VLD1x4
Evan Cheng41957f62010-11-03 00:40:22 +0000458 InstrItinData<IIC_VLD1x4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
459 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000460 InstrStage<3, [A8_LSPipe]>],
461 [2, 2, 3, 3, 1]>,
462 //
463 // VLD1u
Evan Cheng41957f62010-11-03 00:40:22 +0000464 InstrItinData<IIC_VLD1u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
465 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000466 InstrStage<2, [A8_LSPipe]>],
Evan Chengd2ca8132010-10-09 01:03:04 +0000467 [2, 2, 1]>,
468 //
469 // VLD1x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000470 InstrItinData<IIC_VLD1x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
471 InstrStage<2, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000472 InstrStage<2, [A8_LSPipe]>],
473 [2, 2, 2, 1]>,
474 //
475 // VLD1x3u
Evan Cheng41957f62010-11-03 00:40:22 +0000476 InstrItinData<IIC_VLD1x3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
477 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000478 InstrStage<3, [A8_LSPipe]>],
479 [2, 2, 3, 2, 1]>,
480 //
481 // VLD1x4u
Evan Cheng41957f62010-11-03 00:40:22 +0000482 InstrItinData<IIC_VLD1x4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
483 InstrStage<3, [A8_NLSPipe], 0>,
Evan Chengd2ca8132010-10-09 01:03:04 +0000484 InstrStage<3, [A8_LSPipe]>],
485 [2, 2, 3, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000486 //
Bob Wilsonb796bbb2010-11-01 22:04:05 +0000487 // VLD1ln
488 InstrItinData<IIC_VLD1ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000489 InstrStage<3, [A8_NLSPipe], 0>,
Bob Wilsonb796bbb2010-11-01 22:04:05 +0000490 InstrStage<3, [A8_LSPipe]>],
491 [3, 1, 1, 1]>,
492 //
493 // VLD1lnu
494 InstrItinData<IIC_VLD1lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000495 InstrStage<3, [A8_NLSPipe], 0>,
Bob Wilsonb796bbb2010-11-01 22:04:05 +0000496 InstrStage<3, [A8_LSPipe]>],
497 [3, 2, 1, 1, 1, 1]>,
498 //
Bob Wilson2a0e9742010-11-27 06:35:16 +0000499 // VLD1dup
500 InstrItinData<IIC_VLD1dup, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
501 InstrStage<2, [A8_NLSPipe], 0>,
502 InstrStage<2, [A8_LSPipe]>],
503 [2, 1]>,
504 //
505 // VLD1dupu
506 InstrItinData<IIC_VLD1dupu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
507 InstrStage<2, [A8_NLSPipe], 0>,
508 InstrStage<2, [A8_LSPipe]>],
509 [2, 2, 1, 1]>,
510 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000511 // VLD2
Evan Cheng41957f62010-11-03 00:40:22 +0000512 InstrItinData<IIC_VLD2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
513 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000514 InstrStage<2, [A8_LSPipe]>],
Evan Cheng40bb6832010-10-09 01:26:12 +0000515 [2, 2, 1]>,
516 //
517 // VLD2x2
Evan Cheng41957f62010-11-03 00:40:22 +0000518 InstrItinData<IIC_VLD2x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
519 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000520 InstrStage<3, [A8_LSPipe]>],
521 [2, 2, 3, 3, 1]>,
522 //
523 // VLD2ln
Evan Cheng41957f62010-11-03 00:40:22 +0000524 InstrItinData<IIC_VLD2ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
525 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000526 InstrStage<3, [A8_LSPipe]>],
527 [3, 3, 1, 1, 1, 1]>,
528 //
529 // VLD2u
Evan Cheng41957f62010-11-03 00:40:22 +0000530 InstrItinData<IIC_VLD2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
531 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000532 InstrStage<2, [A8_LSPipe]>],
Evan Cheng40bb6832010-10-09 01:26:12 +0000533 [2, 2, 2, 1, 1, 1]>,
534 //
535 // VLD2x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000536 InstrItinData<IIC_VLD2x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
537 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000538 InstrStage<3, [A8_LSPipe]>],
539 [2, 2, 3, 3, 2, 1]>,
540 //
541 // VLD2lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000542 InstrItinData<IIC_VLD2lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
543 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng40bb6832010-10-09 01:26:12 +0000544 InstrStage<3, [A8_LSPipe]>],
545 [3, 3, 2, 1, 1, 1, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000546 //
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +0000547 // VLD2dup
548 InstrItinData<IIC_VLD2dup, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
549 InstrStage<2, [A8_NLSPipe], 0>,
550 InstrStage<2, [A8_LSPipe]>],
Bob Wilson2fcda632010-11-29 19:35:23 +0000551 [2, 2, 1]>,
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +0000552 //
553 // VLD2dupu
554 InstrItinData<IIC_VLD2dupu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
555 InstrStage<2, [A8_NLSPipe], 0>,
556 InstrStage<2, [A8_LSPipe]>],
Bob Wilson2fcda632010-11-29 19:35:23 +0000557 [2, 2, 2, 1, 1]>,
Bob Wilsonb1dfa7a2010-11-28 06:51:26 +0000558 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000559 // VLD3
Evan Cheng41957f62010-11-03 00:40:22 +0000560 InstrItinData<IIC_VLD3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
561 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000562 InstrStage<4, [A8_LSPipe]>],
563 [3, 3, 4, 1]>,
564 //
565 // VLD3ln
Evan Cheng41957f62010-11-03 00:40:22 +0000566 InstrItinData<IIC_VLD3ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
567 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000568 InstrStage<5, [A8_LSPipe]>],
569 [4, 4, 5, 1, 1, 1, 1, 2]>,
570 //
571 // VLD3u
Evan Cheng41957f62010-11-03 00:40:22 +0000572 InstrItinData<IIC_VLD3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
573 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000574 InstrStage<4, [A8_LSPipe]>],
575 [3, 3, 4, 2, 1]>,
576 //
577 // VLD3lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000578 InstrItinData<IIC_VLD3lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
579 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng84f69e82010-10-09 01:45:34 +0000580 InstrStage<5, [A8_LSPipe]>],
581 [4, 4, 5, 2, 1, 1, 1, 1, 1, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000582 //
Bob Wilson86c6d802010-11-29 19:35:29 +0000583 // VLD3dup
584 InstrItinData<IIC_VLD3dup, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
585 InstrStage<3, [A8_NLSPipe], 0>,
586 InstrStage<3, [A8_LSPipe]>],
587 [2, 2, 3, 1]>,
588 //
589 // VLD3dupu
590 InstrItinData<IIC_VLD3dupu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
591 InstrStage<3, [A8_NLSPipe], 0>,
592 InstrStage<3, [A8_LSPipe]>],
593 [2, 2, 3, 2, 1, 1]>,
594 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000595 // VLD4
Evan Cheng41957f62010-11-03 00:40:22 +0000596 InstrItinData<IIC_VLD4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
597 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000598 InstrStage<4, [A8_LSPipe]>],
599 [3, 3, 4, 4, 1]>,
600 //
601 // VLD4ln
Evan Cheng41957f62010-11-03 00:40:22 +0000602 InstrItinData<IIC_VLD4ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
603 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000604 InstrStage<5, [A8_LSPipe]>],
605 [4, 4, 5, 5, 1, 1, 1, 1, 2, 2]>,
606 //
607 // VLD4u
Evan Cheng41957f62010-11-03 00:40:22 +0000608 InstrItinData<IIC_VLD4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
609 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000610 InstrStage<4, [A8_LSPipe]>],
611 [3, 3, 4, 4, 2, 1]>,
612 //
613 // VLD4lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000614 InstrItinData<IIC_VLD4lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
615 InstrStage<5, [A8_NLSPipe], 0>,
Evan Cheng10dc63f2010-10-09 04:07:58 +0000616 InstrStage<5, [A8_LSPipe]>],
617 [4, 4, 5, 5, 2, 1, 1, 1, 1, 1, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000618 //
Bob Wilson6c4c9822010-11-30 00:00:35 +0000619 // VLD4dup
620 InstrItinData<IIC_VLD4dup, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
621 InstrStage<3, [A8_NLSPipe], 0>,
622 InstrStage<3, [A8_LSPipe]>],
623 [2, 2, 3, 3, 1]>,
624 //
625 // VLD4dupu
626 InstrItinData<IIC_VLD4dupu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
627 InstrStage<3, [A8_NLSPipe], 0>,
628 InstrStage<3, [A8_LSPipe]>],
629 [2, 2, 3, 3, 2, 1, 1]>,
630 //
Evan Cheng60ff8792010-10-11 22:03:18 +0000631 // VST1
Evan Cheng41957f62010-11-03 00:40:22 +0000632 InstrItinData<IIC_VST1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
633 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000634 InstrStage<2, [A8_LSPipe]>],
635 [1, 1, 1]>,
636 //
637 // VST1x2
Evan Cheng41957f62010-11-03 00:40:22 +0000638 InstrItinData<IIC_VST1x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
639 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000640 InstrStage<2, [A8_LSPipe]>],
641 [1, 1, 1, 1]>,
642 //
643 // VST1x3
Evan Cheng41957f62010-11-03 00:40:22 +0000644 InstrItinData<IIC_VST1x3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
645 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000646 InstrStage<3, [A8_LSPipe]>],
647 [1, 1, 1, 1, 2]>,
648 //
649 // VST1x4
Evan Cheng41957f62010-11-03 00:40:22 +0000650 InstrItinData<IIC_VST1x4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
651 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000652 InstrStage<3, [A8_LSPipe]>],
653 [1, 1, 1, 1, 2, 2]>,
654 //
655 // VST1u
Evan Cheng41957f62010-11-03 00:40:22 +0000656 InstrItinData<IIC_VST1u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
657 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000658 InstrStage<2, [A8_LSPipe]>],
659 [2, 1, 1, 1, 1]>,
660 //
661 // VST1x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000662 InstrItinData<IIC_VST1x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
663 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000664 InstrStage<2, [A8_LSPipe]>],
665 [2, 1, 1, 1, 1, 1]>,
666 //
667 // VST1x3u
Evan Cheng41957f62010-11-03 00:40:22 +0000668 InstrItinData<IIC_VST1x3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
669 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000670 InstrStage<3, [A8_LSPipe]>],
671 [2, 1, 1, 1, 1, 1, 2]>,
672 //
673 // VST1x4u
Evan Cheng41957f62010-11-03 00:40:22 +0000674 InstrItinData<IIC_VST1x4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
675 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000676 InstrStage<3, [A8_LSPipe]>],
677 [2, 1, 1, 1, 1, 1, 2, 2]>,
678 //
Bob Wilsond0c6bc22010-11-02 21:18:25 +0000679 // VST1ln
680 InstrItinData<IIC_VST1ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000681 InstrStage<2, [A8_NLSPipe], 0>,
Bob Wilsond0c6bc22010-11-02 21:18:25 +0000682 InstrStage<2, [A8_LSPipe]>],
683 [1, 1, 1]>,
684 //
685 // VST1lnu
686 InstrItinData<IIC_VST1lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
Bob Wilson8d412942010-11-27 06:35:09 +0000687 InstrStage<2, [A8_NLSPipe], 0>,
Bob Wilsond0c6bc22010-11-02 21:18:25 +0000688 InstrStage<2, [A8_LSPipe]>],
689 [2, 1, 1, 1, 1]>,
690 //
Evan Cheng60ff8792010-10-11 22:03:18 +0000691 // VST2
Evan Cheng41957f62010-11-03 00:40:22 +0000692 InstrItinData<IIC_VST2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
693 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000694 InstrStage<2, [A8_LSPipe]>],
695 [1, 1, 1, 1]>,
696 //
697 // VST2x2
Evan Cheng41957f62010-11-03 00:40:22 +0000698 InstrItinData<IIC_VST2x2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
699 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000700 InstrStage<4, [A8_LSPipe]>],
701 [1, 1, 1, 1, 2, 2]>,
702 //
703 // VST2u
Evan Cheng41957f62010-11-03 00:40:22 +0000704 InstrItinData<IIC_VST2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
705 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000706 InstrStage<2, [A8_LSPipe]>],
707 [2, 1, 1, 1, 1, 1]>,
708 //
709 // VST2x2u
Evan Cheng41957f62010-11-03 00:40:22 +0000710 InstrItinData<IIC_VST2x2u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
711 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000712 InstrStage<4, [A8_LSPipe]>],
713 [2, 1, 1, 1, 1, 1, 2, 2]>,
714 //
715 // VST2ln
Evan Cheng41957f62010-11-03 00:40:22 +0000716 InstrItinData<IIC_VST2ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
717 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000718 InstrStage<2, [A8_LSPipe]>],
719 [1, 1, 1, 1]>,
720 //
721 // VST2lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000722 InstrItinData<IIC_VST2lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
723 InstrStage<2, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000724 InstrStage<2, [A8_LSPipe]>],
725 [2, 1, 1, 1, 1, 1]>,
726 //
727 // VST3
Evan Cheng41957f62010-11-03 00:40:22 +0000728 InstrItinData<IIC_VST3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
729 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000730 InstrStage<3, [A8_LSPipe]>],
731 [1, 1, 1, 1, 2]>,
732 //
733 // VST3u
Evan Cheng41957f62010-11-03 00:40:22 +0000734 InstrItinData<IIC_VST3u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
735 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000736 InstrStage<3, [A8_LSPipe]>],
737 [2, 1, 1, 1, 1, 1, 2]>,
738 //
739 // VST3ln
Evan Cheng41957f62010-11-03 00:40:22 +0000740 InstrItinData<IIC_VST3ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
741 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000742 InstrStage<3, [A8_LSPipe]>],
743 [1, 1, 1, 1, 2]>,
744 //
745 // VST3lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000746 InstrItinData<IIC_VST3lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
747 InstrStage<3, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000748 InstrStage<3, [A8_LSPipe]>],
749 [2, 1, 1, 1, 1, 1, 2]>,
750 //
751 // VST4
Evan Cheng41957f62010-11-03 00:40:22 +0000752 InstrItinData<IIC_VST4, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
753 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000754 InstrStage<4, [A8_LSPipe]>],
755 [1, 1, 1, 1, 2, 2]>,
756 //
757 // VST4u
Evan Cheng41957f62010-11-03 00:40:22 +0000758 InstrItinData<IIC_VST4u, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
759 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000760 InstrStage<4, [A8_LSPipe]>],
761 [2, 1, 1, 1, 1, 1, 2, 2]>,
762 //
763 // VST4ln
Evan Cheng41957f62010-11-03 00:40:22 +0000764 InstrItinData<IIC_VST4ln, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
765 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000766 InstrStage<4, [A8_LSPipe]>],
767 [1, 1, 1, 1, 2, 2]>,
768 //
769 // VST4lnu
Evan Cheng41957f62010-11-03 00:40:22 +0000770 InstrItinData<IIC_VST4lnu, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
771 InstrStage<4, [A8_NLSPipe], 0>,
Evan Cheng60ff8792010-10-11 22:03:18 +0000772 InstrStage<4, [A8_LSPipe]>],
773 [2, 1, 1, 1, 1, 1, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000774 //
775 // Double-register FP Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000776 InstrItinData<IIC_VUNAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000777 InstrStage<1, [A8_NPipe]>], [5, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000778 //
779 // Quad-register FP Unary
780 // Result written in N5, but that is relative to the last cycle of multicycle,
781 // so we use 6 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000782 InstrItinData<IIC_VUNAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000783 InstrStage<2, [A8_NPipe]>], [6, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000784 //
785 // Double-register FP Binary
Evan Cheng41957f62010-11-03 00:40:22 +0000786 InstrItinData<IIC_VBIND, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000787 InstrStage<1, [A8_NPipe]>], [5, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000788 //
Evan Cheng08cec1e2010-10-11 23:41:41 +0000789 // VPADD, etc.
Evan Cheng41957f62010-11-03 00:40:22 +0000790 InstrItinData<IIC_VPBIND, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Cheng08cec1e2010-10-11 23:41:41 +0000791 InstrStage<1, [A8_NPipe]>], [5, 2, 2]>,
792 //
793 // Double-register FP VMUL
Evan Cheng41957f62010-11-03 00:40:22 +0000794 InstrItinData<IIC_VFMULD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Cheng08cec1e2010-10-11 23:41:41 +0000795 InstrStage<1, [A8_NPipe]>], [5, 2, 1]>,
796
797 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000798 // Quad-register FP Binary
799 // Result written in N5, but that is relative to the last cycle of multicycle,
800 // so we use 6 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000801 InstrItinData<IIC_VBINQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000802 InstrStage<2, [A8_NPipe]>], [6, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000803 //
Evan Cheng08cec1e2010-10-11 23:41:41 +0000804 // Quad-register FP VMUL
Evan Cheng41957f62010-11-03 00:40:22 +0000805 InstrItinData<IIC_VFMULQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Cheng08cec1e2010-10-11 23:41:41 +0000806 InstrStage<1, [A8_NPipe]>], [6, 2, 1]>,
807 //
Evan Chengcae6a122010-10-01 20:50:58 +0000808 // Move
Evan Cheng41957f62010-11-03 00:40:22 +0000809 InstrItinData<IIC_VMOV, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengcae6a122010-10-01 20:50:58 +0000810 InstrStage<1, [A8_NPipe]>], [1, 1]>,
811 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000812 // Move Immediate
Evan Cheng41957f62010-11-03 00:40:22 +0000813 InstrItinData<IIC_VMOVImm, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000814 InstrStage<1, [A8_NPipe]>], [3]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000815 //
816 // Double-register Permute Move
Evan Cheng41957f62010-11-03 00:40:22 +0000817 InstrItinData<IIC_VMOVD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000818 InstrStage<1, [A8_NLSPipe]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000819 //
820 // Quad-register Permute Move
821 // Result written in N2, but that is relative to the last cycle of multicycle,
822 // so we use 3 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000823 InstrItinData<IIC_VMOVQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000824 InstrStage<2, [A8_NLSPipe]>], [3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000825 //
826 // Integer to Single-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000827 InstrItinData<IIC_VMOVIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000828 InstrStage<1, [A8_NLSPipe]>], [2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000829 //
830 // Integer to Double-precision Move
Evan Cheng41957f62010-11-03 00:40:22 +0000831 InstrItinData<IIC_VMOVID , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000832 InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000833 //
834 // Single-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000835 InstrItinData<IIC_VMOVSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000836 InstrStage<1, [A8_NLSPipe]>], [20, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000837 //
838 // Double-precision to Integer Move
Evan Cheng41957f62010-11-03 00:40:22 +0000839 InstrItinData<IIC_VMOVDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000840 InstrStage<1, [A8_NLSPipe]>], [20, 20, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000841 //
842 // Integer to Lane Move
Evan Cheng41957f62010-11-03 00:40:22 +0000843 InstrItinData<IIC_VMOVISL , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000844 InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000845 //
Evan Chengcae6a122010-10-01 20:50:58 +0000846 // Vector narrow move
Evan Cheng41957f62010-11-03 00:40:22 +0000847 InstrItinData<IIC_VMOVN , [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Evan Chengef0ccad2010-10-01 21:48:06 +0000848 InstrStage<1, [A8_NPipe]>], [2, 1]>,
Evan Chengcae6a122010-10-01 20:50:58 +0000849 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000850 // Double-register Permute
Evan Cheng41957f62010-11-03 00:40:22 +0000851 InstrItinData<IIC_VPERMD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000852 InstrStage<1, [A8_NLSPipe]>], [2, 2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000853 //
854 // Quad-register Permute
855 // Result written in N2, but that is relative to the last cycle of multicycle,
856 // so we use 3 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000857 InstrItinData<IIC_VPERMQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000858 InstrStage<2, [A8_NLSPipe]>], [3, 3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000859 //
860 // Quad-register Permute (3 cycle issue)
861 // Result written in N2, but that is relative to the last cycle of multicycle,
862 // so we use 4 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000863 InstrItinData<IIC_VPERMQ3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000864 InstrStage<1, [A8_NLSPipe]>,
865 InstrStage<1, [A8_NPipe], 0>,
866 InstrStage<2, [A8_NLSPipe]>], [4, 4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000867 //
868 // Double-register FP Multiple-Accumulate
Evan Cheng41957f62010-11-03 00:40:22 +0000869 InstrItinData<IIC_VMACD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000870 InstrStage<1, [A8_NPipe]>], [9, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000871 //
872 // Quad-register FP Multiple-Accumulate
873 // Result written in N9, but that is relative to the last cycle of multicycle,
874 // so we use 10 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000875 InstrItinData<IIC_VMACQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000876 InstrStage<2, [A8_NPipe]>], [10, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000877 //
Evan Cheng82509e52012-04-11 00:13:00 +0000878 // Double-register Fused FP Multiple-Accumulate
879 InstrItinData<IIC_VFMACD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
880 InstrStage<1, [A8_NPipe]>], [9, 3, 2, 2]>,
881 //
882 // Quad-register Fused FP Multiple-Accumulate
883 // Result written in N9, but that is relative to the last cycle of multicycle,
884 // so we use 10 for those cases
885 InstrItinData<IIC_VFMACQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
886 InstrStage<2, [A8_NPipe]>], [10, 3, 2, 2]>,
887 //
Anton Korobeynikove1676012010-04-07 18:22:11 +0000888 // Double-register Reciprical Step
Evan Cheng41957f62010-11-03 00:40:22 +0000889 InstrItinData<IIC_VRECSD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000890 InstrStage<1, [A8_NPipe]>], [9, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000891 //
892 // Quad-register Reciprical Step
Evan Cheng41957f62010-11-03 00:40:22 +0000893 InstrItinData<IIC_VRECSQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000894 InstrStage<2, [A8_NPipe]>], [10, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000895 //
896 // Double-register Integer Count
Evan Cheng41957f62010-11-03 00:40:22 +0000897 InstrItinData<IIC_VCNTiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000898 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000899 //
900 // Quad-register Integer Count
901 // Result written in N3, but that is relative to the last cycle of multicycle,
902 // so we use 4 for those cases
Evan Cheng41957f62010-11-03 00:40:22 +0000903 InstrItinData<IIC_VCNTiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000904 InstrStage<2, [A8_NPipe]>], [4, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000905 //
906 // Double-register Integer Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000907 InstrItinData<IIC_VUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000908 InstrStage<1, [A8_NPipe]>], [4, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000909 //
910 // Quad-register Integer Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000911 InstrItinData<IIC_VUNAiQ, [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 // Double-register Integer Q-Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000915 InstrItinData<IIC_VQUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000916 InstrStage<1, [A8_NPipe]>], [4, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000917 //
918 // Quad-register Integer CountQ-Unary
Evan Cheng41957f62010-11-03 00:40:22 +0000919 InstrItinData<IIC_VQUNAiQ, [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 // Double-register Integer Binary
Evan Cheng41957f62010-11-03 00:40:22 +0000923 InstrItinData<IIC_VBINiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000924 InstrStage<1, [A8_NPipe]>], [3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000925 //
926 // Quad-register Integer Binary
Evan Cheng41957f62010-11-03 00:40:22 +0000927 InstrItinData<IIC_VBINiQ, [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 // Double-register Integer Binary (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000931 InstrItinData<IIC_VBINi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000932 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000933 //
934 // Quad-register Integer Binary (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000935 InstrItinData<IIC_VBINi4Q, [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 //
939 // Double-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000940 InstrItinData<IIC_VSUBiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000941 InstrStage<1, [A8_NPipe]>], [3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000942 //
943 // Quad-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000944 InstrItinData<IIC_VSUBiQ, [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 // Double-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000948 InstrItinData<IIC_VSUBi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000949 InstrStage<1, [A8_NPipe]>], [4, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000950 //
951 // Quad-register Integer Subtract
Evan Cheng41957f62010-11-03 00:40:22 +0000952 InstrItinData<IIC_VSUBi4Q, [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 // Double-register Integer Shift
Evan Cheng41957f62010-11-03 00:40:22 +0000956 InstrItinData<IIC_VSHLiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000957 InstrStage<1, [A8_NPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000958 //
959 // Quad-register Integer Shift
Evan Cheng41957f62010-11-03 00:40:22 +0000960 InstrItinData<IIC_VSHLiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000961 InstrStage<2, [A8_NPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000962 //
963 // Double-register Integer Shift (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000964 InstrItinData<IIC_VSHLi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000965 InstrStage<1, [A8_NPipe]>], [4, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000966 //
967 // Quad-register Integer Shift (4 cycle)
Evan Cheng41957f62010-11-03 00:40:22 +0000968 InstrItinData<IIC_VSHLi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000969 InstrStage<2, [A8_NPipe]>], [5, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000970 //
971 // Double-register Integer Pair Add Long
Evan Cheng41957f62010-11-03 00:40:22 +0000972 InstrItinData<IIC_VPALiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000973 InstrStage<1, [A8_NPipe]>], [6, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000974 //
975 // Quad-register Integer Pair Add Long
Evan Cheng41957f62010-11-03 00:40:22 +0000976 InstrItinData<IIC_VPALiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000977 InstrStage<2, [A8_NPipe]>], [7, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000978 //
979 // Double-register Absolute Difference and Accumulate
Evan Cheng41957f62010-11-03 00:40:22 +0000980 InstrItinData<IIC_VABAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000981 InstrStage<1, [A8_NPipe]>], [6, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000982 //
983 // Quad-register Absolute Difference and Accumulate
Evan Cheng41957f62010-11-03 00:40:22 +0000984 InstrItinData<IIC_VABAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000985 InstrStage<2, [A8_NPipe]>], [6, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000986
987 //
988 // Double-register Integer Multiply (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +0000989 InstrItinData<IIC_VMULi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000990 InstrStage<1, [A8_NPipe]>], [6, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000991 //
992 // Double-register Integer Multiply (.32)
Evan Cheng41957f62010-11-03 00:40:22 +0000993 InstrItinData<IIC_VMULi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000994 InstrStage<2, [A8_NPipe]>], [7, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000995 //
996 // Quad-register Integer Multiply (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +0000997 InstrItinData<IIC_VMULi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +0000998 InstrStage<2, [A8_NPipe]>], [7, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +0000999 //
1000 // Quad-register Integer Multiply (.32)
Evan Cheng41957f62010-11-03 00:40:22 +00001001 InstrItinData<IIC_VMULi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001002 InstrStage<1, [A8_NPipe]>,
1003 InstrStage<2, [A8_NLSPipe], 0>,
1004 InstrStage<3, [A8_NPipe]>], [9, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001005 //
1006 // Double-register Integer Multiply-Accumulate (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +00001007 InstrItinData<IIC_VMACi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001008 InstrStage<1, [A8_NPipe]>], [6, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001009 //
1010 // Double-register Integer Multiply-Accumulate (.32)
Evan Cheng41957f62010-11-03 00:40:22 +00001011 InstrItinData<IIC_VMACi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001012 InstrStage<2, [A8_NPipe]>], [7, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001013 //
1014 // Quad-register Integer Multiply-Accumulate (.8, .16)
Evan Cheng41957f62010-11-03 00:40:22 +00001015 InstrItinData<IIC_VMACi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001016 InstrStage<2, [A8_NPipe]>], [7, 3, 2, 2]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001017 //
1018 // Quad-register Integer Multiply-Accumulate (.32)
Evan Cheng41957f62010-11-03 00:40:22 +00001019 InstrItinData<IIC_VMACi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001020 InstrStage<1, [A8_NPipe]>,
1021 InstrStage<2, [A8_NLSPipe], 0>,
1022 InstrStage<3, [A8_NPipe]>], [9, 3, 2, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001023 //
1024 // Double-register VEXT
Evan Cheng41957f62010-11-03 00:40:22 +00001025 InstrItinData<IIC_VEXTD, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001026 InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001027 //
1028 // Quad-register VEXT
Evan Cheng41957f62010-11-03 00:40:22 +00001029 InstrItinData<IIC_VEXTQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001030 InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001031 //
1032 // VTB
Evan Cheng41957f62010-11-03 00:40:22 +00001033 InstrItinData<IIC_VTB1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001034 InstrStage<2, [A8_NLSPipe]>], [3, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001035 InstrItinData<IIC_VTB2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001036 InstrStage<2, [A8_NLSPipe]>], [3, 2, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001037 InstrItinData<IIC_VTB3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001038 InstrStage<1, [A8_NLSPipe]>,
1039 InstrStage<1, [A8_NPipe], 0>,
1040 InstrStage<2, [A8_NLSPipe]>], [4, 2, 2, 3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001041 InstrItinData<IIC_VTB4, [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>,
Jim Grosbache9e3f202010-06-28 04:27:01 +00001044 InstrStage<2, [A8_NLSPipe]>],[4, 2, 2, 3, 3, 1]>,
Anton Korobeynikove1676012010-04-07 18:22:11 +00001045 //
1046 // VTBX
Evan Cheng41957f62010-11-03 00:40:22 +00001047 InstrItinData<IIC_VTBX1, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001048 InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001049 InstrItinData<IIC_VTBX2, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001050 InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 2, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001051 InstrItinData<IIC_VTBX3, [InstrStage<1, [A8_Pipe0, A8_Pipe1], 0>,
Anton Korobeynikov928eb492010-04-18 20:31:01 +00001052 InstrStage<1, [A8_NLSPipe]>,
1053 InstrStage<1, [A8_NPipe], 0>,
Jim Grosbache9e3f202010-06-28 04:27:01 +00001054 InstrStage<2, [A8_NLSPipe]>],[4, 1, 2, 2, 3, 1]>,
Evan Cheng41957f62010-11-03 00:40:22 +00001055 InstrItinData<IIC_VTBX4, [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, 3, 1]>
Anton Korobeynikove1676012010-04-07 18:22:11 +00001059]>;
Andrew Trick2661b412012-07-07 04:00:00 +00001060
1061// ===---------------------------------------------------------------------===//
1062// This following definitions describe the simple machine model which
1063// will replace itineraries.
1064
1065// Cortex-A8 machine model for scheduling and other instruction cost heuristics.
1066def CortexA8Model : SchedMachineModel {
1067 let IssueWidth = 2; // 2 micro-ops are dispatched per cycle.
1068 let MinLatency = -1; // OperandCycles are interpreted as MinLatency.
1069 let LoadLatency = 2; // Optimistic load latency assuming bypass.
1070 // This is overriden by OperandCycles if the
1071 // Itineraries are queried instead.
Andrew Trickd43b5c92012-08-08 02:44:16 +00001072 let MispredictPenalty = 13; // Based on estimate of pipeline depth.
Andrew Trick2661b412012-07-07 04:00:00 +00001073
1074 let Itineraries = CortexA8Itineraries;
1075}