Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 1 | //=- ARMScheduleA8.td - ARM Cortex-A8 Scheduling Definitions -*- tablegen -*-=// |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 2 | // |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 3 | // 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 Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 7 | // |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 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 Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 16 | // Functional Units. |
| 17 | def A8_Issue : FuncUnit; // issue |
| 18 | def A8_Pipe0 : FuncUnit; // pipeline 0 |
| 19 | def A8_Pipe1 : FuncUnit; // pipeline 1 |
| 20 | def A8_LdSt0 : FuncUnit; // pipeline 0 load/store |
| 21 | def A8_LdSt1 : FuncUnit; // pipeline 1 load/store |
| 22 | def A8_NPipe : FuncUnit; // NEON ALU/MUL pipe |
| 23 | def A8_NLSPipe : FuncUnit; // NEON LS pipe |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 24 | // |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 25 | // Dual issue pipeline represented by A8_Pipe0 | A8_Pipe1 |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 26 | // |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 27 | def CortexA8Itineraries : ProcessorItineraries< |
| 28 | [A8_Issue, A8_Pipe0, A8_Pipe1, A8_LdSt0, A8_LdSt1, A8_NPipe, A8_NLSPipe], [ |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 29 | // Two fully-pipelined integer ALU pipelines |
| 30 | // |
| 31 | // No operand cycles |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 32 | InstrItinData<IIC_iALUx , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 33 | // |
| 34 | // Binary Instructions that produce a result |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 35 | InstrItinData<IIC_iALUi ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>, |
| 36 | InstrItinData<IIC_iALUr ,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 2]>, |
| 37 | InstrItinData<IIC_iALUsi,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1]>, |
| 38 | InstrItinData<IIC_iALUsr,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 39 | // |
| 40 | // Unary Instructions that produce a result |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 41 | InstrItinData<IIC_iUNAr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>, |
| 42 | InstrItinData<IIC_iUNAsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>, |
| 43 | InstrItinData<IIC_iUNAsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 44 | // |
| 45 | // Compare instructions |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 46 | InstrItinData<IIC_iCMPi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>, |
| 47 | InstrItinData<IIC_iCMPr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 2]>, |
| 48 | InstrItinData<IIC_iCMPsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>, |
| 49 | InstrItinData<IIC_iCMPsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 50 | // |
| 51 | // Move instructions, unconditional |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 52 | InstrItinData<IIC_iMOVi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1]>, |
Evan Cheng | 5be3922 | 2010-09-24 22:03:46 +0000 | [diff] [blame] | 53 | InstrItinData<IIC_iMOVix2,[InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
Evan Cheng | bd30ce4 | 2010-09-24 22:41:41 +0000 | [diff] [blame^] | 54 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 55 | InstrItinData<IIC_iMOVr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>, |
| 56 | InstrItinData<IIC_iMOVsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1]>, |
| 57 | InstrItinData<IIC_iMOVsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [1, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 58 | // |
| 59 | // Move instructions, conditional |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 60 | InstrItinData<IIC_iCMOVi , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2]>, |
| 61 | InstrItinData<IIC_iCMOVr , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>, |
| 62 | InstrItinData<IIC_iCMOVsi, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1]>, |
| 63 | InstrItinData<IIC_iCMOVsr, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 64 | |
| 65 | // Integer multiply pipeline |
| 66 | // Result written in E5, but that is relative to the last cycle of multicycle, |
| 67 | // so we use 6 for those cases |
| 68 | // |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 69 | InstrItinData<IIC_iMUL16 , [InstrStage<1, [A8_Pipe0]>], [5, 1, 1]>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 70 | InstrItinData<IIC_iMAC16 , [InstrStage<1, [A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 71 | InstrStage<2, [A8_Pipe0]>], [6, 1, 1, 4]>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 72 | InstrItinData<IIC_iMUL32 , [InstrStage<1, [A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 73 | InstrStage<2, [A8_Pipe0]>], [6, 1, 1]>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 74 | InstrItinData<IIC_iMAC32 , [InstrStage<1, [A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 75 | InstrStage<2, [A8_Pipe0]>], [6, 1, 1, 4]>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 76 | InstrItinData<IIC_iMUL64 , [InstrStage<2, [A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 77 | InstrStage<3, [A8_Pipe0]>], [6, 6, 1, 1]>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 78 | InstrItinData<IIC_iMAC64 , [InstrStage<2, [A8_Pipe1], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 79 | InstrStage<3, [A8_Pipe0]>], [6, 6, 1, 1]>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 80 | |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 81 | // Integer load pipeline |
| 82 | // |
| 83 | // loads have an extra cycle of latency, but are fully pipelined |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 84 | // use A8_Issue to enforce the 1 load/store per cycle limit |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 85 | // |
| 86 | // Immediate offset |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 87 | InstrItinData<IIC_iLoadi , [InstrStage<1, [A8_Issue], 0>, |
| 88 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 89 | InstrStage<1, [A8_LdSt0]>], [3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 90 | // |
| 91 | // Register offset |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 92 | InstrItinData<IIC_iLoadr , [InstrStage<1, [A8_Issue], 0>, |
| 93 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 94 | InstrStage<1, [A8_LdSt0]>], [3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 95 | // |
| 96 | // Scaled register offset, issues over 2 cycles |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 97 | InstrItinData<IIC_iLoadsi , [InstrStage<2, [A8_Issue], 0>, |
| 98 | InstrStage<1, [A8_Pipe0], 0>, |
| 99 | InstrStage<1, [A8_Pipe1]>, |
| 100 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 101 | InstrStage<1, [A8_LdSt0]>], [4, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 102 | // |
| 103 | // Immediate offset with update |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 104 | InstrItinData<IIC_iLoadiu , [InstrStage<1, [A8_Issue], 0>, |
| 105 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 106 | InstrStage<1, [A8_LdSt0]>], [3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 107 | // |
| 108 | // Register offset with update |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 109 | InstrItinData<IIC_iLoadru , [InstrStage<1, [A8_Issue], 0>, |
| 110 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 111 | InstrStage<1, [A8_LdSt0]>], [3, 2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 112 | // |
| 113 | // Scaled register offset with update, issues over 2 cycles |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 114 | InstrItinData<IIC_iLoadsiu , [InstrStage<2, [A8_Issue], 0>, |
| 115 | InstrStage<1, [A8_Pipe0], 0>, |
| 116 | InstrStage<1, [A8_Pipe1]>, |
| 117 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 118 | InstrStage<1, [A8_LdSt0]>], [4, 3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 119 | // |
| 120 | // Load multiple |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 121 | InstrItinData<IIC_iLoadm , [InstrStage<2, [A8_Issue], 0>, |
| 122 | InstrStage<2, [A8_Pipe0], 0>, |
| 123 | InstrStage<2, [A8_Pipe1]>, |
| 124 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 125 | InstrStage<1, [A8_LdSt0]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 126 | |
Evan Cheng | 7602acb | 2010-09-08 22:57:08 +0000 | [diff] [blame] | 127 | // |
| 128 | // Load multiple plus branch |
| 129 | InstrItinData<IIC_iLoadmBr , [InstrStage<2, [A8_Issue], 0>, |
| 130 | InstrStage<2, [A8_Pipe0], 0>, |
| 131 | InstrStage<2, [A8_Pipe1]>, |
| 132 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 133 | InstrStage<1, [A8_LdSt0]>, |
| 134 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>, |
| 135 | |
Evan Cheng | bd30ce4 | 2010-09-24 22:41:41 +0000 | [diff] [blame^] | 136 | // |
| 137 | // iLoadi + iALUr for t2LDRpci_pic. |
| 138 | InstrItinData<IIC_iLoadiALU, [InstrStage<1, [A8_Issue], 0>, |
| 139 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 140 | InstrStage<1, [A8_LdSt0]>, |
| 141 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>], [4, 1]>, |
| 142 | |
| 143 | |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 144 | // Integer store pipeline |
| 145 | // |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 146 | // use A8_Issue to enforce the 1 load/store per cycle limit |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 147 | // |
| 148 | // Immediate offset |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 149 | InstrItinData<IIC_iStorei , [InstrStage<1, [A8_Issue], 0>, |
| 150 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 151 | InstrStage<1, [A8_LdSt0]>], [3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 152 | // |
| 153 | // Register offset |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 154 | InstrItinData<IIC_iStorer , [InstrStage<1, [A8_Issue], 0>, |
| 155 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 156 | InstrStage<1, [A8_LdSt0]>], [3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 157 | // |
| 158 | // Scaled register offset, issues over 2 cycles |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 159 | InstrItinData<IIC_iStoresi , [InstrStage<2, [A8_Issue], 0>, |
| 160 | InstrStage<1, [A8_Pipe0], 0>, |
| 161 | InstrStage<1, [A8_Pipe1]>, |
| 162 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 163 | InstrStage<1, [A8_LdSt0]>], [3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 164 | // |
| 165 | // Immediate offset with update |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 166 | InstrItinData<IIC_iStoreiu , [InstrStage<1, [A8_Issue], 0>, |
| 167 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 168 | InstrStage<1, [A8_LdSt0]>], [2, 3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 169 | // |
| 170 | // Register offset with update |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 171 | InstrItinData<IIC_iStoreru , [InstrStage<1, [A8_Issue], 0>, |
| 172 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 173 | InstrStage<1, [A8_LdSt0]>], [2, 3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 174 | // |
| 175 | // Scaled register offset with update, issues over 2 cycles |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 176 | InstrItinData<IIC_iStoresiu, [InstrStage<2, [A8_Issue], 0>, |
| 177 | InstrStage<1, [A8_Pipe0], 0>, |
| 178 | InstrStage<1, [A8_Pipe1]>, |
| 179 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 180 | InstrStage<1, [A8_LdSt0]>], [3, 3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 181 | // |
| 182 | // Store multiple |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 183 | InstrItinData<IIC_iStorem , [InstrStage<2, [A8_Issue], 0>, |
| 184 | InstrStage<2, [A8_Pipe0], 0>, |
| 185 | InstrStage<2, [A8_Pipe1]>, |
| 186 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 187 | InstrStage<1, [A8_LdSt0]>]>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 188 | |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 189 | // Branch |
| 190 | // |
| 191 | // no delay slots, so the latency of a branch is unimportant |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 192 | InstrItinData<IIC_Br , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 193 | |
| 194 | // VFP |
| 195 | // Issue through integer pipeline, and execute in NEON unit. We assume |
| 196 | // RunFast mode so that NFP pipeline is used for single-precision when |
| 197 | // possible. |
| 198 | // |
| 199 | // FP Special Register to Integer Register File Move |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 200 | InstrItinData<IIC_fpSTAT , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 201 | InstrStage<1, [A8_NLSPipe]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 202 | // |
| 203 | // Single-precision FP Unary |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 204 | InstrItinData<IIC_fpUNA32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 205 | InstrStage<1, [A8_NPipe]>], [7, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 206 | // |
| 207 | // Double-precision FP Unary |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 208 | InstrItinData<IIC_fpUNA64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 209 | InstrStage<4, [A8_NPipe], 0>, |
| 210 | InstrStage<4, [A8_NLSPipe]>], [4, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 211 | // |
| 212 | // Single-precision FP Compare |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 213 | InstrItinData<IIC_fpCMP32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 214 | InstrStage<1, [A8_NPipe]>], [1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 215 | // |
| 216 | // Double-precision FP Compare |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 217 | InstrItinData<IIC_fpCMP64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 218 | InstrStage<4, [A8_NPipe], 0>, |
| 219 | InstrStage<4, [A8_NLSPipe]>], [4, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 220 | // |
| 221 | // Single to Double FP Convert |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 222 | InstrItinData<IIC_fpCVTSD , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 223 | InstrStage<7, [A8_NPipe], 0>, |
| 224 | InstrStage<7, [A8_NLSPipe]>], [7, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 225 | // |
| 226 | // Double to Single FP Convert |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 227 | InstrItinData<IIC_fpCVTDS , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 228 | InstrStage<5, [A8_NPipe], 0>, |
| 229 | InstrStage<5, [A8_NLSPipe]>], [5, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 230 | // |
| 231 | // Single-Precision FP to Integer Convert |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 232 | InstrItinData<IIC_fpCVTSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 233 | InstrStage<1, [A8_NPipe]>], [7, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 234 | // |
| 235 | // Double-Precision FP to Integer Convert |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 236 | InstrItinData<IIC_fpCVTDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 237 | InstrStage<8, [A8_NPipe], 0>, |
| 238 | InstrStage<8, [A8_NLSPipe]>], [8, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 239 | // |
| 240 | // Integer to Single-Precision FP Convert |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 241 | InstrItinData<IIC_fpCVTIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 242 | InstrStage<1, [A8_NPipe]>], [7, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 243 | // |
| 244 | // Integer to Double-Precision FP Convert |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 245 | InstrItinData<IIC_fpCVTID , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 246 | InstrStage<8, [A8_NPipe], 0>, |
| 247 | InstrStage<8, [A8_NLSPipe]>], [8, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 248 | // |
| 249 | // Single-precision FP ALU |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 250 | InstrItinData<IIC_fpALU32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 251 | InstrStage<1, [A8_NPipe]>], [7, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 252 | // |
| 253 | // Double-precision FP ALU |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 254 | InstrItinData<IIC_fpALU64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 255 | InstrStage<9, [A8_NPipe], 0>, |
| 256 | InstrStage<9, [A8_NLSPipe]>], [9, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 257 | // |
| 258 | // Single-precision FP Multiply |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 259 | InstrItinData<IIC_fpMUL32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 260 | InstrStage<1, [A8_NPipe]>], [7, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 261 | // |
| 262 | // Double-precision FP Multiply |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 263 | InstrItinData<IIC_fpMUL64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 264 | InstrStage<11, [A8_NPipe], 0>, |
| 265 | InstrStage<11, [A8_NLSPipe]>], [11, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 266 | // |
| 267 | // Single-precision FP MAC |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 268 | InstrItinData<IIC_fpMAC32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 269 | InstrStage<1, [A8_NPipe]>], [7, 2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 270 | // |
| 271 | // Double-precision FP MAC |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 272 | InstrItinData<IIC_fpMAC64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 273 | InstrStage<19, [A8_NPipe], 0>, |
| 274 | InstrStage<19, [A8_NLSPipe]>], [19, 2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 275 | // |
| 276 | // Single-precision FP DIV |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 277 | InstrItinData<IIC_fpDIV32 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 278 | InstrStage<20, [A8_NPipe], 0>, |
| 279 | InstrStage<20, [A8_NLSPipe]>], [20, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 280 | // |
| 281 | // Double-precision FP DIV |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 282 | InstrItinData<IIC_fpDIV64 , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 283 | InstrStage<29, [A8_NPipe], 0>, |
| 284 | InstrStage<29, [A8_NLSPipe]>], [29, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 285 | // |
| 286 | // Single-precision FP SQRT |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 287 | InstrItinData<IIC_fpSQRT32, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 288 | InstrStage<19, [A8_NPipe], 0>, |
| 289 | InstrStage<19, [A8_NLSPipe]>], [19, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 290 | // |
| 291 | // Double-precision FP SQRT |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 292 | InstrItinData<IIC_fpSQRT64, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 293 | InstrStage<29, [A8_NPipe], 0>, |
| 294 | InstrStage<29, [A8_NLSPipe]>], [29, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 295 | // |
| 296 | // Single-precision FP Load |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 297 | // use A8_Issue to enforce the 1 load/store per cycle limit |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 298 | InstrItinData<IIC_fpLoad32, [InstrStage<1, [A8_Issue], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 299 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 300 | InstrStage<1, [A8_LdSt0], 0>, |
| 301 | InstrStage<1, [A8_NLSPipe]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 302 | // |
| 303 | // Double-precision FP Load |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 304 | // use A8_Issue to enforce the 1 load/store per cycle limit |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 305 | InstrItinData<IIC_fpLoad64, [InstrStage<2, [A8_Issue], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 306 | InstrStage<1, [A8_Pipe0], 0>, |
| 307 | InstrStage<1, [A8_Pipe1]>, |
| 308 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 309 | InstrStage<1, [A8_LdSt0], 0>, |
| 310 | InstrStage<1, [A8_NLSPipe]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 311 | // |
| 312 | // FP Load Multiple |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 313 | // use A8_Issue to enforce the 1 load/store per cycle limit |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 314 | InstrItinData<IIC_fpLoadm, [InstrStage<3, [A8_Issue], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 315 | InstrStage<2, [A8_Pipe0], 0>, |
| 316 | InstrStage<2, [A8_Pipe1]>, |
| 317 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 318 | InstrStage<1, [A8_LdSt0], 0>, |
| 319 | InstrStage<1, [A8_NLSPipe]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 320 | // |
| 321 | // Single-precision FP Store |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 322 | // use A8_Issue to enforce the 1 load/store per cycle limit |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 323 | InstrItinData<IIC_fpStore32,[InstrStage<1, [A8_Issue], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 324 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 325 | InstrStage<1, [A8_LdSt0], 0>, |
| 326 | InstrStage<1, [A8_NLSPipe]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 327 | // |
| 328 | // Double-precision FP Store |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 329 | // use A8_Issue to enforce the 1 load/store per cycle limit |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 330 | InstrItinData<IIC_fpStore64,[InstrStage<2, [A8_Issue], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 331 | InstrStage<1, [A8_Pipe0], 0>, |
| 332 | InstrStage<1, [A8_Pipe1]>, |
| 333 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 334 | InstrStage<1, [A8_LdSt0], 0>, |
| 335 | InstrStage<1, [A8_NLSPipe]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 336 | // |
| 337 | // FP Store Multiple |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 338 | // use A8_Issue to enforce the 1 load/store per cycle limit |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 339 | InstrItinData<IIC_fpStorem, [InstrStage<3, [A8_Issue], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 340 | InstrStage<2, [A8_Pipe0], 0>, |
| 341 | InstrStage<2, [A8_Pipe1]>, |
| 342 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 343 | InstrStage<1, [A8_LdSt0], 0>, |
| 344 | InstrStage<1, [A8_NLSPipe]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 345 | |
| 346 | // NEON |
| 347 | // Issue through integer pipeline, and execute in NEON unit. |
| 348 | // |
| 349 | // VLD1 |
| 350 | // FIXME: We don't model this instruction properly |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 351 | InstrItinData<IIC_VLD1, [InstrStage<1, [A8_Issue], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 352 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 353 | InstrStage<1, [A8_LdSt0], 0>, |
| 354 | InstrStage<1, [A8_NLSPipe]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 355 | // |
| 356 | // VLD2 |
| 357 | // FIXME: We don't model this instruction properly |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 358 | InstrItinData<IIC_VLD2, [InstrStage<1, [A8_Issue], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 359 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 360 | InstrStage<1, [A8_LdSt0], 0>, |
| 361 | InstrStage<1, [A8_NLSPipe]>], [2, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 362 | // |
| 363 | // VLD3 |
| 364 | // FIXME: We don't model this instruction properly |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 365 | InstrItinData<IIC_VLD3, [InstrStage<1, [A8_Issue], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 366 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 367 | InstrStage<1, [A8_LdSt0], 0>, |
| 368 | InstrStage<1, [A8_NLSPipe]>], [2, 2, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 369 | // |
| 370 | // VLD4 |
| 371 | // FIXME: We don't model this instruction properly |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 372 | InstrItinData<IIC_VLD4, [InstrStage<1, [A8_Issue], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 373 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 374 | InstrStage<1, [A8_LdSt0], 0>, |
| 375 | InstrStage<1, [A8_NLSPipe]>], [2, 2, 2, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 376 | // |
| 377 | // VST |
| 378 | // FIXME: We don't model this instruction properly |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 379 | InstrItinData<IIC_VST, [InstrStage<1, [A8_Issue], 0>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 380 | InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 381 | InstrStage<1, [A8_LdSt0], 0>, |
| 382 | InstrStage<1, [A8_NLSPipe]>]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 383 | // |
| 384 | // Double-register FP Unary |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 385 | InstrItinData<IIC_VUNAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 386 | InstrStage<1, [A8_NPipe]>], [5, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 387 | // |
| 388 | // Quad-register FP Unary |
| 389 | // Result written in N5, but that is relative to the last cycle of multicycle, |
| 390 | // so we use 6 for those cases |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 391 | InstrItinData<IIC_VUNAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 392 | InstrStage<2, [A8_NPipe]>], [6, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 393 | // |
| 394 | // Double-register FP Binary |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 395 | InstrItinData<IIC_VBIND, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 396 | InstrStage<1, [A8_NPipe]>], [5, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 397 | // |
| 398 | // Quad-register FP Binary |
| 399 | // Result written in N5, but that is relative to the last cycle of multicycle, |
| 400 | // so we use 6 for those cases |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 401 | InstrItinData<IIC_VBINQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 402 | InstrStage<2, [A8_NPipe]>], [6, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 403 | // |
| 404 | // Move Immediate |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 405 | InstrItinData<IIC_VMOVImm, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 406 | InstrStage<1, [A8_NPipe]>], [3]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 407 | // |
| 408 | // Double-register Permute Move |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 409 | InstrItinData<IIC_VMOVD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 410 | InstrStage<1, [A8_NLSPipe]>], [2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 411 | // |
| 412 | // Quad-register Permute Move |
| 413 | // Result written in N2, but that is relative to the last cycle of multicycle, |
| 414 | // so we use 3 for those cases |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 415 | InstrItinData<IIC_VMOVQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 416 | InstrStage<2, [A8_NLSPipe]>], [3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 417 | // |
| 418 | // Integer to Single-precision Move |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 419 | InstrItinData<IIC_VMOVIS , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 420 | InstrStage<1, [A8_NLSPipe]>], [2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 421 | // |
| 422 | // Integer to Double-precision Move |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 423 | InstrItinData<IIC_VMOVID , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 424 | InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 425 | // |
| 426 | // Single-precision to Integer Move |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 427 | InstrItinData<IIC_VMOVSI , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 428 | InstrStage<1, [A8_NLSPipe]>], [20, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 429 | // |
| 430 | // Double-precision to Integer Move |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 431 | InstrItinData<IIC_VMOVDI , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 432 | InstrStage<1, [A8_NLSPipe]>], [20, 20, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 433 | // |
| 434 | // Integer to Lane Move |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 435 | InstrItinData<IIC_VMOVISL , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 436 | InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 437 | // |
| 438 | // Double-register Permute |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 439 | InstrItinData<IIC_VPERMD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 440 | InstrStage<1, [A8_NLSPipe]>], [2, 2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 441 | // |
| 442 | // Quad-register Permute |
| 443 | // Result written in N2, but that is relative to the last cycle of multicycle, |
| 444 | // so we use 3 for those cases |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 445 | InstrItinData<IIC_VPERMQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 446 | InstrStage<2, [A8_NLSPipe]>], [3, 3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 447 | // |
| 448 | // Quad-register Permute (3 cycle issue) |
| 449 | // Result written in N2, but that is relative to the last cycle of multicycle, |
| 450 | // so we use 4 for those cases |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 451 | InstrItinData<IIC_VPERMQ3, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 452 | InstrStage<1, [A8_NLSPipe]>, |
| 453 | InstrStage<1, [A8_NPipe], 0>, |
| 454 | InstrStage<2, [A8_NLSPipe]>], [4, 4, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 455 | // |
| 456 | // Double-register FP Multiple-Accumulate |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 457 | InstrItinData<IIC_VMACD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 458 | InstrStage<1, [A8_NPipe]>], [9, 3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 459 | // |
| 460 | // Quad-register FP Multiple-Accumulate |
| 461 | // Result written in N9, but that is relative to the last cycle of multicycle, |
| 462 | // so we use 10 for those cases |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 463 | InstrItinData<IIC_VMACQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 464 | InstrStage<2, [A8_NPipe]>], [10, 3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 465 | // |
| 466 | // Double-register Reciprical Step |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 467 | InstrItinData<IIC_VRECSD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 468 | InstrStage<1, [A8_NPipe]>], [9, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 469 | // |
| 470 | // Quad-register Reciprical Step |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 471 | InstrItinData<IIC_VRECSQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 472 | InstrStage<2, [A8_NPipe]>], [10, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 473 | // |
| 474 | // Double-register Integer Count |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 475 | InstrItinData<IIC_VCNTiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 476 | InstrStage<1, [A8_NPipe]>], [3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 477 | // |
| 478 | // Quad-register Integer Count |
| 479 | // Result written in N3, but that is relative to the last cycle of multicycle, |
| 480 | // so we use 4 for those cases |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 481 | InstrItinData<IIC_VCNTiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 482 | InstrStage<2, [A8_NPipe]>], [4, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 483 | // |
| 484 | // Double-register Integer Unary |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 485 | InstrItinData<IIC_VUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 486 | InstrStage<1, [A8_NPipe]>], [4, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 487 | // |
| 488 | // Quad-register Integer Unary |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 489 | InstrItinData<IIC_VUNAiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 490 | InstrStage<1, [A8_NPipe]>], [4, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 491 | // |
| 492 | // Double-register Integer Q-Unary |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 493 | InstrItinData<IIC_VQUNAiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 494 | InstrStage<1, [A8_NPipe]>], [4, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 495 | // |
| 496 | // Quad-register Integer CountQ-Unary |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 497 | InstrItinData<IIC_VQUNAiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 498 | InstrStage<1, [A8_NPipe]>], [4, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 499 | // |
| 500 | // Double-register Integer Binary |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 501 | InstrItinData<IIC_VBINiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 502 | InstrStage<1, [A8_NPipe]>], [3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 503 | // |
| 504 | // Quad-register Integer Binary |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 505 | InstrItinData<IIC_VBINiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 506 | InstrStage<1, [A8_NPipe]>], [3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 507 | // |
| 508 | // Double-register Integer Binary (4 cycle) |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 509 | InstrItinData<IIC_VBINi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 510 | InstrStage<1, [A8_NPipe]>], [4, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 511 | // |
| 512 | // Quad-register Integer Binary (4 cycle) |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 513 | InstrItinData<IIC_VBINi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 514 | InstrStage<1, [A8_NPipe]>], [4, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 515 | |
| 516 | // |
| 517 | // Double-register Integer Subtract |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 518 | InstrItinData<IIC_VSUBiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 519 | InstrStage<1, [A8_NPipe]>], [3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 520 | // |
| 521 | // Quad-register Integer Subtract |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 522 | InstrItinData<IIC_VSUBiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 523 | InstrStage<1, [A8_NPipe]>], [3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 524 | // |
| 525 | // Double-register Integer Subtract |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 526 | InstrItinData<IIC_VSUBi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 527 | InstrStage<1, [A8_NPipe]>], [4, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 528 | // |
| 529 | // Quad-register Integer Subtract |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 530 | InstrItinData<IIC_VSUBi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 531 | InstrStage<1, [A8_NPipe]>], [4, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 532 | // |
| 533 | // Double-register Integer Shift |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 534 | InstrItinData<IIC_VSHLiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 535 | InstrStage<1, [A8_NPipe]>], [3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 536 | // |
| 537 | // Quad-register Integer Shift |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 538 | InstrItinData<IIC_VSHLiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 539 | InstrStage<2, [A8_NPipe]>], [4, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 540 | // |
| 541 | // Double-register Integer Shift (4 cycle) |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 542 | InstrItinData<IIC_VSHLi4D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 543 | InstrStage<1, [A8_NPipe]>], [4, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 544 | // |
| 545 | // Quad-register Integer Shift (4 cycle) |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 546 | InstrItinData<IIC_VSHLi4Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 547 | InstrStage<2, [A8_NPipe]>], [5, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 548 | // |
| 549 | // Double-register Integer Pair Add Long |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 550 | InstrItinData<IIC_VPALiD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 551 | InstrStage<1, [A8_NPipe]>], [6, 3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 552 | // |
| 553 | // Quad-register Integer Pair Add Long |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 554 | InstrItinData<IIC_VPALiQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 555 | InstrStage<2, [A8_NPipe]>], [7, 3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 556 | // |
| 557 | // Double-register Absolute Difference and Accumulate |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 558 | InstrItinData<IIC_VABAD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 559 | InstrStage<1, [A8_NPipe]>], [6, 3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 560 | // |
| 561 | // Quad-register Absolute Difference and Accumulate |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 562 | InstrItinData<IIC_VABAQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 563 | InstrStage<2, [A8_NPipe]>], [6, 3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 564 | |
| 565 | // |
| 566 | // Double-register Integer Multiply (.8, .16) |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 567 | InstrItinData<IIC_VMULi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 568 | InstrStage<1, [A8_NPipe]>], [6, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 569 | // |
| 570 | // Double-register Integer Multiply (.32) |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 571 | InstrItinData<IIC_VMULi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 572 | InstrStage<2, [A8_NPipe]>], [7, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 573 | // |
| 574 | // Quad-register Integer Multiply (.8, .16) |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 575 | InstrItinData<IIC_VMULi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 576 | InstrStage<2, [A8_NPipe]>], [7, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 577 | // |
| 578 | // Quad-register Integer Multiply (.32) |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 579 | InstrItinData<IIC_VMULi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 580 | InstrStage<1, [A8_NPipe]>, |
| 581 | InstrStage<2, [A8_NLSPipe], 0>, |
| 582 | InstrStage<3, [A8_NPipe]>], [9, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 583 | // |
| 584 | // Double-register Integer Multiply-Accumulate (.8, .16) |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 585 | InstrItinData<IIC_VMACi16D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 586 | InstrStage<1, [A8_NPipe]>], [6, 3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 587 | // |
| 588 | // Double-register Integer Multiply-Accumulate (.32) |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 589 | InstrItinData<IIC_VMACi32D, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 590 | InstrStage<2, [A8_NPipe]>], [7, 3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 591 | // |
| 592 | // Quad-register Integer Multiply-Accumulate (.8, .16) |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 593 | InstrItinData<IIC_VMACi16Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 594 | InstrStage<2, [A8_NPipe]>], [7, 3, 2, 2]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 595 | // |
| 596 | // Quad-register Integer Multiply-Accumulate (.32) |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 597 | InstrItinData<IIC_VMACi32Q, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 598 | InstrStage<1, [A8_NPipe]>, |
| 599 | InstrStage<2, [A8_NLSPipe], 0>, |
| 600 | InstrStage<3, [A8_NPipe]>], [9, 3, 2, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 601 | // |
| 602 | // Double-register VEXT |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 603 | InstrItinData<IIC_VEXTD, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 604 | InstrStage<1, [A8_NLSPipe]>], [2, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 605 | // |
| 606 | // Quad-register VEXT |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 607 | InstrItinData<IIC_VEXTQ, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 608 | InstrStage<2, [A8_NLSPipe]>], [3, 1, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 609 | // |
| 610 | // VTB |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 611 | InstrItinData<IIC_VTB1, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 612 | InstrStage<2, [A8_NLSPipe]>], [3, 2, 1]>, |
| 613 | InstrItinData<IIC_VTB2, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 614 | InstrStage<2, [A8_NLSPipe]>], [3, 2, 2, 1]>, |
| 615 | InstrItinData<IIC_VTB3, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 616 | InstrStage<1, [A8_NLSPipe]>, |
| 617 | InstrStage<1, [A8_NPipe], 0>, |
| 618 | InstrStage<2, [A8_NLSPipe]>], [4, 2, 2, 3, 1]>, |
| 619 | InstrItinData<IIC_VTB4, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 620 | InstrStage<1, [A8_NLSPipe]>, |
| 621 | InstrStage<1, [A8_NPipe], 0>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 622 | InstrStage<2, [A8_NLSPipe]>],[4, 2, 2, 3, 3, 1]>, |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 623 | // |
| 624 | // VTBX |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 625 | InstrItinData<IIC_VTBX1, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 626 | InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 1]>, |
| 627 | InstrItinData<IIC_VTBX2, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 628 | InstrStage<2, [A8_NLSPipe]>], [3, 1, 2, 2, 1]>, |
| 629 | InstrItinData<IIC_VTBX3, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 630 | InstrStage<1, [A8_NLSPipe]>, |
| 631 | InstrStage<1, [A8_NPipe], 0>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 632 | InstrStage<2, [A8_NLSPipe]>],[4, 1, 2, 2, 3, 1]>, |
Anton Korobeynikov | 928eb49 | 2010-04-18 20:31:01 +0000 | [diff] [blame] | 633 | InstrItinData<IIC_VTBX4, [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, |
| 634 | InstrStage<1, [A8_NLSPipe]>, |
| 635 | InstrStage<1, [A8_NPipe], 0>, |
Jim Grosbach | e9e3f20 | 2010-06-28 04:27:01 +0000 | [diff] [blame] | 636 | InstrStage<2, [A8_NLSPipe]>], [4, 1, 2, 2, 3, 3, 1]> |
Anton Korobeynikov | e167601 | 2010-04-07 18:22:11 +0000 | [diff] [blame] | 637 | ]>; |